/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Nunito', sans-serif;
    color: #3D405B;
    background: #FDF8F4;
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== COLOR VARIABLES ===== */
:root {
    --charcoal: #3D405B;
    --charcoal-dark: #2B2D42;
    --coral: #F4A259;
    --coral-dark: #E08A3A;
    --coral-light: #FDEBD3;
    --cream: #FDF8F4;
    --cream-dark: #F5EDE6;
    --white: #FFFFFF;
    --text: #3D405B;
    --text-light: #6B6E85;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(61, 64, 91, 0.08);
    --shadow-lg: 0 12px 48px rgba(61, 64, 91, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; font-weight: 700; line-height: 1.2; color: var(--charcoal); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-coral { background: var(--coral); color: var(--white); box-shadow: 0 4px 16px rgba(244, 162, 89, 0.35); }
.btn-coral:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(244, 162, 89, 0.45); }
.btn-outline { background: transparent; color: var(--charcoal); border: 2px solid var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: var(--white); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--charcoal); border: 2px solid var(--charcoal); }
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline-light:hover { background: var(--white); color: var(--charcoal); }
.btn-white { background: var(--white); color: var(--charcoal); box-shadow: var(--shadow); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 244, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(61, 64, 91, 0.06);
    transition: var(--transition);
}
.header.scrolled { box-shadow: 0 2px 20px rgba(61, 64, 91, 0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--charcoal); }
.logo-accent { color: var(--coral); }

/* NAV */
.nav-list { display: flex; align-items: center; gap: 8px; }
.nav-list a { padding: 8px 16px; border-radius: 50px; font-weight: 600; font-size: 0.95rem; transition: var(--transition); }
.nav-list a:hover { background: var(--coral-light); color: var(--coral-dark); }
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 12px; transition: var(--transition); }
.nav-toggle:hover { background: var(--cream-dark); }
.hamburger, .hamburger::before, .hamburger::after { display: block; width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; position: relative; transition: var(--transition); }
.hamburger::before { content: ''; position: absolute; top: -7px; left: 0; }
.hamburger::after { content: ''; position: absolute; bottom: -7px; left: 0; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { bottom: 0; transform: rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #FDF8F4 0%, #FDEBD3 50%, #FDF8F4 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244, 162, 89, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--coral-dark);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}
.hero-headline {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--charcoal-dark);
}
.hero-headline span { color: var(--coral); }
.hero-desc { font-size: 1.15rem; color: var(--text-light); margin-bottom: 36px; max-width: 520px; line-height: 1.8; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.92rem; color: var(--charcoal); }

/* Hero Image */
.hero-image { position: relative; }
.hero-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-img-wrapper img { width: 100%; height: 420px; object-fit: cover; }
.hero-img-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--coral);
    border-radius: 50%;
    opacity: 0.15;
    pointer-events: none;
}
.hero-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}
.hero-card-icon {
    width: 52px;
    height: 52px;
    background: var(--coral-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral-dark);
    flex-shrink: 0;
}
.hero-card div { display: flex; flex-direction: column; }
.hero-card strong { font-family: 'Outfit', sans-serif; font-size: 0.95rem; color: var(--charcoal); }
.hero-card span { font-size: 0.85rem; color: var(--text-light); }

/* ===== SECTION COMMON ===== */
.section-tag {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--coral-dark);
    background: var(--coral-light);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
.section-desc { font-size: 1.1rem; color: var(--text-light); max-width: 600px; line-height: 1.8; }
.section-header { margin-bottom: 56px; }
.section-header--centered { text-align: center; }
.section-header--centered .section-desc { margin: 0 auto; }

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
    border: 1px solid transparent;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--coral-light); background: var(--white); }
