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

:root {
    --charcoal: #374151;
    --charcoal-dark: #1f2937;
    --charcoal-light: #4b5563;
    --coral: #F97583;
    --coral-light: #FDB4BC;
    --coral-dark: #E55A6A;
    --white: #FFFFFF;
    --off-white: #F9FAFB;
    --gray-50: #F3F4F6;
    --gray-100: #E5E7EB;
    --gray-200: #D1D5DB;
    --gray-600: #4B5563;
    --gray-800: #1F2937;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 3px rgba(55, 65, 81, 0.08), 0 1px 2px rgba(55, 65, 81, 0.06);
    --shadow-md: 0 4px 16px rgba(55, 65, 81, 0.1), 0 2px 4px rgba(55, 65, 81, 0.06);
    --shadow-lg: 0 12px 40px rgba(55, 65, 81, 0.12), 0 4px 12px rgba(55, 65, 81, 0.08);
    --shadow-coral: 0 8px 30px rgba(249, 117, 131, 0.35);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.65;
    -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; }

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

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

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-100);
    transition: box-shadow var(--transition);
}
.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--charcoal-dark);
}
.logo-text { font-family: var(--font-display); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-links a {
    padding: 8px 16px;
    border-radius: var(--radius-lg);
    font-weight: 500;
    font-size: 0.935rem;
    color: var(--charcoal-light);
    transition: color var(--transition), background var(--transition);
}
.nav-links a:hover {
    color: var(--charcoal-dark);
    background: var(--gray-50);
}

.btn-nav {
    background: var(--coral);
    color: var(--white) !important;
    font-weight: 600 !important;
    padding: 10px 20px !important;
    margin-left: 8px;
}
.btn-nav:hover {
    background: var(--coral-dark) !important;
    color: var(--white) !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.menu-toggle .bar {
    width: 24px;
    height: 2.5px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}
.menu-toggle[aria-expanded="true"] .bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #374151 40%, #4a3f3f 70%, #5c3a3a 100%);
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(249, 117, 131, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(249, 117, 131, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 90% 70% at 50% 50%, rgba(55, 65, 81, 0.9) 0%, rgba(31, 41, 55, 0.95) 100%);
}
.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        radial-gradient(circle at 25% 25%, var(--white) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, var(--white) 1px, transparent 1px);
    background-size: 48px 48px;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 820px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 117, 131, 0.15);
    border: 1px solid rgba(249, 117, 131, 0.3);
    color: var(--coral-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 28px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}
.text-coral { color: var(--coral); }

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.78);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.hero-trust {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}
.trust-item svg { color: var(--coral); }

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 2;
    line-height: 0;
}
.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-lg { padding: 17px 34px; font-size: 1.05rem; border-radius: var(--radius-xl); }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
}
.btn-primary:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-coral);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.25);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
}
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--charcoal-dark);
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}
.section-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===== SERVICES ===== */
.services {
    background: var(--white);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition);
}
.service-card:hover {
    border-color: var(--coral);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(249, 117, 131, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--charcoal-dark);
    margin-bottom: 10px;
}
.service-card p {
    font-size: 0.935rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===== ABOUT ===== */
.about {
    background: var(--off-white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}
.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    background: var(--coral);
    border-radius: var(--radius-xl);
    opacity: 0.15;
    z-index: -1;
}
.about-content .section-tag { margin-bottom: 12px; }
.about-content .section-title { margin-bottom: 20px; text-align: left; }
.about-content > p {
    font-size: 1.025rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 36px;
}
.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--coral);
}
.stat-label {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.4;
}

/* ===== WHY US ===== */
.why-us {
    background: var(--white);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.why-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--coral);
    border-radius: 4px 4px 0 0;
}
.why-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(249, 117, 131, 0.15);
    line-height: 1;
    margin-bottom: 16px;
}
.why-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--charcoal-dark);
    margin-bottom: 10px;
}
.why-card p {
    font-size: 0.935rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--off-white);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.testimonial-stars {
    color: #FBBF24;
    font-size: 1.15rem;
    letter-spacing: 2px;
    margin-bottom: 18px;
}
.testimonial-text {
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--coral);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}
.author-name {
    font-weight: 600;
    color: var(--charcoal-dark);
    font-size: 0.95rem;
}
.author-location {
    font-size: 0.825rem;
    color: var(--gray-600);
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #4a3f3f 100%);
    padding: 80px 0;
}
.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}
.cta-content {
    flex: 1;
    min-width: 280px;
}
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}
.cta-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    max-width: 480px;
}
.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact {
    background: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-info .section-tag { margin-bottom: 12px; }
.contact-info .section-title { margin-bottom: 16px; text-align: left; }
.contact-desc {
    font-size: 1.025rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 36px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-item {
    display: flex;
    gap: 16px;
}
.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(249, 117, 131, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-item strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--charcoal);
    margin-bottom: 4px;
}
.contact-item span,
.contact-item a {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}
.contact-item a:hover { color: var(--coral); }

.contact-form-wrap {
    background: var(--off-white);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    border: 1px solid var(--gray-100);
}
.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--charcoal-dark);
    margin-bottom: 6px;
}
.form-note {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 28px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(249, 117, 131, 0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234B5563' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #065F46;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-top: 16px;
    font-size: 0.95rem;
}
.form-success svg { color: #10B981; min-width: 24px; }

/* ===== 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;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.logo-light .logo-text { color: var(--white); }
.footer-brand p {
    margin-top: 16px;
    font-size: 0.925rem;
    line-height: 1.7;
    max-width: 280px;
}
.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--coral); }
.footer-contact p {
    font-size: 0.9rem;
    line-height: 1.8;
}
.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}
.footer-contact a:hover { color: var(--coral); }

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.825rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-image img { height: 360px; }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 100px 32px 40px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        transition: right var(--transition);
        z-index: 999;
    }
    .nav-links.open { right: 0; }
    .nav-links a {
        padding: 14px 16px;
        font-size: 1.05rem;
        border-radius: var(--radius-md);
    }
    .btn-nav {
        margin-left: 0;
        margin-top: 12px;
        text-align: center;
        justify-content: center;
    }

    .hero { min-height: 88vh; }
    .hero-content { padding: 100px 20px 60px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-trust { gap: 20px; }

    .section { padding: 72px 0; }
    .section-header { margin-bottom: 48px; }

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

    .cta-box { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }

    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px 24px; }

    .about-stats { flex-direction: column; gap: 20px; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.65rem; }
    .btn-lg { padding: 14px 24px; font-size: 0.95rem; }
}

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

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
}
