/* ===== CSS Custom Properties ===== */
:root {
  --clr-primary: #0B3D2E;
  --clr-primary-light: #146B4A;
  --clr-secondary: #F4A261;
  --clr-accent: #E76F51;
  --clr-bg: #F9FAFB;
  --clr-surface: #ffffff;
  --clr-text: #1E1E1E;
  --clr-text-muted: #5A5A5A;
  --clr-border: #e0e0e0;
  --font-main: 'Inter', system-ui, sans-serif;
  --font-display: 'Playfair Display', serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
}

[data-theme="dark"] {
  --clr-bg: #0f1117;
  --clr-surface: #1a1d26;
  --clr-text: #eaeaea;
  --clr-text-muted: #a0a0b0;
  --clr-border: #2a2d35;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}
img, video { max-width:100%; height:auto; display:block; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

/* Custom cursor */
.cursor-dot, .cursor-ring { position: fixed; pointer-events: none; z-index: 9999; }
.cursor-dot { width: 8px; height: 8px; background: var(--clr-primary); border-radius: 50%; }
.cursor-ring { width: 32px; height: 32px; border: 2px solid var(--clr-primary); border-radius: 50%; transition: transform 0.1s; }

/* Background blobs */
.bg-blobs { position: fixed; top:0; left:0; width:100%; height:100%; z-index: -1; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.12; }
.blob-1 { width: 600px; height: 600px; background: #F4A261; top: -200px; left: -200px; animation: floatBlob 20s infinite alternate; }
.blob-2 { width: 500px; height: 500px; background: #146B4A; bottom: -150px; right: -150px; animation: floatBlob 25s infinite alternate-reverse; }
.blob-3 { width: 400px; height: 400px; background: #E76F51; top: 50%; left: 50%; animation: floatBlob 18s infinite alternate; }
.blob-4 { width: 300px; height: 300px; background: #0B3D2E; bottom: 10%; left: 30%; animation: floatBlob 22s infinite alternate-reverse; }
@keyframes floatBlob {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(30px, -40px) scale(1.15); }
}

/* Typography */
.section-tag {
  display: inline-block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px;
  color: var(--clr-primary); background: rgba(20,107,74,0.1); padding: 0.3rem 1rem; border-radius: 20px;
  margin-bottom: 0.5rem; font-weight: 600;
}
.section-title { font-family: var(--font-display); font-size: 2.8rem; line-height: 1.2; margin-bottom: 1rem; }
.text-gradient { background: linear-gradient(135deg, #F4A261, #E76F51); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-header-reveal { text-align: center; margin-bottom: 3rem; opacity: 0; transform: translateY(30px); transition: 0.8s ease; }
.section-header-reveal.revealed { opacity: 1; transform: translateY(0); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.8rem 1.8rem; border-radius: 50px; font-weight: 600; transition: all var(--transition); position: relative; overflow: hidden; cursor: pointer; border: none; background: none; }
.btn-primary { background: var(--clr-primary); color: white; }
.btn-primary:hover { background: var(--clr-primary-light); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(11,61,46,0.4); }
.btn-secondary { border: 1px solid var(--clr-primary); color: var(--clr-primary); }
.btn-outline { border: 1px solid var(--clr-border); color: var(--clr-text); }
.btn-whatsapp { background: #25D366; color: white; }
.btn-shine { position: absolute; top:0; left:-75%; width:50%; height:100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transform: skewX(-25deg); }
.btn-magnetic:hover .btn-shine { left: 120%; transition: 0.6s; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* Hero section */
.hero-section { min-height: 100vh; display: flex; align-items: center; position: relative; padding: 2rem 1.5rem; }
.hero-bg-glow { position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(244,162,97,0.15), transparent); top: 10%; left: 5%; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: center; max-width: var(--max-width); margin: 0 auto; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--clr-surface); padding: 0.5rem 1.2rem; border-radius: 30px; box-shadow: var(--shadow-md); margin-bottom: 1.5rem; }
.badge-pulse { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); } 70% { box-shadow: 0 0 0 10px rgba(34,197,94,0); } 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); } }
.hero-title .title-line { display: block; font-family: var(--font-display); font-size: 3.5rem; font-weight: 800; }
.title-accent { color: var(--clr-secondary); }
.hero-typewriter { font-size: 1.5rem; font-weight: 300; margin: 0.5rem 0; }
.typewriter-cursor { animation: blink 1s infinite; }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0; } }
.hero-description { font-size: 1.1rem; color: var(--clr-text-muted); max-width: 550px; margin: 1.5rem 0; }
.hero-stats { display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--clr-primary); }
.stat-plus { font-size: 1.5rem; font-weight: 700; color: var(--clr-secondary); }
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-card-3d { width: 260px; height: 300px; perspective: 1000px; }
.card-3d-inner { width:100%; height:100%; transition: transform 0.1s; }
.hexagon-frame svg { width: 100%; height: 100%; color: var(--clr-primary); }
.hex-content { position: absolute; top:50%; left:50%; transform: translate(-50%,-50%); text-align: center; font-size: 1.2rem; }
.floating-elements .float-el { position: absolute; font-size: 1.8rem; animation: floatElement 6s ease-in-out infinite; color: var(--clr-secondary); }
.float-el-1 { top:10%; left:-20px; animation-delay:0s; }
.float-el-2 { top:60%; right:-20px; animation-delay:1.5s; }
.float-el-3 { bottom:10%; left:20%; animation-delay:3s; }
.float-el-4 { top:20%; right:30%; animation-delay:4.5s; }
.float-el-5 { bottom:30%; left:60%; animation-delay:5.5s; }
@keyframes floatElement { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-20px); } }
.scroll-indicator { text-align: center; margin-top: 3rem; }
.scroll-mouse { width: 24px; height: 40px; border: 2px solid var(--clr-text-muted); border-radius: 12px; margin: 0.5rem auto; position: relative; }
.scroll-wheel { width: 4px; height: 8px; background: var(--clr-text-muted); border-radius: 2px; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); animation: scrollWheel 1.5s infinite; }
@keyframes scrollWheel { 0%{ opacity:1; top:6px; } 100%{ opacity:0; top:24px; } }

