/* =============================================
   TASHARUK — Premium F&B Investment Platform
   Design System: White + Elegant Gold
   Fonts: Zain (headings) + TheYearofHandicrafts (body)
   ============================================= */

/* ===== @FONT-FACE — Local Fonts ===== */
@font-face {
    font-family: 'Zain';
    src: url('../assets/fonts/zain mob-long100 Regular.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Zain';
    src: url('../assets/fonts/zain mob-long300 Regular.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Zain';
    src: url('../assets/fonts/zain mob-long500.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Handicrafts';
    src: url('../assets/fonts/OTF/TheYearofHandicrafts-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Handicrafts';
    src: url('../assets/fonts/OTF/TheYearofHandicrafts-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Handicrafts';
    src: url('../assets/fonts/OTF/TheYearofHandicrafts-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Handicrafts';
    src: url('../assets/fonts/OTF/TheYearofHandicrafts-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Handicrafts';
    src: url('../assets/fonts/OTF/TheYearofHandicrafts-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors — Gold */
    --gold: #C5A55A;
    --gold-light: #D4BA7A;
    --gold-dark: #A88B3D;
    --gold-pale: #F5EDD8;
    --gold-glow: rgba(197, 165, 90, 0.15);
    --gold-gradient: linear-gradient(135deg, #C5A55A 0%, #D4BA7A 50%, #E8D5A0 100%);
    --gold-gradient-dark: linear-gradient(135deg, #A88B3D 0%, #C5A55A 100%);

    /* Colors — Navy (كحلي) */
    --navy: #1B2A4A;
    --navy-light: #243656;
    --navy-dark: #0F1D35;
    --navy-glow: rgba(27, 42, 74, 0.08);
    --navy-gradient: linear-gradient(135deg, #1B2A4A 0%, #243656 50%, #2D4268 100%);

    --white: #FFFFFF;
    --bg-primary: #FFFFFF;
    --bg-soft: #FAFAF8;
    --bg-warm: #F8F5F0;
    --bg-section: #F5F0EB;
    --bg-card: #FFFFFF;
    --bg-navy: #1B2A4A;
    --bg-navy-light: rgba(27, 42, 74, 0.03);

    --text-primary: #1B2A4A;
    --text-secondary: #3D4D6A;
    --text-muted: #6B7B96;
    --text-dim: #9BA8BC;

    --border: #E8E4DE;
    --border-light: #F0EDE8;
    --border-gold: rgba(197, 165, 90, 0.3);
    --border-navy: rgba(27, 42, 74, 0.12);

    --shadow-sm: 0 1px 3px rgba(27, 42, 74, 0.04);
    --shadow-md: 0 4px 16px rgba(27, 42, 74, 0.06);
    --shadow-lg: 0 8px 32px rgba(27, 42, 74, 0.08);
    --shadow-xl: 0 16px 48px rgba(27, 42, 74, 0.1);
    --shadow-gold: 0 4px 20px rgba(197, 165, 90, 0.15);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Fonts */
    --font-display: 'Zain', 'Tajawal', sans-serif;
    --font-body: 'Handicrafts', 'Tajawal', sans-serif;

    /* Status Colors */
    --green: #22C55E;
    --green-bg: #F0FDF4;
    --red: #EF4444;
    --red-bg: #FEF2F2;
    --amber: #F59E0B;
    --amber-bg: #FFFBEB;
    --blue: #3B82F6;
    --blue-bg: #EFF6FF;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.8;
    font-size: 15px;
    direction: rtl;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; -webkit-transition: all 0.3s ease; transition: all 0.3s ease; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; -webkit-appearance: none; appearance: none; }
/* Restore native appearance for checkboxes and radio buttons (Safari/iOS fix) */
input[type="checkbox"],
input[type="radio"] {
    -webkit-appearance: checkbox;
    appearance: auto;
    cursor: pointer;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-primary);
}

h1 { font-size: clamp(28px, 5vw, 48px); }
h2 { font-size: clamp(24px, 4vw, 36px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); }
h4 { font-size: 18px; font-weight: 600; }

.font-display { font-family: var(--font-display); }
.font-body { font-family: var(--font-body); }

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

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

/* ===== LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--bg-soft);
}

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

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-glow);
    color: var(--gold-dark);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid var(--border-gold);
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
    margin: 16px auto 0;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    padding: 0 24px;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo img {
    height: 42px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
    transition: width 0.3s ease;
}

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

.nav-links a.active {
    color: var(--gold-dark);
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--gold-dark);
}

.header-cta {
    background: var(--gold-gradient-dark);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(197, 165, 90, 0.3);
}

.mobile-menu-btn {
    display: none;
    font-size: 22px;
    color: var(--text-primary);
    padding: 8px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    background: linear-gradient(170deg, #FFFFFF 0%, #F8F5F0 40%, #F0EDE8 80%, rgba(27, 42, 74, 0.04) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 70%;
    height: 90%;
    background: radial-gradient(circle, rgba(197, 165, 90, 0.08) 0%, transparent 60%);
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -15%;
    width: 50%;
    height: 70%;
    background: radial-gradient(circle, rgba(27, 42, 74, 0.04) 0%, transparent 60%);
    pointer-events: none;
    animation: heroGlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes heroGlow {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.15); opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-glow);
    border: 1px solid var(--border-gold);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-highlight {
    color: var(--gold);
}

.hero p {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 32px;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.hero-stat .number {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 500;
    color: var(--gold-dark);
    line-height: 1.2;
}

.hero-stat .label {
    display: block;
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 4px;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-gradient-dark);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(197, 165, 90, 0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--gold-dark);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--gold-glow);
    transform: translateY(-2px);
}

.btn-glow {
    box-shadow: 0 4px 20px rgba(197, 165, 90, 0.25);
}

.btn-glow:hover {
    box-shadow: 0 8px 32px rgba(197, 165, 90, 0.35);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 17px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-gradient-dark);
    color: var(--white);
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(197, 165, 90, 0.3);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ===== CARDS ===== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-gold);
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
}

/* ===== LISTING CARDS ===== */
.opp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.ad-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.35s ease;
    position: relative;
}

.ad-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-gold);
}

.ad-card.premium {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.ad-card .card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--bg-soft);
}

.ad-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.premium-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gold-gradient);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.card-body {
    padding: 20px;
}

.card-body h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-family: var(--font-display);
}

.ad-category {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.ad-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
}

.ad-badge.gold { background: var(--gold-glow); color: var(--gold-dark); border: 1px solid var(--border-gold); }
.ad-badge.green { background: var(--green-bg); color: #16a34a; }
.ad-badge.red { background: var(--red-bg); color: #dc2626; }
.ad-badge.blue { background: var(--blue-bg); color: #2563eb; }

.card-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

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

.metric-label {
    display: block;
    font-size: 11px;
    color: var(--text-dim);
    margin-bottom: 2px;
}

.metric-value {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--gold-dark);
    font-family: var(--font-display);
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-top: 1px solid var(--border-light);
}

.ad-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-gradient-dark);
    color: var(--white);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ad-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.bookmark-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-dim);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
}

.bookmark-btn:hover,
.bookmark-btn.active {
    background: var(--gold-glow);
    color: var(--gold);
    border-color: var(--gold);
}

.bookmark-btn.active i {
    font-weight: 900;
}

/* Deal Status */
.deal-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.deal-status .deal-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.deal-status.available { background: var(--green-bg); color: #16a34a; }
.deal-status.available .deal-status-dot { background: var(--green); }
.deal-status.agreed { background: var(--blue-bg); color: #2563eb; }
.deal-status.agreed .deal-status-dot { background: var(--blue); }

/* ===== SERVICES ===== */
.services-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-preview-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.service-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-preview-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-gold);
}

.service-preview-card:hover::before {
    opacity: 1;
}

.service-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    background: var(--gold-glow);
    color: var(--gold-dark);
    border: 1px solid var(--border-gold);
}

.service-preview-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-family: var(--font-display);
}

.service-preview-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-link {
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-coming {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--amber-bg);
    color: var(--amber);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
}

/* ===== STEPS / HOW IT WORKS ===== */
.steps-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    position: relative;
}

