/* ==========================================================================
   MatchMeKar Pro - Premium Bengali Matrimonial Platform Stylesheet
   Theme: Traditional Bengali Wedding Culture (Crimson Red & Gold)
   Design Style: Breathtaking Luxury, Glassmorphism, Bottom Mobile Footer Nav
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,600&display=swap');

:root {
    /* Bengali Traditional Wedding Palette */
    --primary-color: #A31D1D;       /* Bengali Deep Crimson Red (Sindoor/Banarasi) */
    --primary-light: #C22727;
    --primary-dark: #7A1212;
    --secondary-color: #D4AF37;     /* Antique Wedding Gold (Alankar) */
    --secondary-light: #F3D058;
    --secondary-dark: #AA851C;
    --bg-white: #FFFDF9;            /* Traditional Ivory White / Off-white */
    --bg-accent: #FAF5EE;           /* Sandalwood / Gaye Holud Beige Cream */
    --text-main: #1C1917;           /* Charcoal with warm undertone */
    --text-muted: #57534E;
    --text-light: #A8A29E;
    --border-color: #EADDC9;        /* Soft golden sandalwood borders */
    
    /* Luxury Accents */
    --gold-gradient: linear-gradient(135deg, #F3D058 0%, #D4AF37 50%, #AA851C 100%);
    --crimson-gradient: linear-gradient(135deg, #C22727 0%, #A31D1D 50%, #7A1212 100%);
    --glass-bg: rgba(255, 253, 249, 0.8);
    --glass-border: rgba(234, 221, 201, 0.5);
    --shadow-soft: 0 10px 30px rgba(163, 29, 29, 0.03);
    --shadow-premium: 0 20px 40px rgba(163, 29, 29, 0.06);
    --shadow-gold: 0 10px 25px rgba(212, 175, 55, 0.25);
    --shadow-crimson: 0 10px 25px rgba(163, 29, 29, 0.2);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif; /* Royal Wedding look */
    --font-sans: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout & Animation */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode Tokens (Dashboard specific) */
[data-theme="dark"] {
    --bg-white: #0F172A;
    --bg-accent: #020617;
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --text-light: #64748B;
    --border-color: #1E293B;
    --glass-bg: rgba(15, 23, 42, 0.85);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    outline: none;
    border: none;
}

/* Alpana Border Graphic Decoration */
.alpana-divider {
    width: 100%;
    height: 35px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' fill='%23A31D1D'%3E%3Cpath d='M0 40h1200v-5c-20 0-35-10-50-20-15-10-30-15-50-15s-35 5-50 15c-15 10-30 20-50 20s-35-10-50-20c-15-10-30-15-50-15s-35 5-50 15c-15 10-30 20-50 20s-35-10-50-20c-15-10-30-15-50-15s-35 5-50 15c-15 10-30 20-50 20s-35-10-50-20c-15-10-30-15-50-15s-35 5-50 15c-15 10-30 20-50 20s-35-10-50-20c-15-10-30-15-50-15s-35 5-50 15C50 25 35 35 15 35 10 35 5 37 0 40z'/%3E%3Ccircle cx='100' cy='15' r='4'/%3E%3Ccircle cx='300' cy='15' r='4'/%3E%3Ccircle cx='500' cy='15' r='4'/%3E%3Ccircle cx='700' cy='15' r='4'/%3E%3Ccircle cx='900' cy='15' r='4'/%3E%3Ccircle cx='1100' cy='15' r='4'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: contain;
    margin: 1.5rem 0;
    opacity: 0.85;
}

/* ==========================================================================
   Global Animations
   ========================================================================== */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse-crimson {
    0% { box-shadow: 0 0 0 0 rgba(163, 29, 29, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(163, 29, 29, 0); }
    100% { box-shadow: 0 0 0 0 rgba(163, 29, 29, 0); }
}

@keyframes slide-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.float-element {
    animation: float 4s ease-in-out infinite;
}

/* ==========================================================================
   Header & Premium Navigation Bar
   ========================================================================== */
.premium-nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 8%;
    background: rgba(255, 253, 249, 0.88);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 30px rgba(163, 29, 29, 0.02);
    transition: var(--transition-smooth);
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-icon {
    font-size: 1.6rem;
    color: var(--primary-color);
    animation: float 5s ease-in-out infinite;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.logo-text span {
    color: var(--secondary-color);
}

/* New Landing page navigation options: Home, About, Profiles, Contact, Login */
.desktop-nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.desktop-nav-link {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    padding: 0.3rem 0;
}

.desktop-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-smooth);
}

.desktop-nav-link:hover {
    color: var(--primary-color);
}

.desktop-nav-link:hover::after, .desktop-nav-link.active::after {
    width: 100%;
}

.desktop-nav-link.active {
    color: var(--primary-color);
}

/* Header Buttons */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-premium-outline {
    padding: 0.65rem 1.4rem;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.88rem;
    background: transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-premium-outline:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-premium-solid {
    padding: 0.65rem 1.5rem;
    background: var(--crimson-gradient);
    color: white;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    box-shadow: var(--shadow-crimson);
    transition: var(--transition-smooth);
    animation: pulse-crimson 3s infinite;
}

.btn-premium-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(163, 29, 29, 0.3);
}

/* ==========================================================================
   MOBILE BOTTOM NAVIGATION STICKY FOOTER
   ========================================================================== */
.mobile-bottom-nav {
    display: none; /* Hidden by default on desktop */
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 65px;
        background: rgba(255, 253, 249, 0.94);
        backdrop-filter: blur(20px);
        border-top: 1px solid var(--border-color);
        z-index: 999;
        justify-content: space-around;
        align-items: center;
        box-shadow: 0 -4px 25px rgba(163, 29, 29, 0.08);
        padding: 0 0.5rem;
    }
    
    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.25rem;
        color: var(--text-muted);
        font-family: var(--font-sans);
        font-size: 0.72rem;
        font-weight: 600;
        cursor: pointer;
        flex-grow: 1;
        transition: var(--transition-smooth);
    }
    
    .mobile-nav-item i {
        font-size: 1.15rem;
    }
    
    .mobile-nav-item.active {
        color: var(--primary-color);
    }
    
    .mobile-nav-item.active i {
        transform: translateY(-2px);
    }
    
    /* Make body content clear mobile bottom footer height */
    body {
        padding-bottom: 70px;
    }
}

