/* ===== CUSTOM PROPERTIES ===== */
:root {
    --coral: #E8645A;
    --coral-dark: #D15248;
    --coral-light: #FDEAE8;
    --coral-50: #FFF5F3;
    --charcoal: #2D2D2D;
    --charcoal-light: #4A4A4A;
    --charcoal-muted: #6B6B6B;
    --bg-cream: #FDF8F6;
    --bg-white: #FFFFFF;
    --bg-warm: #FAF5F3;
    --text-dark: #1A1A1A;
    --text-body: #3D3D3D;
    --text-muted: #7A7A7A;
    --text-light: #F5F0EE;
    --border-light: #F0E6E2;
    --shadow-sm: 0 1px 3px rgba(45,45,45,0.06), 0 1px 2px rgba(45,45,45,0.04);
    --shadow-md: 0 4px 16px rgba(45,45,45,0.08), 0 2px 4px rgba(45,45,45,0.04);
    --shadow-lg: 0 12px 40px rgba(45,45,45,0.1), 0 4px 12px rgba(45,45,45,0.05);
    --shadow-coral: 0 8px 24px rgba(232,100,90,0.25);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--bg-cream);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--coral);
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-weight: 700;
}
.skip-link:focus { top: 16px; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253,248,246,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--charcoal);
}
.logo-text { letter-spacing: -0.02em; }
.coral { color: var(--coral); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.938rem;
}
.nav-links a {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    color: var(--charcoal-light);
    transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--coral); background: var(--coral-50); }
.mobile-toggle {
    display: none;
    padding: 8px;
    border-radius: var(--radius-sm);
    color: var(--charcoal);
    transition: background var(--transition);
}
.mobile-toggle:hover { background: var(--coral-50); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-coral {
    background: var(--coral);
    color: #fff;
    box-shadow: var(--shadow-coral);
}
.btn-coral:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(232,100,90,0.35);
}
.btn-outline-light {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px);
}
.btn-sm { padding: 8px 20px; font-size: 0.875rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION TAGS ===== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--coral-50);
    color: var(--coral);
    font-weight: 700;
    font-size: 0.813rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 1px solid var(--coral-light);
}
.section-tag-light {
    background: rgba(255,255,255,0.15);
    color: var(--text-light);
    border-color: rgba(255,255,255,0.25);
}

/* ===== SECTION TITLE ===== */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.section-title-light { color: #fff; }
.section-header { margin-bottom: 56px; }
.section-desc {
    font-size: 1.063rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}
.text-center { text-align: center; }

/* ===== HERO ===== */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--coral-50);
    color: var(--coral);
    font-weight: 700;
    font-size: 0.813rem;
    letter-spacing: 0.04em;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid var(--coral-light);
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: var(--charcoal);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.hero-desc {
    font-size: 1.063rem;
    color: var(--charcoal-muted);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 480px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    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.938rem;
    color: var(--charcoal-light);
}
.hero-image { position: relative; }
.hero-img-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-float-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.float-card-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--coral);
    line-height: 1;
}
.float-card-label {
    font-size: 0.813rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: var(--bg-white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image-col { position: relative; }
.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -20px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--bg-white);
    max-width: 55%;
}
.about-content .section-tag { margin-bottom: 16px; }
.about-content .section-title { margin-bottom: 20px; }
.about-content > p {
    color: var(--charcoal-muted);
    margin-bottom: 16px;
    font-size: 1.00rem;
    line-height: 1.8;
}
.about-list {
    margin-top: 28px;
    display: grid;
    gap: 14px;
}
.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 600;
    color: var(--charcoal-light);
    font-size: 0.938rem;
}

/* ===== SERVICES ===== */
.services {
    padding: 100px 0;
    background: var(--bg-cream);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--coral-light);
}
.service-icon-wrap {
    width: 56px;
    height: 56px;
    background: var(--coral-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 10px;
    font-weight: 800;
}
.service-card p {
    color: var(--charcoal-muted);
    line-height: 1.7;
    font-size: 0.938rem;
}

/* ===== WHY US ===== */
.why-us {
    padding: 100px 0;
    background: var(--bg-white);
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.why-content .section-tag { margin-bottom: 16px; }
.why-content .section-title { margin-bottom: 16px; }
.why-desc {
    color: var(--charcoal-muted);
    font-size: 1.00rem;
    line-height: 1.8;
    margin-bottom: 36px;
}
.why-list { display: grid; gap: 28px; }
.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.why-num {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--coral-light);
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}
.why-item h4 {
    font-size: 1.063rem;
    color: var(--charcoal);
    margin-bottom: 4px;
    font-weight: 800;
}
.why-item p {
    color: var(--charcoal-muted);
    font-size: 0.938rem;
    line-height: 1.7;
}
.why-image-col { position: relative; }
.why-img-stack { position: relative; }
.why-img-stack img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}
.why-float-stat {
    position: absolute;
    bottom: -24px;
    right: -16px;
    background: var(--charcoal);
    color: var(--text-light);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    box-shadow: var(--shadow-lg);
}
.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--coral);
}
.stat-label {
    font-size: 0.813rem;
    opacity: 0.7;
    font-weight: 600;
}