.service-icon {
    width: 64px;
    height: 64px;
    background: var(--white);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--coral-light); }
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; }

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-main img { width: 100%; height: 400px; object-fit: cover; }
.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 260px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--cream);
}
.about-img-secondary img { width: 100%; height: 200px; object-fit: cover; }
.about-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--charcoal);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
    white-space: nowrap;
}
.about-content .section-title { margin-top: 8px; }
.about-text { color: var(--text-light); margin-bottom: 16px; font-size: 1.02rem; }
.about-stats { display: flex; gap: 40px; margin: 32px 0; }
.stat { text-align: center; }
.stat strong { display: block; font-family: 'Outfit', sans-serif; font-size: 2rem; color: var(--coral); line-height: 1; }
.stat span { font-size: 0.88rem; color: var(--text-light); font-weight: 600; }

/* ===== WHY US ===== */
.why { padding: 100px 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.why-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}
.why-card:hover { border-color: var(--coral-light); background: var(--white); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.why-num {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--coral);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 12px;
}
.why-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.why-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal) 100%);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 162, 89, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(244, 162, 89, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; z-index: 1; }
.cta-title { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--white); margin-bottom: 12px; }
.cta-desc { color: rgba(255,255,255,0.7); font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-icon {
    width: 52px;
    height: 52px;
    background: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}
.contact-item strong { display: block; font-family: 'Outfit', sans-serif; font-size: 0.95rem; margin-bottom: 4px; }
.contact-item p { font-size: 0.95rem; color: var(--text-light); line-height: 1.6; }
.contact-item a { color: var(--coral-dark); font-weight: 600; transition: var(--transition); }
.contact-item a:hover { color: var(--charcoal); }
.contact-desc { color: var(--text-light); margin-bottom: 36px; font-size: 1.02rem; }

/* FORM */
.form-title { font-size: 1.3rem; margin-bottom: 24px; }
.contact-form { background: var(--white); padding: 36px; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 6px; color: var(--charcoal); }
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: var(--charcoal);
    transition: var(--transition);
    background: var(--cream);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--coral);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(244, 162, 89, 0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--text-light); margin-top: 12px; text-align: center; }
.form-success {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.form-success strong { display: block; font-family: 'Outfit', sans-serif; font-size: 1.3rem; color: var(--charcoal); margin: 12px 0 6px; }
.form-success p { color: var(--text-light); font-size: 0.95rem; }

/* MAP */
.contact-map { display: flex; flex-direction: column; gap: 16px; }
.map-wrapper { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); height: 400px; }
.map-footer { }

/* ===== FOOTER ===== */
.footer { background: var(--charcoal-dark); color: rgba(255,255,255,0.7); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 56px; }
.footer .logo-text { color: var(--white); }
.footer p { font-size: 0.95rem; line-height: 1.7; }
.footer h4 { font-family: 'Outfit', sans-serif; font-size: 1rem; color: var(--white); margin-bottom: 20px; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { font-size: 0.92rem; transition: var(--transition); }
.footer-links ul li a:hover { color: var(--coral); }
.footer-contact p { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.92rem; }
.footer-contact a { color: var(--coral); transition: var(--transition); }
.footer-contact a:hover { color: var(--white); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: var(--coral); transition: var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-image { max-width: 560px; }
    .hero-card { left: 16px; bottom: -20px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-images { max-width: 520px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: rgba(253, 248, 244, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }
    .nav-list.open { transform: translateY(0); opacity: 1; pointer-events: all; }
    .nav-list a { padding: 14px 20px; width: 100%; text-align: center; }
    .nav-toggle { display: flex; }
    .hero { padding: 100px 0 60px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-trust { flex-direction: column; gap: 12px; }
    .hero-img-wrapper img { height: 300px; }
    .hero-card { position: relative; bottom: auto; left: auto; margin-top: 16px; }
    .services-grid { grid-template-columns: 1fr; }
    .about-img-secondary { right: -16px; bottom: -24px; width: 200px; }
    .about-stats { gap: 24px; }
    .why-grid { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions .btn { width: 100%; justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 24px; }
    .map-wrapper { height: 280px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-headline { font-size: 2rem; }
    .section-title { font-size: 1.6rem; }
    .about-img-secondary { display: none; }
    .about-badge { font-size: 0.8rem; padding: 10px 18px; }
}