/* ==========================================================================
   Tab Page Layouts
   ========================================================================== */
.tab-page {
    display: none;
    margin-top: 4.8rem;
    min-height: calc(100vh - 4.8rem);
    animation: slide-in 0.6s ease-out;
}

.tab-page.active {
    display: block;
}

/* ==========================================================================
   HOMEPAGE (LANDING) SECTION
   ========================================================================== */

/* Hero Section */
.hero-section {
    padding: 5rem 8% 3rem 8%;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, rgba(163, 29, 29, 0.03) 50%, #FFFDF9 100%);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 85vh;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge-trust {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.2rem;
    background: rgba(163, 29, 29, 0.06);
    border: 1px solid rgba(163, 29, 29, 0.15);
    border-radius: var(--radius-full);
    color: var(--primary-color);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.8rem;
}

.badge-trust i {
    color: var(--secondary-color);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
    color: var(--primary-color);
}

.hero-title span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 520px;
    font-family: var(--font-sans);
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.btn-hero-primary {
    padding: 0.9rem 2rem;
    background: var(--crimson-gradient);
    color: white;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: var(--shadow-crimson);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(163, 29, 29, 0.35);
}

.btn-hero-secondary {
    padding: 0.9rem 2rem;
    border: 1.5px solid var(--secondary-color);
    color: var(--secondary-dark);
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.95rem;
    background: transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-hero-secondary:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-3px);
}

.hero-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.indicator-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-muted);
    font-family: var(--font-sans);
}

.indicator-item i {
    color: var(--primary-color);
}

/* Hero Right: Luxury Image Frame and Floating Glassmorphism Cards */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.luxury-frame-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 3px solid rgba(212, 175, 55, 0.3);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease;
}

.luxury-frame-wrapper:hover .hero-img {
    transform: scale(1.08);
}

