/* =============================================
   City Heights School — Main Stylesheet
   Color Theme: Deep Blue & White
   ============================================= */

/* ---- Google Fonts are loaded in header.php ---- */

/* ===================== CSS VARIABLES ===================== */
:root {
    --blue-dark:    #0a2463;   /* Primary dark navy */
    --blue-mid:     #1a3a8f;   /* Mid blue */
    --blue-bright:  #1565C0;   /* Bright blue */
    --blue-light:   #e8f0fe;   /* Very light blue tint */
    --gold:         #f5a623;   /* Accent gold */
    --white:        #ffffff;
    --off-white:    #f8f9ff;
    --gray-text:    #555e75;
    --gray-light:   #f0f2f8;
    --text-dark:    #1a1f36;
    --border-color: #dce3f5;
    --shadow-sm:    0 2px 8px rgba(10,36,99,0.08);
    --shadow-md:    0 6px 24px rgba(10,36,99,0.12);
    --shadow-lg:    0 16px 48px rgba(10,36,99,0.18);
    --radius:       10px;
    --radius-lg:    18px;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Source Sans 3', sans-serif;
    --transition:   0.3s ease;
}

/* ===================== BASE ===================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    color: var(--blue-dark);
    line-height: 1.25;
}

a {
    color: var(--blue-bright);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--blue-dark); }

img { max-width: 100%; height: auto; }

/* ===================== TOP BAR ===================== */
.topbar {
    background: var(--blue-dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    padding: 7px 0;
    font-family: var(--font-body);
}
.topbar-item { color: rgba(255,255,255,0.85); }
.topbar-item a {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}
.topbar-item a:hover { color: var(--gold); }

/* ===================== NAVBAR ===================== */
#mainNavbar {
    background: var(--blue-mid);
    padding: 0.6rem 0;
    box-shadow: var(--shadow-md);
    transition: background var(--transition), padding var(--transition);
}
#mainNavbar.scrolled {
    background: var(--blue-dark);
    padding: 0.4rem 0;
}

/* School Logo Icon */
.school-logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--blue-dark);
    flex-shrink: 0;
}
.school-name-main {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}
.school-name-sub {
    display: block;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Nav Links */
.navbar-nav .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.85rem !important;
    border-radius: 6px;
    transition: background var(--transition), color var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff !important;
    background: rgba(255,255,255,0.12);
}

/* Apply Now Button */
.btn-admission {
    background: var(--gold);
    color: var(--blue-dark) !important;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.45rem 1.2rem !important;
    border-radius: 50px;
    border: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-admission:hover {
    background: #e09400;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(245,166,35,0.4);
    color: var(--blue-dark) !important;
}

/* ===================== PAGE HERO / BANNER ===================== */
/* ---- Home Hero ---- */
.hero-section {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 60%, var(--blue-bright) 100%);
    color: #fff;
    padding: 60px 0 90px;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='1.5' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E") repeat;
    pointer-events: none;
}
.hero-decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.hero-deco-1 { width: 500px; height: 500px; top: -180px; right: -120px; }
.hero-deco-2 { width: 280px; height: 280px; bottom: -100px; left: -60px; }
.hero-deco-3 { width: 160px; height: 160px; top: 40px; right: 220px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245,166,35,0.18);
    color: var(--gold);
    border: 1px solid rgba(245,166,35,0.35);
    border-radius: 50px;
    padding: 5px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.15;
}
.hero-title .accent { color: var(--gold); }

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 520px;
    margin-bottom: 34px;
    line-height: 1.75;
}
.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-value {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-top: 4px;
}

/* Hero Visual Card */
.hero-visual-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
    z-index: 1;
}
.hero-img-placeholder {
    width: 100%;
    min-height: 280px;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*border: 2px dashed rgba(255,255,255,0.25);*/
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    gap: 12px;
}
.hero-img-placeholder i { font-size: 3rem; opacity: 0.4; }

