/* Apna Hamsafar Matrimonial - Premium Royal Design System */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Premium Color Palette matching screenshots */
    --primary: #9b0c3f;          /* Royal Crimson/Maroon */
    --primary-light: #c8104d;    /* Rose Red */
    --primary-dark: #6e0d26;     /* Deep Wine Red */
    --secondary: #dfb76c;        /* Royal Elegant Gold */
    --secondary-hover: #d4af37;  /* Metallic Gold Accent */
    
    /* Dark Theme Layers */
    --dark-blue: #020f26;        /* Deep Navy Blue Navbar & Footer */
    --dark-blue-light: #061b3d;  /* Intermediate Navy Blue */
    --dark-bg: #090808;          /* Charcoal Black */
    --card-dark: #121010;        /* Dark Mahogany Cards */
    
    /* Light Theme Layers */
    --light-bg: #fefcf8;         /* Warm Ivory/Cream Page Background */
    --card-light: #ffffff;       /* Pure White Cards */
    --text-dark: #1e2530;        /* Charcoal Dark Text for Light Theme */
    --text-muted-dark: #64748b;  /* Slate Muted Text */
    
    /* Global Text Colors */
    --text-light: #fffdfa;       /* Warm White Text for Dark Theme */
    --text-muted: #d5b991;       /* Antique Muted Gold Text */
    --border-color: rgba(223, 183, 108, 0.25);
    --shadow-gold: rgba(223, 183, 108, 0.15);
    --shadow-light: rgba(2, 15, 38, 0.08);
    --shadow-dark: rgba(0, 0, 0, 0.5);
    --glass-bg: rgba(6, 27, 61, 0.85);
    
    /* Typography & Layout spacing */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

body.dark-theme-active {
    background-color: var(--dark-bg);
    color: var(--text-light);
}

/* Scrollbar styles */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--dark-blue);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border: 2px solid var(--dark-blue);
    border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.5px;
}

p {
    font-size: 1rem;
    color: var(--text-muted-dark);
}

.dark-section p {
    color: rgba(255, 253, 250, 0.8);
}

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

/* Container Utility */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gold {
    color: var(--secondary) !important;
}

.text-center {
    text-align: center;
}

/* Primary/Secondary Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 10px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    border: 1px solid var(--primary);
    box-shadow: 0 4px 15px rgba(155, 12, 63, 0.35);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: 0.6s;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(155, 12, 63, 0.5);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary);
    border: 1px solid var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-gold);
}

/* Top Utility Header Bar */
.top-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    color: #020f26;
    font-size: 0.8rem;
    padding: 12px 0;
    position: static;
    width: 100%;
    z-index: 1001;
}

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

/* Header Contact Info (in center) */
.header-contact {
    display: flex;
    gap: 30px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    background-color: #ffeef3;
    color: var(--primary);
    width: 38px;
    height: 38px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.7rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    line-height: 1.2;
}

.contact-value {
    font-size: 0.88rem;
    color: #020f26;
    font-weight: 700;
    line-height: 1.3;
}

.top-header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Switcher Styling */
.lang-selector {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f1f5f9;
    border: 1px solid rgba(223, 183, 108, 0.3);
    padding: 3px;
    border-radius: 30px;
}

.lang-btn {
    background: none;
    border: none;
    color: #64748b;
    padding: 5px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn.active {
    background-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(155, 12, 63, 0.25);
}

.top-header-auth {
    display: flex;
    gap: 12px;
}

.top-header-auth a {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.top-header-auth .btn-login {
    background: transparent;
    border: 1px solid var(--primary);
    padding: 8px 20px;
    border-radius: 4px;
    color: var(--primary);
}

.top-header-auth .btn-login:hover {
    background-color: var(--primary);
    color: #ffffff;
}

.top-header-auth .btn-register-free {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    padding: 8px 20px;
    border-radius: 4px;
    color: #ffffff;
}

.top-header-auth .btn-register-free:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
}

/* Main Navigation Bar (Under Top Header) */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--dark-blue);
    border-bottom: 2px solid var(--secondary);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 54px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo img {
    height: 120px;
    width: auto;
    object-fit: contain;
    border-radius: 0;
    border: none;
    background-color: transparent;
    padding: 0;
}

