/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --charcoal: #2D2D34;
    --charcoal-deep: #1E1E24;
    --charcoal-light: #3D3D47;
    --coral: #E86A5B;
    --coral-light: #F08A7D;
    --coral-pale: #FFF0EE;
    --coral-muted: rgba(232, 106, 91, 0.12);
    --warm-gray: #6B6870;
    --warm-gray-light: #98959D;
    --cream: #FFFAF8;
    --cream-dark: #F5F0EE;
    --white: #FFFFFF;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(45, 45, 52, 0.06);
    --shadow-md: 0 4px 20px rgba(45, 45, 52, 0.10);
    --shadow-lg: 0 8px 40px rgba(45, 45, 52, 0.14);
    --shadow-coral: 0 8px 30px rgba(232, 106, 91, 0.25);
    --font-heading: 'Nunito', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.65;
    overflow-x: hidden;
    -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; }
input, textarea, select { font-family: inherit; font-size: inherit; }

.skip-link {
    position: absolute; top: -100%; left: 16px;
    background: var(--coral); color: var(--white);
    padding: 8px 16px; border-radius: var(--radius-sm);
    z-index: 9999; font-weight: 600;
    transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255, 250, 248, 0.85);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(45, 45, 52, 0.06);
    transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
    display: flex; align-items: center;
    padding-top: 14px; padding-bottom: 14px;
    gap: 20px;
}

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo--white .logo-text { color: var(--white); }

.logo-icon { flex-shrink: 0; }

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800; font-size: 1.15rem;
    color: var(--charcoal); line-height: 1.2;
}
.logo-text span { color: var(--coral); }

.nav-list { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-link {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 14px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 0.9rem;
    color: var(--charcoal-light);
    transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--coral); background: var(--coral-muted); }

.nav-phone {
    color: var(--coral);
    background: var(--coral-pale);
    border-radius: var(--radius-xl);
    padding: 8px 16px;
}
.nav-phone:hover { background: var(--coral); color: var(--white); }
.nav-phone svg { flex-shrink: 0; }

.nav-toggle {
    display: none;
    flex-direction: column; justify-content: center;
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
    flex-shrink: 0;
}
.nav-toggle:hover { background: var(--coral-muted); }
.nav-toggle[aria-expanded="true"] .hamburger { background: var(--coral); }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: rotate(-45deg) translate(5px, -5px); }

.hamburger, .hamburger::before, .hamburger::after {
    display: block; width: 20px; height: 2px;
    background: var(--charcoal); border-radius: 2px;
    transition: all 0.3s;
}
.hamburger::before { content: ''; position: absolute; top: -6px; left: 0; }
.hamburger::after { content: ''; position: absolute; top: 6px; left: 0; }
.hamburger { position: relative; }

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 140px 0 80px;
    background: var(--cream);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(232, 106, 91, 0.06) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(232, 106, 91, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
    position: relative; z-index: 1;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--coral-pale); color: var(--coral);
    padding: 8px 16px; border-radius: var(--radius-xl);
    font-weight: 700; font-size: 0.85rem;
    margin-bottom: 20px;
    border: 1px solid rgba(232, 106, 91, 0.15);
}
.hero-badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--coral);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.4); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 900; line-height: 1.12;
    color: var(--charcoal);
    margin-bottom: 20px;
}
.text-gradient {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.1rem; color: var(--warm-gray);
    line-height: 1.75; margin-bottom: 32px;
    max-width: 480px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 28px; border-radius: var(--radius-md);
    font-weight: 700; font-size: 0.95rem;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; }

.btn-primary {
    background: var(--coral); color: var(--white);
    box-shadow: var(--shadow-coral);
}
.btn-primary:hover {
    background: var(--coral-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(232, 106, 91, 0.35);
}

.btn-secondary {
    background: var(--white); color: var(--charcoal);
    border: 2px solid rgba(45, 45, 52, 0.12);
}
.btn-secondary:hover {
    border-color: var(--coral); color: var(--coral);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
    background: var(--white); color: var(--coral);
    border-color: var(--white);
}

/* Hero Visual */
.hero-visual { position: relative; }

.hero-card-main {
    position: relative; border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-lg);
    aspect-ratio: 5/3.6;
}
.hero-card-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(30,30,36,0.8) 0%, transparent 100%);
    display: flex; align-items: center; gap: 10px;
    color: var(--white); font-weight: 700; font-size: 0.9rem;
}