/* Bento grid */
.bento-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.bento-card { background: var(--clr-surface); border-radius: var(--radius-xl); padding: 2rem; position: relative; overflow: hidden; transition: all 0.4s; box-shadow: var(--shadow-md); cursor: default; }
.bento-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.bento-card-lg { grid-column: span 2; grid-row: span 2; }
.bento-card-md { grid-column: span 1; grid-row: span 1; }
.bento-card-sm { grid-column: span 1; grid-row: span 1; }
.bento-card-wide { grid-column: span 2; }
.bento-icon { width: 48px; height: 48px; background: rgba(11,61,46,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.5rem; color: var(--clr-primary); }
.bento-glow { position: absolute; top:-20%; left:-20%; width: 140%; height: 140%; background: radial-gradient(circle at 50% 50%, var(--clr-secondary), transparent 70%); opacity: 0; transition: opacity 0.5s; }
.bento-card:hover .bento-glow { opacity: 0.15; }

/* Programs marquee */
.programs-marquee-wrap { overflow: hidden; padding: 2rem 0; background: var(--clr-surface); margin: 3rem 0; }
.marquee-left .marquee-content { display: flex; gap: 2rem; animation: marqueeLeft 30s linear infinite; }
.marquee-content span { font-size: 1.2rem; font-weight: 700; white-space: nowrap; }
@keyframes marqueeLeft { 0%{ transform: translateX(0); } 100%{ transform: translateX(-50%); } }

/* Programs carousel */
.programs-carousel { display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; padding: 1rem 1.5rem; max-width: var(--max-width); margin: 0 auto; }
.program-card { min-width: 250px; background: var(--clr-surface); border-radius: var(--radius-xl); padding: 2rem; scroll-snap-align: start; box-shadow: var(--shadow-md); }
.program-card-badge { background: var(--clr-secondary); color: #000; display: inline-block; padding: 0.2rem 0.8rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.program-card-icon { font-size: 2rem; margin: 1rem 0; color: var(--clr-primary); }
.program-link { color: var(--clr-primary); font-weight: 600; margin-top: 1rem; display: inline-flex; align-items: center; gap: 0.3rem; }
.carousel-nav { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1.5rem; }
.carousel-btn { background: var(--clr-surface); border: none; width: 40px; height: 40px; border-radius: 50%; box-shadow: var(--shadow-md); cursor: pointer; color: var(--clr-text); }
.carousel-dots { display: flex; gap: 0.5rem; }
.carousel-dot, .testimonial-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--clr-border); cursor: pointer; }
.carousel-dot.active, .testimonial-dot.active { background: var(--clr-primary); }

/* News */
.news-ticker-wrap { background: var(--clr-surface); padding: 0.8rem 0; margin: 2rem auto; max-width: var(--max-width); border-radius: 40px; overflow: hidden; }
.news-ticker .ticker-track { display: flex; gap: 3rem; animation: tickerScroll 20s linear infinite; }
.ticker-item { display: flex; align-items: center; gap: 0.5rem; white-space: nowrap; font-weight: 500; }
@keyframes tickerScroll { 0%{ transform: translateX(0); } 100%{ transform: translateX(-50%); } }
.news-carousel { max-width: var(--max-width); margin: 1rem auto; overflow: hidden; padding: 0 1.5rem; }
.news-carousel-track { display: flex; gap: 1.5rem; transition: transform 0.5s; }
.news-card { min-width: 280px; background: var(--clr-surface); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); }
.news-card img { width: 100%; height: 180px; object-fit: cover; }
.news-carousel-nav { display: flex; justify-content: center; gap: 1rem; margin-top: 1rem; }
.section-cta { text-align: center; margin-top: 1.5rem; }

/* Testimonials */
.testimonials-slider { max-width: 700px; margin: 2rem auto; position: relative; }
.testimonial-card { display: none; background: var(--clr-surface); padding: 2rem; border-radius: var(--radius-xl); text-align: center; box-shadow: var(--shadow-md); }
.testimonial-card.active { display: block; animation: fadeSlide 0.5s; }
@keyframes fadeSlide { from{ opacity:0; transform: translateY(10px); } to{ opacity:1; transform: translateY(0); } }
.testimonial-quote { font-size: 2rem; color: var(--clr-secondary); margin-bottom: 1rem; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1rem; }
.author-avatar { width: 40px; height: 40px; background: var(--clr-primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; }
.testimonial-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1rem; }