.logo-text {
    display: none; /* Removed logo text from navbar/header markup to rely on logo image */
}

.mobile-logo {
    display: none; /* Only visible on mobile */
}

/* Footer-specific logo overrides */
footer .logo img {
    height: 58px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    background-color: #fff;
    padding: 1px;
}

footer .logo-text {
    display: flex;
    flex-direction: column;
}

footer .logo-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
    line-height: 1.1;
}

footer .logo-subtitle {
    font-size: 0.62rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
    margin: 0 auto;
}

.nav-item a {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 253, 250, 0.85);
    padding: 8px 6px;
    position: relative;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.nav-item a:hover {
    color: var(--secondary);
}

.nav-item a:hover::after,
.nav-item.active a::after {
    width: 100%;
}

.nav-item.active a {
    color: var(--secondary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
}

.nav-toggle span {
    display: block;
    width: 30px;
    height: 2.5px;
    background-color: var(--text-light);
    transition: var(--transition);
    border-radius: 2px;
}

/* ─── HERO SECTION ─────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #fef0f4;
    color: var(--text-dark);
    border-bottom: 2px solid var(--secondary);
}

/* Unused overlay — kept for compatibility, hidden */
.hero-bg-overlay {
    display: none;
}

/* Text content — left half, overlaid on the natural light area of hero.png */
.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text-content {
    max-width: 46%;
    padding: 80px 0 80px;
    animation: fadeInUp 0.8s ease-out;
}

/* Heading */
.hero h1 {
    font-size: 3rem;
    line-height: 1.18;
    margin-bottom: 18px;
    font-weight: 700;
    color: #0d1b2a;
}

.hero h1 .text-primary {
    color: var(--primary);
    display: block;
    font-size: 3.4rem;
}

/* Tagline pill */
.hero-wings-tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    color: #7a5c1e;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    background: rgba(223,183,108,0.18);
    border: 1px solid rgba(223,183,108,0.5);
    border-radius: 30px;
    padding: 6px 16px;
}

.hero-wings-tagline::before {
    content: "✦";
    color: var(--secondary);
    font-size: 0.75rem;
}

.hero-wings-tagline::after {
    content: "✦";
    color: var(--secondary);
    font-size: 0.75rem;
}

/* Trust badges row */
.hero-trust-badges {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
}

.trust-badge-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px 0 0;
    margin-right: 16px;
    position: relative;
}

.trust-badge-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 8%;
    height: 84%;
    width: 1px;
    background: rgba(2,15,38,0.12);
}

.trust-badge-item:last-child {
    padding-right: 0;
    margin-right: 0;
}

.trust-badge-item:last-child::after {
    display: none;
}

.trust-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(223,183,108,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.05rem;
    margin-bottom: 5px;
    background: rgba(223,183,108,0.07);
}

.trust-badge-label {
    font-size: 0.76rem;
    font-weight: 600;
    color: #020f26;
}

/* Hero description */
.hero-desc {
    font-size: 0.97rem;
    color: #475569;
    margin-bottom: 28px;
    font-weight: 400;
    line-height: 1.7;
    max-width: 480px;
}

/* CTA Buttons */
.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-btns .btn {
    border-radius: 4px;
    text-transform: uppercase;
    padding: 13px 28px;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
}

.hero-btns .btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(155,12,63,0.28);
}

.hero-btns .btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(155,12,63,0.38);
}

.hero-btns .btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.hero-btns .btn-secondary:hover {
    background: rgba(155,12,63,0.05);
    transform: translateY(-2px);
}

/* ── FULL-BLEED HERO IMAGE (hero.png) ── */
.hero-image-full {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-image-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Anchor the image so the couple stays on the right, left area stays natural */
    object-position: right center;
    display: block;
    transition: transform 12s ease;
}

.hero:hover .hero-image-full img {
    transform: scale(1.02);
}