.float-card {
    position: absolute; display: flex; align-items: center; gap: 12px;
    background: var(--white);
    padding: 14px 18px; border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}
.float-card--1 { top: -10px; left: -20px; animation-delay: 0s; }
.float-card--2 { top: 40%; right: -30px; animation-delay: 1.3s; }
.float-card--3 { bottom: 10px; left: -10px; animation-delay: 2.6s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.float-card-icon {
    width: 40px; height: 40px; border-radius: var(--radius-sm);
    background: var(--coral-pale); color: var(--coral);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.float-card-body { display: flex; flex-direction: column; }
.float-card-label { font-size: 0.75rem; color: var(--warm-gray-light); font-weight: 600; }
.float-card-value { font-size: 0.88rem; color: var(--charcoal); font-weight: 700; line-height: 1.3; }

.hero-wave {
    position: absolute; bottom: -1px; left: 0; right: 0;
    color: var(--white);
}
.hero-wave svg { width: 100%; height: 80px; display: block; }

/* ===== SECTION COMMON ===== */
.section-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.section-header--centered { }

.section-tag {
    display: inline-block;
    font-family: var(--font-heading); font-weight: 800;
    font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--coral); margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900; line-height: 1.15;
    color: var(--charcoal); margin-bottom: 14px;
}

.section-desc {
    font-size: 1.05rem; color: var(--warm-gray);
    line-height: 1.7;
}

/* ===== SERVICES ===== */
.services {
    padding: 80px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition);
    border: 1px solid transparent;
}
.service-card:hover {
    background: var(--white);
    border-color: rgba(232, 106, 91, 0.15);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card-icon {
    width: 56px; height: 56px; border-radius: var(--radius-md);
    background: var(--coral-pale); color: var(--coral);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    transition: all var(--transition);
}
.service-card:hover .service-card-icon {
    background: var(--coral); color: var(--white);
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem; font-weight: 800;
    color: var(--charcoal); margin-bottom: 10px;
}

.service-card-desc {
    font-size: 0.92rem; color: var(--warm-gray);
    line-height: 1.7;
}

/* ===== ABOUT ===== */
.about { padding: 80px 0; background: var(--cream); }

.about-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
}

.about-visual { position: relative; }

.about-image-stack { position: relative; }
.about-img-main {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 400px; object-fit: cover; }

.about-img-accent {
    position: absolute; bottom: -30px; right: -20px;
    border-radius: var(--radius-md); overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
}
.about-img-accent img { width: 240px; height: 180px; object-fit: cover; display: block; }

.about-experience-badge {
    position: absolute; top: -20px; right: 30px;
    background: var(--coral); color: var(--white);
    padding: 16px 20px; border-radius: var(--radius-md);
    text-align: center; box-shadow: var(--shadow-coral);
}
.about-exp-number {
    display: block; font-family: var(--font-heading);
    font-weight: 900; font-size: 1.6rem; line-height: 1;
}
.about-exp-text {
    display: block; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.9;
}

.about-content { }
.about-text {
    font-size: 1rem; color: var(--warm-gray);
    line-height: 1.8; margin-bottom: 16px;
}

.about-features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 14px; margin-top: 28px;
}

.about-feature {
    display: flex; align-items: center; gap: 10px;
    font-weight: 700; font-size: 0.9rem; color: var(--charcoal);
}
.about-feature-icon {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--coral-pale); color: var(--coral);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

/* ===== WHY US ===== */
.why-us { padding: 80px 0; background: var(--charcoal); color: var(--white); }

.why-us .section-tag { color: var(--coral-light); }
.why-us .section-title { color: var(--white); }
.why-us .section-desc { color: var(--warm-gray-light); }

.why-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 24px; max-width: 900px; margin: 0 auto;
}

.why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: all var(--transition);
}
.why-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(232, 106, 91, 0.3);
    transform: translateY(-4px);
}

