/* ============================================
   BIRDEO SAHAKARI BANK - YELLOW THEME
   ============================================ */

:root {
    --gold:       #F5A800;
    --gold-dark:  #D48C00;
    --gold-light: #FFD04D;
    --gold-pale:  #FFF8E1;
    --black:      #1A1209;
    --dark:       #2D2108;
    --charcoal:   #4A3B1A;
    --mid:        #7A6540;
    --light-text: #9E855A;
    --white:      #FFFFFF;
    --off-white:  #FDFAF3;
    --border:     #E8D88A;
    --shadow:     rgba(212,140,0,0.15);
    --shadow-dark:rgba(26,18,9,0.18);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'DM Sans', sans-serif;

    --radius:  8px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--off-white);
    color: var(--dark);
    line-height: 1.7;
    font-size: 16px;
}

/* Hide top bar and news ticker on mobile */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .news-ticker {
        display: none;
    }

    /* Optional: reduce header height on mobile */
    .site-header {
        padding: 10px 0;
    }

    .logo-main {
        font-size: 16px;
    }

    .logo-sub {
        font-size: 11px;
    }
}

/* Mobile Footer Layout */
@media (max-width: 768px) {

    /* Hide footer link columns */
    .footer-grid .footer-col:nth-child(2),
    .footer-grid .footer-col:nth-child(3) {
        display: none;
    }

    /* Optional: also hide contact column */
    /* .footer-grid .footer-col:nth-child(4) {
        display: none;
    } */

    /* Center footer content */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-qr-row {
        justify-content: center;
    }

    .footer-logo {
        justify-content: center;
    }
}

a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- TOP BAR ---- */
.top-bar {
    background: var(--dark);
    color: #cca94a;
    font-size: 13px;
    padding: 8px 0;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.top-bar-left, .top-bar-right {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.top-bar span { display: flex; align-items: center; gap: 6px; }
.top-bar i { color: var(--gold); }

/* ---- NEWS TICKER ---- */
.news-ticker {
    background: var(--gold);
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 36px;
}
.ticker-label {
    background: var(--dark);
    color: var(--gold);
    font-weight: 700;
    font-size: 12px;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    letter-spacing: 1px;
    flex-shrink: 0;
}
.ticker-content {
    flex: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
}
.ticker-items {
    display: flex;
    animation: ticker-scroll 35s linear infinite;
    white-space: nowrap;
    color: var(--dark);
    font-weight: 600;
    font-size: 13px;
}
.ticker-item { padding: 0 40px; }
.ticker-item::after { content: ' ◆ '; color: var(--dark); opacity: 0.5; }
@keyframes ticker-scroll {
    0%   { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
}

/* ---- HEADER ---- */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 20px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--gold);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
    gap: 20px;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
}
.logo-icon {
    width: 52px;
    height: 52px;
    background: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--dark);
    flex-shrink: 0;
    box-shadow: 0 4px 12px var(--shadow);
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.logo-main {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    color: var(--dark);
    line-height: 1.1;
}
.logo-sub {
    font-size: 11px;
    color: var(--gold-dark);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}
.main-nav ul li a {
    font-weight: 600;
    font-size: 14px;
    color: var(--charcoal);
    padding: 8px 16px;
    border-radius: var(--radius);
    transition: all var(--transition);
    letter-spacing: 0.3px;
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
    background: var(--gold);
    color: var(--dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ---- PAGE HERO ---- */
.page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 60%, var(--gold-dark) 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245,168,0,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 48px);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 8px;
}
.page-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-light);
    font-size: 14px;
}
.page-hero .breadcrumb a { color: var(--gold-light); }
.page-hero .breadcrumb a:hover { color: var(--white); }