/* Remove old unused hero image classes */
.hero-grid,
.hero-image-content,
.hero-image-mask,
.hero-image-mask::before,
.hero-image-frame,
.hero-floral-bg,
.hero-image-wrap,
.hero-vine-svg,
.hero-image-curved {
    display: none !important;
}

/* Match Finder Card Overlay */
.search-bar-card {
    background-color: var(--card-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    padding: 35px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
}

.search-bar-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--dark-blue);
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.search-bar-title::before,
.search-bar-title::after {
    content: '';
    height: 1px;
    width: 60px;
    background-color: var(--secondary);
}

.search-bar-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr 1.2fr 1.2fr auto;
    gap: 20px;
    align-items: flex-end;
}

.search-bar-grid .form-group label {
    font-size: 0.75rem;
    color: var(--text-muted-dark);
    margin-bottom: 6px;
    font-weight: 700;
}

.search-bar-grid select,
.search-bar-grid input {
    background-color: #faf8f5;
    border: 1px solid rgba(223, 183, 108, 0.4);
    color: var(--text-dark);
    height: 46px;
    padding: 10px 14px;
    font-size: 0.88rem;
}

.search-bar-grid select:focus,
.search-bar-grid input:focus {
    border-color: var(--primary);
    background-color: #fff;
    box-shadow: 0 0 8px rgba(155, 12, 63, 0.1);
}

.search-bar-grid button {
    height: 46px;
    padding: 0 24px;
    font-size: 0.88rem;
    background: var(--primary);
    border-color: var(--primary);
}