/* ===== SAFETY ===== */
.safety {
    padding: 100px 0;
    background: var(--charcoal);
}
.safety-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.safety-content .section-title { margin-bottom: 16px; }
.safety-desc {
    color: rgba(245,240,238,0.7);
    font-size: 1.00rem;
    line-height: 1.8;
    margin-bottom: 36px;
}
.safety-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.safety-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.938rem;
    transition: all var(--transition);
}
.safety-badge:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(232,100,90,0.4);
}
.safety-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.safety-image img { width: 100%; height: 100%; object-fit: cover; }

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 0;
    background: var(--bg-cream);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}
.testimonial-text {
    color: var(--charcoal-light);
    font-size: 0.938rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--coral-50);
    color: var(--coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.875rem;
    flex-shrink: 0;
}
.author-name {
    display: block;
    font-weight: 700;
    color: var(--charcoal);
    font-size: 0.938rem;
}
.author-detail {
    display: block;
    font-size: 0.813rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ===== CTA ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
}
.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.cta-content .cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.cta-desc {
    color: rgba(255,255,255,0.85);
    font-size: 1.063rem;
    line-height: 1.8;
    margin-bottom: 32px;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.cta-image img { width: 100%; height: 100%; object-fit: cover; }

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: var(--bg-white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-info .section-tag { margin-bottom: 16px; }
.contact-info .section-title { margin-bottom: 16px; }
.contact-desc {
    color: var(--charcoal-muted);
    font-size: 1.00rem;
    line-height: 1.8;
    margin-bottom: 36px;
}
.contact-details { display: grid; gap: 24px; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--coral-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-label {
    display: block;
    font-size: 0.813rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
}
.contact-value {
    display: block;
    color: var(--charcoal);
    font-weight: 700;
    font-size: 0.938rem;
    line-height: 1.5;
}
.contact-value a { color: var(--coral); transition: color var(--transition); }
.contact-value a:hover { color: var(--coral-dark); text-decoration: underline; }

/* ===== FORM ===== */
.contact-form-wrap {
    background: var(--bg-cream);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--border-light);
}
.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 24px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--charcoal-light);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    background: var(--bg-white);
    color: var(--charcoal);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(232,100,90,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 18px;
    background: #F0F7F0;
    border: 1px solid #C8E6C9;
    border-radius: var(--radius-md);
    color: #2E7D32;
    font-weight: 600;
    font-size: 0.938rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal);
    color: var(--text-light);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: #fff; }
.footer-desc {
    color: rgba(245,240,238,0.6);
    font-size: 0.938rem;
    line-height: 1.7;
    max-width: 280px;
}
.footer-links h4,
.footer-contact h4 {
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-light);
    margin-bottom: 16px;
}
.footer-links ul { display: grid; gap: 10px; }
.footer-links a {
    color: rgba(245,240,238,0.6);
    font-size: 0.938rem;
    font-weight: 600;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--coral); }
.footer-contact p {
    color: rgba(245,240,238,0.6);
    font-size: 0.938rem;
    line-height: 1.8;
}
.footer-contact a { color: var(--coral); font-weight: 600; 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: 20px 0;
    text-align: center;
}
.footer-bottom p {
    color: rgba(245,240,238,0.4);
    font-size: 0.813rem;
    font-weight: 600;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== MOBILE NAV ===== */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}
.nav-overlay.active { opacity: 1; pointer-events: all; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid,
    .about-grid,
    .why-grid,
    .safety-inner,
    .cta-inner,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-image { order: -1; max-width: 500px; margin: 0 auto; }
    .hero-content { text-align: center; }
    .hero-desc { margin: 0 auto 32px; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .safety-badges { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg-cream);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid var(--border-light);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        transition: transform var(--transition);
        z-index: 999;
    }
    .nav-links.open { transform: translateY(0); }
    .nav-links a { padding: 12px 16px; width: 100%; text-align: center; }
    .mobile-toggle { display: flex; align-items: center; justify-content: center; }
    .hero { padding: 100px 0 60px; }
    .hero-float-card { left: 50%; transform: translateX(-50%); bottom: -16px; }
    .about-img-secondary { position: relative; bottom: auto; right: auto; max-width: 100%; margin-top: 16px; }
    .why-float-stat { position: relative; bottom: auto; right: auto; display: inline-block; margin-top: 16px; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { justify-content: center; }
    .contact-form-wrap { padding: 24px; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 1.75rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-trust { flex-direction: column; align-items: center; gap: 12px; }
    .service-card { padding: 24px; }
}