/* Floating Elements */
.floating-card {
    position: absolute;
    background: rgba(255, 253, 249, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 0.75rem 1.2rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(163, 29, 29, 0.05);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 5s ease-in-out infinite;
    z-index: 10;
}

.floating-card.verified {
    top: 8%;
    left: -8%;
}

.floating-card.match-score {
    bottom: 10%;
    right: -8%;
}

.floating-card.success-story {
    top: 45%;
    left: -12%;
}

.card-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1rem;
}

.card-icon-circle.crimson {
    background: rgba(163, 29, 29, 0.15);
    color: var(--primary-color);
}

.card-icon-circle.green {
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
}

.floating-card-text span {
    display: block;
    font-size: 0.72rem;
    color: var(--text-light);
    font-weight: 600;
    font-family: var(--font-sans);
}

.floating-card-text p {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
    font-family: var(--font-sans);
}

/* ==========================================================================
   Floating Search Section
   ========================================================================== */
.search-bar-wrapper {
    position: relative;
    margin-top: -3.5rem;
    z-index: 10;
    padding: 0 8%;
}

.search-glass-card {
    background: rgba(255, 253, 249, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid var(--border-color);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
}

.search-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-title i {
    color: var(--secondary-color);
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)) 160px;
    gap: 1rem;
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.search-field label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-sans);
}

.search-field select, .search-field input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--bg-accent);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-size: 0.88rem;
    font-weight: 600;
    font-family: var(--font-sans);
    transition: var(--transition-smooth);
}

.search-field select:focus, .search-field input:focus {
    border-color: var(--primary-color);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(163, 29, 29, 0.08);
}

.btn-search {
    align-self: flex-end;
    padding: 0.85rem;
    background: var(--crimson-gradient);
    color: white;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: var(--shadow-crimson);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
    height: 48px;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(163, 29, 29, 0.25);
}

/* ==========================================================================
   NEW: ABOUT BENGALI WEDDING CULTURE SECTION
   ========================================================================== */
.about-section-wrapper {
    padding: 6rem 8%;
    background: var(--bg-white);
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.about-img-box {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 3px solid rgba(212, 175, 55, 0.2);
}

.about-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
}

.about-desc {
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
}

.ritual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

.ritual-card-item {
    background: var(--bg-accent);
    padding: 1.2rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
}

.ritual-card-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.4rem;
}

.ritual-card-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-family: var(--font-body);
}

/* ==========================================================================
   Featured Profiles Section
   ========================================================================== */
.section-wrapper {
    padding: 6rem 8%;
    background: var(--bg-white);
}

.section-wrapper.accent {
    background: var(--bg-accent);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3.5rem auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.section-tag {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--secondary-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary-color);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    font-family: var(--font-sans);
}

/* Profiles Grid */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}

.profile-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    position: relative;
}

.profile-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(163, 29, 29, 0.3);
}

.profile-img-box {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.profile-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.profile-card:hover .profile-card-img {
    transform: scale(1.06);
}

/* Badges inside card img */
.profile-img-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.card-badge-verified {
    background: rgba(16, 185, 129, 0.95);
    color: white;
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    font-family: var(--font-sans);
}

.card-badge-match {
    background: rgba(163, 29, 29, 0.95);
    color: var(--secondary-color);
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    font-family: var(--font-sans);
}

.profile-info {
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.profile-header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}

.profile-age-loc {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 700;
    font-family: var(--font-sans);
}

.profile-meta-list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.6rem 0;
    border-top: 1px dashed var(--border-color);
    border-bottom: 1px dashed var(--border-color);
}

.profile-meta-item {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
}

.profile-meta-item i {
    color: var(--primary-color);
    width: 14px;
}

