/* ============================================
   BHOOMI SHARE - Professional Multi-Page Theme
   Color Scheme: Navy / Slate / Teal
   ============================================ */

/* CSS Variables - Professional Color Theme */
:root {
	
    /* === New Corporate Blue Theme === */
    --primary:       #003087;        /* deep corporate blue */
    --primary-dark:  #001f4d;
    --primary-light: #1e40af;

    --accent:        #c9a347;        /* rich gold – use for money/investment feel */
    --accent-light:  #d4af37;
    --accent-dark:   #a67c00;

    /* Optional: if you prefer teal instead of gold */
    /* --accent:     #006d77; */
    /* --accent-light: #0891b2; */
    /* --accent-dark:  #0f766e; */

    --secondary:     #475569;
    --secondary-light: #64748b;
    --secondary-dark: #334155;

    --white:         #ffffff;
    --gray-50:       #f8f9fc;
    --gray-100:      #f1f5f9;
    --gray-200:      #e2e8f0;
    --gray-300:      #cbd5e1;
    --gray-400:      #94a3b8;
    --gray-500:      #64748b;
    --gray-600:      #475569;
    --gray-700:      #334155;
    --gray-800:      #1e293b;
    --gray-900:      #0f172a;

    --success:       #059669;
    --warning:       #b45309;
    --danger:        #b91c1c;
    --info:          #1d4ed8;

    /* Gradients – updated */
    --gradient-primary: linear-gradient(135deg, #003087 0%, #001f4d 100%);
    --gradient-accent:  linear-gradient(135deg, #c9a347 0%, #a67c00 100%);
    --gradient-hero:    linear-gradient(135deg, #003087 0%, #1e293b 100%);

    --font-heading: 'Inter', system-ui, sans-serif;
    --font-body:    'Inter', system-ui, sans-serif;

    --section-padding: 100px 0;
    --card-radius:     16px;       /* slightly larger = more premium */
    --btn-radius:      10px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow:    0 4px 12px rgba(0,0,0,0.10);
    --shadow-md: 0 10px 25px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.15);
}

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

.stat-number.text-accent,
.fund-value.text-accent,
.irr-high, .irr-medium {
    color: var(--accent);
    font-weight: 700;
}
/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background-color: var(--white);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--gray-900);
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }

/* ============================================
   NAVIGATION
   ============================================ */
#mainNav {
    padding: 16px 0;
    transition: all 0.3s ease;
    background: transparent;
}

#mainNav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 12px 0;
}

#mainNav.scrolled .navbar-brand .brand-main { color: var(--primary); }
#mainNav.scrolled .navbar-brand .brand-sub { color: var(--gray-500); }
#mainNav.scrolled .nav-link { color: var(--gray-700) !important; }
#mainNav.scrolled .nav-link:hover { color: var(--accent) !important; }
#mainNav.scrolled .nav-link.active { color: var(--accent) !important; }

.navbar-brand { display: flex; flex-direction: column; }