.step-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-md);
}

.step-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 500;
    color: var(--gold-pale);
    line-height: 1;
    margin-bottom: 16px;
}

.step-icon-wrap {
    margin-bottom: 16px;
}

.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold-glow);
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border: 1px solid var(--border-gold);
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-family: var(--font-display);
}

.step-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== FAQ ===== */
.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--bg-card);
}

.faq-item:hover {
    border-color: var(--border-gold);
}

.faq-item.active {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.faq-question {
    width: 100%;
    text-align: right;
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    background: transparent;
    font-family: var(--font-body);
}

.faq-icon {
    font-size: 12px;
    color: var(--gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 20px 20px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ===== TRUST SECTION ===== */
.trust-section {
    background: var(--bg-warm);
    padding: 80px 24px;
    text-align: center;
    position: relative;
}

.trust-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-glow);
    border: 1px solid var(--border-gold);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 20px;
}

.trust-content h2 {
    margin-bottom: 16px;
}

.trust-content p {
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto 28px;
    line-height: 1.8;
}

.trust-features {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.trust-feature i {
    color: var(--gold);
    font-size: 16px;
}

/* ===== VALUES / FEATURES ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.value-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold-glow);
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
    border: 1px solid var(--border-gold);
}

.value-card h4 {
    font-family: var(--font-display);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== PRICING ===== */
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    max-width: 400px;
    width: 100%;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: var(--white);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 8px;
}

.price {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 500;
    margin: 16px 0;
}

.pricing-perks {
    list-style: none;
    margin: 20px 0;
    text-align: right;
}

.pricing-perks li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-perks li i {
    color: var(--gold);
}

.pricing-free-note {
    background: var(--green-bg);
    color: #16a34a;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    margin-top: 16px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 24px;
    background: var(--bg-warm);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    padding: 48px 32px;
    box-shadow: var(--shadow-gold);
}

.cta-box h2 {
    font-family: var(--font-display);
    margin-bottom: 12px;
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ===== COMMUNITY / SUBSCRIBE ===== */
.community-section {
    padding: 80px 0;
}

.community-box {
    background: var(--bg-warm);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    padding: 48px 32px;
    text-align: center;
}

.community-icon {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 16px;
}

.community-box h2 {
    font-family: var(--font-display);
    margin-bottom: 12px;
}

.community-box p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.subscribe-form {
    max-width: 600px;
    margin: 0 auto;
}

.subscribe-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.subscribe-input {
    flex: 1;
    min-width: 180px;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 14px;
    background: var(--bg-card);
    transition: border-color 0.3s ease;
}

.subscribe-input:focus {
    outline: none;
    border-color: var(--gold);
}

.subscribe-btn {
    white-space: nowrap;
}

.subscribe-note {
    margin-top: 12px;
    font-size: 12px;
    color: var(--text-dim);
}

/* ===== FORMS ===== */
.form-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    margin-bottom: 20px;
}

.form-section-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section-title i {
    color: var(--gold);
}

.form-section-note {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--text-primary);
    background: var(--bg-card);
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-input.error {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

textarea.form-input {
    resize: vertical;
    min-height: 80px;
}

select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236B6B80' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 12px center;
    padding-left: 32px;
}

.char-count {
    font-size: 12px;
    color: var(--text-dim);
    float: left;
}

/* Toggle Group */
.toggle-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.toggle-option {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    cursor: pointer;
    font-size: 14px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    background: var(--bg-card);
}

.toggle-option input { display: none; }

/* Safari ≥15.4 and modern browsers */
@supports selector(:has(*)) {
    .toggle-option:has(input:checked) {
        background: var(--gold-glow);
        border-color: var(--gold);
        color: var(--gold-dark);
        font-weight: 600;
    }
}

/* Fallback class for Safari <15.4 — toggled by JS */
.toggle-option.is-checked {
    background: var(--gold-glow);
    border-color: var(--gold);
    color: var(--gold-dark);
    font-weight: 600;
}

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 8px;
}