/* ---- HOME HERO SLIDER ---- */
.hero-slider {
    background: linear-gradient(135deg, var(--dark) 0%, #3D2E10 50%, var(--charcoal) 100%);
    min-height: 520px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-slider::before {
    content: '';
    position: absolute;
    inset: 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='%23F5A800' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,168,0,0.15);
    border: 1px solid rgba(245,168,0,0.3);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 13px;
    color: var(--gold-light);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 6vw, 58px);
    color: var(--white);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-content h1 span { color: var(--gold); }
.hero-content p {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    line-height: 1.8;
}
.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--dark);
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 15px;
    transition: all var(--transition);
    border: 2px solid var(--gold);
    cursor: pointer;
}
.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--shadow);
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 15px;
    transition: all var(--transition);
    border: 2px solid rgba(255,255,255,0.4);
    cursor: pointer;
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    color: var(--white);
}
.hero-decoration {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.hero-decoration-inner {
    width: 380px;
    height: 380px;
    border: 1px solid rgba(245,168,0,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero-decoration-inner::before {
    content: '';
    position: absolute;
    inset: 30px;
    border: 1px solid rgba(245,168,0,0.2);
    border-radius: 50%;
}
.hero-icon-big {
    font-size: 100px;
    color: rgba(245,168,0,0.2);
}

/* ---- STATS BAR ---- */
.stats-bar {
    background: var(--gold);
    padding: 28px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.stat-item {
    text-align: center;
    padding: 12px 20px;
    border-right: 1px solid rgba(26,18,9,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    display: block;
}
.stat-label {
    font-size: 13px;
    color: var(--dark);
    font-weight: 600;
    opacity: 0.75;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

/* ---- SECTION GENERAL ---- */
section { padding: 80px 0; }
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 12px;
}
.section-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--gold);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 16px;
    color: var(--mid);
    max-width: 580px;
    line-height: 1.8;
}
.section-header-center {
    text-align: center;
}
.section-header-center .section-label { justify-content: center; }
.section-header-center .section-subtitle { margin: 0 auto; }

/* ---- WHY CHOOSE ---- */
.why-choose { background: var(--white); }
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.why-features {
    display: grid;
    gap: 20px;
    margin-top: 32px;
}
.why-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.why-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-pale);
    border: 2px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gold-dark);
    flex-shrink: 0;
    transition: all var(--transition);
}
.why-feature:hover .why-feature-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    transform: scale(1.05);
}
.why-feature-text h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 4px;
}
.why-feature-text p { font-size: 14px; color: var(--mid); }
.why-visual {
    position: relative;
}
.why-visual-card {
    background: linear-gradient(135deg, var(--dark), var(--charcoal));
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 20px 60px var(--shadow-dark);
}
.why-visual-card i {
    font-size: 64px;
    color: var(--gold);
    margin-bottom: 20px;
}
.why-visual-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}
.why-visual-card p { color: rgba(255,255,255,0.7); font-size: 15px; }
.since-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--dark);
    font-size: 12px;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 8px 20px var(--shadow);
}
.since-badge strong { font-size: 20px; display: block; }

/* ---- NOTICES & DOWNLOADS ---- */
.notices-downloads { background: var(--off-white); }
.nd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 48px;
}
.nd-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 24px var(--shadow);
    border: 1px solid var(--border);
}
.nd-panel-header {
    background: var(--dark);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.nd-panel-header i { color: var(--gold); font-size: 20px; }
.nd-panel-header h3 { font-family: var(--font-display); color: var(--white); font-size: 20px; font-weight: 700; }
.nd-panel-body { padding: 24px; }
.notice-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gold-pale);
    align-items: flex-start;
}
.notice-item:last-child { border-bottom: none; }
.notice-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 7px;
}
.notice-dot.important { background: #e53935; }
.notice-item-text { font-size: 14px; color: var(--charcoal); line-height: 1.6; }
.notice-date { font-size: 11px; color: var(--light-text); margin-top: 3px; }
.no-data { color: var(--mid); font-size: 14px; text-align: center; padding: 30px; }
.download-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gold-pale);
}
.download-item:last-child { border-bottom: none; }
.download-icon {
    width: 44px;
    height: 44px;
    background: #FFEBEE;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e53935;
    font-size: 18px;
    flex-shrink: 0;
}
.download-info { flex: 1; }
.download-title { font-size: 14px; font-weight: 600; color: var(--dark); }
.download-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--gold-dark);
    font-weight: 600;
    margin-top: 4px;
}
.download-link:hover { color: var(--gold); }

/* ---- SERVICES PREVIEW ---- */
.services-preview { background: var(--white); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.service-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px var(--shadow); border-color: var(--gold); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon {
    width: 56px;
    height: 56px;
    background: var(--gold-pale);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold-dark);
    margin-bottom: 20px;
    transition: all var(--transition);
}
.service-card:hover .service-card-icon {
    background: var(--gold);
    color: var(--dark);
}
.service-card h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}
.service-card p { font-size: 14px; color: var(--mid); line-height: 1.7; }

