/* ── Custom Properties ── */
:root {
    --burgundy: #7B2D3B;
    --burgundy-deep: #5C1F2B;
    --blush: #F5D5D0;
    --blush-light: #FDF0ED;
    --blush-mid: #FCE4DF;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-light: #7A7A7A;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(123, 45, 59, 0.08);
    --shadow-md: 0 4px 20px rgba(123, 45, 59, 0.12);
    --shadow-lg: 0 8px 40px rgba(123, 45, 59, 0.16);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.02em; line-height: 1.1; }

/* ── Section Labels ── */
.section-label {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burgundy);
    background: var(--blush-light);
    padding: 0.35em 1em;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--burgundy);
    margin-bottom: 1rem;
}
.section-desc {
    font-size: 1.1rem;
    color: var(--text-mid);
    max-width: 600px;
    margin: 0 auto;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85em 1.8em;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn-primary {
    background: var(--burgundy);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(123, 45, 59, 0.3);
}
.btn-primary:hover {
    background: var(--burgundy-deep);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(123, 45, 59, 0.4);
}
.btn-outline {
    background: transparent;
    color: var(--burgundy);
    border: 2px solid var(--burgundy);
}
.btn-outline:hover {
    background: var(--burgundy);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--burgundy);
    transform: translateY(-2px);
}
.btn-lg { padding: 1em 2.2em; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Header ── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding-top: 12px;
}
.header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
    padding-top: 0;
}
.container { max-width: 1200px; margin: 0 auto; }

.header-logo-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.04em;
    color: var(--white);
    transition: color 0.3s ease;
    line-height: 1;
}
.header-logo-tag {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}
.header.scrolled .header-logo-name { color: var(--burgundy); }
.header.scrolled .header-logo-tag { color: var(--text-light); }
.header-logo-icon { transition: transform 0.3s ease; }

.nav-desktop {
    display: none;
    gap: 2rem;
    align-items: center;
}
.nav-desktop a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: color 0.3s ease;
    position: relative;
}
.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blush);
    transition: width 0.3s ease;
}
.nav-desktop a:hover::after { width: 100%; }
.nav-desktop a:hover { color: var(--white); }
.header.scrolled .nav-desktop a { color: var(--text-mid); }
.header.scrolled .nav-desktop a:hover { color: var(--burgundy); }
.header.scrolled .nav-desktop a::after { background: var(--burgundy); }

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    background: rgba(255,255,255,0.15);
    padding: 0.5em 1.2em;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.nav-cta-btn:hover { background: rgba(255,255,255,0.25); }
.header.scrolled .nav-cta-btn {
    background: var(--burgundy);
    color: var(--white);
}
.header.scrolled .nav-cta-btn:hover { background: var(--burgundy-deep); }

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 50;
}
.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.header.scrolled .mobile-menu-btn span { background: var(--burgundy); }
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--burgundy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 40;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.nav-mobile.open { opacity: 1; pointer-events: all; }
.nav-mobile a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    letter-spacing: 0.08em;
    color: var(--white);
    transition: color 0.3s ease;
}
.nav-mobile a:hover { color: var(--blush); }
.mobile-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    margin-top: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--blush);
    background: rgba(255,255,255,0.1);
    padding: 0.7em 1.5em;
    border-radius: 50px;
}

@media (min-width: 640px) {
    .nav-desktop { display: flex; }
    .mobile-menu-btn { display: none; }
}

/* ── Hero ── */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--burgundy-deep) 0%, var(--burgundy) 40%, #9B3D4F 70%, #B85060 100%);
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}
.shape-1 {
    width: 600px; height: 600px;
    background: var(--blush);
    top: -200px; right: -100px;
    animation: float 8s ease-in-out infinite;
}
.shape-2 {
    width: 400px; height: 400px;
    background: var(--blush);
    bottom: -100px; left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}
.shape-3 {
    width: 200px; height: 200px;
    background: var(--white);
    top: 30%; left: 10%;
    animation: float 6s ease-in-out infinite;
}
.shape-4 {
    width: 120px; height: 120px;
    background: var(--blush);
    top: 20%; right: 20%;
    border-radius: 30%;
    animation: spin 20s linear infinite;
}
.shape-5 {
    width: 80px; height: 80px;
    background: var(--white);
    bottom: 30%; right: 10%;
    border-radius: 20%;
    animation: spin 15s linear infinite reverse;
}
.shape-6 {
    width: 300px; height: 300px;
    background: var(--blush);
    bottom: 10%; left: 30%;
    opacity: 0.04;
    animation: float 12s ease-in-out infinite;
}

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

.hero-badge {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blush);
    background: rgba(245, 213, 208, 0.15);
    border: 1px solid rgba(245, 213, 208, 0.3);
    padding: 0.5em 1.2em;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.05;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.8);
    max-width: 640px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-number {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    color: var(--white);
    letter-spacing: 0.04em;
}
.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

/* ── Services ── */
.services-section { background: var(--white); }
.services-section .section-label,
.services-section .section-title,
.services-section .section-desc { text-align: center; }