.checkbox-card {
    display: block;
    cursor: pointer;
}

.checkbox-card input { display: none; }

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 13px;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.checkbox-label i {
    opacity: 0;
    color: var(--gold);
    transition: opacity 0.2s;
}

.checkbox-card input:checked + .checkbox-label {
    background: var(--gold-glow);
    border-color: var(--gold);
    color: var(--gold-dark);
    font-weight: 600;
}

.checkbox-card input:checked + .checkbox-label i {
    opacity: 1;
}

/* Form Navigation */
.form-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

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

.form-progress-simple {
    margin-bottom: 24px;
}

.progress-bar-track {
    height: 4px;
    background: var(--border-light);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 2px;
    transition: width 0.4s ease;
}

/* Pledge Box */
.pledge-box {
    background: var(--bg-warm);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 16px;
}

.pledge-box label {
    display: -webkit-flex;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.pledge-box input[type="checkbox"] {
    -webkit-appearance: checkbox;
    appearance: auto;
    margin-top: 4px;
    accent-color: var(--gold);
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    flex-shrink: 0;
    cursor: pointer;
    border: 2px solid var(--border);
    border-radius: 4px;
}

/* Visual feedback: highlight pledge box when checked */
.pledge-box:has(input:checked) {
    background: rgba(197, 165, 90, 0.08);
    border-color: var(--gold);
}

/* Fallback for Safari < 15.4 */
.pledge-box.is-pledge-checked {
    background: rgba(197, 165, 90, 0.08);
    border-color: var(--gold);
}

/* Upload Zone */
.upload-zone {
    border: 2px dashed var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-soft);
}