/* ---- Inner Page Banner ---- */
.page-banner {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
    padding: 60px 0 50px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.page-banner::after {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}
.page-banner h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}
.page-banner p {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    margin: 0;
}
.breadcrumb-nav { margin-top: 12px; }
.breadcrumb-nav a { color: var(--gold); font-size: 0.9rem; }
.breadcrumb-nav span { color: rgba(255,255,255,0.55); font-size: 0.9rem; }

/* ===================== SECTION STYLES ===================== */
section { padding: 80px 0; }

.section-label {
    display: inline-block;
    background: var(--blue-light);
    color: var(--blue-bright);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--blue-dark);
    margin-bottom: 14px;
}
.section-title .accent { color: var(--blue-bright); }
.section-divider {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--blue-bright));
    border-radius: 4px;
    margin-bottom: 18px;
}
.section-divider.center { margin: 0 auto 18px; }
.section-desc {
    color: var(--gray-text);
    font-size: 1rem;
    max-width: 620px;
    line-height: 1.8;
}

/* ===================== BUTTONS ===================== */
.btn-primary-custom {
    background: var(--blue-bright);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-primary-custom:hover {
    background: var(--blue-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-outline-custom {
    background: transparent;
    color: var(--blue-bright);
    padding: 11px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--blue-bright);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-outline-custom:hover {
    background: var(--blue-bright);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-gold {
    background: var(--gold);
    color: var(--blue-dark);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-gold:hover {
    background: #e09400;
    color: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245,166,35,0.35);
}

/* ===================== CARDS ===================== */
.feature-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-light);
}
.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.7rem;
    color: var(--blue-bright);
    transition: all var(--transition);
}
.feature-card:hover .feature-icon {
    background: var(--blue-bright);
    color: #fff;
}
.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--blue-dark);
}
.feature-card p {
    font-size: 0.92rem;
    color: var(--gray-text);
    margin: 0;
    line-height: 1.7;
}

/* ===================== INFO BOXES / ABOUT ===================== */
.info-box {
    background: var(--blue-light);
    border-left: 4px solid var(--blue-bright);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 22px 24px;
    margin-bottom: 20px;
}
.info-box h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.info-box p { color: var(--gray-text); margin: 0; font-size: 0.93rem; }

.principal-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    box-shadow: var(--shadow-sm);
}
.principal-card::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 8rem;
    color: var(--blue-light);
    position: absolute;
    top: -10px;
    left: 24px;
    line-height: 1;
    pointer-events: none;
}
.principal-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--blue-light);
    border: 3px solid var(--blue-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--blue-bright);
    margin-bottom: 16px;
}

/* ===================== ADMISSIONS PAGE ===================== */
.step-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px;
    position: relative;
    transition: all var(--transition);
    height: 100%;
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.step-number {
    width: 42px;
    height: 42px;
    background: var(--blue-bright);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 14px;
}

.doc-list { list-style: none; padding: 0; margin: 0; }
.doc-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.93rem;
    color: var(--text-dark);
}
.doc-list li:last-child { border-bottom: none; }
.doc-list li i { color: var(--blue-bright); margin-top: 3px; flex-shrink: 0; }

/* ===================== GALLERY ===================== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    background: var(--blue-light);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--blue-bright);
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
}
.gallery-placeholder i { font-size: 2.2rem; opacity: 0.5; }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,36,99,0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-size: 0.88rem; font-weight: 600; }

/* Gallery filter buttons */
.gallery-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.gallery-filter button {
    background: var(--gray-light);
    color: var(--blue-dark);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 7px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-body);
}
.gallery-filter button:hover,
.gallery-filter button.active {
    background: var(--blue-bright);
    color: #fff;
    border-color: var(--blue-bright);
}