.btn-card-connect {
    width: 100%;
    padding: 0.75rem;
    background: var(--crimson-gradient);
    color: white;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.btn-card-connect:hover {
    box-shadow: 0 5px 15px rgba(163, 29, 29, 0.25);
    background: var(--primary-light);
}

/* ==========================================================================
   AI Matchmaking Dashboard Showcase Section
   ========================================================================== */
.ai-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.ai-details-panel {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.ai-pill-tag {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(163, 29, 29, 0.08);
    border: 1px solid rgba(163, 29, 29, 0.2);
    border-radius: var(--radius-full);
    color: var(--primary-color);
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ai-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.ai-desc {
    color: var(--text-muted);
}

.ai-presets-box {
    margin-top: 1rem;
}

/* AI Interactive Dashboard Widget */
.ai-dashboard-widget {
    background: rgba(28, 25, 23, 0.96);
    color: white;
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    box-shadow: 0 30px 60px rgba(163, 29, 29, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.ai-widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.ai-widget-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #F8FAFC;
}

.ai-widget-title i {
    color: var(--secondary-color);
}

.ai-pulse-light {
    width: 10px;
    height: 10px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10B981;
}

.compatibility-visualizer {
    display: grid;
    grid-template-columns: 1fr 150px;
    gap: 2rem;
    align-items: center;
}

.compatibility-factors {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.factor-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.factor-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-sans);
}

.factor-label {
    color: #E2E8F0;
}

.factor-val {
    color: var(--secondary-color);
}

.factor-slider-bg {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
    position: relative;
}

.factor-slider-fill {
    height: 100%;
    background: var(--gold-gradient);
    border-radius: var(--radius-full);
    width: 80%; /* Controlled dynamically */
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.factor-slider-fill.crimson {
    background: var(--crimson-gradient);
}

/* Glowing Radial Dial */
.match-dial-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.radial-progress-svg {
    transform: rotate(-90deg);
}

.dial-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8px;
}

.dial-circle-fill {
    fill: none;
    stroke: url(#goldGradientSvg);
    stroke-width: 8px;
    stroke-linecap: round;
    stroke-dasharray: 282.6;
    stroke-dashoffset: 28.26; /* Dynamic */
    transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.match-dial-overlay {
    position: absolute;
    text-align: center;
}

.dial-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.dial-lbl {
    font-size: 0.65rem;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.2rem;
    font-family: var(--font-sans);
}

/* ==========================================================================
   NEW: BENGALI WEDDING CULTURE HIGHLIGHTS GRID
   ========================================================================== */
.culture-highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 8%;
    background: var(--bg-white);
}

.culture-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.culture-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
}

.culture-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.culture-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.culture-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(163, 29, 29, 0.08);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.culture-text h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.culture-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: var(--font-body);
}

/* ==========================================================================
   Success Stories Carousel Section
   ========================================================================== */
.success-stories-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
}

.stories-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 300%;
}

.story-slide {
    width: 33.333%;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: stretch;
}

.story-image-box {
    position: relative;
    min-height: 380px;
}

.story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-badge-timeline {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(163, 29, 29, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-md);
    color: var(--secondary-color);
    font-size: 0.82rem;
    font-weight: 700;
    font-family: var(--font-sans);
}

.story-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
}

.story-stars {
    color: var(--secondary-color);
    font-size: 1.1rem;
    display: flex;
    gap: 0.25rem;
}

.story-quote {
    font-style: italic;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.5;
}