.upload-zone:hover,
.upload-zone.drag-over {
    border-color: var(--gold);
    background: var(--gold-glow);
}

.upload-zone i {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 12px;
}

.upload-zone p {
    color: var(--text-muted);
    margin-bottom: 4px;
}

.upload-browse {
    color: var(--gold-dark);
    font-weight: 600;
    text-decoration: underline;
}

.upload-zone small {
    font-size: 12px;
    color: var(--text-dim);
}

.upload-previews {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.upload-preview {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
}

.upload-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-preview .remove-img {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.9);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    border: none;
}

.upload-preview.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-soft);
}

.upload-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid var(--border);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Success Page */
.success-page {
    text-align: center;
    padding: 60px 20px;
}

.success-icon {
    font-size: 64px;
    color: var(--green);
    margin-bottom: 16px;
}

.success-icon i { font-size: inherit; }

/* ===== LISTING DETAIL ===== */
.listing-detail-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    margin-top: 24px;
}

.listing-gallery {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.gallery-main {
    height: 400px;
    overflow: hidden;
    background: var(--bg-soft);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    display: flex;
    gap: 8px;
    padding: 8px;
    overflow-x: auto;
}

.gallery-thumbs .thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}

.gallery-thumbs .thumb:hover {
    border-color: var(--gold);
}

.listing-header {
    margin-top: 24px;
}

.premium-detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold-gradient);
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.detail-section {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.detail-section-title {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-section-title i {
    color: var(--gold);
}

.pitch-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.9;
    padding: 20px;
    background: var(--bg-warm);
    border-radius: var(--radius-md);
    border-right: 3px solid var(--gold);
}

.description-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.9;
}