/* FAQ quick */
.faq-quick-card { max-width: 1000px; margin: 4rem auto; background: var(--clr-surface); border-radius: var(--radius-xl); padding: 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; box-shadow: var(--shadow-lg); }
.faq-search-input { width: 100%; padding: 1rem; border: 1px solid var(--clr-border); border-radius: 50px; font-family: inherit; background: var(--clr-bg); color: var(--clr-text); }
.faq-search-btn { background: var(--clr-primary); color: white; border: none; width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.faq-quick-results { margin-top: 1rem; }
.faq-quick-results .faq-item { padding: 0.5rem 0; border-bottom: 1px solid var(--clr-border); cursor: pointer; }
.chat-bubble { padding: 0.8rem 1.2rem; border-radius: 18px; margin: 0.5rem 0; max-width: 80%; font-size: 0.9rem; background: #e9f5f1; }
[data-theme="dark"] .chat-bubble { background: #2a3b35; }
.bubble-left { align-self: flex-start; }
.bubble-right { background: #ffe0b2; align-self: flex-end; margin-left: auto; }
[data-theme="dark"] .bubble-right { background: #5c4a32; }

/* CTA banner */
.cta-banner-section { margin: 4rem 0; }
.cta-banner { max-width: var(--max-width); margin: 0 auto; background: linear-gradient(135deg, #0B3D2E, #146B4A); border-radius: var(--radius-xl); padding: 4rem 2rem; text-align: center; color: white; position: relative; overflow: hidden; }
.cta-ring { position: absolute; border: 2px solid rgba(255,255,255,0.2); border-radius: 50%; animation: ringPulse 4s infinite; }
.cta-ring-1 { width: 300px; height: 300px; top:-100px; left:-50px; }
.cta-ring-2 { width: 400px; height: 400px; bottom:-150px; right:-80px; animation-delay: 1s; }
.cta-ring-3 { width: 200px; height: 200px; top:20%; right:10%; animation-delay: 2s; }
@keyframes ringPulse { 0%{ transform: scale(0.8); opacity:0.6; } 50%{ opacity:0.2; } 100%{ transform: scale(1.3); opacity:0; } }
.cta-banner h2 { font-family: var(--font-display); font-size: 2.5rem; margin-bottom: 1rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* Back to top */
.back-to-top { position: fixed; bottom: 2rem; right: 2rem; width: 45px; height: 45px; border-radius: 50%; background: var(--clr-primary); color: white; display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; z-index: 50; border: none; cursor: pointer; }
.back-to-top.visible { opacity:1; }

/* Theme toggle */
.theme-toggle-float { position: fixed; top: 1.5rem; right: 1.5rem; z-index: 200; background: var(--clr-surface); border: none; width: 45px; height: 45px; border-radius: 50%; box-shadow: var(--shadow-md); cursor: pointer; display: flex; align-items: center; justify-content: center; }
[data-theme="light"] .fa-sun, [data-theme="dark"] .fa-moon { display: none; }

/* Responsive */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .faq-quick-card { grid-template-columns: 1fr; }
  .section-title { font-size: 2.2rem; }
}
@media (max-width: 600px) {
  .bento-grid { grid-template-columns: 1fr; }
  .hero-stats { justify-content: center; }
}/* ===== About Page Specific Styles ===== */

/* Page hero */
.page-hero {
    padding: 4rem 1.5rem 2rem;
    text-align: center;
}
.page-hero .section-title {
    font-size: 3rem;
}

/* Mission & Vision cards */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}
.mv-card {
    background: var(--clr-surface);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}
.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.mv-icon {
    font-size: 2.5rem;
    color: var(--clr-secondary);
    margin-bottom: 1rem;
}
.mv-card h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

/* Core Values Hexagon Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}
.value-hex {
    position: relative;
    aspect-ratio: 1 / 1.15;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--clr-surface);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
}
.value-hex:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: var(--shadow-lg);
    background: var(--clr-primary-light);
    color: white;
}
.hex-inner {
    text-align: center;
    padding: 1rem;
}
.hex-letter {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--clr-secondary);
    line-height: 1;
}
.value-hex:hover .hex-letter {
    color: #fff;
}
.hex-inner strong {
    display: block;
    font-size: 1rem;
    margin: 0.3rem 0 0.5rem;
}
.hex-inner p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--clr-text-muted);
    max-width: 180px;
    margin: 0 auto;
}
.value-hex:hover .hex-inner p {
    color: rgba(255,255,255,0.85);
}

/* Timeline */
.timeline {
    position: relative;
    margin: 3rem 0;
    padding-left: 2rem;
    border-left: 2px solid var(--clr-secondary);
}
.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 2rem;
}
.timeline-dot {
    position: absolute;
    left: -2.35rem;
    top: 0.3rem;
    width: 14px;
    height: 14px;
    background: var(--clr-secondary);
    border: 2px solid var(--clr-bg);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--clr-bg);
}
.timeline-content {
    background: var(--clr-surface);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s;
}
.timeline-content:hover {
    box-shadow: var(--shadow-md);
}
.timeline-content h3 {
    font-family: var(--font-display);
    color: var(--clr-primary);
    margin-bottom: 0.3rem;
}

/* Leadership card */
.leadership-card {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    background: var(--clr-surface);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    margin: 3rem 0;
}
.leader-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--clr-secondary);
}
.leader-info {
    flex: 1;
}
.leader-title {
    display: inline-block;
    background: rgba(20,107,74,0.1);
    color: var(--clr-primary);
    padding: 0.2rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Map wrapper */
.map-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .leadership-card {
        flex-direction: column;
        text-align: center;
    }
    .leader-photo {
        margin: 0 auto;
    }
}
@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
}
/* ===== Real‑image enhancements for Home Page ===== */

/* Hero section becomes a full‑width image background */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('../images/hero-poster.jpg') center/cover no-repeat;
    background-attachment: fixed;
    color: white;
}
.hero-section .title-line,
.hero-section .hero-description,
.hero-section .hero-typewriter {
    color: white;
}
.hero-section .hero-badge {
    background: rgba(255,255,255,0.9);
    color: #1E1E1E;
}
.hero-section .stat-number {
    color: #F4A261;
}
.hero-section .stat-label {
    color: rgba(255,255,255,0.85);
}
.hero-section .scroll-indicator {
    color: white;
}
.hero-section .scroll-mouse {
    border-color: white;
}
.hero-section .scroll-wheel {
    background: white;
}
.hero-section .btn-outline {
    color: white;
    border-color: white;
}

