/* ???????????????????????????????????????????????????????????
   VivahMilan — Main Stylesheet
   Art direction: Romantic, elegant, modern matrimonial brand
   Palette: Deep crimson primary + soft warm neutrals
   Typography: Playfair Display (display) + DM Sans (body)
??????????????????????????????????????????????????????????? */

/* ?? Design Tokens ???????????????????????????????????????? */
:root {
    /* Brand Colors */
    --vm-primary: #c0392b;
    --vm-primary-dark: #96281b;
    --vm-primary-light: #e74c3c;
    --vm-primary-subtle: #fdf0ef;
    --vm-accent: #e91e8c;
    --vm-gold: #d4a017;
    /* Surfaces */
    --vm-bg: #fdfcfb;
    --vm-surface: #ffffff;
    --vm-surface-2: #faf9f7;
    --vm-surface-3: #f5f3f0;
    --vm-border: rgba(0,0,0,0.08);
    --vm-divider: #e8e4e0;
    /* Text */
    --vm-text: #1e1b18;
    --vm-text-muted: #6b6460;
    --vm-text-faint: #b0aaa5;
    /* Type Scale */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
    --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
    --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
    --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    /* Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.625rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(30,10,5,0.06), 0 1px 2px rgba(30,10,5,0.04);
    --shadow-md: 0 4px 16px rgba(30,10,5,0.08), 0 2px 6px rgba(30,10,5,0.05);
    --shadow-lg: 0 12px 40px rgba(30,10,5,0.12), 0 4px 12px rgba(30,10,5,0.06);
    --shadow-xl: 0 24px 64px rgba(30,10,5,0.16);
    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: 180ms var(--ease-out);
    /* Fonts */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    /* Layout */
    --content-default: 1200px;
    --navbar-height: 70px;
}

/* ?? Base Reset ??????????????????????????????????????????? */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-padding-top: var(--navbar-height);
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--vm-text);
    background: var(--vm-bg);
    line-height: 1.65;
}

img, video {
    display: block;
    max-width: 100%;
    height: auto;
}

ul[role="list"], ol[role="list"] {
    list-style: none;
}

input, button, textarea, select {
    font: inherit;
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
    line-height: 1.2;
}

p {
    text-wrap: pretty;
}

button {
    cursor: pointer;
}

table {
    border-collapse: collapse;
    width: 100%;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-4);
    background: var(--vm-primary);
    color: #fff;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-md);
    z-index: 9999;
    transition: top var(--transition);
}

    .skip-link:focus {
        top: var(--space-2);
    }

::selection {
    background: rgba(192,57,43,0.15);
    color: var(--vm-text);
}

:focus-visible {
    outline: 2px solid var(--vm-primary);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ?? Utility ?????????????????????????????????????????????? */
.py-section {
    padding-block: clamp(var(--space-12), 6vw, var(--space-20));
}

.vm-bg-soft {
    background: var(--vm-surface-2);
}

/* ?? Buttons ?????????????????????????????????????????????? */
.btn-vm-primary {
    background: var(--vm-primary);
    color: #fff;
    border: 2px solid var(--vm-primary);
    padding: 0.5rem 1.5rem;
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

    .btn-vm-primary:hover {
        background: var(--vm-primary-dark);
        border-color: var(--vm-primary-dark);
        color: #fff;
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(192,57,43,0.35);
    }

    .btn-vm-primary:active {
        transform: translateY(0);
    }

.btn-vm-outline {
    background: transparent;
    color: var(--vm-primary);
    border: 2px solid var(--vm-primary);
    padding: 0.5rem 1.5rem;
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

    .btn-vm-outline:hover {
        background: var(--vm-primary);
        color: #fff;
        transform: translateY(-1px);
        box-shadow: 0 4px 16px rgba(192,57,43,0.25);
    }

.btn-vm-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.6);
    padding: 0.5rem 1.5rem;
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

    .btn-vm-outline-white:hover {
        background: rgba(255,255,255,0.15);
        border-color: #fff;
        color: #fff;
    }

.btn-xs {
    padding: 0.2rem 0.65rem;
    font-size: 0.75rem;
}

/* ?? Navbar ??????????????????????????????????????????????? */
.vm-navbar {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--vm-border);
    height: var(--navbar-height);
    transition: box-shadow var(--transition);
    z-index: 1030;
}

    .vm-navbar.scrolled {
        box-shadow: var(--shadow-md);
    }

.vm-brand {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    text-decoration: none;
}

.brand-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--vm-text);
    letter-spacing: -0.02em;
}