.financial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.fin-card {
    text-align: center;
    padding: 20px 16px;
    background: var(--bg-warm);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.fin-label {
    display: block;
    font-size: 12px;
    color: var(--text-dim);
    margin-bottom: 6px;
}

.fin-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--gold-dark);
    font-family: var(--font-display);
}

.strengths-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.strength-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--gold-glow);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-dark);
}

.strength-item i {
    font-size: 11px;
}

/* Sidebar */
.listing-sidebar { position: sticky; top: 96px; }

.sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
}

.sidebar-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 16px;
}

.sidebar-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.sidebar-row span { color: var(--text-muted); }
.sidebar-row strong { color: var(--text-primary); }
.sidebar-row strong.gold { color: var(--gold-dark); }

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

.readiness-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gold-glow);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-full);
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 14px;
}

/* PDF Download */
.pdf-download-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pdf-download-btn:hover {
    border-color: var(--gold);
    background: var(--gold-glow);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dim);
}

.breadcrumb a {
    color: var(--text-muted);
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--gold-dark);
}

.breadcrumb i {
    font-size: 10px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    margin-top: 48px;
}

/* ===== LISTINGS PAGE ===== */
.filter-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    align-items: center;
}

.filter-select {
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 14px;
    background: var(--bg-card);
    color: var(--text-secondary);
    cursor: pointer;
    font-family: var(--font-body);
    appearance: none;
    padding-left: 32px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236B6B80' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 12px center;
    transition: border-color 0.3s;
}

.filter-select:focus {
    outline: none;
    border-color: var(--gold);
}

.search-input-wrap {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.search-input-wrap input {
    width: 100%;
    padding: 10px 16px;
    padding-right: 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-family: var(--font-body);
    transition: border-color 0.3s;
}

.search-input-wrap input:focus {
    outline: none;
    border-color: var(--gold);
}

.search-input-wrap i {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dim);
}

/* ===== SECTORS GRID ===== */
.sectors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.sector-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.sector-chip:hover {
    border-color: var(--gold);
    background: var(--gold-glow);
    color: var(--gold-dark);
}

.sector-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* ===== OWNER TYPE BADGE ===== */
.owner-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== STATUS BADGES ===== */
.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.status-badge.status-pending { background: var(--amber-bg); color: #b45309; }
.status-badge.status-approved { background: var(--green-bg); color: #16a34a; }
.status-badge.status-rejected { background: var(--red-bg); color: #dc2626; }

/* ===== SUCCESS ICON ===== */
.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--green-bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--green);
    margin: 0 auto 12px;
}

/* ===== VALUES & ABOUT GRID ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-md);
}

.value-card h4 {
    font-family: var(--font-display);
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.value-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-glow);
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 12px;
    border: 1px solid var(--border-gold);
}

/* ===== NAVY SECTION ===== */
.section-navy {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.85);
}

.section-navy .section-header p { color: rgba(255, 255, 255, 0.5); }
.section-navy .section-tag { background: rgba(197, 165, 90, 0.15); border-color: rgba(197, 165, 90, 0.3); }
.section-navy .step-card { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.08); }
.section-navy .step-card:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--gold); }
.section-navy .step-card h3 { color: var(--white); }
.section-navy .step-card p { color: rgba(255, 255, 255, 0.55); }
.section-navy .step-number { color: rgba(197, 165, 90, 0.3); }
.section-navy .step-icon { background: rgba(197, 165, 90, 0.15); border-color: rgba(197, 165, 90, 0.25); }
.section-navy .text-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

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

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-social {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--white);
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

/* Footer Bank Section */
.footer-bank {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bank h4 {
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: 15px;
    margin-bottom: 12px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    gap: 8px;
}

.footer-bank h4 i {
    font-size: 14px;
}

.footer-bank-details {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px 24px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bank-details strong {
    color: rgba(255, 255, 255, 0.75);
}

.footer-col h4 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--gold-light);
}

.footer-contact p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
}

