/* ===========================
   GLOBAL STYLES & VARIABLES
   =========================== */

:root {
    --royal-blue: #042066;
    --heritage-blue: #17236A;
    --rich-gold: #DAA337;
    --soft-cream: #F7F3EA;
    --warm-stone: #E6E0D6;
    --pure-white: #FFFFFF;
    --dark-text: #1a1a1a;
    --light-text: #666666;
    
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    line-height: 1.6;
    background-color: var(--pure-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */

.header {
    background-color: var(--pure-white);
    border-bottom: 1px solid var(--warm-stone);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--royal-blue);
}

.navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navigation a {
    text-decoration: none;
    color: var(--dark-text);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.navigation a:hover {
    color: var(--rich-gold);
}

/* ===========================
   BUTTONS
   =========================== */

.cta-button {
    background-color: var(--rich-gold);
    color: var(--pure-white);
    border: none;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 4px;
}

.cta-button:hover {
    background-color: #c09428;
}

.cta-button-large {
    background-color: var(--rich-gold);
    color: var(--pure-white);
    border: none;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 4px;
    margin-top: 30px;
}

.cta-button-large:hover {
    background-color: #c09428;
}

/* ===========================
   HERO SECTION
   =========================== */

.hero {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--heritage-blue) 100%);
    color: var(--pure-white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(218, 163, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(218, 163, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title .accent {
    color: var(--rich-gold);
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    opacity: 0.9;
    max-width: 600px;
}

/* ===========================
   SERVICES SECTION
   =========================== */

.services {
    padding: 80px 0;
    background-color: var(--soft-cream);
}

.section-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--royal-blue);
    margin-bottom: 50px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--pure-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--royal-blue);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--light-text);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.learn-more {
    text-decoration: none;
    color: var(--rich-gold);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: var(--royal-blue);
}

/* ===========================
   ABOUT SECTION
   =========================== */

.about {
    padding: 80px 0;
    background-color: var(--pure-white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--royal-blue);
    margin-bottom: 25px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 40px;
}

.core-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value {
    padding: 25px;
    border-left: 4px solid var(--rich-gold);
    background-color: var(--soft-cream);
}

.value h4 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--royal-blue);
    margin-bottom: 10px;
}

.value p {
    font-size: 14px;
    color: var(--light-text);
}

/* ===========================
   APPROACH SECTION
   =========================== */

.approach {
    padding: 80px 0;
    background-color: var(--soft-cream);
}

.approach h2 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--royal-blue);
    margin-bottom: 50px;
    text-align: center;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.approach-item {
    text-align: center;
}

.approach-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--rich-gold);
    margin-bottom: 15px;
}

.approach-item h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--royal-blue);
    margin-bottom: 15px;
}

.approach-item p {
    color: var(--light-text);
    font-size: 15px;
    line-height: 1.7;
}

/* ===========================
   CTA SECTION
   =========================== */

.cta-section {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--heritage-blue) 100%);
    color: var(--pure-white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section .accent {
    color: var(--rich-gold);
}

.cta-section p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 10px;
    opacity: 0.95;
}

.contact-info {
    margin-top: 40px;
    font-size: 15px;
}

.contact-info p {
    margin: 10px 0;
}

.contact-info a {
    color: var(--rich-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--soft-cream);
}

/* ===========================
   FOOTER
   =========================== */

.footer {
    background-color: var(--royal-blue);
    color: var(--pure-white);
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
}

.footer p {
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: var(--soft-cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--rich-gold);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .navigation {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title,
    .approach h2,
    .cta-section h2 {
        font-size: 32px;
    }

    .services-grid,
    .approach-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-title,
    .approach h2,
    .cta-section h2 {
        font-size: 24px;
    }

    .services,
    .about,
    .approach,
    .cta-section {
        padding: 50px 0;
    }
}