.brand-accent {
    color: var(--vm-primary);
}

.vm-navbar .nav-link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--vm-text-muted);
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-full);
    transition: color var(--transition), background var(--transition);
}

    .vm-navbar .nav-link:hover,
    .vm-navbar .nav-link.active {
        color: var(--vm-primary);
        background: var(--vm-primary-subtle);
    }

/* ?? Hero Section ????????????????????????????????????????? */
.vm-hero {
    position: relative;
    min-height: calc(100vh - var(--navbar-height));
    background: linear-gradient(135deg, rgba(30,10,5,0.82) 0%, rgba(96,28,18,0.75) 50%, rgba(20,10,8,0.85) 100%), url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1600&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(192,57,43,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.min-vh-hero {
    min-height: calc(100vh - var(--navbar-height));
    padding-block: var(--space-16);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: var(--text-xs);
    font-weight: 600;
    padding: var(--space-1) var(--space-4);
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-4);
}

.hero-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: var(--space-4);
}

.hero-title-accent {
    color: transparent;
    background: linear-gradient(135deg, #ff8a80, #ffcc02, #ff8a80);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmerText 3s linear infinite;
}

@keyframes shimmerText {
    to {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: var(--text-base);
    color: rgba(255,255,255,0.78);
    max-width: 500px;
    margin-bottom: var(--space-6);
    line-height: 1.7;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-3) var(--space-6);
    backdrop-filter: blur(6px);
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.hero-stat-label {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.65);
    margin-top: 2px;
}

.hero-search-card {
    background: rgba(255,255,255,0.97);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(20px);
}

    .hero-search-card .form-control,
    .hero-search-card .form-select {
        border-color: var(--vm-border);
        background: var(--vm-surface-2);
        transition: border-color var(--transition), box-shadow var(--transition);
    }

        .hero-search-card .form-control:focus,
        .hero-search-card .form-select:focus {
            border-color: var(--vm-primary);
            box-shadow: 0 0 0 3px rgba(192,57,43,0.12);
        }

/* ?? Section Headings ????????????????????????????????????? */
.section-badge {
    display: inline-block;
    background: var(--vm-primary-subtle);
    color: var(--vm-primary);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-2);
}

.section-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--vm-text);
    margin-bottom: var(--space-2);
}

.section-subtitle {
    font-size: var(--text-base);
    color: var(--vm-text-muted);
    max-width: 520px;
    margin-inline: auto;
}

/* ?? How It Works Cards ??????????????????????????????????? */
.how-card {
    background: var(--vm-surface);
    border: 1px solid var(--vm-border);
    border-radius: var(--radius-xl);
    padding: var(--space-8) var(--space-6);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}

    .how-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

.how-num {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(192,57,43,0.06);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.how-icon {
    font-size: 2.5rem;
    line-height: 1;
}

/* ?? Profile Cards ???????????????????????????????????????? */
.profile-card {
    background: var(--vm-surface);
    border: 1px solid var(--vm-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

    .profile-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

.profile-card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.profile-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease-out);
}

.profile-card:hover .profile-card-img {
    transform: scale(1.05);
}

.profile-card-badge {
    position: absolute;
    top: var(--space-3);
    left: var(--space-3);
    background: rgba(40,180,80,0.92);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(4px);
}

.profile-card-premium {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    background: rgba(212,160,23,0.92);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.profile-card-body {
    padding: var(--space-4);
}

.profile-card-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--vm-text);
    margin-bottom: 2px;
}

.profile-card-age {
    font-size: var(--text-xs);
    color: var(--vm-text-muted);
    margin-bottom: var(--space-3);
}

.profile-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-1);
}

.tag {
    font-size: 11px;
    background: var(--vm-surface-3);
    color: var(--vm-text-muted);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    border: 1px solid var(--vm-border);
}