.story-author {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.story-date {
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 700;
    font-family: var(--font-sans);
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    background: rgba(255, 253, 249, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(163, 29, 29, 0.06);
    z-index: 10;
    transition: var(--transition-smooth);
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: white;
}

.carousel-btn.prev {
    left: 1.5rem;
}

.carousel-btn.next {
    right: 1.5rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.8rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: var(--radius-full);
}

/* ==========================================================================
   Membership Pricing Section
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    position: relative;
    transition: var(--transition-smooth);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
}

.pricing-card.premium-gold {
    border: 2px solid var(--secondary-color);
    box-shadow: var(--shadow-gold);
    transform: scale(1.03);
}

.pricing-card.premium-gold:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.35);
}

.pricing-popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: #111827;
    padding: 0.35rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-sans);
}

.plan-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.plan-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-family: var(--font-sans);
}

.plan-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 600;
}

.plan-features-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    text-align: left;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.plan-feature-item {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-sans);
}

.plan-feature-item i {
    font-size: 0.95rem;
}

.plan-feature-item i.check {
    color: #10B981;
}

.plan-feature-item i.cross {
    color: #EF4444;
}

.btn-pricing {
    width: 100%;
    padding: 0.9rem;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-pricing.silver {
    background: var(--bg-accent);
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

.btn-pricing.silver:hover {
    background: var(--primary-color);
    color: white;
}

.btn-pricing.gold {
    background: var(--gold-gradient);
    color: #111827;
    box-shadow: var(--shadow-gold);
}

.btn-pricing.gold:hover {
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.4);
}

.btn-pricing.platinum {
    background: var(--crimson-gradient);
    color: white;
}

.btn-pricing.platinum:hover {
    box-shadow: 0 12px 25px rgba(163, 29, 29, 0.3);
}

/* ==========================================================================
   Franchise Opportunity Section
   ========================================================================== */
.franchise-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.franchise-content {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.franchise-title {
    font-size: 2.5rem;
    font-weight: 800;
}

.franchise-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.benefit-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(163, 29, 29, 0.08);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
}

.benefit-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Interactive Commission Calculator Widget */
.franchise-calculator-widget {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 2.2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.calc-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.8rem;
}

.calc-control {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.calc-control label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    font-family: var(--font-sans);
}

.calc-control label span {
    font-weight: 800;
    color: var(--primary-color);
}

.calc-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: var(--radius-full);
    background: #E2E8F0;
    outline: none;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--secondary-color);
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    transition: var(--transition-smooth);
}

.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calc-result-box {
    background: var(--bg-accent);
    border-radius: var(--radius-md);
    padding: 1.4rem;
    text-align: center;
    border: 1px solid var(--border-color);
}

.calc-result-lbl {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-sans);
}

.calc-result-val {
    font-size: 2.2rem;
    font-weight: 800;
    color: #10B981;
    margin-top: 0.2rem;
    font-family: var(--font-sans);
}

.btn-franchise-apply {
    width: 100%;
    padding: 0.95rem;
    background: var(--gold-gradient);
    color: #111827;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-franchise-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.4);
}

/* ==========================================================================
   Mobile App Showcase
   ========================================================================== */
.app-showcase-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

/* Phone Frame Mockup */
.smartphone-mockup-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.smartphone-frame {
    width: 270px;
    height: 560px;
    background: #020617;
    border: 8px solid #1E293B;
    border-radius: 36px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.smartphone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 18px;
    background: #1E293B;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 100;
}

.smartphone-screen {
    width: 100%;
    height: 100%;
    background: #FFFDF9;
    overflow-y: auto;
    position: relative;
    padding-top: 1.5rem;
}

/* Mobile Screen Views */
.mobile-view {
    display: none;
    padding: 1rem;
    animation: slide-in 0.3s ease-out;
}

.mobile-view.active {
    display: block;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #EADDC9;
    margin-bottom: 0.8rem;
}

.mobile-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
}

.mobile-chat-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.mobile-chat-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem;
    background: white;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.mobile-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.chat-details {
    flex-grow: 1;
}

.chat-name {
    font-size: 0.78rem;
    font-weight: 700;
}

.chat-msg {
    font-size: 0.68rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 130px;
}

.chat-time {
    font-size: 0.62rem;
    color: var(--text-light);
    align-self: flex-start;
}

.app-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.app-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.app-feature-card {
    padding: 1.2rem;
    border-radius: var(--radius-md);
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.app-feature-card.active, .app-feature-card:hover {
    border-color: var(--primary-color);
    background: rgba(163, 29, 29, 0.04);
}

.app-feature-card i {
    font-size: 1.35rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.app-feature-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    font-family: var(--font-sans);
}

.app-feature-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.download-badge-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.qr-code-wrapper {
    width: 90px;
    height: 90px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
    background: white;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #1C1917;
    color: white;
    padding: 0.55rem 1.1rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-sans);
}

.download-btn:hover {
    background: #44403C;
}

.download-btn i {
    font-size: 1.2rem;
}

/* ==========================================================================
   Statistics Counters
   ========================================================================== */