/* Program cards now contain images */
.program-card {
    min-width: 280px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--clr-surface);
    display: flex;
    flex-direction: column;
}
.program-card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.program-card-body {
    padding: 1.5rem;
    flex: 1;
}

/* Testimonial avatars with real photos */
.author-avatar-img {
    background-size: cover;
    background-position: center;
    text-indent: -9999px; /* hide fallback text */
}

/* CTA banner with background image overlay */
.cta-banner {
    background: linear-gradient(135deg, #0B3D2E, #146B4A), url('../images/cta-bg.jpg') center/cover;
    background-blend-mode: overlay;
}/* ===== Hero Video Background ===== */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55); /* dark overlay for readability */
}

/* Make sure hero content stays above video */
.hero-grid {
    position: relative;
    z-index: 2;
}
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden; /* clip video edges */
}

/* White text on dark overlay */
.hero-section .title-line,
.hero-section .hero-description,
.hero-section .hero-typewriter,
.hero-section .scroll-indicator {
    color: #fff;
}
.hero-section .hero-badge {
    background: rgba(255,255,255,0.9);
    color: #1E1E1E;
}
.hero-section .stat-number {
    color: #F4A261;
}
.hero-section .stat-label {
    color: rgba(255,255,255,0.85);
}
.hero-btn-outline {
    color: white;
    border-color: white;
}
.hero-btn-outline:hover {
    background: rgba(255,255,255,0.15);
}
.scroll-mouse {
    border-color: white;
}
.scroll-wheel {
    background: white;
}/* ===== Academics Page Specific ===== */

/* Tabs Navigation */
.program-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin: 2rem 0;
}
.tab-btn {
    padding: 0.7rem 1.8rem;
    border: 1px solid var(--clr-border);
    background: var(--clr-surface);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--clr-text);
}
.tab-btn.active,
.tab-btn:hover {
    background: var(--clr-primary);
    color: white;
    border-color: var(--clr-primary);
}

/* Tab content */
.tab-content {
    display: none;
    animation: fadeSlide 0.5s;
}
.tab-content.active {
    display: block;
}
.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: var(--clr-surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.tab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 320px;
}
.tab-info {
    padding: 2rem;
}
.tab-info h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.tab-features {
    list-style: none;
    margin-top: 1.5rem;
}
.tab-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.tab-features i {
    color: var(--clr-secondary);
}

/* Special Programmes Cards */
.special-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}
.special-card {
    background: var(--clr-surface);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s;
}
.special-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.special-icon {
    font-size: 2.5rem;
    color: var(--clr-secondary);
    margin-bottom: 1rem;
}

/* Calendar Container */
.calendar-container {
    background: var(--clr-surface);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    margin: 2rem 0;
    overflow-x: auto;
}
.calendar-month-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.calendar-month-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
}
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}
.calendar-day-name {
    text-align: center;
    font-weight: 600;
    color: var(--clr-text-muted);
    padding: 0.5rem 0;
    font-size: 0.85rem;
}
.calendar-cell {
    text-align: center;
    padding: 0.8rem 0.2rem;
    border-radius: 8px;
    min-height: 60px;
    background: var(--clr-bg);
    position: relative;
}
.calendar-cell.today {
    border: 2px solid var(--clr-primary);
}
.calendar-cell .date {
    font-weight: 600;
    margin-bottom: 4px;
}
.calendar-cell .event-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin: 1px;
}
.event-dot.term {
    background: var(--clr-primary-light);
}
.event-dot.exam {
    background: var(--clr-accent);
}
.event-dot.holiday {
    background: var(--clr-secondary);
}

/* Calendar Legend */
.calendar-legend {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}
.legend-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 0.3rem;
}
.legend-term { background: var(--clr-primary-light); }
.legend-exam { background: var(--clr-accent); }
.legend-holiday { background: var(--clr-secondary); }

@media (max-width: 768px) {
    .tab-grid {
        grid-template-columns: 1fr;
    }
    .tab-image img {
        min-height: 200px;
    }
    .special-grid {
        grid-template-columns: 1fr;
    }
}/* ===== Academics Page ===== */

/* Tabs (pure CSS) */
.tabs input[type="radio"] {
    display: none;
}
.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}
.tab-btn {
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    background: var(--clr-surface);
    color: var(--clr-text);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-border);
}
.tab-btn:hover {
    background: var(--clr-primary);
    color: white;
    border-color: var(--clr-primary);
}
/* Show active tab based on checked radio */
#tab-creche:checked ~ .tab-buttons label[for="tab-creche"],
#tab-nursery:checked ~ .tab-buttons label[for="tab-nursery"],
#tab-kindergarten:checked ~ .tab-buttons label[for="tab-kindergarten"],
#tab-primary:checked ~ .tab-buttons label[for="tab-primary"],
#tab-jhs:checked ~ .tab-buttons label[for="tab-jhs"] {
    background: var(--clr-primary);
    color: white;
    border-color: var(--clr-primary);
    box-shadow: var(--shadow-md);
}

.tab-panels .tab-panel {
    display: none;
}
#tab-creche:checked ~ .tab-panels #panel-creche,
#tab-nursery:checked ~ .tab-panels #panel-nursery,
#tab-kindergarten:checked ~ .tab-panels #panel-kindergarten,
#tab-primary:checked ~ .tab-panels #panel-primary,
#tab-jhs:checked ~ .tab-panels #panel-jhs {
    display: block;
}