/* ?? Profile List Card (Browse Page) ????????????????????? */
.profile-list-card {
    background: var(--vm-surface);
    border: 1px solid var(--vm-border);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    transition: box-shadow var(--transition), transform var(--transition);
}

    .profile-list-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-2px);
    }

.profile-list-img {
    width: 90px;
    height: 110px;
    object-fit: cover;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

/* ?? Profile Detail ??????????????????????????????????????? */
.profile-detail-photo-card {
    background: var(--vm-surface);
    border: 1px solid var(--vm-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.profile-detail-photo {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.4s var(--ease-out);
}

    .profile-detail-photo:hover {
        transform: scale(1.03);
    }

.profile-gallery-card {
    background: var(--vm-surface);
    border: 1px solid var(--vm-border);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
}

.gallery-thumb {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: transform var(--transition), opacity var(--transition);
}

    .gallery-thumb:hover {
        transform: scale(1.05);
        opacity: 0.9;
    }

.vm-detail-tabs {
    border-bottom: 2px solid var(--vm-divider);
}

    .vm-detail-tabs .nav-link {
        color: var(--vm-text-muted);
        font-weight: 500;
        font-size: var(--text-sm);
        border: none;
        border-bottom: 2px solid transparent;
        margin-bottom: -2px;
        padding: var(--space-3) var(--space-4);
        transition: color var(--transition), border-color var(--transition);
    }

        .vm-detail-tabs .nav-link.active {
            color: var(--vm-primary);
            border-bottom-color: var(--vm-primary);
            background: transparent;
        }

        .vm-detail-tabs .nav-link:hover {
            color: var(--vm-primary);
        }

.vm-tab-content {
    padding-top: var(--space-4);
}

.detail-section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--vm-primary);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-2);
    border-bottom: 1px solid var(--vm-divider);
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: var(--space-3);
    background: var(--vm-surface-2);
    border-radius: var(--radius-md);
    border: 1px solid var(--vm-border);
}

.detail-label {
    font-size: var(--text-xs);
    color: var(--vm-text-faint);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.detail-value {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--vm-text);
}

.lifestyle-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    font-weight: 600;
    text-align: center;
    min-height: 90px;
}

/* ?? Pricing Cards ???????????????????????????????????????? */
.pricing-card {
    background: var(--vm-surface);
    border: 1px solid var(--vm-border);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}

    .pricing-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

.pricing-card-full {
    background: var(--vm-surface);
    border: 2px solid var(--vm-border);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

    .pricing-card-full:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

.pricing-popular {
    border-color: var(--vm-primary) !important;
    box-shadow: 0 0 0 1px var(--vm-primary), var(--shadow-lg) !important;
}

.popular-badge {
    background: var(--vm-primary);
    color: #fff;
    text-align: center;
    padding: var(--space-1) var(--space-4);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.pricing-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-2);
}

.pricing-icon-lg {
    font-size: 3rem;
}

.pricing-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
}

.pricing-price {
    margin-block: var(--space-2);
}

.price-currency {
    font-size: 1.1rem;
    font-weight: 600;
    vertical-align: top;
    margin-top: 6px;
    display: inline-block;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.price-period {
    font-size: var(--text-xs);
    color: var(--vm-text-muted);
    margin-left: 2px;
}

.price-free {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--vm-text-muted);
}

.price-currency-lg {
    font-size: 1.2rem;
    font-weight: 600;
    vertical-align: top;
    margin-top: 8px;
    display: inline-block;
}

.price-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
}

.price-period-lg {
    font-size: var(--text-sm);
    color: var(--vm-text-muted);
}

.pricing-amount {
    display: inline-block;
}