/* ---- LOAN RATES ---- */
.loan-rates { background: var(--dark); }
.loan-rates .section-title { color: var(--white); }
.loan-rates .section-label { color: var(--gold-light); }
.loan-rates .section-subtitle { color: rgba(255,255,255,0.6); }
.rates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.rate-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(245,168,0,0.2);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}
.rate-card:hover {
    background: rgba(245,168,0,0.1);
    border-color: var(--gold);
    transform: translateY(-4px);
}
.rate-icon {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 16px;
}
.rate-type {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.rate-value {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.rate-value sup { font-size: 20px; font-weight: 600; }
.rate-value sub { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.5); }
.rate-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-top: 8px;
}
.rate-cta {
    display: inline-block;
    margin-top: 16px;
    background: var(--gold);
    color: var(--dark);
    font-weight: 700;
    font-size: 13px;
    padding: 8px 20px;
    border-radius: 100px;
    transition: all var(--transition);
}
.rate-cta:hover { background: var(--gold-light); color: var(--dark); }

/* ---- GALLERY ---- */
.gallery-section { background: var(--off-white); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
}
.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius);
    border: 2px solid var(--border);
    position: relative;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,18,9,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i { color: var(--gold); font-size: 28px; }

/* ---- ABOUT PAGE ---- */
.about-content { background: var(--white); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image-wrap {
    position: relative;
}
.about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-dark);
    aspect-ratio: 4/3;
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: var(--gold-dark);
    font-size: 14px;
}
.about-img-placeholder i { font-size: 60px; color: var(--gold); }
.about-text h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}
.about-text p { color: var(--mid); line-height: 1.9; margin-bottom: 16px; }

/* ---- CHAIRMAN SPEECH ---- */
.chairman-section { background: var(--gold-pale); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.chairman-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    box-shadow: 0 8px 32px var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}
.chairman-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--gold);
    flex-shrink: 0;
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
}
.chairman-photo img { width: 100%; height: 100%; object-fit: cover; }
.chairman-photo i { font-size: 48px; color: var(--gold-dark); }
.chairman-quote { font-family: var(--font-display); font-size: 20px; font-style: italic; color: var(--dark); line-height: 1.7; margin-bottom: 16px; }
.chairman-quote::before { content: '\201C'; font-size: 48px; color: var(--gold); line-height: 0; vertical-align: -20px; margin-right: 4px; }
.chairman-name { font-weight: 700; color: var(--dark); }
.chairman-title { font-size: 13px; color: var(--mid); }

/* ---- TEAM ---- */
.team-section { background: var(--white); }
.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.team-card {
    text-align: center;
    padding: 24px 16px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition);
    background: var(--off-white);
}
.team-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 24px var(--shadow);
    transform: translateY(-3px);
}
.team-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gold-pale);
    border: 3px solid var(--gold);
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo i { font-size: 32px; color: var(--gold-dark); }
.team-name { font-weight: 700; font-size: 13px; color: var(--dark); line-height: 1.3; margin-bottom: 4px; }
.team-role { font-size: 11px; color: var(--gold-dark); font-weight: 600; letter-spacing: 0.5px; }

/* ---- BANK PROFILE ---- */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.profile-card {
    background: var(--dark);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.profile-num {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    flex-shrink: 0;
    width: 50px;
}
.profile-card p { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.6; }

/* ---- SERVICES PAGE ---- */
.services-detail { background: var(--white); }
.services-list { display: grid; gap: 32px; margin-top: 48px; }
.service-detail-card {
    display: flex;
    gap: 28px;
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--off-white);
    transition: all var(--transition);
    align-items: flex-start;
}
.service-detail-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 32px var(--shadow);
}
.service-detail-icon {
    width: 64px;
    height: 64px;
    background: var(--gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--dark);
    flex-shrink: 0;
}
.service-detail-text h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}
.service-detail-text p { color: var(--mid); line-height: 1.8; }
.btn-download-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    background: var(--gold);
    color: var(--dark);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: var(--radius);
    transition: all var(--transition);
}
.btn-download-link:hover { background: var(--gold-dark); color: var(--white); }

/* ---- SERVICE CHARGES ---- */
.service-charges-section { background: var(--white); }
.charges-cta {
    max-width: 600px;
    margin: 48px auto 0;
    text-align: center;
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: 0 20px 60px var(--shadow-dark);
}
.charges-cta i { font-size: 60px; color: var(--gold); display: block; margin-bottom: 20px; }
.charges-cta h3 { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.charges-cta p { color: rgba(255,255,255,0.6); margin-bottom: 28px; font-size: 15px; }
.btn-open-pdf {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--dark);
    font-weight: 800;
    font-size: 16px;
    padding: 16px 36px;
    border-radius: var(--radius);
    transition: all var(--transition);
    border: 2px solid var(--gold);
}
.btn-open-pdf:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--shadow);
}