.program-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin: 2rem 0;
}
.program-detail-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}
.program-detail-content h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.program-features {
    list-style: none;
    margin-top: 1.5rem;
}
.program-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.program-features i {
    color: var(--clr-primary);
}

/* Special programmes cards */
.specials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}
.special-card {
    background: var(--clr-surface);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
}
.special-card:hover {
    transform: translateY(-5px);
}
.special-icon {
    font-size: 2.5rem;
    color: var(--clr-secondary);
    margin-bottom: 1rem;
}

/* Calendar */
.calendar-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}
.calendar-term {
    background: var(--clr-surface);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
}
.calendar-term h3 {
    font-family: var(--font-display);
    color: var(--clr-primary);
    margin-bottom: 0.5rem;
}
.term-break {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    background: rgba(244,162,97,0.15);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
}
.calendar-note {
    text-align: center;
    margin: 1rem 0;
    color: var(--clr-text-muted);
}

/* Resources */
.resources-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}
.resource-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: var(--clr-surface);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
    text-decoration: none;
    color: var(--clr-text);
    font-weight: 600;
}
.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.resource-card i {
    font-size: 2.5rem;
    color: var(--clr-primary);
}

@media (max-width: 768px) {
    .program-detail-grid {
        grid-template-columns: 1fr;
    }
    .specials-grid,
    .calendar-card {
        grid-template-columns: 1fr;
    }
}
/* ===== Admissions Page ===== */

/* Process steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}
.step-card {
    background: var(--clr-surface);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}
.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--clr-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}
.step-icon {
    font-size: 2rem;
    color: var(--clr-secondary);
    margin: 1rem 0 0.5rem;
}
.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.step-card p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

/* Requirements & uniform grid */
.req-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
    align-items: start;
}
.req-content h2 {
    font-family: var(--font-display);
    margin-bottom: 1rem;
}
.req-note {
    margin-top: 1rem;
    font-style: italic;
    color: var(--clr-text-muted);
}
.uniform-gallery h3 {
    font-family: var(--font-display);
    margin-bottom: 1rem;
}
.uniform-images {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.uniform-img {
    width: 100%;
    max-width: 300px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    object-fit: cover;
    height: 250px;
}

/* Inquiry form */
.inquiry-form {
    max-width: 700px;
    margin: 2rem auto;
    background: var(--clr-surface);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}
.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.form-group {
    flex: 1;
    min-width: 200px;
}
.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
}
.form-group label span {
    color: var(--clr-accent);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    font-family: inherit;
    background: var(--clr-bg);
    color: var(--clr-text);
}
.form-group.full-width {
    flex: 100%;
}
.form-feedback {
    margin-top: 1rem;
    padding: 0.75rem;
    background: #d4edda;
    color: #155724;
    border-radius: var(--radius-md);
    display: none;
    text-align: center;
}
.form-feedback.visible {
    display: block;
}

/* WhatsApp card */
.whatsapp-card {
    background: var(--clr-surface);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    max-width: 500px;
    margin: 3rem auto;
}
.whatsapp-card i {
    font-size: 3rem;
    color: #25D366;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .req-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}/* ===== Contact Page ===== */

/* Contact grid (info + map) */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
    align-items: start;
}
.contact-info h2 {
    font-family: var(--font-display);
    margin-bottom: 1.5rem;
}
.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.info-item i {
    font-size: 1.5rem;
    color: var(--clr-primary);
    margin-top: 0.2rem;
}
.info-item strong {
    display: block;
    margin-bottom: 0.2rem;
}
.info-item p a {
    color: var(--clr-text);
}
.info-item p a:hover {
    color: var(--clr-primary);
}

/* Social buttons */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}
.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--clr-surface);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--clr-text);
    transition: all 0.3s;
}
.social-btn:hover {
    background: var(--clr-primary);
    color: white;
}

/* Map hex mask */
.map-hex-mask {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.map-hex-mask iframe {
    display: block;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .map-hex-mask {
        clip-path: none;
        border-radius: var(--radius-lg);
    }
}/* ===== Parent Feedback Banner ===== */
.feedback-card {
    background: var(--clr-surface);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    max-width: 700px;
    margin: 3rem auto;
}
.feedback-card i {
    font-size: 3rem;
    color: var(--clr-secondary);
    margin-bottom: 1rem;
}
.feedback-card h3 {
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}
.feedback-card p {
    color: var(--clr-text-muted);
    margin-bottom: 1.5rem;
}/* ===== Hex Background Pattern (why us section) ===== */
.hex-bg-section {
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%23F4A261' fill-opacity='0.07' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Spacing adjustments */
.programs-strip-section {
    margin-top: 4rem;
    margin-bottom: 3rem;
}
.news-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.feedback-banner {
    margin-top: 3rem;
    margin-bottom: 3rem;
}
/* ===== Founder Tribute ===== */
.founder-tribute {
    margin: 4rem auto;
}
.tribute-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    background: var(--clr-surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    align-items: center;
}
.tribute-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}
.tribute-text {
    padding: 2.5rem;
}
.tribute-text h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.tribute-years {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    margin-bottom: 1rem;
    font-style: italic;
}
.tribute-text blockquote {
    font-size: 1.1rem;
    font-style: italic;
    border-left: 4px solid var(--clr-secondary);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    color: var(--clr-text);
}
.tribute-flower {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: var(--clr-secondary);
    font-weight: 600;
}
.tribute-flower i {
    margin: 0 0.3rem;
}

/* Leadership cards grid */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}
.leader-card {
    background: var(--clr-surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.leader-card .leader-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--clr-secondary);
    margin-bottom: 1rem;
}
.leader-card .leader-title {
    display: inline-block;
    background: rgba(20,107,74,0.1);
    color: var(--clr-primary);
    padding: 0.2rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.leader-card p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .tribute-card {
        grid-template-columns: 1fr;
    }
    .tribute-image img {
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        min-height: 250px;
    }
    .tribute-text {
        padding: 2rem;
    }
}/* ===== Academics Page Enhancements ===== */