.why-card-number {
    font-family: var(--font-heading);
    font-weight: 900; font-size: 3rem;
    color: rgba(232, 106, 91, 0.25);
    line-height: 1; margin-bottom: 12px;
}

.why-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem; font-weight: 800;
    color: var(--white); margin-bottom: 10px;
}

.why-card-desc {
    font-size: 0.92rem; color: var(--warm-gray-light);
    line-height: 1.75;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--coral) 0%, #d45547 100%);
    position: relative; overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.cta-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px; flex-wrap: wrap; position: relative; z-index: 1;
}
.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900; color: var(--white);
    line-height: 1.2; margin-bottom: 8px;
}
.cta-desc { font-size: 1.05rem; color: rgba(255,255,255,0.85); }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-white {
    background: var(--white); color: var(--coral);
    box-shadow: var(--shadow-md);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--cream);
}

/* ===== CONTACT ===== */
.contact { padding: 80px 0; background: var(--white); }

.contact-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: start;
}

.contact-desc {
    font-size: 1rem; color: var(--warm-gray);
    line-height: 1.75; margin-bottom: 32px;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-detail {
    display: flex; align-items: flex-start; gap: 16px;
}
.contact-detail-icon {
    width: 48px; height: 48px; border-radius: var(--radius-md);
    background: var(--coral-pale); color: var(--coral);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-detail-content { display: flex; flex-direction: column; }
.contact-detail-label {
    font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--warm-gray-light); margin-bottom: 2px;
}
.contact-detail-value {
    font-weight: 700; font-size: 1rem;
    color: var(--charcoal);
    transition: color var(--transition);
}
.contact-detail-value:hover { color: var(--coral); }

/* Form */
.contact-form-wrap {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid rgba(45,45,52,0.06);
}

.contact-form-title {
    font-family: var(--font-heading);
    font-size: 1.4rem; font-weight: 800;
    color: var(--charcoal); margin-bottom: 24px;
}

.form-group { margin-bottom: 18px; }

.form-label {
    display: block; font-weight: 700;
    font-size: 0.85rem; color: var(--charcoal);
    margin-bottom: 6px;
}

.form-input {
    width: 100%; padding: 12px 16px;
    border: 2px solid rgba(45,45,52,0.1);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--charcoal);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-input::placeholder { color: var(--warm-gray-light); }
.form-input:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(232, 106, 91, 0.12);
}
.form-textarea { resize: vertical; min-height: 110px; }

.form-success {
    display: flex; align-items: center; gap: 10px;
    margin-top: 16px; padding: 14px 18px;
    background: #e8f5e9; color: #2e7d32;
    border-radius: var(--radius-sm);
    font-weight: 600; font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal-deep);
    color: rgba(255,255,255,0.7);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding: 64px 0 48px;
}

.footer-tagline {
    font-size: 0.92rem; line-height: 1.7;
    margin-top: 14px; max-width: 280px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-weight: 800; font-size: 0.95rem;
    color: var(--white); margin-bottom: 18px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: 0.9rem; transition: color var(--transition);
}
.footer-links a:hover { color: var(--coral-light); }

.footer-contact address {
    font-style: normal;
    font-size: 0.9rem; line-height: 1.8;
}
.footer-contact a {
    transition: color var(--transition);
}
.footer-contact a:hover { color: var(--coral-light); }

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

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .nav { 
        position: fixed; top: 68px; left: 0; right: 0;
        background: rgba(255, 250, 248, 0.98);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(45,45,52,0.06);
        padding: 16px 24px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
    }
    .nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
    .nav-list { flex-direction: column; gap: 4px; }
    .nav-link { width: 100%; padding: 12px 14px; }
    .nav-phone { margin-top: 8px; justify-content: center; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { max-width: 500px; }
    .float-card--1 { left: 0; }
    .float-card--2 { right: 0; }
    .float-card--3 { left: 0; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-inner { grid-template-columns: 1fr; gap: 48px; }
    .about-img-accent { right: 0; }
    .why-grid { grid-template-columns: 1fr; }
    .contact-inner { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
    .container { padding: 0 18px; }
    .hero { padding: 120px 0 60px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .services-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .about-img-main img { height: 260px; }
    .contact-form-wrap { padding: 24px; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .float-card { display: none; }
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