.service-card {
    background: var(--white);
    border: 1px solid var(--blush-mid);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--burgundy), var(--blush));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.service-card-icon {
    width: 56px;
    height: 56px;
    background: var(--blush-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}
.service-card:hover .service-card-icon {
    background: var(--burgundy);
    color: var(--white);
}
.service-card-title {
    font-size: 1.35rem;
    color: var(--burgundy);
    margin-bottom: 0.75rem;
}
.service-card-desc {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ── Why Us ── */
.why-us-section {
    background: var(--blush-light);
    position: relative;
    overflow: hidden;
}
.why-us-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--blush);
    border-radius: 50%;
    opacity: 0.3;
}
.why-us-images { position: relative; }
.why-us-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.why-us-img-main img { width: 100%; height: 100%; object-fit: cover; }
.why-us-img-accent {
    position: absolute;
    bottom: -30px;
    right: -20px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}
.why-us-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.why-us-badge {
    position: absolute;
    top: -20px;
    left: -10px;
    background: var(--burgundy);
    color: var(--white);
    padding: 0.75em 1.25em;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: var(--shadow-md);
}
.why-us-badge svg { flex-shrink: 0; }

.why-us-intro {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 2rem;
}
.why-us-features { display: flex;
    flex-direction: column;
    gap: 1.5rem; }
.why-us-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.why-us-feature-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}
.why-us-feature-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: 0.25rem;
}
.why-us-feature-desc {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.6;
}

/* ── Gallery ── */
.gallery-section { background: var(--white); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media (min-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 5/3.8;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(123, 45, 59, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    color: var(--white);
    letter-spacing: 0.05em;
}

/* ── Testimonials ── */
.testimonials-section {
    background: linear-gradient(135deg, var(--burgundy-deep) 0%, var(--burgundy) 100%);
    position: relative;
    overflow: hidden;
}
.testimonials-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(245, 213, 208, 0.06);
    border-radius: 50%;
}
.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    background: rgba(245, 213, 208, 0.05);
    border-radius: 50%;
}
.testimonials-section .section-label {
    background: rgba(245, 213, 208, 0.15);
    color: var(--blush);
}
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-desc { color: rgba(255,255,255,0.7); }

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}
@media (min-width: 768px) {
    .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}
.testimonial-card-accent {
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 3px;
    background: linear-gradient(90deg, var(--blush), rgba(245, 213, 208, 0.3));
    border-radius: 0 0 4px 4px;
}
.testimonial-card-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}
.testimonial-card-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.testimonial-card-author-avatar {
    width: 40px;
    height: 40px;
    background: rgba(245, 213, 208, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blush);
    flex-shrink: 0;
}
.testimonial-card-author-name {
    display: block;
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}
.testimonial-card-author-location {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

/* ── CTA ── */
.cta-section {
    background: linear-gradient(135deg, var(--blush) 0%, var(--blush-mid) 50%, #F0C4BC 100%);
    position: relative;
    overflow: hidden;
}
.cta-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.cta-shape {
    position: absolute;
    border-radius: 50%;
}
.cta-shape-1 {
    width: 300px; height: 300px;
    background: var(--burgundy);
    opacity: 0.06;
    top: -100px; left: -50px;
}
.cta-shape-2 {
    width: 200px; height: 200px;
    background: var(--burgundy);
    opacity: 0.05;
    bottom: -60px; right: 10%;
    border-radius: 30%;
    animation: spin 25s linear infinite;
}
.cta-shape-3 {
    width: 150px; height: 150px;
    background: var(--white);
    opacity: 0.2;
    top: 20%; right: 5%;
    animation: float 8s ease-in-out infinite;
}
.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--burgundy);
    margin-bottom: 1rem;
}
.cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-mid);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ── Contact ── */
.contact-section { background: var(--off-white); }
.contact-intro {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 2rem;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.contact-info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--blush-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
}
.contact-info-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 0.15em;
}
.contact-info-value {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}
.contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--blush-mid);
}
.contact-form-title {
    font-size: 1.75rem;
    color: var(--burgundy);
    margin-bottom: 0.5rem;
}
.contact-form-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.4em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75em 1em;
    border: 1.5px solid var(--blush-mid);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--burgundy);
    box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
}
.form-success.show { display: block; }
.form-success-icon {
    width: 64px;
    height: 64px;
    background: var(--blush-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--burgundy);
}
.form-success-title {
    font-size: 1.5rem;
    color: var(--burgundy);
    margin-bottom: 0.5rem;
}
.form-success-desc {
    font-size: 0.95rem;
    color: var(--text-mid);
}

/* ── Footer ── */
.footer {
    background: var(--burgundy-deep);
    color: rgba(255,255,255,0.7);
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.footer-brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    color: var(--white);
    letter-spacing: 0.04em;
}
.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}
.footer-heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--blush); }
.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.5em;
    font-size: 0.9rem;
}
.footer-contact a:hover { color: var(--blush); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
}
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* ── Back to Top ── */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--burgundy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 99;
}
.back-to-top.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--burgundy-deep);
    transform: translateY(-2px);
}

/* ── Animations ── */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}
.animate-fade-up:nth-child(1) { animation-delay: 0.1s; }
.animate-fade-up:nth-child(2) { animation-delay: 0.2s; }
.animate-fade-up:nth-child(3) { animation-delay: 0.3s; }
.animate-fade-up:nth-child(4) { animation-delay: 0.4s; }

/* ── Scroll Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (min-width: 1024px) {
    .nav-desktop { display: flex; }
}
@media (max-width: 639px) {
    .form-row { grid-template-columns: 1fr; }
    .hero { min-height: auto; padding: 8rem 0 6rem; }
    .why-us-img-accent { right: 0; bottom: -20px; }
    .why-us-badge { left: 0; }
}