/* Hex special cards */
.hex-special {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--clr-surface);
    padding: 3rem 1.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
}
.hex-special:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-lg);
    background: var(--clr-primary-light);
    color: white;
}
.hex-special .special-icon {
    font-size: 2rem;
    color: var(--clr-secondary);
    margin-bottom: 0.5rem;
}
.hex-special:hover .special-icon {
    color: white;
}
.hex-special h3 {
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}
.hex-special p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--clr-text-muted);
}
.hex-special:hover p {
    color: rgba(255,255,255,0.85);
}

/* Align the specials grid to center the hexagons */
.specials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

/* Calendar wide card for the "Next Year" note */
.calendar-term-wide {
    grid-column: span 2;
}
@media (max-width: 600px) {
    .calendar-term-wide {
        grid-column: span 1;
    }
}
/* ===== Honeycomb Steps (if not already added from earlier) ===== */
.honeycomb-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
}
.hex-step {
    width: 200px;
    height: 230px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--clr-surface);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}
.hex-step:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-lg);
    background: var(--clr-primary-light);
    color: white;
}
.hex-inner-step {
    text-align: center;
    padding: 1rem;
    width: 100%;
}
.step-digit {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--clr-secondary);
    line-height: 1;
}
.hex-step:hover .step-digit {
    color: white;
}
.hex-inner-step i {
    font-size: 1.5rem;
    display: block;
    margin: 0.5rem 0;
}
.hex-inner-step h4 {
    font-family: var(--font-display);
    margin-bottom: 0.3rem;
}
.hex-inner-step p {
    font-size: 0.8rem;
    line-height: 1.3;
    color: var(--clr-text-muted);
}
.hex-step:hover .hex-inner-step p {
    color: rgba(255,255,255,0.9);
}

/* Hex check icons list */
.check-list {
    list-style: none;
    margin: 1.5rem 0;
}
.check-list li {
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.check-list i {
    color: var(--clr-primary);
    font-size: 1.2rem;
}

/* Lightbox overlay (already in style.css, but ensure it's there) */
.lightbox-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.lightbox-overlay:target {
    display: flex;
}
.lightbox-overlay img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: var(--radius-lg);
}
.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    color: white;
    text-decoration: none;
    z-index: 1001;
}

/* Testimonial specific */
.testimonial-admissions {
    max-width: 600px;
    margin: 3rem auto;
}
/* ===== Improved Admissions Honeycomb Elements ===== */

/* Hexagon uniform thumbnails */
.hex-thumb {
    display: block;
    width: 160px;
    height: 184px; /* aspect ratio for hexagon */
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow-sm);
    border-radius: 0; /* clip-path handles shape */
}
.hex-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.hex-thumb:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}
.hex-thumb:hover img {
    transform: scale(1.1);
}

/* Hex testimonial container */
.hex-testimonial {
    max-width: 500px;
    margin: 0 auto;
    clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
    background: var(--clr-surface);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.hex-testimonial .testimonial-card {
    display: block; /* always visible */
    background: transparent;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
}

/* Hex WhatsApp CTA card */
.hex-cta-card {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    max-width: 360px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: var(--clr-surface);
    box-shadow: var(--shadow-lg);
}
.hex-cta-card i {
    margin-bottom: 1rem;
}

/* Form section with subtle hex pattern overlay */
.hex-form-bg {
    position: relative;
}
.hex-form-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%23F4A261' fill-opacity='0.06' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}
.hex-form-bg .section-header-reveal,
.hex-form-bg .inquiry-form {
    position: relative;
    z-index: 1;
}

/* Adjusted honeycomb steps with deeper color on hover */
.hex-step:hover {
    background: var(--clr-primary);
    color: white;
}
.hex-step:hover .step-digit,
.hex-step:hover i,
.hex-step:hover h4,
.hex-step:hover p {
    color: white;
}/* ===== Contact Page Enhancements ===== */

/* Contact grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin: 3rem 0;
    align-items: start;
}
.contact-info h2 {
    font-family: var(--font-display);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}
.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.8rem;
    align-items: flex-start;
}
.info-icon {
    width: 44px;
    height: 44px;
    background: rgba(11,61,46,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 3px;
}
.info-item strong {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 1rem;
    color: var(--clr-text);
}
.info-item p {
    margin: 0.2rem 0;
    color: var(--clr-text-muted);
}
.info-item a {
    color: var(--clr-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.info-item a:hover {
    color: var(--clr-primary);
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--clr-surface);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--clr-text);
    transition: all 0.3s;
}
.social-btn:hover {
    background: var(--clr-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

/* Map hex mask */
.map-hex-mask {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    aspect-ratio: 1 / 1;
    max-height: 400px;
}
.map-hex-mask iframe {
    display: block;
    height: 100%;
    width: 100%;
}

/* Hex WhatsApp CTA (if not already in style) */
/* Larger hexagon CTA */
.hex-cta-card {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    max-width: 480px;          /* was 360px */
    margin: 0 auto;
    padding: 5rem 2.5rem;      /* was 3rem 2rem */
    background: var(--clr-surface);
    box-shadow: var(--shadow-lg);
}
.hex-cta-card i {
    font-size: 3rem;           /* slightly larger icon */
    margin-bottom: 1rem;
}

/* Form feedback (if not present) */
.form-feedback {
    margin-top: 1rem;
    padding: 0.75rem;
    background: #d4edda;
    color: #155724;
    border-radius: var(--radius-md);
    display: none;
    text-align: center;
}
.form-feedback.visible {
    display: block;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .map-hex-mask {
        clip-path: none;
        aspect-ratio: auto;
        height: 300px;
    }
}
/* ===== Fees Page ===== */
.fees-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--clr-surface);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}
.fees-icon {
    font-size: 3rem;
    color: var(--clr-secondary);
    margin-bottom: 1rem;
}
.fees-card h2 {
    font-family: var(--font-display);
    margin-bottom: 1rem;
}
.fees-card p {
    color: var(--clr-text-muted);
    margin-bottom: 2rem;
}