.footer-contact i {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    margin-top: 48px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

/* ===== LEGAL ===== */
.legal-list {
    max-width: 800px;
    margin: 0 auto;
}

.legal-item {
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
}

.legal-item h4 {
    font-family: var(--font-display);
    font-size: 16px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-item h4 i { color: var(--gold); }

.legal-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-primary);
    color: var(--white);
    padding: 14px 24px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10000;
    transition: bottom 0.4s ease;
    box-shadow: var(--shadow-xl);
}

.toast.show {
    bottom: 32px;
}

/* ===== REVEAL (for GSAP) ===== */
/* Elements start visible — GSAP animates them in from below for enhanced effect.
   If GSAP fails to load, content is still fully visible. */
.reveal {
    opacity: 1;
    transform: translateY(0);
}

.reveal.gsap-ready {
    opacity: 0;
    transform: translateY(30px);
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: all 0.2s;
}

.pagination a:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.pagination .active {
    background: var(--gold-gradient-dark);
    color: var(--white);
    border-color: transparent;
}

/* ===== PREMIUM SECTION ===== */
.premium-section { background: var(--bg-soft); }

.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.premium-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    transition: all 0.3s ease;
}

.premium-feature-card:hover {
    border-color: var(--border-gold);
}

.premium-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-glow);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.premium-feature-card h4 {
    font-family: var(--font-display);
    margin-bottom: 12px;
}

.premium-feature-card ul {
    list-style: none;
}

.premium-feature-card ul li {
    font-size: 13px;
    color: var(--text-muted);
    padding: 4px 0;
    padding-right: 16px;
    position: relative;
}

.premium-feature-card ul li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--gold);
    font-weight: 700;
}

.premium-cta-box {
    text-align: center;
    margin-top: 32px;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-gold);
}

.premium-price .price-amount {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 500;
    color: var(--gold-dark);
}

.premium-price .price-currency {
    font-size: 20px;
    color: var(--text-muted);
    margin-right: 4px;
}

/* ===== PAGE CONTENT ===== */
.page-content {
    padding-top: 120px;
    min-height: 80vh;
}

/* ===== ABOUT PAGE ===== */
.about-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.vision-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.vision-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-md);
}

.vision-card h3 {
    font-family: var(--font-display);
    color: var(--gold-dark);
    margin-bottom: 12px;
}

.vision-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .listing-detail-grid {
        grid-template-columns: 1fr;
    }
    .listing-sidebar {
        position: static;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 72px;
        right: 0;
        left: 0;
        background: var(--bg-card);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    .nav-links.show { display: flex; }
    .mobile-menu-btn { display: block; }

    .hero {
        min-height: auto;
        padding: 100px 20px 60px;
    }

    .hero h1 { font-size: 28px; }

    .hero-stats {
        gap: 24px;
    }

    .hero-stat .number {
        font-size: 28px;
    }

    .section {
        padding: 60px 0;
    }

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

    .opp-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .subscribe-row {
        flex-direction: column;
    }

    .filter-bar {
        flex-direction: column;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .services-preview-grid {
        grid-template-columns: 1fr;
    }

    .steps-timeline {
        grid-template-columns: 1fr;
    }

    .gallery-main {
        height: 260px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 48px 0;
    }

    .hero {
        padding: 90px 16px 48px;
    }

    .hero p {
        font-size: 15px;
    }

    .form-section {
        padding: 20px 16px;
    }

    .checkbox-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-md);
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gold-glow);
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 12px;
    border: 1px solid var(--border-gold);
}

.contact-info-card h3 {
    font-size: 15px;
    font-family: var(--font-display);
    margin-bottom: 8px;
}

.contact-info-card a {
    font-size: 14px;
    color: var(--gold-dark);
    font-weight: 600;
}

.social-links-section {
    text-align: center;
}