/* Trust Stats Bar */
.stats-bar {
    background-color: var(--dark-blue);
    border-top: 1px solid rgba(223, 183, 108, 0.2);
    border-bottom: 1px solid rgba(223, 183, 108, 0.2);
    color: var(--text-light);
    padding: 30px 0;
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stats-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 0 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-item:last-child {
    border-right: none;
}

.stats-icon {
    font-size: 2rem;
    color: var(--secondary);
}

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

.stats-number {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.2;
}

.stats-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sections Configuration */
.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

.bg-dark {
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-subtitle {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.bg-dark .section-subtitle {
    color: var(--secondary);
}

.section-title {
    font-size: 2.2rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.bg-dark .section-title {
    color: var(--text-light);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary) 30%, var(--secondary) 70%, transparent 100%);
}

.section-header p {
    font-size: 0.95rem;
    max-width: 550px;
    margin: 0 auto;
}

/* Welcome Section */
.welcome-flex {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.welcome-info {
    flex: 1.2;
    min-width: 320px;
}

.welcome-info h3 {
    font-size: 1.7rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.welcome-info p {
    margin-bottom: 20px;
}

.welcome-list {
    list-style: none;
    margin-bottom: 30px;
}

.welcome-list li {
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
}

.welcome-list li i {
    color: var(--primary);
    font-size: 1.05rem;
}

.welcome-card-box {
    flex: 0.8;
    min-width: 320px;
    background-color: var(--card-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 35px;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.welcome-card-box h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.welcome-card-info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 0.9rem;
    border-top: 1px solid rgba(223, 183, 108, 0.2);
    padding-top: 20px;
    margin-top: 15px;
}

.welcome-card-info-list div {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.welcome-card-info-list i {
    color: var(--secondary-hover);
    margin-top: 3px;
}

/* Why Choose Section Cards */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-choose-card {
    background-color: var(--card-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 8px 25px var(--shadow-light);
}

.why-choose-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 12px 35px rgba(155, 12, 63, 0.1);
}

.why-choose-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: rgba(155, 12, 63, 0.05);
    border: 1px solid rgba(155, 12, 63, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.6rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.why-choose-card:hover .why-choose-icon {
    background-color: var(--primary);
    color: var(--text-light);
    transform: rotateY(180deg);
}

.why-choose-card h3 {
    font-size: 1.15rem;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.why-choose-card p {
    font-size: 0.88rem;
    line-height: 1.5;
}

/* How It Works Section */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
    position: relative;
}

.how-it-works-card {
    background-color: var(--card-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px 20px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 25px var(--shadow-light);
    transition: var(--transition);
}

.how-it-works-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-hover);
}

.how-it-works-step {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    border: 2px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-light);
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.how-it-works-card h3 {
    font-size: 1.05rem;
    color: var(--dark-blue);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

.how-it-works-card p {
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Success Stories Carousel/Slider */
.stories-slider-container {
    max-width: 750px;
    margin: 40px auto 20px;
    position: relative;
}

.story-card-wrapper {
    background-color: var(--card-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px var(--shadow-light);
    padding: 30px;
    display: flex;
    gap: 30px;
    align-items: center;
    transition: var(--transition);
}

.story-img-box {
    flex: 0.7;
    height: 220px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid var(--border-color);
}

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

.story-content-box {
    flex: 1.3;
}

.story-couple-names {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.story-rating {
    color: var(--secondary-hover);
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.story-text {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-arrow-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--card-light);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 10px var(--shadow-light);
}

.slider-arrow-btn:hover {
    background-color: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-dark) 60%, var(--dark-blue) 100%);
    border-top: 2px solid var(--secondary);
    border-bottom: 2px solid var(--secondary);
    color: var(--text-light);
    text-align: center;
    padding: 85px 0;
}

.cta-section h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 650px;
    margin: 0 auto 35px;
    font-size: 1.1rem;
    color: rgba(255, 255, 250, 0.9);
}

/* Footer Section */
footer {
    background: var(--dark-blue);
    border-top: 1px solid rgba(223, 183, 108, 0.2);
    padding: 80px 0 30px;
    color: var(--text-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    margin-bottom: 24px;
    font-size: 1.15rem;
    position: relative;
    padding-bottom: 8px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-about p {
    font-size: 0.9rem;
    margin-top: 20px;
    line-height: 1.6;
    color: rgba(255, 253, 250, 0.7);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 253, 250, 0.7);
}

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

.footer-contact-info {
    list-style: none;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: rgba(255, 253, 250, 0.7);
}

.footer-contact-info i {
    color: var(--secondary);
    margin-top: 4px;
}

.footer-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.qr-box {
    width: 110px;
    height: 110px;
    border: 2px solid var(--secondary);
    background-color: #fff;
    padding: 6px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.8rem;
    color: rgba(255, 253, 250, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
}

.footer-bottom-links a {
    color: rgba(255, 253, 250, 0.5);
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

/* Category grid (Explore 18+ Categories) */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 20px;
}

.category-card {
    background-color: var(--card-light);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: var(--radius-sm);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 4px 12px var(--shadow-light);
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(155, 12, 63, 0.12);
}

.category-icon {
    font-size: 1.7rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.category-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--dark-blue);
    font-weight: 700;
}

.category-count {
    font-size: 0.78rem;
    color: var(--text-muted-dark);
    margin-top: 4px;
}

/* Multi-Step Registration Form Card */
.form-card {
    background-color: var(--card-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 40px var(--shadow-light);
    padding: 45px;
    max-width: 900px;
    margin: 40px auto;
}

.form-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 45px;
    position: relative;
}

.form-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 5%;
    right: 5%;
    height: 2px;
    background-color: rgba(223, 183, 108, 0.2);
    z-index: 1;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    width: 20%;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #faf8f5;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-muted-dark);
    transition: var(--transition);
}

.step-indicator.active .step-number {
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--text-light);
    box-shadow: 0 0 15px rgba(155, 12, 63, 0.3);
}

.step-indicator.completed .step-number {
    border-color: var(--secondary-hover);
    background-color: var(--secondary);
    color: var(--dark-blue);
}

.step-label {
    margin-top: 10px;
    font-size: 0.72rem;
    color: var(--text-muted-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.step-indicator.active .step-label {
    color: var(--primary);
    font-weight: 700;
}

/* Form inputs styling */
.form-step-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-step-content.active {
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--dark-blue);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

label span.required {
    color: var(--primary-light);
    margin-left: 4px;
}

input, select, textarea {
    background-color: #faf8f5;
    border: 1px solid rgba(223, 183, 108, 0.4);
    padding: 13px 18px;
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: var(--transition);
    width: 100%;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 8px rgba(155, 12, 63, 0.1);
    background-color: #fff;
}

select option {
    background-color: #fff;
    color: var(--text-dark);
}

.radio-group, .checkbox-group {
    display: flex;
    gap: 25px;
    padding: 6px 0;
}

.radio-label, .checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    color: var(--text-dark);
    cursor: pointer;
    text-transform: none;
    font-weight: 500;
}

.radio-label input[type="radio"], 
.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

/* Profiles Layout & Filter styles */
.search-section {
    background-color: var(--card-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px var(--shadow-light);
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 20px;
    align-items: flex-end;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.profile-card {
    background-color: var(--card-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 8px 25px var(--shadow-light);
}

.profile-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.profile-img-container {
    position: relative;
    height: 280px;
    background-color: #faf8f5;
}

.profile-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(155, 12, 63, 0.05) 0%, rgba(223, 183, 108, 0.1) 100%);
    color: var(--primary);
}

.profile-avatar-icon {
    font-size: 4rem;
    margin-bottom: 12px;
}

.profile-avatar-text {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted-dark);
}

.profile-premium-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-hover) 100%);
    color: var(--dark-blue);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.profile-body {
    padding: 24px;
}

.profile-name {
    font-size: 1.25rem;
    color: var(--dark-blue);
    margin-bottom: 8px;
    font-weight: 700;
}

.profile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.profile-tag {
    background-color: rgba(155, 12, 63, 0.05);
    border: 1px solid rgba(155, 12, 63, 0.15);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.72rem;
    color: var(--primary);
    font-weight: 600;
}

.profile-details-list {
    list-style: none;
    margin-bottom: 20px;
}

.profile-details-list li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(223, 183, 108, 0.15);
    font-size: 0.85rem;
}

.profile-details-list li span:first-child {
    color: var(--text-muted-dark);
    font-weight: 500;
}

.profile-blur-info {
    filter: blur(4px);
    user-select: none;
}

.contact-details-box {
    background-color: #faf8f5;
    border: 1px dashed rgba(223, 183, 108, 0.7);
    border-radius: var(--radius-sm);
    padding: 12px;
    margin-top: 15px;
    position: relative;
}

.profile-action-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    text-align: center;
}

/* Pricing Grid Packages */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background-color: var(--card-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 8px 25px var(--shadow-light);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(155, 12, 63, 0.12);
    transform: scale(1.04);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-hover) 100%);
    color: var(--dark-blue);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 6px 20px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-name {
    font-size: 1.4rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-price span {
    font-size: 0.95rem;
    color: var(--text-muted-dark);
    font-family: var(--font-body);
    font-weight: 400;
}

.pricing-desc {
    font-size: 0.88rem;
    color: var(--text-muted-dark);
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.88rem;
    color: var(--text-dark);
}

.pricing-features i {
    color: var(--primary);
}

/* OTP & Toast Components */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 15, 38, 0.85);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.modal-content {
    background-color: var(--card-light);
    border: 2px solid var(--secondary);
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    padding: 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    animation: modalSlideUp 0.4s ease;
}

.modal-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.modal h3 {
    margin-bottom: 12px;
    color: var(--dark-blue);
    font-size: 1.45rem;
}

.modal p {
    font-size: 0.95rem;
    color: var(--text-muted-dark);
    margin-bottom: 24px;
}

.otp-input-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.otp-box {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(223, 183, 108, 0.4);
    background-color: #faf8f5;
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.otp-box:focus {
    border-color: var(--primary);
    box-shadow: 0 0 8px rgba(155, 12, 63, 0.15);
    background-color: #fff;
}

.otp-timer {
    font-size: 0.85rem;
    color: var(--text-muted-dark);
    margin-bottom: 24px;
}

.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--card-light);
    border: 1px solid var(--secondary);
    color: var(--text-dark);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3000;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast i {
    color: var(--primary);
    font-size: 1.25rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

/* Responsive top padding for subpages */
section[style*="padding-top"] {
    padding-top: 180px !important;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════ */

/* ── TABLET: up to 1024px ── */
@media (max-width: 1024px) {

    /* Typography scale down */
    .hero h1 { font-size: 2.4rem; }
    .hero h1 .text-primary { font-size: 2.8rem; }
    .section-title { font-size: 1.9rem; }
    .cta-section h2 { font-size: 2rem; }

    /* Hero: shrink text column, image still fills */
    .hero-text-content {
        max-width: 55%;
        padding: 60px 0;
    }

    /* Top Header */
    .top-header-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .top-header .logo img { height: 80px; }
    .header-contact {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
    .top-header-actions {
        width: 100%;
        justify-content: center;
    }

    /* Search bar collapses to 3 cols */
    .search-bar-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .search-bar-grid button { grid-column: span 3; }

    /* Stats: 2x2 */
    .stats-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    /* Footer: 2-col */
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }

    /* How It Works: 2x2 */
    .how-it-works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 30px;
    }

    /* Pricing: single col */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
    }
    .pricing-card.featured { transform: none; }

    /* Profile search grid */
    .search-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── MOBILE: up to 768px ── */
@media (max-width: 768px) {

    /* ─ Top header: hide on mobile ─ */
    .top-header { display: none; }
    .navbar { top: 0; }

    /* ─ Navbar: hamburger ─ */
    .nav-container {
        justify-content: space-between;
        height: 60px;
        padding: 0 16px;
    }
    .mobile-logo {
        display: flex;
        align-items: center;
    }
    .mobile-logo img {
        height: 42px;
        width: auto;
        object-fit: contain;
    }
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: var(--dark-blue);
        flex-direction: column;
        padding: 36px 24px;
        gap: 22px;
        align-items: flex-start;
        transition: var(--transition);
        border-top: 1px solid var(--border-color);
        z-index: 999;
        overflow-y: auto;
    }
    .nav-menu.active { left: 0; }
    .nav-item a { font-size: 1rem; }

    /* ─ Hero: full-width overlay text ─ */
    .hero {
        min-height: 100svh;
        max-height: 700px;
        align-items: flex-end;
    }
    .hero-image-full img {
        object-position: center center;
    }
    /* Semi-transparent overlay so text is legible on the image */
    .hero-image-full::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to top,
            rgba(2, 15, 38, 0.82) 0%,
            rgba(2, 15, 38, 0.55) 55%,
            rgba(2, 15, 38, 0.10) 100%
        );
        z-index: 1;
    }
    .hero-container { z-index: 2; }
    .hero-text-content {
        max-width: 100%;
        padding: 0 0 48px;
        text-align: center;
    }
    .hero h1 {
        font-size: 2rem !important;
        color: #fff !important;
    }
    .hero h1 .text-primary {
        font-size: 2.3rem !important;
        color: var(--secondary) !important;
    }
    .hero-wings-tagline {
        justify-content: center;
        color: rgba(255,255,255,0.9);
        border-color: rgba(223,183,108,0.4);
        background: rgba(0,0,0,0.25);
    }
    .hero-desc {
        color: rgba(255,255,255,0.85) !important;
        max-width: 100%;
        margin: 0 auto 24px;
    }
    .hero-btns { justify-content: center; flex-wrap: wrap; }
    .hero-btns .btn-secondary {
        color: var(--secondary);
        border-color: var(--secondary);
    }
    .hero-trust-badges {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px 0;
    }
    .trust-badge-icon {
        background: rgba(255,255,255,0.12);
        border-color: rgba(223,183,108,0.4);
        color: var(--secondary);
    }
    .trust-badge-label { color: rgba(255,255,255,0.9); }

    /* ─ Search bar ─ */
    .search-bar-card {
        padding: 20px 16px;
        margin-top: -24px;
        border-radius: var(--radius-sm);
    }
    .search-bar-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .search-bar-grid button { grid-column: span 1; }
    .search-bar-title { font-size: 1rem; }
    .search-bar-title::before,
    .search-bar-title::after { width: 30px; }

    /* ─ Stats bar ─ */
    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .stats-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 12px 8px;
        justify-content: flex-start;
    }
    .stats-item:nth-child(even) { border-right: none; }
    .stats-item:nth-last-child(-n+2) { border-bottom: none; }

    /* ─ Sections ─ */
    .section { padding: 60px 0; }
    .section-header { margin-bottom: 40px; }
    .section-title { font-size: 1.7rem; }

    /* ─ Welcome section ─ */
    .welcome-flex { flex-direction: column; gap: 30px; }
    .welcome-info, .welcome-card-box { min-width: 100%; }
    .welcome-card-box { padding: 24px; }

    /* ─ Why Choose grid: 1 col ─ */
    .why-choose-grid { grid-template-columns: 1fr; gap: 20px; }

    /* ─ How It Works: 1 col ─ */
    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    /* ─ Success Story ─ */
    .stories-slider-container { max-width: 100%; }
    .story-card-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 16px;
    }
    .story-img-box {
        width: 100%;
        max-width: 280px;
        height: 180px;
        flex: none;
    }

    /* ─ CTA section ─ */
    .cta-section { padding: 60px 0; }
    .cta-section h2 { font-size: 1.8rem; }
    .cta-section p { font-size: 0.95rem; }

    /* ─ Footer ─ */
    footer { padding: 50px 0 24px; }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        margin-bottom: 36px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    /* ─ Form card ─ */
    .form-card { padding: 20px 16px; }
    .form-row { grid-template-columns: 1fr; gap: 16px; }
    .form-group.full-width { grid-column: span 1; }
    .form-steps { margin-bottom: 28px; }
    .step-label { display: none; }
    .form-actions {
        flex-direction: column-reverse;
        gap: 12px;
    }
    .form-actions .btn { width: 100%; justify-content: center; }

    /* ─ Profiles ─ */
    .search-section { padding: 20px; }
    .search-grid { grid-template-columns: 1fr; }

    /* ─ Pricing ─ */
    .pricing-grid { gap: 24px; }

    /* ─ Dashboard ─ */
    #dashboardContent > div:first-child {
        padding: 24px 16px !important;
        text-align: center;
        justify-content: center;
    }
    #dashboardContent > div:first-child button { width: 100%; }

    /* Subpage top padding */
    section[style*="padding-top"] { padding-top: 80px !important; }
}