.stats-counter-bar {
    background: var(--crimson-gradient);
    color: white;
    padding: 3.5rem 8%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stats-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.stats-lbl {
    font-size: 0.95rem;
    color: #F8FAFC;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: var(--font-sans);
}

/* ==========================================================================
   Blog & Testimonials Section
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
}

.blog-img-box {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-info {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.blog-date {
    font-size: 0.72rem;
    color: var(--text-light);
    font-weight: 700;
    font-family: var(--font-sans);
}

.blog-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.4;
}

.blog-card-title:hover {
    color: var(--secondary-color);
}

.blog-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 253, 249, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.test-user-box {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.test-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.test-name h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
}

.test-name span {
    font-size: 0.75rem;
    color: var(--text-light);
    font-family: var(--font-sans);
}

/* ==========================================================================
   NEW: CONTACT SECTION
   ========================================================================== */
.contact-section-wrapper {
    padding: 6rem 8%;
    background: var(--bg-accent);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: stretch;
}

.contact-card-info {
    background: var(--crimson-gradient);
    color: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: var(--shadow-premium);
}

.contact-card-info h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-family: var(--font-sans);
}

.contact-detail-item i {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.contact-form-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form-grid.full {
    grid-template-columns: 1fr;
}

.contact-field-box {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-field-box label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-sans);
}

.contact-field-box input, .contact-field-box textarea {
    width: 100%;
    padding: 0.85rem 1.1rem;
    background: var(--bg-accent);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: var(--font-sans);
    color: var(--text-main);
    transition: var(--transition-smooth);
}

.contact-field-box input:focus, .contact-field-box textarea:focus {
    border-color: var(--primary-color);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(163, 29, 29, 0.08);
}

.btn-contact-submit {
    grid-column: 1 / -1;
    padding: 1rem;
    background: var(--crimson-gradient);
    color: white;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: var(--shadow-crimson);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.premium-footer {
    background: #110404; /* Breathtaking ultra dark red-charcoal */
    color: #FAF5EE;
    padding: 5rem 8% 2rem 8%;
    border-top: 3px solid var(--secondary-color);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 0.8fr) 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
}

.footer-logo-text span {
    color: var(--secondary-color);
}

.footer-tagline {
    font-size: 0.85rem;
    color: #CBBFB7;
}

.footer-social-icons {
    display: flex;
    gap: 0.8rem;
}

.social-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #CBBFB7;
    transition: var(--transition-smooth);
}

.social-icon-btn:hover {
    background: var(--secondary-color);
    color: #110404;
    transform: translateY(-2px);
}

.footer-col-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-sans);
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links-list a {
    font-size: 0.85rem;
    color: #CBBFB7;
    font-family: var(--font-sans);
}

.footer-links-list a:hover {
    color: var(--secondary-color);
    padding-left: 4px;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form {
    display: flex;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    font-family: var(--font-sans);
}

.newsletter-form input:focus {
    background: rgba(255, 255, 255, 0.08);
}

.btn-newsletter-submit {
    padding: 0.75rem 1.2rem;
    background: var(--gold-gradient);
    color: #020617;
    font-weight: 700;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #8C7F77;
}

/* Toast Message */
.toast-success {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #10B981;
    color: white;
    padding: 1rem 1.6rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    z-index: 1100;
    display: none;
    align-items: center;
    gap: 0.6rem;
    animation: slide-in 0.3s ease-out;
    font-weight: 600;
    font-family: var(--font-sans);
}

/* ==========================================================================
   SAAS ADMIN DASHBOARD VIEW
   ========================================================================== */
.dashboard-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: calc(100vh - 4.8rem);
}

