/* ================================================================
   Samyak Matrimony — Shared Design System
   Bootstrap 5.3.3 + Bootstrap Icons 1.11.3
   Colors: #C70C41 (primary) | #D4AF37 (accent) | #1a1a2e (dark)
   Fonts: Playfair Display (headings) + Inter (body)
   ================================================================ */

/* ── CSS Variables ─────────────────────────────────────────────── */
:root {
    --primary:       #C70C41;
    --primary-dark:  #a00a35;
    --primary-light: #f9e8ed;
    --accent:        #D4AF37;
    --dark:          #1a1a2e;
    --gray-50:       #f8f9fa;
    --gray-100:      #f1f3f5;
    --gray-600:      #6c757d;
    --white:         #ffffff;
    --font-heading:  'Playfair Display', Georgia, serif;
    --font-body:     'Inter', -apple-system, sans-serif;
    --shadow-sm:     0 2px 8px rgba(0,0,0,0.08);
    --shadow-md:     0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg:     0 8px 40px rgba(0,0,0,0.12);
    --radius:        12px;
}

/* ── Base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: #1a1a2e; }
body {
    font-family: var(--font-body);
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    margin: 0 !important;
    padding: 0 !important;
}

/* ── Navbar ─────────────────────────────────────────────────────── */
html, body { margin: 0 !important; padding: 0 !important; }
#mainNav {
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
    background: #1a1a2e !important;
    padding: 12px 0;
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    outline: none !important;
    box-shadow: none !important;
    top: 0 !important;
}
#mainNav.scrolled {
    background: #1a1a2e !important;
    padding: 8px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3) !important;
    border: none !important;
}
.navbar-brand-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
}
.navbar-brand-text span { color: var(--accent); }
.nav-link-custom {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 12px !important;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}
.nav-link-custom:hover {
    color: #fff !important;
    background: rgba(255,255,255,0.08);
}
.btn-register-nav {
    background: var(--primary);
    color: #fff !important;
    border: none;
    border-radius: 50px;
    padding: 8px 24px;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-register-nav:hover {
    background: var(--primary-dark);
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(199,12,65,0.35);
}

/* ── Page Hero (inner pages) ──────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, #16213e 60%, var(--primary-dark) 100%);
    padding: 120px 0 70px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(199,12,65,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(212,175,55,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.page-hero-title span { color: var(--accent); }
.page-hero-sub {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    margin: 0;
}
.breadcrumb-hero {
    margin-top: 14px;
    background: none;
    padding: 0;
}
.breadcrumb-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }
.breadcrumb-hero .breadcrumb-item a { color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumb-hero .breadcrumb-item a:hover { color: var(--accent); }
.breadcrumb-hero .breadcrumb-item.active { color: var(--accent); }

/* ── Hero Section (homepage) ──────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: 92vh;
    background: linear-gradient(135deg, var(--dark) 0%, #16213e 50%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(199,12,65,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(212,175,55,0.1) 0%, transparent 50%);
    pointer-events: none;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 24px;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}
.hero-title span { color: var(--accent); }
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 32px;
}
.hero-cta .btn {
    padding: 14px 36px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.btn-hero-primary {
    background: var(--primary);
    color: var(--white) !important;
    border: 2px solid var(--primary);
}
.btn-hero-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(199,12,65,0.35);
}
.btn-hero-outline {
    background: transparent;
    color: var(--white) !important;
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    color: var(--white) !important;
    transform: translateY(-2px);
}
.hero-stats { display: flex; gap: 40px; margin-top: 48px; }
.hero-stat h4 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 2px;
}
.hero-stat p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}
.hero-decoration {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.1);
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
}
.hero-decoration::before {
    content: '';
    position: absolute;
    inset: 40px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.08);
}

/* ── Section Commons ────────────────────────────────────────────── */
.section-padding { padding: 80px 0; }
.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}
.section-title span { color: var(--primary); }
.section-desc {
    color: var(--gray-600);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto 48px;
}

/* ── Buttons ────────────────────────────────────────────────────── */
.btn-primary-custom {
    background: var(--primary);
    color: var(--white) !important;
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-primary-custom:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199,12,65,0.3);
}
.btn-outline-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--primary);
    color: var(--primary) !important;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    background: transparent;
}
.btn-outline-primary-custom:hover {
    background: var(--primary);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(199,12,65,0.25);
}
.btn-search {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    font-weight: 600;
    font-size: 0.95rem;
    width: 100%;
    min-height: 46px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}
.btn-search:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(199,12,65,0.3);
}
.cta-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white) !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}
.cta-call:hover {
    background: var(--primary-dark);
    color: var(--white) !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199,12,65,0.3);
}