.fees-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}
.fees-info-item {
    background: var(--clr-surface);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
}
.fees-info-item i {
    font-size: 2rem;
    color: var(--clr-primary);
    margin-bottom: 0.5rem;
}
.fees-info-item h4 {
    margin-bottom: 0.3rem;
}
.fees-info-item p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .fees-info-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== News & Events Page ===== */

/* Countdown */
.countdown-card {
    max-width: 600px;
    margin: 3rem auto;
    background: var(--clr-surface);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
}
.countdown-card i {
    font-size: 2.5rem;
    color: var(--clr-secondary);
    margin-bottom: 0.5rem;
}
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}
.countdown-block {
    text-align: center;
}
.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--clr-primary);
}
.countdown-label {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

/* Filter bar */
.news-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0 1.5rem;
}
.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    border: 1px solid var(--clr-border);
    background: var(--clr-surface);
    color: var(--clr-text);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.filter-btn.active,
.filter-btn:hover {
    background: var(--clr-primary);
    color: white;
    border-color: var(--clr-primary);
}
.filter-search {
    position: relative;
}
.filter-search input {
    padding: 0.7rem 1rem 0.7rem 2.5rem;
    border: 1px solid var(--clr-border);
    border-radius: 30px;
    background: var(--clr-surface);
    color: var(--clr-text);
    font-family: inherit;
    min-width: 220px;
}
.filter-search i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--clr-text-muted);
}

/* News grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}
.news-grid-card {
    background: var(--clr-surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}
.news-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.news-grid-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.news-grid-body {
    padding: 1.5rem;
}
.news-category-tag {
    display: inline-block;
    background: rgba(244,162,97,0.15);
    color: var(--clr-secondary);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
}
.news-grid-body h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.news-date {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}
.news-summary {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}
.no-results {
    text-align: center;
    margin: 2rem 0;
    color: var(--clr-text-muted);
}
/* ===== Article Modal ===== */
.article-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 2000;
    overflow-y: auto;
}
.article-modal-content {
    background: var(--clr-surface);
    max-width: 850px;
    margin: 3rem auto;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    position: relative;
    color: var(--clr-text);
}
.article-modal-close {
    position: absolute;
    top: 1rem; right: 1.5rem;
    font-size: 2.5rem;
    color: var(--clr-text-muted);
    cursor: pointer;
    transition: color 0.2s;
}
.article-modal-close:hover { color: var(--clr-primary); }

.article-date {
    color: var(--clr-text-muted);
    margin-bottom: 1.5rem;
}
.article-full-content {
    line-height: 1.8;
    font-size: 1rem;
}
.article-full-content p {
    margin-bottom: 1.2rem;
}

/* Article image gallery (inside modal) */
.article-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--clr-border);
}
.article-gallery-img {
    width: calc(33.333% - 0.7rem);
    border-radius: var(--radius-md);
    object-fit: cover;
    height: 180px;
    box-shadow: var(--shadow-sm);
}
@media (max-width: 600px) {
    .article-gallery-img {
        width: calc(50% - 0.5rem);
        height: 130px;
    }
}
/* ===== Gallery Page ===== */
.gallery-filter-section {
    margin: 2rem 0 1rem;
    text-align: center;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
.gallery-item {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1.15; /* match hex ratio */
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow-sm);
}
.gallery-item:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-md);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.lightbox-img {
    max-width: 90%;
    max-height: 75vh;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}
.lightbox-caption {
    color: white;
    margin-top: 1rem;
    font-size: 1.1rem;
}
.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    z-index: 3001;
}
/* ===== Hex Slider Gallery ===== */
.hex-slider-wrapper {
    position: relative;
    max-width: 700px;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* The large hexagon frame */
.hex-slider-frame {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1 / 1.15;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--clr-surface);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s;
}
.hex-slider-inner {
    width: 100%;
    height: 100%;
}
.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--clr-surface);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    color: var(--clr-text);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 5;
}
.slider-arrow:hover { background: var(--clr-primary); color: white; }
.slider-prev { left: -15px; }
.slider-next { right: -15px; }

/* Caption */
.slider-caption {
    margin-top: 1rem;
    font-weight: 600;
    text-align: center;
    color: var(--clr-text);
}

/* Dots */
.slider-dots {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.8rem;
    justify-content: center;
}
.slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--clr-border);
    cursor: pointer;
}
.slider-dot.active { background: var(--clr-primary); }

/* Thumbnail strip */
.gallery-thumbnails {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0;
    justify-content: center;
    flex-wrap: wrap;
}
.thumb-item {
    width: 80px;
    height: 92px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow-sm);
    opacity: 0.6;
}
.thumb-item.active { opacity: 1; transform: scale(1.1); box-shadow: var(--shadow-md); }
.thumb-item img { width: 100%; height: 100%; object-fit: cover; }