/* Dashboard Sidebar */
.dash-sidebar {
    background: var(--bg-white);
    border-right: 1px solid var(--border-color);
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dash-sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.dash-menu-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dash-menu-item:hover, .dash-menu-item.active {
    background: rgba(163, 29, 29, 0.06);
    color: var(--primary-color);
}

.dash-menu-item i {
    font-size: 1.1rem;
    width: 20px;
}

/* Theme Toggle inside Sidebar */
.theme-toggle-box {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.theme-toggle-lbl {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    font-family: var(--font-sans);
}

.theme-toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.theme-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider-round {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #CBD5E1;
    transition: .4s;
    border-radius: 34px;
}

.slider-round:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider-round {
    background-color: var(--primary-color);
}

input:checked + .slider-round:before {
    transform: translateX(26px);
}

/* Dashboard Workspace */
.dash-workspace {
    background: var(--bg-accent);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.dash-header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dash-title-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
}

.dash-title-wrapper p {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-family: var(--font-sans);
}

/* Stats Metric Cards */
.dash-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.metric-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    box-shadow: var(--shadow-soft);
}

.metric-icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.metric-icon-box.crimson {
    background: rgba(163, 29, 29, 0.1);
    color: var(--primary-color);
}

.metric-icon-box.gold {
    background: rgba(212, 175, 55, 0.15);
    color: var(--secondary-dark);
}

.metric-icon-box.green {
    background: rgba(16, 185, 129, 0.12);
    color: #10B981;
}

.metric-icon-box.purple {
    background: rgba(139, 92, 246, 0.12);
    color: #8B5CF6;
}

.metric-info {
    display: flex;
    flex-direction: column;
}

.metric-lbl {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 700;
    font-family: var(--font-sans);
}

.metric-val {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
    margin: 0.1rem 0;
    font-family: var(--font-sans);
}

.metric-trend {
    font-size: 0.72rem;
    font-weight: 700;
    font-family: var(--font-sans);
}

.metric-trend.up {
    color: #10B981;
}

.metric-trend.up::before {
    content: "▲ ";
}

/* Dashboard Content Grid (Charts & Table) */
.dash-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.5rem;
}

.dash-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.6rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.dash-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.8rem;
}

.dash-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    font-family: var(--font-sans);
}

.chart-wrapper {
    position: relative;
    height: 220px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 1rem;
}

/* Custom CSS Chart Simulation */
.sim-chart-bar-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex-grow: 1;
}

.sim-chart-bar-fill {
    width: 24px;
    background: var(--crimson-gradient);
    border-radius: var(--radius-full) var(--radius-full) 0 0;
    min-height: 10px;
    transition: height 1s ease;
    position: relative;
}

.sim-chart-bar-col:nth-child(even) .sim-chart-bar-fill {
    background: var(--gold-gradient);
}

.sim-chart-bar-val {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
}

.sim-chart-bar-lbl {
    font-size: 0.72rem;
    color: var(--text-light);
    font-weight: 700;
    font-family: var(--font-sans);
}

/* Verification Queue Table */
.queue-table-wrapper {
    overflow-x: auto;
}

.queue-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.queue-table th {
    padding: 0.75rem 1rem;
    border-bottom: 2px solid var(--border-color);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-sans);
}

.queue-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.85rem;
    font-weight: 500;
    font-family: var(--font-sans);
}

.queue-table tr:hover {
    background: rgba(163, 29, 29, 0.02);
}

.badge-status {
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
}

.badge-status.pending {
    background: rgba(245, 158, 11, 0.12);
    color: #D97706;
}

.badge-status.approved {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}

.badge-status.rejected {
    background: rgba(239, 68, 68, 0.12);
    color: #DC2626;
}

.btn-table-action {
    padding: 0.3rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-table-action.approve {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
}

.btn-table-action.approve:hover {
    background: #059669;
    color: white;
}

.btn-table-action.reject {
    background: rgba(239, 68, 68, 0.15);
    color: #DC2626;
}

.btn-table-action.reject:hover {
    background: #DC2626;
    color: white;
}

/* ==========================================================================
   COMPONENT LIBRARY / DESIGN SYSTEM VIEW
   ========================================================================== */
.design-system-layout {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.ds-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2.5rem;
}

.ds-section-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary-color);
    border-left: 4px solid var(--secondary-color);
    padding-left: 0.8rem;
}

/* Swatches Grid */
.color-swatch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.color-swatch-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.color-swatch-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium);
}

.swatch-color-box {
    height: 100px;
}

.swatch-info {
    padding: 1rem;
}

.swatch-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
}