/* ---- CONTACT PAGE ---- */
.contact-section { background: var(--white); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    margin-top: 48px;
}
.contact-info-card {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--white);
}
.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 28px;
}
.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}
.contact-info-item .ci-icon {
    width: 44px;
    height: 44px;
    background: rgba(245,168,0,0.15);
    border: 1px solid rgba(245,168,0,0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}
.ci-text strong { display: block; font-size: 12px; color: var(--gold-light); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.ci-text a, .ci-text span { color: rgba(255,255,255,0.8); font-size: 14px; line-height: 1.7; display: block; }
.ci-text a:hover { color: var(--gold); }
.contact-form-panel {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border);
}
.contact-form-panel h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 28px;
}

/* ---- FORMS ---- */
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--charcoal); margin-bottom: 6px; letter-spacing: 0.3px; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--dark);
    background: var(--white);
    transition: border-color var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(245,168,0,0.1);
}
.form-group textarea { resize: vertical; }
.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--dark);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-body);
    width: 100%;
    justify-content: center;
}
.btn-submit:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-1px); }
.btn-complaint-submit { background: #e53935; color: var(--white); }
.btn-complaint-submit:hover { background: #b71c1c; }

/* ---- MAP ---- */
.map-section { background: var(--off-white); padding: 60px 0; }
.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px var(--shadow);
    border: 2px solid var(--border);
    height: 400px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ---- FLOATING BUTTONS ---- */
.floating-buttons {
    position: fixed;
    right: 24px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}
.fab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    font-family: var(--font-body);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    transition: all var(--transition);
}
.fab:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.fab-contact { background: var(--gold); color: var(--dark); }
.fab-complaint { background: #e53935; color: var(--white); }
.fab i { font-size: 16px; }

/* ---- MODAL ---- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform var(--transition);
    box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.modal-overlay.active .modal-box { transform: translateY(0); }
.modal-box h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.modal-box h3 i { color: var(--gold); }
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold-pale);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--charcoal);
    transition: all var(--transition);
}
.modal-close:hover { background: var(--gold); }

/* ---- ALERT MESSAGES ---- */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-success { background: #E8F5E9; color: #1B5E20; border: 1px solid #A5D6A7; }
.alert-error { background: #FFEBEE; color: #B71C1C; border: 1px solid #EF9A9A; }

/* ---- FOOTER ---- */
.site-footer { background: var(--dark); }
.footer-top { padding: 64px 0 40px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-logo i { color: var(--gold); font-size: 24px; }
.footer-about p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.8; margin-bottom: 24px; }
.footer-qr-row { display: flex; gap: 20px; }
.qr-box { text-align: center; }
.qr-box img {
    width: 70px;
    height: 70px;
    border: 2px solid rgba(245,168,0,0.4);
    border-radius: var(--radius);
    padding: 4px;
    background: var(--white);
    object-fit: contain;
}
.qr-box span { display: block; font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 4px; text-align: center; }
.footer-col h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(245,168,0,0.2);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition);
}
.footer-col ul li a i { font-size: 10px; color: var(--gold); }
.footer-col ul li a:hover { color: var(--gold); }
.contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.6;
}
.contact-list li i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.contact-list li a { color: rgba(255,255,255,0.55); }
.contact-list li a:hover { color: var(--gold); }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.badge {
    background: rgba(245,168,0,0.1);
    border: 1px solid rgba(245,168,0,0.25);
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 13px; }

/* ---- LIGHTBOX ---- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .team-grid { grid-template-columns: repeat(4, 1fr); }
    .rates-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 2px solid var(--gold);
        box-shadow: 0 8px 24px var(--shadow-dark);
        padding: 16px;
    }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; gap: 4px; }
    .site-header { position: relative; }
    .hero-decoration { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .nd-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(3, 1fr); }
    .profile-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .chairman-card { flex-direction: column; align-items: center; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .floating-buttons { right: 16px; bottom: 20px; }
    .fab span { display: none; }
    .fab { width: 52px; height: 52px; padding: 0; justify-content: center; border-radius: 50%; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .rates-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-num { font-size: 28px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

.btn-admin {
    background: #0d6efd;
    color: #fff !important;
    padding: 8px 14px;
    border-radius: 6px;
    margin-left: 10px;
    font-size: 14px;
    font-weight: 500;
}

.btn-admin:hover {
    background: #0b5ed7;
}

.admin-btn {
    margin-left: 15px;
}