/* ── Cards ──────────────────────────────────────────────────────── */
.feature-card {
    text-align: center;
    padding: 40px 28px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}
.feature-icon.icon-red    { background: rgba(199,12,65,0.1);  color: var(--primary); }
.feature-icon.icon-gold   { background: rgba(212,175,55,0.12); color: #b8941e; }
.feature-icon.icon-green  { background: rgba(40,167,69,0.1);   color: #28a745; }
.feature-icon.icon-blue   { background: rgba(13,110,253,0.1);  color: #0d6efd; }
.feature-icon.icon-purple { background: rgba(111,66,193,0.1);  color: #6f42c1; }
.feature-card h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark);
}
.feature-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Story Cards */
.story-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    background: var(--white);
}
.story-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.story-img-wrap { overflow: hidden; position: relative; }
.story-img-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s;
}
.story-card:hover .story-img-wrap img { transform: scale(1.05); }
.story-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(transparent, rgba(0,0,0,0.15));
    pointer-events: none;
}

/* Stat / Info Card */
.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.3s, box-shadow 0.3s;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-card h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}
.stat-card p { color: var(--gray-600); font-size: 0.9rem; margin: 0; }

/* Profile Card */
.profile-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0,0,0,0.04);
}
.profile-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.profile-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: top center;
}
@media (min-width: 992px) {
    .profile-card-img { height: 240px; }
}
.profile-card-body { padding: 16px 18px; }
.profile-card-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}
.profile-card-meta { font-size: 0.82rem; color: var(--gray-600); margin-bottom: 12px; }
.profile-card-btn {
    background: var(--primary-light);
    color: var(--primary);
    border: 1px solid rgba(199,12,65,0.15);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.profile-card-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ── Form Styles ────────────────────────────────────────────────── */
.form-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 36px 40px;
    border: 1px solid rgba(0,0,0,0.04);
}
.form-card-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}
.form-card-sub { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 28px; }
.form-control-custom,
.form-select-custom {
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 0.9rem;
    color: #333;
    background: var(--gray-50);
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
}
.form-control-custom:focus,
.form-select-custom:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(199,12,65,0.1);
    background: #fff;
}
.form-label-custom {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-600);
    margin-bottom: 6px;
    display: block;
}
.input-group-icon {
    position: relative;
}
.input-group-icon i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-600);
    font-size: 1rem;
    z-index: 1;
}
.input-group-icon input {
    padding-left: 38px;
}

/* Search Bar Card */
.search-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 28px 32px;
    border: 1px solid rgba(0,0,0,0.04);
}
.search-card .form-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-600);
    margin-bottom: 6px;
}
.search-card .form-select {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.9rem;
    color: #333;
    background-color: var(--gray-50);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.search-card .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(199,12,65,0.1);
}

/* ── Sections with dark bg ──────────────────────────────────────── */
.dark-section {
    background: linear-gradient(135deg, var(--dark) 0%, #16213e 100%);
    color: var(--white);
}
.dark-section h2, .dark-section h3 {
    font-family: var(--font-heading);
    font-weight: 600;
}
.dark-section h2 span, .dark-section h3 span { color: var(--accent); }
.dark-section p { color: rgba(255,255,255,0.7); line-height: 1.8; }

.welcome-highlight {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 18px;
}
.welcome-highlight i { color: var(--accent); font-size: 1.1rem; margin-top: 3px; flex-shrink: 0; }
.welcome-highlight p { margin: 0; color: rgba(255,255,255,0.75); font-size: 0.9rem; }

/* ── Quick Links ────────────────────────────────────────────────── */
.quicklinks-section { background: var(--gray-50); }
.link-group { margin-bottom: 24px; }
.link-group-title {
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.link-group-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--primary-light), transparent);
}
.tag-link {
    display: inline-block;
    background: var(--white);
    color: #444;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.81rem;
    font-weight: 500;
    text-decoration: none;
    margin: 3px;
    border: 1px solid #e8e8e8;
    transition: all 0.25s;
}
.tag-link:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(199,12,65,0.2);
    text-decoration: none;
}

/* ── Step / Process ─────────────────────────────────────────────── */
.step-item { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 28px; }
.step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.step-content h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 4px;
}
.step-content p { font-size: 0.88rem; color: var(--gray-600); margin: 0; }