.swatch-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* UI Elements showcase */
.ds-elements-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

/* Typography Grid */
.typo-spec-table {
    width: 100%;
    border-collapse: collapse;
}

.typo-spec-table th {
    text-align: left;
    padding: 0.8rem;
    border-bottom: 2px solid var(--border-color);
    color: var(--text-muted);
}

.typo-spec-table td {
    padding: 1.2rem 0.8rem;
    border-bottom: 1px solid var(--border-color);
}

/* ==========================================================================
   WIREFRRAMES & USER FLOW VIEW
   ========================================================================== */
.wireframes-layout {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

/* Interactive Timeline Journey */
.journey-flow-timeline {
    position: relative;
    padding-left: 2.5rem;
    border-left: 2px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 1.5rem;
}

.journey-step-node {
    position: relative;
}

.journey-step-indicator {
    position: absolute;
    left: calc(-2.5rem - 9px);
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 3px solid var(--secondary-color);
    transition: var(--transition-smooth);
}

.journey-step-node.active .journey-step-indicator {
    background: var(--secondary-color);
    box-shadow: 0 0 10px var(--secondary-color);
}

.journey-step-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 1.6rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.journey-step-card:hover, .journey-step-node.active .journey-step-card {
    border-color: var(--primary-color);
    background: rgba(163, 29, 29, 0.02);
}

.journey-step-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.journey-step-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
}

/* Interactive Connection Modal & Login Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 25, 23, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    width: 100%;
    max-width: 440px;
    box-shadow: var(--shadow-premium);
    position: relative;
    animation: slide-in 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    border: 2px solid var(--border-color);
}

.modal-close-btn {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    font-size: 1.35rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition-smooth);
}

.modal-close-btn:hover {
    color: var(--text-main);
}

.modal-header-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
}

.modal-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-family: var(--font-sans);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-input-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.modal-input-field label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-sans);
}

.modal-input-field input, .modal-input-field textarea {
    padding: 0.75rem 1rem;
    background: var(--bg-accent);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-size: 0.88rem;
    font-family: var(--font-sans);
    transition: var(--transition-smooth);
}

.modal-input-field input:focus {
    border-color: var(--primary-color);
    background: var(--bg-white);
}

.btn-modal-submit {
    padding: 0.9rem;
    background: var(--crimson-gradient);
    color: white;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-crimson);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    transition: var(--transition-smooth);
}

.btn-modal-submit:hover {
    transform: translateY(-2px);
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 5rem 6% 3rem 6%;
        text-align: center;
        gap: 3rem;
    }
    
    .badge-trust {
        align-self: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-indicators {
        justify-content: center;
    }
    
    .floating-card.verified {
        left: 0;
    }
    
    .floating-card.match-score {
        right: 0;
    }
    
    .floating-card.success-story {
        left: -5%;
    }
    
    .search-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .btn-search {
        grid-column: 1 / -1;
    }
    
    .about-section-wrapper, .culture-highlights-grid, .ai-showcase-grid, .franchise-layout, .app-showcase-layout, .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .dashboard-layout {
        grid-template-columns: 1fr;
    }
    
    .dash-sidebar {
        display: none;
    }
    
    .dash-metrics-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .dash-content-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-newsletter {
        grid-column: 1 / -1;
    }
    
    .stats-counter-bar {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .premium-nav-container {
        padding: 0.8rem 1.2rem;
        position: sticky;
        top: 0;
    }
    
    .desktop-nav-menu, .nav-actions {
        display: none; /* Hide header menus, bottom sticky bar handles this */
    }
    
    .tab-page {
        margin-top: 0;
        min-height: auto;
    }
    
    .search-grid {
        grid-template-columns: 1fr;
    }
    
    .story-slide {
        grid-template-columns: 1fr;
    }
    
    .story-image-box {
        min-height: 250px;
    }
    
    .stats-counter-bar {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .contact-form-card, .contact-card-info {
        padding: 2rem 1.2rem;
    }
    
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
    
    .about-title, .culture-title, .ai-title, .franchise-title, .section-title {
        font-size: 2rem;
    }
}
