/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { margin: 0; overflow-x: hidden; }

/* ── Hero Gradient ── */
.hero-gradient {
    background: linear-gradient(135deg, #6e253a 0%, #8b2f4a 25%, #a83d5e 50%, #c56285 75%, #d97706 100%);
}

/* ── Floating Orbs ── */
@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}
.animate-float { animation: float 6s ease-in-out infinite; }

/* ── Scroll Reveal ── */
.scroll-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ── Section Labels ── */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #d97706;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 0.4em 1em;
    border-radius: 9999px;
}
.testimonial-label {
    color: #fcd34d;
    background: rgba(255,255,255,0.1);
}

/* ── Section Titles ── */
.section-title {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 600;
    color: #3a141f;
    line-height: 1.2;
}

/* ── Section Descriptions ── */
.section-desc {
    color: #7c3aed;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 520px;
    margin-left: auto; margin-right: auto;
}

/* ── Service Cards ── */
.service-card {
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d97706, #fbbf24);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card:hover::after {
    transform: scaleX(1);
}
.service-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
}

/* ── Buttons ── */
.cta-primary {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #3a141f;
    font-weight: 800;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 24px rgba(251, 191, 36, 0.4);
}
.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(251, 191, 36, 0.5);
}
.cta-secondary {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    border: 1.5px solid rgba(255,255,255,0.3);
    text-decoration: none;
    transition: all 0.3s ease;
}
.cta-secondary:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

/* ── Inputs ── */
.input-field {
    background: #fff;
    border: 1.5px solid #f0d4e0;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-family: 'Nunito', system-ui, sans-serif;
    font-size: 0.95rem;
    color: #3a141f;
    transition: all 0.25s ease;
    outline: none;
    width: 100%;
}
.input-field::placeholder { color: #c4a0b0; }
.input-field:focus {
    border-color: #d97706;
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.12);
}

/* ── Submit Button ── */
.btn-submit {
    background: linear-gradient(135deg, #d97706, #b45309);
    color: #fff;
    font-family: 'Nunito', system-ui, sans-serif;
    font-weight: 800;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 16px rgba(180, 83, 9, 0.3);
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(180, 83, 9, 0.4);
}

/* ── Nav ── */
#navbar {
    background: transparent;
}
#navbar.scrolled {
    background: rgba(255, 248, 240, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 24px rgba(110, 37, 58, 0.08);
}
.nav-link { position: relative; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: #d97706;
    border-radius: 9999px;
    transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

/* ── Mobile Menu ── */
.menu-line { transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1); }
#mobileMenu.open .menu-line:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
#mobileMenu.open .menu-line:nth-child(2) { opacity: 0; }
#mobileMenu.open .menu-line:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); width: 5px; margin-left: 0; }
.mobile-link { position: relative; }

/* ── Testimonial Cards ── */
.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

/* ── Hero Animations ── */
.hero-badge { animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero-title { animation: fadeUp 0.8s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero-subtitle { animation: fadeUp 0.8s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero-ctas { animation: fadeUp 0.8s 0.45s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero-stats { animation: fadeUp 0.8s 0.6s cubic-bezier(0.22, 1, 0.36, 1) both; }

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

/* ── Responsive ── */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-stats { flex-direction: column; gap: 4px; }
    .hero-stats > div:not(:first-child) { display: flex; align-items: center; gap: 4px; }
    .hero-stats .w-px { display: none; }
}