.social-links-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link-card {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 14px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link-card:hover {
    border-color: var(--gold);
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    background: var(--gold-glow);
    color: var(--gold-dark);
}

/* ===== BLOG PAGE ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-gold);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.blog-card-content {
    padding: 20px;
}

.blog-card-content time {
    font-size: 12px;
    color: var(--text-dim);
}

.blog-card-content h3 {
    font-size: 18px;
    margin: 8px 0;
    font-family: var(--font-display);
}

.blog-card-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== FILTER RESET ===== */
.filter-reset {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    font-size: 13px;
    color: var(--red);
    border: 1px solid rgba(239, 68, 68, 0.2);
    background: var(--red-bg);
    transition: all 0.3s ease;
}

.filter-reset:hover {
    background: rgba(239, 68, 68, 0.15);
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-soft);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* =============================================
   BLOG SYSTEM STYLES
   ============================================= */

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

/* Blog Card */
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.35s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-gold);
}

.blog-card a {
    display: block;
    color: inherit;
}

.blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-soft) 100%);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-soft) 100%);
}

.blog-card-placeholder i {
    font-size: 42px;
    color: var(--gold-light);
    opacity: 0.4;
}

.blog-card-category {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(27, 42, 74, 0.85);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.blog-card-content {
    padding: 20px;
}

.blog-card-content h3 {
    font-size: 17px;
    font-family: var(--font-display);
    margin-bottom: 8px;
    line-height: 1.5;
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-dim);
    margin-bottom: 10px;
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-dark);
    transition: gap 0.3s ease;
}

.blog-card:hover .blog-read-more {
    gap: 10px;
}

/* Blog Filters */
.blog-filter-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-soft);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.blog-filter-btn:hover {
    color: var(--gold-dark);
    border-color: var(--border-gold);
    background: var(--gold-glow);
}

.blog-filter-btn.active {
    background: var(--gold-gradient-dark);
    color: var(--white);
    border-color: var(--gold);
}

/* Blog Article Page */
.blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 24px;
    padding-top: 24px;
}

.blog-breadcrumb a {
    color: var(--text-muted);
    transition: color 0.3s;
}

.blog-breadcrumb a:hover {
    color: var(--gold-dark);
}

.blog-breadcrumb i {
    font-size: 10px;
}

.blog-article-header {
    margin-bottom: 32px;
}

.blog-article-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text-dim);
}

.blog-article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-cover-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
    max-height: 400px;
}

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

/* Blog Article Content */
.blog-article-content {
    font-size: 16px;
    line-height: 2.2;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.blog-article-content h2 {
    font-size: 22px;
    color: var(--navy);
    margin: 32px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gold-glow);
}

.blog-article-content h3 {
    font-size: 18px;
    color: var(--navy);
    margin: 24px 0 12px;
}

.blog-article-content p {
    margin-bottom: 16px;
}

.blog-article-content ul,
.blog-article-content ol {
    margin: 12px 0;
    padding-right: 24px;
}

.blog-article-content li {
    margin-bottom: 8px;
    line-height: 1.9;
}

.blog-article-content strong {
    color: var(--text-primary);
    font-weight: 700;
}

.blog-article-content a {
    color: var(--gold-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blog-article-content blockquote {
    border-right: 4px solid var(--gold);
    padding: 16px 20px;
    margin: 20px 0;
    background: var(--gold-glow);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--text-primary);
}

/* Blog Tags */
.blog-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 20px 0;
    border-top: 1px solid var(--border-light);
    margin-bottom: 20px;
}

.blog-tag {
    display: inline-flex;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-soft);
    border: 1px solid var(--border);
}

/* Blog Share */
.blog-share {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-soft);
    border-radius: var(--radius-md);
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.blog-share-buttons {
    display: flex;
    gap: 8px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-secondary);
    transition: all 0.3s ease;
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.share-btn.twitter:hover { background: #1DA1F2; color: white; border-color: #1DA1F2; }
.share-btn.whatsapp:hover { background: #25D366; color: white; border-color: #25D366; }
.share-btn.copy:hover { background: var(--gold-glow); color: var(--gold-dark); border-color: var(--gold); }

/* Blog CTA */
.blog-cta {
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--gold-glow) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-gold);
}