.brand-main {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.brand-sub {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.navbar-nav { align-items: center; }

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 18px !important;
    margin: 0 2px;
    border-radius: var(--btn-radius);
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-nav .nav-link:hover {
    color: var(--white) !important;
}

.btn-invest-nav {
    background: var(--gradient-accent);
    color: var(--white) !important;
    font-weight: 600;
    padding: 10px 24px !important;
    border-radius: var(--btn-radius);
    margin-left: 15px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-invest-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white) !important;
}

.btn-invest-nav::after { display: none !important; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-badge .badge {
    font-size: 0.8rem;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero-title .text-accent {
    color: var(--accent-light);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 550px;
    font-weight: 400;
    line-height: 1.7;
}

.hero-stats { margin-top: 50px; }

.stat-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--card-radius);
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 5px;
    font-family: var(--font-body);
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta { margin-top: 45px; }

.btn-primary {
    background: var(--gradient-accent);
    border: none;
    color: var(--white);
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--btn-radius);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    font-weight: 500;
    padding: 14px 32px;
    border-radius: var(--btn-radius);
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.8rem;
    animation: bounce 2s infinite;
    display: block;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(13, 148, 136, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--gray-900);
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-section {
    background: var(--gray-50);
    padding: var(--section-padding);
}

.problem-card {
    background: var(--white);
    border-radius: var(--card-radius);
    padding: 35px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    height: 100%;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.problem-icon {
    width: 65px;
    height: 65px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.problem-icon i {
    font-size: 1.6rem;
    color: var(--white);
}

.problem-card h4 {
    font-size: 1.1rem;
    color: var(--gray-800);
    margin-bottom: 10px;
    font-weight: 600;
}

.problem-stat {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.problem-desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.6;
}

.solution-banner {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 28px 40px;
    border-radius: var(--card-radius);
    text-align: center;
    font-size: 1.05rem;
    box-shadow: var(--shadow-md);
}

/* ============================================
   OPPORTUNITY SECTION
   ============================================ */
.opportunity-section {
    background: var(--gradient-primary);
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.opportunity-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.opportunity-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--card-radius);
    padding: 40px 30px;
    text-align: center;
    color: var(--white);
    transition: all 0.3s ease;
    height: 100%;
}

.opportunity-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.opportunity-icon {
    width: 75px;
    height: 75px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.opportunity-icon i {
    font-size: 1.9rem;
    color: var(--white);
}

.opportunity-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 8px;
}

.opportunity-card h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.opportunity-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.opportunity-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.tag {
    background: rgba(255, 255, 255, 0.12);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* ============================================
   FUND CARDS
   ============================================ */
.funds-section {
    background: var(--gray-50);
    padding: var(--section-padding);
}

.fund-card {
    background: var(--white);
    border-radius: var(--card-radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.fund-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.urban-fund::before { background: var(--gradient-accent); }
.agri-fund::before { background: var(--gradient-primary); }

.fund-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.fund-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.fund-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.urban-fund .fund-icon {
    background: rgba(13, 148, 136, 0.1);
}

.agri-fund .fund-icon {
    background: rgba(30, 58, 95, 0.1);
}

.urban-fund .fund-icon i {
    font-size: 1.6rem;
    color: var(--accent);
}

.agri-fund .fund-icon i {
    font-size: 1.6rem;
    color: var(--primary);
}

.fund-badge {
    background: rgba(13, 148, 136, 0.1);
    color: var(--accent-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.fund-badge-alt {
    background: rgba(30, 58, 95, 0.1);
    color: var(--primary);
}

.fund-title {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 12px;
    font-weight: 700;
}

.fund-desc {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: 28px;
    line-height: 1.6;
}

.fund-details {
    border-top: 1px solid var(--gray-200);
    padding-top: 22px;
}

.fund-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

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

.fund-row.highlight {
    background: rgba(13, 148, 136, 0.05);
    margin: 0 -40px;
    padding: 15px 40px;
}

.fund-label {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.fund-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-800);
    text-align: right;
    max-width: 60%;
}

.irr-high {
    color: var(--accent-dark) !important;
    font-size: 1.1rem !important;
}

.irr-medium {
    color: var(--primary) !important;
    font-size: 1.1rem !important;
}

.btn-fund {
    background: var(--gradient-accent);
    border: none;
    color: var(--white);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--btn-radius);
    transition: all 0.3s ease;
}

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

.btn-fund-alt {
    background: var(--gradient-primary);
}

.btn-fund-alt:hover {
    box-shadow: var(--shadow-md);
}

/* ============================================
   ZONES SECTION
   ============================================ */
.zones-section {
    background: var(--white);
    padding: var(--section-padding);
}

.zone-card {
    background: var(--gray-50);
    border-radius: var(--card-radius);
    padding: 32px;
    height: 100%;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

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

.zone-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
}

.zone-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
}

.zone-icon-alt {
    background: var(--gradient-primary);
}

.zone-header h4 {
    font-size: 1.25rem;
    margin: 0;
    font-weight: 600;
}

.zone-type {
    font-size: 0.75rem;
    color: var(--accent-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.zone-type-alt {
    color: var(--primary);
}

.zone-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.location-tag {
    background: rgba(13, 148, 136, 0.1);
    color: var(--accent-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.location-tag-alt {
    background: rgba(30, 58, 95, 0.1);
    color: var(--primary);
}

.zone-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.zone-features .feature i {
    color: var(--accent);
    font-size: 1.1rem;
}

.zones-stats {
    background: var(--gradient-primary);
    border-radius: var(--card-radius);
    padding: 45px;
    color: var(--white);
}

.zones-stat h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 5px;
}

.zones-stat p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ============================================
   EDGE SECTION
   ============================================ */
.edge-section {
    background: var(--gray-50);
    padding: var(--section-padding);
}

.edge-card {
    background: var(--white);
    border-radius: var(--card-radius);
    padding: 35px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    height: 100%;
    position: relative;
}

.edge-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.edge-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(13, 148, 136, 0.08);
    line-height: 1;
}

.edge-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.edge-icon i {
    font-size: 1.4rem;
    color: var(--white);
}

.edge-card h4 {
    font-size: 1.15rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--gray-900);
}

.edge-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   RISK SECTION
   ============================================ */
.risk-section {
    background: var(--white);
    padding: var(--section-padding);
}

.risk-card {
    background: var(--gray-50);
    border-radius: var(--card-radius);
    padding: 28px;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.risk-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.risk-high { border-left-color: var(--danger); }
.risk-medium { border-left-color: var(--warning); }
.risk-low { border-left-color: var(--success); }

.risk-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.risk-badge {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.risk-badge-high {
    background: rgba(220, 38, 38, 0.1);
    color: var(--danger);
}

.risk-badge-medium {
    background: rgba(217, 119, 6, 0.1);
    color: var(--warning);
}

.risk-badge-low {
    background: rgba(5, 150, 105, 0.1);
    color: var(--success);
}

.risk-header h4 {
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
    color: var(--gray-800);
}

.risk-mitigation {
    display: flex;
    gap: 12px;
}

.risk-mitigation i {
    font-size: 1.2rem;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 3px;
}

.risk-mitigation p {
    font-size: 0.88rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    font-weight: 700;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    position: relative;
}

.cta-buttons { position: relative; }

.btn-cta-primary {
    background: var(--accent);
    border: none;
    color: var(--white);
    font-weight: 600;
    padding: 14px 35px;
    border-radius: var(--btn-radius);
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-cta-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    font-weight: 500;
    padding: 14px 35px;
    border-radius: var(--btn-radius);
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 70px 0 30px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    color: var(--accent-light);
    margin-bottom: 5px;
    font-weight: 700;
}

.footer-tagline {
    font-size: 0.75rem;
    color: var(--gray-400);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.footer-slogan {
    font-size: 0.95rem;
    color: var(--gray-400);
    font-style: italic;
}

.footer h5 {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 22px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--gray-400);
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--accent);
    font-size: 1rem;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

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

.footer-social a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.03);
    padding: 22px;
    border-radius: var(--card-radius);
    margin-top: 40px;
}

.footer-disclaimer p {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.7;
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin: 30px 0 0;
}

/* ============================================
   MODALS
   ============================================ */
.modal-content {
    border: none;
    border-radius: var(--card-radius);
    overflow: hidden;
}

.modal-header {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    padding: 22px 28px;
}

.modal-title {
    font-size: 1.15rem;
    color: var(--gray-900);
    font-weight: 600;
}

.modal-body {
    padding: 28px;
}

.bg-urban {
    background: var(--gradient-accent) !important;
}

.bg-urban .modal-title {
    color: var(--white);
}

.bg-agri {
    background: var(--gradient-primary) !important;
}

.bg-agri .modal-title {
    color: var(--white);
}

.form-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-control, .form-select {
    border: 1px solid var(--gray-300);
    border-radius: var(--btn-radius);
    padding: 11px 16px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.contact-info-panel {
    background: var(--gray-50);
    border-radius: var(--card-radius);
    padding: 28px;
    height: 100%;
}

.contact-info-panel h6 {
    font-size: 0.9rem;
    color: var(--gray-800);
    margin-bottom: 18px;
    font-weight: 600;
}

.contact-info-panel p {
    font-size: 0.88rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.contact-info-panel i {
    color: var(--accent);
    font-size: 1rem;
}

.fund-detail-title {
    font-size: 1.1rem;
    color: var(--gray-800);
    margin-bottom: 18px;
    font-weight: 600;
}

.fund-strategy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fund-strategy-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.92rem;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}

.fund-strategy-list li:last-child {
    border-bottom: none;
}

.zone-detail-card {
    background: var(--gray-50);
    border-radius: var(--btn-radius);
    padding: 22px;
    border-left: 3px solid var(--accent);
}

.zone-detail-agri {
    border-left-color: var(--primary);
}

.zone-detail-card h6 {
    font-size: 0.95rem;
    color: var(--gray-800);
    margin-bottom: 8px;
    font-weight: 600;
}

.zone-detail-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
}

.fund-summary-card {
    background: var(--gray-50);
    border-radius: var(--card-radius);
    padding: 28px;
    position: sticky;
    top: 20px;
}

.fund-summary-card h6 {
    font-size: 0.9rem;
    color: var(--gray-800);
    margin-bottom: 22px;
    font-weight: 600;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}

.summary-item span {
    font-size: 0.88rem;
    color: var(--gray-500);
}

.summary-item strong {
    font-size: 0.92rem;
    color: var(--gray-800);
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    background: var(--gradient-primary);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb-nav {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    padding: 15px 0;
}

.breadcrumb {
    margin: 0;
    font-size: 0.85rem;
}

.breadcrumb-item a {
    color: var(--accent);
}

.breadcrumb-item.active {
    color: var(--gray-500);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
    background: var(--gray-50);
    padding: var(--section-padding);
}

.contact-card {
    background: var(--white);
    border-radius: var(--card-radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    height: 100%;
}

.contact-card h4 {
    font-size: 1.25rem;
    margin-bottom: 25px;
    color: var(--gray-900);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(13, 148, 136, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.3rem;
    color: var(--accent);
}

.contact-info-content h5 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--gray-800);
}

.contact-info-content p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .hero-title { font-size: 2.8rem; }
    .section-title { font-size: 2rem; }
    .page-header h1 { font-size: 2.3rem; }
    
    .navbar-collapse {
        background: rgba(30, 58, 95, 0.98);
        padding: 20px;
        border-radius: var(--card-radius);
        margin-top: 15px;
    }
    
    #mainNav.scrolled .navbar-collapse {
        background: var(--white);
    }
    
    .btn-invest-nav {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .section-title { font-size: 1.7rem; }
    .page-header { padding: 120px 0 60px; }
    .page-header h1 { font-size: 1.9rem; }
    .cta-title { font-size: 1.9rem; }
    
    .stat-box { padding: 18px 12px; }
    .stat-number { font-size: 1.5rem; }
    
    .hero-cta .btn,
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 12px;
        margin-right: 0 !important;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}