/* ── Testimonial ────────────────────────────────────────────────── */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 28px;
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
}
.testimonial-card .stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 12px; }
.testimonial-card p { color: #555; font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial-card .author-name { font-weight: 600; font-size: 0.9rem; color: var(--dark); }
.testimonial-card .author-loc { font-size: 0.8rem; color: var(--gray-600); }

/* ── Owl Carousel ───────────────────────────────────────────────── */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    background: var(--white) !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    box-shadow: var(--shadow-sm);
    color: var(--dark) !important;
    font-size: 1.2rem !important;
    line-height: 40px !important;
    margin: 5px;
}
.owl-carousel .owl-dots { text-align: center; margin-top: 20px; }
.owl-carousel .owl-dots .owl-dot span { background: #ccc; width: 10px; height: 10px; }
.owl-carousel .owl-dots .owl-dot.active span { background: var(--primary); }

/* ── Search Page Sidebar ────────────────────────────────────────── */
.filter-sidebar {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 24px;
    border: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 80px;
}
.filter-sidebar h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-light);
    margin-bottom: 20px;
}
.filter-group { margin-bottom: 18px; }
.filter-group label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--gray-600);
    margin-bottom: 6px;
    display: block;
}
.filter-group select,
.filter-group input {
    width: 100%;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    padding: 9px 12px;
    font-size: 0.88rem;
    color: #333;
    background: var(--gray-50);
    transition: border-color 0.2s;
}
.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(199,12,65,0.08);
}

/* ── Contact ────────────────────────────────────────────────────── */
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 28px;
    border: 1px solid rgba(0,0,0,0.04);
    text-align: center;
    transition: transform 0.3s;
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 1.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.contact-info-card h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 8px;
}
.contact-info-card p, .contact-info-card a {
    color: var(--gray-600);
    font-size: 0.88rem;
    margin: 0;
    text-decoration: none;
    display: block;
    line-height: 1.7;
}
.contact-info-card a:hover { color: var(--primary); }

/* ── Footer ─────────────────────────────────────────────────────── */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding-top: 60px;
}
.site-footer .footer-brand {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}
.site-footer .footer-brand span { color: var(--accent); }
.site-footer h6 {
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}
.site-footer a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}
.site-footer a:hover { color: var(--accent); }
.footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 0.88rem;
}
.footer-contact-item i { color: var(--accent); margin-top: 2px; flex-shrink: 0; }
.footer-divider { border-color: rgba(255,255,255,0.08); margin: 0; }
.footer-bottom {
    padding: 18px 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}
.social-links { display: flex; gap: 10px; margin-top: 16px; }
.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
}
.social-link:hover { background: var(--primary); color: #fff; }

/* ── Alerts / Messages ──────────────────────────────────────────── */
.alert-custom {
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.9rem;
    border: none;
}
.alert-custom.success { background: #d1fae5; color: #065f46; }
.alert-custom.error   { background: #fee2e2; color: #991b1b; }
.alert-custom.warning { background: #fef3c7; color: #92400e; }

/* ── Loader Spinner ──────────────────────────────────────────────── */
.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: var(--gray-600);
    gap: 12px;
    font-size: 0.9rem;
}

/* ── Progress Steps (register) ──────────────────────────────────── */
.progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    gap: 0;
}
.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.progress-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 1;
}
.progress-step.active .progress-step-num  { background: var(--primary); color: #fff; }
.progress-step.done   .progress-step-num  { background: #28a745; color: #fff; }
.progress-step-label {
    font-size: 0.72rem;
    margin-top: 6px;
    color: #999;
    font-weight: 500;
    white-space: nowrap;
}
.progress-step.active .progress-step-label { color: var(--primary); }
.progress-step.done   .progress-step-label { color: #28a745; }
.progress-step-line {
    width: 80px;
    height: 2px;
    background: #e0e0e0;
    margin-bottom: 22px;
}
.progress-step-line.done { background: #28a745; }

/* ── Mobile CTA ──────────────────────────────────────────────────── */
.mobile-cta { display: none; }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 767.98px) {
    .mobile-cta {
        display: flex;
        gap: 12px;
        padding: 16px 0;
    }
    .mobile-cta .btn {
        flex: 1;
        padding: 12px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.9rem;
        text-align: center;
        text-decoration: none;
    }
    .hero-section    { min-height: 75vh; }
    .hero-stats      { gap: 24px; }
    .hero-stat h4    { font-size: 1.4rem; }
    .search-card     { padding: 20px; }
    .section-padding { padding: 50px 0; }
    .hero-decoration { display: none; }
    .form-card       { padding: 24px 20px; }
    .filter-sidebar  { position: static; margin-bottom: 24px; }
    .progress-step-line { width: 40px; }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-section { min-height: 80vh; }
}