.blog-cta h3 {
    margin-bottom: 8px;
}

.blog-cta p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 14px;
}

/* Blog Responsive */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-article-content {
        font-size: 15px;
    }

    .blog-share {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =============================================
   SHARE SYSTEM STYLES
   ============================================= */

/* Share Bar (inside sidebar) */
.share-bar {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.share-bar-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.share-bar-buttons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

/* Share Circle Buttons */
.share-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-circle:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.share-circle.whatsapp:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.share-circle.twitter:hover {
    background: #1B2A4A;
    color: white;
    border-color: #1B2A4A;
    box-shadow: 0 4px 16px rgba(27, 42, 74, 0.25);
}

.share-circle.copy:hover {
    background: var(--gold-glow);
    color: var(--gold-dark);
    border-color: var(--gold);
}

.share-circle.copy.copied {
    background: var(--green-bg);
    color: #16a34a;
    border-color: #16a34a;
}

.share-circle.native:hover {
    background: var(--gold-gradient-dark);
    color: white;
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

/* Share button in listing card */
.card-share-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background: var(--bg-soft);
    color: var(--text-dim);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    position: absolute;
    top: 12px;
    left: 52px;
}

.card-share-btn:hover {
    background: var(--gold-glow);
    color: var(--gold-dark);
    border-color: var(--gold);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .share-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* =============================================
   TOAST NOTIFICATIONS
   ============================================= */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--navy);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    white-space: nowrap;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.toast i {
    color: var(--gold-light);
    font-size: 16px;
}

/* =============================================
   BANK ACCOUNT CARD (Contact Page)
   ============================================= */

.bank-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.bank-card-header {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--gold-glow) 0%, var(--bg-warm) 100%);
    border-bottom: 1px solid var(--border-gold);
}

.bank-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-gradient-dark);
    color: var(--white);
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    font-size: 20px;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.bank-card-header h3 {
    font-family: var(--font-display);
    font-size: 17px;
    margin-bottom: 0;
}

.bank-card-body {
    padding: 20px 24px;
}

.bank-detail-row {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
}

.bank-detail-row:last-child {
    border-bottom: none;
}

.bank-label {
    color: var(--text-muted);
    font-weight: 500;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    margin-left: 16px;
}

.bank-value {
    color: var(--text-primary);
    font-weight: 600;
    word-break: break-all;
}

@media (max-width: 480px) {
    .bank-detail-row {
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-align-items: flex-start;
        align-items: flex-start;
        gap: 4px;
    }

    .bank-label {
        margin-left: 0;
    }

    .bank-value {
        font-size: 13px;
    }
}

/* =============================================
   SAFARI COMPATIBILITY LAYER
   ============================================= */

/* Flexbox gap fallback for Safari < 14.1 */
@supports not (gap: 1px) {
    .footer-social a { margin-left: 10px; }
    .social-links-grid > * { margin: 6px; }
    .hero-buttons > * { margin: 8px; }
    .hero-stats > * { margin: 0 20px; }
    .trust-features > * { margin: 0 16px; }
    .filter-bar > * { margin-bottom: 12px; }
    .toggle-group > * { margin: 4px; }
    .card-tags > * { margin: 3px; }
    .strengths-grid > * { margin: 4px; }
    .checkbox-grid > * { margin: 4px; }
    .footer-bank-details > * { margin-left: 24px; margin-bottom: 8px; }
}

/* Safari smooth scrolling enhancement */
@supports (-webkit-overflow-scrolling: touch) {
    html { -webkit-overflow-scrolling: touch; }
    
    .gallery-thumbs {
        -webkit-overflow-scrolling: touch;
    }
}

/* Ensure reveal elements are visible even without GSAP */
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal.gsap-ready {
        opacity: 1 !important;
        -webkit-transform: none !important;
        transform: none !important;
    }
}