.pricing-features, .pricing-features-full {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

    .pricing-features li, .pricing-features-full li {
        font-size: var(--text-sm);
        color: var(--vm-text-muted);
        display: flex;
        align-items: flex-start;
        gap: var(--space-2);
    }

/* Billing Toggle */
.billing-opt {
    cursor: pointer;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    transition: background var(--transition), color var(--transition);
}

    .billing-opt.active {
        background: var(--vm-primary);
        color: #fff;
    }

/* Compare Table */
.vm-compare-table th {
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
    font-weight: 700;
    background: var(--vm-surface-2);
    border-bottom: 2px solid var(--vm-divider);
}

.vm-compare-table td {
    padding: var(--space-3) var(--space-4);
    border-bottom: 1px solid var(--vm-divider);
    font-size: var(--text-sm);
    vertical-align: middle;
}

.vm-compare-table tbody tr:hover {
    background: var(--vm-primary-subtle);
}

/* ?? Success Story Cards ??????????????????????????????????? */
.success-card {
    background: var(--vm-surface);
    border: 1px solid var(--vm-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

    .success-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

.success-img-wrap {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.success-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.success-card:hover .success-img {
    transform: scale(1.07);
}

.success-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-4);
}

.success-names {
    color: #fff;
    font-weight: 700;
    font-size: var(--text-sm);
}

.success-location {
    color: rgba(255,255,255,0.75);
    font-size: var(--text-xs);
    margin-top: 2px;
}

.success-body {
    padding: var(--space-4);
}

/* Success Stories Page */
.success-story-card {
    background: var(--vm-surface);
    border: 1px solid var(--vm-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

    .success-story-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

.success-story-img-wrap {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.success-story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.success-story-card:hover .success-story-img {
    transform: scale(1.06);
}

.story-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(192,57,43,0.3), transparent);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: var(--space-4);
}

.success-story-body {
    padding: var(--space-5);
}

.success-counter-card {
    background: var(--vm-surface);
    border: 1px solid var(--vm-border);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    transition: transform var(--transition);
}

    .success-counter-card:hover {
        transform: translateY(-4px);
    }

/* ?? Testimonials ????????????????????????????????????????? */
.testimonial-card {
    background: var(--vm-surface);
    border: 1px solid var(--vm-border);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}

    .testimonial-card:hover {
        box-shadow: var(--shadow-md);
    }

.testimonial-text {
    font-size: var(--text-sm);
    color: var(--vm-text-muted);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 0;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 2px solid var(--vm-primary-subtle);
}

/* Carousel Controls */
.vm-carousel-btn {
    width: 44px;
    height: 44px;
    background: var(--vm-surface) !important;
    border: 1px solid var(--vm-border) !important;
    border-radius: var(--radius-full) !important;
    color: var(--vm-text) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: static !important;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

    .vm-carousel-btn:hover {
        background: var(--vm-primary) !important;
        color: #fff !important;
        border-color: var(--vm-primary) !important;
    }

#testimonialCarousel {
    padding-bottom: var(--space-8);
}

.carousel-control-prev.vm-carousel-btn,
.carousel-control-next.vm-carousel-btn {
    position: absolute !important;
    bottom: 0;
}

.carousel-control-prev.vm-carousel-btn {
    left: calc(50% - 52px);
    top: auto;
}

.carousel-control-next.vm-carousel-btn {
    right: calc(50% - 52px);
    top: auto;
}

/* ?? FAQ Accordion ???????????????????????????????????????? */
.vm-faq-item {
    border: 1px solid var(--vm-border) !important;
    border-radius: var(--radius-lg) !important;
    margin-bottom: var(--space-2);
    overflow: hidden;
}

    .vm-faq-item .accordion-button {
        font-size: var(--text-sm);
        font-weight: 600;
        color: var(--vm-text);
        background: var(--vm-surface);
        box-shadow: none !important;
    }

        .vm-faq-item .accordion-button:not(.collapsed) {
            color: var(--vm-primary);
            background: var(--vm-primary-subtle);
        }

        .vm-faq-item .accordion-button::after {
            filter: none;
        }

    .vm-faq-item .accordion-body {
        font-size: var(--text-sm);
        color: var(--vm-text-muted);
        line-height: 1.7;
        background: var(--vm-surface);
    }

/* ?? CTA Section ?????????????????????????????????????????? */
.vm-cta-section {
    background: linear-gradient(135deg, var(--vm-primary) 0%, #8b0000 100%);
    padding: clamp(var(--space-12), 6vw, var(--space-20));
}

/* ?? Page Header ?????????????????????????????????????????? */
.vm-page-header {
    background: linear-gradient(135deg, rgba(30,5,5,0.88), rgba(100,20,15,0.82)), url('https://images.unsplash.com/photo-1606216794074-735e91aa2c92?w=1600&q=80') center/cover no-repeat;
    padding: clamp(var(--space-10), 5vw, var(--space-16));
}

    .vm-page-header .breadcrumb-item + .breadcrumb-item::before {
        color: rgba(255,255,255,0.4);
    }

/* ?? Auth Pages ??????????????????????????????????????????? */
.vm-auth-section {
    min-height: calc(100vh - var(--navbar-height));
    background: linear-gradient(135deg, rgba(30,5,5,0.9), rgba(80,15,10,0.85)), url('https://images.unsplash.com/photo-1583939003579-730e3918a45a?w=1600&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-block: var(--space-12);
}

.auth-card {
    background: var(--vm-surface);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-xl);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-align: center;
}

    .auth-divider::before,
    .auth-divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--vm-divider);
    }

.demo-creds-box {
    background: var(--vm-surface-2);
    border: 1px dashed var(--vm-border);
    border-radius: var(--radius-md);
    padding: var(--space-3);
}

/* Register Steps */
.register-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: var(--space-6);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--vm-text-faint);
    white-space: nowrap;
}

    .step span {
        width: 28px;
        height: 28px;
        border-radius: var(--radius-full);
        background: var(--vm-surface-3);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 12px;
        transition: all var(--transition);
    }

    .step.active {
        color: var(--vm-primary);
    }

        .step.active span {
            background: var(--vm-primary);
            color: #fff;
        }