/* Responsive adjustments */
@media (max-width: 600px) {
    .slider-arrow { width: 35px; height: 35px; font-size: 1rem; }
    .slider-prev { left: 5px; }
    .slider-next { right: 5px; }
}
/* ===== Staff Directory Page ===== */
.staff-search-section {
    text-align: center;
}
.no-results {
    text-align: center;
    margin: 2rem 0;
    color: var(--clr-text-muted);
}
/* ===== FAQ Page ===== */
.faq-accordion-section {
    max-width: 800px;
    margin: 2rem auto;
}
.faq-category {
    margin-bottom: 2rem;
}
.faq-category h3 {
    font-family: var(--font-display);
    color: var(--clr-primary);
    margin-bottom: 1rem;
}
.faq-item-accordion {
    border-bottom: 1px solid var(--clr-border);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1rem 0;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--clr-text);
    transition: color 0.2s;
}
.faq-question:hover {
    color: var(--clr-primary);
}
.faq-question i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item-accordion.open .faq-answer {
    max-height: 300px;
    padding-bottom: 1rem;
}
.faq-answer p {
    color: var(--clr-text-muted);
    line-height: 1.5;
}

/* ===== Chatbot ===== */
.chatbot-toggle {
    position: fixed;
    bottom: 5rem;
    right: 2rem;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--clr-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 150;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s;
}
.chatbot-toggle:hover {
    transform: scale(1.1);
}
.chatbot-panel {
    position: fixed;
    bottom: 8rem;
    right: 2rem;
    width: 320px;
    max-height: 450px;
    background: var(--clr-surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: none;
    flex-direction: column;
    z-index: 149;
}
.chatbot-panel.open {
    display: flex;
}
.chatbot-header {
    background: var(--clr-primary);
    color: white;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}
.chatbot-close {
    margin-left: auto;
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
}
.chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    max-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.bot-message, .user-message {
    padding: 0.6rem 1rem;
    border-radius: 18px;
    max-width: 85%;
    font-size: 0.9rem;
    line-height: 1.4;
}
.bot-message {
    background: #e9f5f1;
    align-self: flex-start;
}
[data-theme="dark"] .bot-message {
    background: #2a3b35;
}
.user-message {
    background: var(--clr-primary);
    color: white;
    align-self: flex-end;
}
.typing {
    opacity: 0.7;
    font-style: italic;
}
.chatbot-input-area {
    display: flex;
    padding: 0.8rem;
    border-top: 1px solid var(--clr-border);
}
.chatbot-input-area input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid var(--clr-border);
    border-radius: 20px;
    font-family: inherit;
    background: var(--clr-bg);
    color: var(--clr-text);
}
.chatbot-input-area button {
    background: var(--clr-primary);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-left: 0.5rem;
    cursor: pointer;
}
/* ===== Sitemap ===== */
.sitemap-tree {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.sitemap-tree li {
    margin: 0;
}
.sitemap-tree a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.5rem 0;
    font-weight: 500;
    color: var(--clr-text);
    transition: color 0.2s;
}
.sitemap-tree a:hover {
    color: var(--clr-primary);
}
.sitemap-tree i {
    width: 20px;
    text-align: center;
    color: var(--clr-secondary);
}
/* ===== Interactive Honeycomb Calendar ===== */
.honeycomb-calendar {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
}
.calendar-month {
    background: var(--clr-surface);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    max-width: 350px;
    flex: 1;
    min-width: 280px;
}
.calendar-month h3 {
    text-align: center;
    font-family: var(--font-display);
    color: var(--clr-primary);
    margin-bottom: 1rem;
}
.calendar-day-name {
    text-align: center;
    font-weight: 600;
    color: var(--clr-text-muted);
    padding: 0.3rem 0;
    font-size: 0.8rem;
}
.calendar-cell {
    text-align: center;
    padding: 0.6rem 0.2rem;
    border-radius: 12px;
    min-height: 45px;
    background: var(--clr-bg);
    position: relative;
    cursor: default;
    transition: all 0.3s;
}
.calendar-cell.empty {
    background: transparent;
}
.calendar-cell .date {
    font-weight: 600;
    font-size: 0.9rem;
}
.calendar-cell.has-event {
    background: rgba(244,162,97,0.2);
    border: 2px solid var(--clr-secondary);
    cursor: pointer;
}
.calendar-cell.has-event:hover {
    background: var(--clr-secondary);
    color: white;
}
.event-dot {
    display: block;
    width: 6px;
    height: 6px;
    background: var(--clr-accent);
    border-radius: 50%;
    margin: 4px auto 0;
}
.calendar-tooltip {
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--clr-primary);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

/* ===== Trust Signals ===== */
.trust-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}
.hex-trust {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--clr-surface);
    width: 220px;
    height: 220px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hex-trust:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: var(--shadow-lg);
    background: var(--clr-primary-light);
    color: white;
}
.hex-trust i {
    font-size: 2rem;
    color: var(--clr-secondary);
    margin-bottom: 0.5rem;
}
.hex-trust:hover i {
    color: white;
}
.hex-trust h4 {
    font-family: var(--font-display);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}
.hex-trust p {
    font-size: 0.85rem;
    line-height: 1.3;
    color: var(--clr-text-muted);
}
.hex-trust:hover p {
    color: rgba(255,255,255,0.9);
}
/* ===== Star Rating Select ===== */
select#fb-rating {
    font-size: 1rem;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    background: var(--clr-bg);
    color: var(--clr-text);
    font-family: inherit;
}