/* ===================== FORMS ===================== */
.form-section {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border-color);
}
.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--blue-dark);
    margin-bottom: 6px;
}
.form-control, .form-select {
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius);
    padding: 11px 15px;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--blue-bright);
    box-shadow: 0 0 0 3px rgba(21,101,192,0.12);
    outline: none;
}
.btn-submit {
    background: var(--blue-bright);
    color: #fff;
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    transition: all var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-submit:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Alert messages */
.alert-success-custom {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
    border-radius: var(--radius);
    padding: 14px 20px;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-error-custom {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
    border-radius: var(--radius);
    padding: 14px 20px;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===================== CONTACT PAGE ===================== */
.contact-info-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    height: 100%;
    transition: all var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow-md); }
.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--blue-bright);
    margin-bottom: 14px;
}
.contact-info-card h5 { font-size: 1rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 6px; }
.contact-info-card p, .contact-info-card a {
    color: var(--gray-text);
    font-size: 0.93rem;
    margin: 0;
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}
.map-wrapper iframe { display: block; }

/* ===================== CTA SECTION ===================== */
.cta-section {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta-section::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    top: -160px; right: -100px;
}
.cta-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #fff;
    margin-bottom: 14px;
}
.cta-section p { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 560px; margin: 0 auto 30px; }

/* ===================== TESTIMONIALS / HIGHLIGHTS ===================== */
.highlight-strip {
    background: var(--blue-dark);
    padding: 40px 0;
    color: #fff;
}
.highlight-item {
    text-align: center;
    padding: 16px;
    border-right: 1px solid rgba(255,255,255,0.12);
}
.highlight-item:last-child { border-right: none; }
.highlight-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.highlight-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-top: 6px;
}

/* ===================== NOTICE / ANNOUNCEMENT BAR ===================== */
.notice-bar {
    background: var(--gold);
    padding: 10px 0;
    overflow: hidden;
}
.notice-ticker {
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.notice-badge {
    background: var(--blue-dark);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 4px;
    margin-right: 14px;
    white-space: nowrap;
    flex-shrink: 0;
    z-index: 9;
}
.notice-text {
    font-size: 0.88rem;
    color: var(--blue-dark);
    font-weight: 600;
    animation: ticker 28s linear infinite;
}
@keyframes ticker {
    0%   { transform: translateX(100vw); }
    100% { transform: translateX(-200%); }
}

/* ===================== ABOUT TIMELINE ===================== */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--border-color);
}
.timeline-item { position: relative; margin-bottom: 30px; }
.timeline-dot {
    position: absolute;
    left: -33px;
    top: 6px;
    width: 18px;
    height: 18px;
    background: var(--blue-bright);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--blue-bright);
}
.timeline-year {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--blue-bright);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}
.timeline-item h5 { font-size: 1rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 4px; }
.timeline-item p { font-size: 0.9rem; color: var(--gray-text); margin: 0; }

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

.footer-logo-icon {
    width: 42px; height: 42px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: var(--blue-dark);
    flex-shrink: 0;
}
.footer-school-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}
.footer-school-sub {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.footer-desc { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.75; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--blue-dark); transform: translateY(-2px); }

.footer-heading {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links a i { font-size: 0.7rem; color: var(--gold); }

.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}
.footer-contact-list li i { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact-list a { color: rgba(255,255,255,0.65); }
.footer-contact-list a:hover { color: var(--gold); }

.footer-bottom {
    background: rgba(0,0,0,0.25);
    padding: 16px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* ===================== UTILITIES ===================== */
.bg-light-blue { background: var(--blue-light); }
.bg-off-white { background: var(--off-white); }
.text-blue { color: var(--blue-bright); }
.text-gold { color: var(--gold); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991.98px) {
    .hero-section { padding: 80px 0 60px; min-height: auto; }
    .hero-visual-card { margin-top: 40px; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}
@media (max-width: 767.98px) {
    section { padding: 56px 0; }
    .topbar { font-size: 0.75rem; }
    .highlight-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
    .highlight-item:last-child { border-bottom: none; }
    .form-section { padding: 24px 18px; }
    .principal-card { padding: 24px 18px; }
    .hero-stats { gap: 20px; }
}
