@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Source+Sans+3:wght@300;400;600;700&display=swap');

:root {
    --red: #B22234;
    --red-dark: #8C1A29;
    --green: #1A8C3E;
    --green-dark: #146B30;
    --blue: #1E3A6E;
    --blue-dark: #152A50;
    --blue-light: #2A4F8F;
    --cream: #FAF8F5;
    --warm-white: #FDFCFA;
    --gold: #C9A84C;
    --gold-light: #E0C973;
    --text-dark: #1A1A2E;
    --text-mid: #3D3D56;
    --text-light: #6B6B82;
    --shadow-sm: 0 2px 8px rgba(30, 58, 110, 0.06);
    --shadow-md: 0 8px 30px rgba(30, 58, 110, 0.1);
    --shadow-lg: 0 20px 60px rgba(30, 58, 110, 0.12);
    --radius: 12px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ── HERO SECTION ── */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(165deg, var(--blue-dark) 0%, var(--blue) 40%, var(--blue-light) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 400px at 20% 80%, rgba(26, 140, 62, 0.15), transparent),
        radial-gradient(ellipse 500px 500px at 80% 20%, rgba(178, 34, 52, 0.1), transparent);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    width: min(420px, 85vw);
    margin-bottom: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.02em;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--blue-dark);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 50px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.35s ease;
    box-shadow: 0 6px 25px rgba(201, 168, 76, 0.35);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(201, 168, 76, 0.5);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite 2s;
}

.hero-scroll svg {
    width: 28px;
    height: 28px;
    stroke: rgba(255,255,255,0.5);
    stroke-width: 2;
    fill: none;
}

/* ── NAVIGATION ── */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(30, 58, 110, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    padding: 0.7rem 2rem;
}

.navbar a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.navbar a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.navbar a:hover {
    color: #fff;
}

.navbar a:hover::after {
    width: 100%;
}

/* ── SECTIONS COMMON ── */

section {
    padding: 6rem 2rem;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2.5rem;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 2px;
    background: var(--green);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--blue-dark);
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

/* ── ABOUT SECTION ── */

.about {
    background: var(--warm-white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.about-text p {
    color: var(--text-mid);
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.35s ease;
    border: 1px solid rgba(30, 58, 110, 0.06);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── SERVICES SECTION ── */

.services {
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid rgba(30, 58, 110, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.service-icon.red { background: rgba(178, 34, 52, 0.1); color: var(--red); }
.service-icon.green { background: rgba(26, 140, 62, 0.1); color: var(--green); }
.service-icon.blue { background: rgba(30, 58, 110, 0.1); color: var(--blue); }

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--blue-dark);
    margin-bottom: 0.8rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ── WHY US SECTION ── */

.why-us {
    background: linear-gradient(165deg, var(--blue-dark) 0%, var(--blue) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-us::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.why-us .section-inner {
    position: relative;
    z-index: 2;
}

.why-us .section-label {
    color: var(--gold);
}

.why-us .section-label::before {
    background: var(--gold);
}

.why-us .section-title {
    color: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.why-item {
    display: flex;
    gap: 1.2rem;
    padding: 1.5rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 168, 76, 0.3);
}

.why-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
}

.why-item h4 {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
    color: white;
}

.why-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.55;
}

/* ── CONTACT SECTION ── */

.contact {
    background: var(--warm-white);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact-grid {
    max-width: 600px;
    margin-top: 3rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(30, 58, 110, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.contact-item h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.contact-item p,
.contact-item a {
    font-size: 1.05rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: var(--blue);
}

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 360px;
    border: 1px solid rgba(30, 58, 110, 0.08);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: none;
    display: block;
}

/* ── FOOTER ── */

.footer {
    background: var(--blue-dark);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 2.5rem 2rem;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.footer-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 1.2rem;
    border-radius: 1px;
}

.footer strong {
    color: rgba(255, 255, 255, 0.85);
}

/* ── ANIMATIONS ── */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ── */

@media (max-width: 900px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .navbar {
        gap: 1rem;
        padding: 0.8rem 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .navbar a {
        font-size: 0.75rem;
    }

    section {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 600px) {
    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.2rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}