/* ── SMALL MOBILE: up to 480px ── */
@media (max-width: 480px) {

    .container { padding: 0 14px; }

    /* Hero adjustments */
    .hero { max-height: 620px; }
    .hero h1 { font-size: 1.7rem !important; }
    .hero h1 .text-primary { font-size: 2rem !important; }
    .hero-btns .btn { width: 100%; justify-content: center; }

    /* Trust badges: 2x2 grid */
    .hero-trust-badges {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px 8px;
        justify-items: center;
        max-width: 280px;
        margin: 0 auto 20px;
    }
    .trust-badge-item::after { display: none !important; }
    .trust-badge-item { padding-right: 0; margin-right: 0; }

    /* Stats: single col */
    .stats-bar-grid { grid-template-columns: 1fr; }
    .stats-item { justify-content: center; text-align: left; }

    /* Section typography */
    .section-title { font-size: 1.5rem; }
    .cta-section h2 { font-size: 1.6rem; }

    /* Profiles */
    .profiles-grid { grid-template-columns: 1fr; gap: 20px; }
    .profile-img-container { height: 240px; }

    /* Welcome */
    .welcome-info, .welcome-card-box { padding: 0; }

    /* CTA buttons */
    .cta-section .btn { width: 100%; max-width: 300px; }

    /* OTP inputs */
    .otp-box { width: 42px; height: 42px; font-size: 1.2rem; }
    .otp-input-container { gap: 8px; }

    /* Toast */
    .toast { bottom: 16px; right: 16px; left: 16px; }
}