.step-line {
    flex: 1;
    height: 2px;
    background: var(--vm-divider);
    min-width: 24px;
    max-width: 40px;
}

.register-section-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--vm-text);
    padding-bottom: var(--space-2);
    border-bottom: 2px solid var(--vm-primary-subtle);
    margin-bottom: var(--space-3);
}

/* ?? Filter Sidebar ??????????????????????????????????????? */
.filter-card {
    background: var(--vm-surface);
    border: 1px solid var(--vm-border);
    border-radius: var(--radius-xl);
    padding: var(--space-4);
    box-shadow: var(--shadow-sm);
}

.filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-3);
    border-bottom: 1px solid var(--vm-divider);
}

.filter-group {
    margin-bottom: var(--space-4);
}

.filter-label {
    display: block;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--vm-text-faint);
    margin-bottom: var(--space-2);
}

/* ?? Empty State ?????????????????????????????????????????? */
.empty-state {
    text-align: center;
    padding: var(--space-16) var(--space-8);
    color: var(--vm-text-muted);
}

/* ?? Pagination ??????????????????????????????????????????? */
.vm-pagination .page-link {
    border-radius: var(--radius-full) !important;
    margin: 0 2px;
    color: var(--vm-text-muted);
    border: 1px solid var(--vm-border);
    transition: all var(--transition);
    padding: 0.35rem 0.75rem;
    font-size: var(--text-sm);
}

.vm-pagination .page-item.active .page-link {
    background: var(--vm-primary);
    border-color: var(--vm-primary);
    color: #fff;
}

.vm-pagination .page-link:hover {
    background: var(--vm-primary-subtle);
    color: var(--vm-primary);
    border-color: var(--vm-primary);
}

/* ?? About Page ??????????????????????????????????????????? */
.about-stat-card {
    background: var(--vm-surface-2);
    border: 1px solid var(--vm-border);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    text-align: center;
}

.value-card {
    background: var(--vm-surface);
    border: 1px solid var(--vm-border);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    transition: transform var(--transition), box-shadow var(--transition);
}

    .value-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

.value-icon {
    font-size: 2.5rem;
}

.team-card {
    background: var(--vm-surface);
    border: 1px solid var(--vm-border);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    transition: box-shadow var(--transition), transform var(--transition);
}

    .team-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-4px);
    }

.team-photo {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 3px solid var(--vm-primary-subtle);
    margin-inline: auto;
}

/* ?? Contact Page ????????????????????????????????????????? */
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    background: var(--vm-surface);
    border: 1px solid var(--vm-border);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    transition: box-shadow var(--transition);
}

    .contact-info-card:hover {
        box-shadow: var(--shadow-sm);
    }

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-social-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 1px solid var(--vm-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--vm-text-muted);
    text-decoration: none;
    transition: all var(--transition);
}

    .contact-social-btn:hover {
        background: var(--vm-primary);
        color: #fff;
        border-color: var(--vm-primary);
        transform: translateY(-2px);
    }

.contact-form-card {
    background: var(--vm-surface);
    border: 1px solid var(--vm-border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
}

.map-placeholder {
    border: 1px solid var(--vm-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

/* ?? Footer ??????????????????????????????????????????????? */
.vm-footer {
    background: #1a0a08;
}

.footer-newsletter {
    background: linear-gradient(135deg, var(--vm-primary), #8b0000);
    padding: var(--space-8) 0;
}

.footer-main {
    padding: var(--space-12) 0;
}

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: var(--space-4) 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-4);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

    .footer-links a {
        color: rgba(255,255,255,0.55);
        text-decoration: none;
        font-size: var(--text-sm);
        transition: color var(--transition), padding-left var(--transition);
    }

        .footer-links a:hover {
            color: #fff;
            padding-left: var(--space-2);
        }

.footer-social {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition);
}

    .footer-social:hover {
        background: var(--vm-primary);
        border-color: var(--vm-primary);
        color: #fff;
        transform: translateY(-2px);
    }

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

    .footer-contact-list li {
        display: flex;
        gap: var(--space-3);
        align-items: flex-start;
        font-size: var(--text-sm);
        color: rgba(255,255,255,0.55);
    }

        .footer-contact-list li i {
            flex-shrink: 0;
            margin-top: 2px;
        }

    .footer-contact-list a {
        color: rgba(255,255,255,0.55);
        text-decoration: none;
        transition: color var(--transition);
    }

        .footer-contact-list a:hover {
            color: #fff;
        }

/* ?? Back to Top ??????????????????????????????????????????? */
.btn-back-top {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--vm-primary);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(16px);
    transition: all var(--transition);
    z-index: 999;
    pointer-events: none;
}

    .btn-back-top.visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .btn-back-top:hover {
        background: var(--vm-primary-dark);
        transform: translateY(-3px);
    }

/* ?? Form Controls Global ????????????????????????????????? */
.form-control, .form-select {
    border-color: var(--vm-border);
    background: var(--vm-surface);
    color: var(--vm-text);
    font-size: var(--text-sm);
    transition: border-color var(--transition), box-shadow var(--transition);
}

    .form-control:focus, .form-select:focus {
        border-color: var(--vm-primary);
        box-shadow: 0 0 0 3px rgba(192,57,43,0.12);
        background: var(--vm-surface);
        color: var(--vm-text);
    }

.form-label {
    font-size: var(--text-sm);
    font-weight: 500;
}

/* ?? Dropdown ????????????????????????????????????????????? */
.dropdown-menu {
    border: 1px solid var(--vm-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-2);
}

.dropdown-item {
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    padding: var(--space-2) var(--space-3);
    transition: background var(--transition), color var(--transition);
}

    .dropdown-item:hover {
        background: var(--vm-primary-subtle);
        color: var(--vm-primary);
    }

/* ?? Responsive ??????????????????????????????????????????? */
@media (max-width: 768px) {
    .hero-search-card {
        padding: var(--space-5);
    }

    .auth-card {
        padding: var(--space-5);
    }

    .vm-page-header {
        padding: var(--space-8) var(--space-4);
    }

    .register-steps {
        gap: var(--space-1);
    }

    .step {
        font-size: 10px;
    }

    .step-line {
        min-width: 16px;
        max-width: 24px;
    }

    .step span {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }

    .hero-stat {
        padding: var(--space-2) var(--space-4);
    }

    .profile-card-img-wrap {
        height: 220px;
    }

    .carousel-control-prev.vm-carousel-btn {
        left: calc(50% - 48px);
    }

    .carousel-control-next.vm-carousel-btn {
        right: calc(50% - 48px);
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: clamp(1.8rem, 7vw, 3rem);
    }

    .section-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }

    .btn-vm-primary, .btn-vm-outline {
        padding: 0.45rem 1.2rem;
    }

    .profile-list-img {
        width: 75px;
        height: 90px;
    }
}
