/* ============================================================
   KARIALI TALENT SEARCH MISSION (H.S) — Custom Styles
   Brand Colors extracted from school logo
   ============================================================ */

:root {
    --primary-green: #1a7a3d;
    --primary-green-dark: #125a2c;
    --primary-green-light: #2d9a52;
    --secondary-gold: #f0b429;
    --secondary-gold-dark: #d99a15;
    --secondary-gold-light: #ffd666;
    --accent-red: #e53935;
    --accent-red-dark: #c62828;
    --accent-blue: #1976d2;
    --accent-brown: #8b5e3c;
    --text-dark: #1a1a1a;
    --text-muted: #5f6368;
    --text-light: #ffffff;
    --bg-light: #f4f9f5;
    --bg-cream: #fffdf5;
    --border-light: #e0ebe3;
    --shadow-sm: 0 2px 8px rgba(26, 122, 61, 0.08);
    --shadow-md: 0 8px 24px rgba(26, 122, 61, 0.12);
    --shadow-lg: 0 16px 48px rgba(26, 122, 61, 0.16);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --font-accent: 'Playfair Display', serif;
    --font-bengali: 'Noto Sans Bengali', sans-serif;
    --navbar-height: 72px;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

::selection {
    background: var(--primary-green);
    color: var(--text-light);
}

/* ---- Top Header Bar ---- */
.top-header {
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 100%);
    color: var(--text-light);
    padding: 8px 0;
    font-size: 0.82rem;
    position: relative;
    z-index: 1030;
}

.top-header-info {
    gap: 1.2rem;
}

.top-header-info li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-header-info li i {
    color: var(--secondary-gold);
    font-size: 0.75rem;
}

.top-header-info a {
    color: rgba(255, 255, 255, 0.9);
}

.top-header-info a:hover {
    color: var(--secondary-gold);
}

.top-header-info span {
    opacity: 0.92;
}

.social-icons {
    display: flex;
    gap: 8px;
}

.social-link {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.78rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary-gold);
    color: var(--primary-green-dark);
    transform: translateY(-2px);
}

/* ---- Admission Badge ---- */
.admission-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--accent-red) 0%, #ff6f00 100%);
    color: var(--text-light) !important;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
    transition: var(--transition);
    white-space: nowrap;
}

.admission-badge:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(229, 57, 53, 0.5);
    color: var(--text-light) !important;
}

.admission-badge-sm {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--accent-red);
    color: var(--text-light) !important;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
}

.pulse-badge {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(229, 57, 53, 0.7); }
}

/* ---- Main Navbar ---- */
.main-navbar {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 8px 0;
    transition: var(--transition);
}

.main-navbar.scrolled {
    padding: 4px 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    gap: 12px;
    max-width: 320px;
}

.brand-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--primary-green);
    padding: 2px;
    transition: var(--transition);
}

.navbar-brand:hover .brand-logo {
    transform: rotate(5deg) scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-green-dark);
    letter-spacing: 0.2px;
}

.brand-sub {
    font-size: 0.68rem;
    color: var(--text-muted);
    font-weight: 500;
}

.navbar-toggler {
    border: 2px solid var(--primary-green);
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(26, 122, 61, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231a7a3d' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.main-navbar .nav-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 8px 14px !important;
    position: relative;
    transition: var(--transition);
}

.main-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-gold);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
    width: 60%;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: var(--primary-green);
}

.nav-link-admission {
    color: var(--accent-red) !important;
}

.nav-link-admission::after {
    background: var(--accent-red) !important;
}

.nav-link-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.dropdown-menu-animated {
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    padding: 8px;
    animation: dropdownFade 0.3s ease;
}

@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-menu-animated .dropdown-item {
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-menu-animated .dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary-green);
    padding-left: 20px;
}

.btn-admin-login {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: var(--text-light) !important;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: var(--font-heading);
    margin-left: 12px;
    box-shadow: 0 4px 12px rgba(26, 122, 61, 0.3);
    transition: var(--transition);
    align-items: center;
}

.btn-admin-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 122, 61, 0.4);
    color: var(--text-light) !important;
}

.admin-login-dropdown .dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
}

.admin-login-menu {
    min-width: 210px;
    margin-top: 10px !important;
}

.admin-login-menu .dropdown-item {
    font-weight: 600;
    padding: 10px 16px;
}

/* ---- Hero Section ---- */
.hero-section {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary-green-dark);
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(18, 90, 44, 0.88) 0%,
        rgba(26, 122, 61, 0.75) 50%,
        rgba(18, 90, 44, 0.85) 100%
    );
}

.hero-slide-1 { background-image: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1920&q=80'); }
.hero-slide-2 { background-image: url('https://images.unsplash.com/photo-1503676260728-1c00da280a02?w=1920&q=80'); }
.hero-slide-3 { background-image: url('https://images.unsplash.com/photo-1580582932707-658ea7262140?w=1920&q=80'); }

.hero-content {
    position: relative;
    z-index: 2;
    padding: 100px 0 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(240, 180, 41, 0.2);
    border: 1px solid var(--secondary-gold);
    color: var(--secondary-gold-light);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text-light);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.15;
}

.hero-title span {
    color: var(--secondary-gold);
    display: block;
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 600;
    font-size: 0.55em;
    margin-top: 8px;
}

.hero-subtitle {
    font-family: var(--font-bengali);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    font-weight: 500;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    max-width: 560px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--secondary-gold-dark) 100%);
    color: var(--primary-green-dark) !important;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    box-shadow: 0 6px 20px rgba(240, 180, 41, 0.4);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(240, 180, 41, 0.5);
    color: var(--primary-green-dark) !important;
}

.btn-outline-custom {
    background: transparent;
    color: var(--text-light) !important;
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-custom:hover {
    background: var(--text-light);
    color: var(--primary-green) !important;
    border-color: var(--text-light);
    transform: translateY(-3px);
}

.btn-outline-green {
    background: transparent;
    color: var(--primary-green) !important;
    border: 2px solid var(--primary-green);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-green:hover {
    background: var(--primary-green);
    color: var(--text-light) !important;
    transform: translateY(-3px);
}

.btn-admission-hero {
    background: linear-gradient(135deg, var(--accent-red) 0%, #ff6f00 100%);
    color: var(--text-light) !important;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    box-shadow: 0 6px 20px rgba(229, 57, 53, 0.4);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: pulseGlow 2s ease-in-out infinite;
}

.btn-admission-hero:hover {
    transform: translateY(-3px) scale(1.02);
    color: var(--text-light) !important;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

.hero-card img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    border-radius: 50%;
    border: 4px solid var(--secondary-gold);
    margin-bottom: 16px;
    background: white;
    padding: 6px;
}

.hero-card h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.hero-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: var(--secondary-gold);
    width: 32px;
    border-radius: 6px;
}

/* ---- Section Common ---- */
.section-padding {
    padding: 80px 0;
}

.section-bg-light {
    background: var(--bg-light);
}

.section-bg-cream {
    background: var(--bg-cream);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: rgba(26, 122, 61, 0.1);
    color: var(--primary-green);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: var(--primary-green-dark);
    margin-bottom: 12px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-gold), var(--primary-green));
    margin: 14px auto 0;
    border-radius: 2px;
}

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

/* ---- About Section ---- */
.about-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: var(--transition);
}

.about-image-wrap:hover img {
    transform: scale(1.05);
}

.about-experience {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--secondary-gold-dark) 100%);
    color: var(--primary-green-dark);
    padding: 20px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about-experience .years {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.about-experience .text {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
}

.about-content h3 {
    color: var(--primary-green-dark);
    margin-bottom: 16px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 24px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

.about-feature-item:hover {
    background: var(--primary-green);
    color: var(--text-light);
    transform: translateX(5px);
}

.about-feature-item:hover i {
    color: var(--secondary-gold);
}

.about-feature-item i {
    color: var(--primary-green);
    font-size: 1.1rem;
    transition: var(--transition);
}

.about-feature-item span {
    font-size: 0.85rem;
    font-weight: 600;
}

/* ---- Stats Section ---- */
.stats-section {
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(240, 180, 41, 0.08);
    border-radius: 50%;
}

.stat-card {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.4rem;
    color: var(--secondary-gold);
    transition: var(--transition);
}

.stat-card:hover .stat-icon {
    background: var(--secondary-gold);
    color: var(--primary-green-dark);
    transform: rotateY(180deg);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-top: 6px;
    font-weight: 500;
}

/* ---- Features Section ---- */
.feature-card {
    background: var(--text-light);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green-light);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(26, 122, 61, 0.1) 0%, rgba(240, 180, 41, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--primary-green);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: var(--text-light);
    transform: scale(1.1);
}

.feature-card h4 {
    color: var(--primary-green-dark);
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 0;
}

/* ---- Notice Section ---- */
.notice-card {
    background: var(--text-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-red);
    transition: var(--transition);
    height: 100%;
}

.notice-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.notice-date {
    background: var(--bg-light);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--primary-green);
    font-weight: 600;
}

.notice-body {
    padding: 20px;
}

.notice-body h5 {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.notice-body p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.notice-link {
    color: var(--primary-green);
    font-size: 0.82rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.notice-link:hover {
    color: var(--accent-red);
    gap: 10px;
}

/* ---- Gallery Section ---- */
.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: default;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 90, 44, 0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Zoom icon removed per requirement */

/* ---- CTA Section ---- */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 60%, var(--primary-green-light) 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-content h2 {
    color: var(--text-light);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    margin-bottom: 14px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 28px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

/* ---- Principal Message ---- */
.principal-card {
    background: var(--text-light);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.principal-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: var(--font-accent);
    font-size: 6rem;
    color: rgba(26, 122, 61, 0.08);
    line-height: 1;
}

.principal-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-green);
    margin-bottom: 16px;
}

.principal-name {
    color: var(--primary-green-dark);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.principal-role {
    color: var(--secondary-gold-dark);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.principal-message {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ---- Principal (Enhanced) ---- */
.principal-card-v2 {
    background: linear-gradient(135deg, rgba(240, 180, 41, 0.10) 0%, rgba(26, 122, 61, 0.06) 60%, #ffffff 100%);
    border: 1px solid rgba(26, 122, 61, 0.16);
}

.principal-photo-wrap {
    position: relative;
    display: inline-block;
}

.principal-img-lg {
    width: 160px;
    height: 160px;
    border-width: 5px;
    box-shadow: var(--shadow-md);
}

.principal-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -14px;
    background: var(--primary-green);
    color: var(--text-light);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.principal-quote {
    position: relative;
    padding-left: 4px;
}

.quote-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(26, 122, 61, 0.10);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.principal-sign .principal-name {
    font-size: 1.05rem;
}

.principal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ---- Activities ---- */
.activity-card {
    background: var(--text-light);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 122, 61, 0.35);
}

.activity-img {
    position: relative;
    height: 170px;
    overflow: hidden;
}

.activity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.activity-card:hover .activity-img img {
    transform: scale(1.08);
}

.activity-icon {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--secondary-gold-dark) 100%);
    color: var(--primary-green-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.activity-body {
    padding: 18px 18px 20px;
}

.activity-body h5 {
    font-size: 1rem;
    color: var(--primary-green-dark);
    margin-bottom: 8px;
}

.activity-body p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 0;
}

/* ---- Modern Features List ---- */
.modern-feature-list {
    display: grid;
    gap: 14px;
}

.modern-feature-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 12px;
    align-items: start;
    padding: 16px;
    border-radius: 14px;
    background: var(--bg-light);
    border: 1px solid rgba(26, 122, 61, 0.10);
    transition: var(--transition);
}

.modern-feature-item:hover {
    transform: translateX(6px);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    border-color: rgba(26, 122, 61, 0.25);
}

.mf-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(26, 122, 61, 0.12) 0%, rgba(240, 180, 41, 0.18) 100%);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.modern-feature-item:hover .mf-icon {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: var(--text-light);
}

.modern-feature-item h5 {
    font-size: 1rem;
    color: var(--primary-green-dark);
    margin-bottom: 6px;
}

.modern-feature-item p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.88rem;
}

/* ---- Modern School Features (New Layout) ---- */
.modern-features-wrap {
    position: relative;
}

.modern-hero {
    border-radius: 22px;
    padding: 34px;
    background:
        radial-gradient(900px 380px at 15% 10%, rgba(240, 180, 41, 0.18), transparent 60%),
        radial-gradient(900px 380px at 85% 0%, rgba(26, 122, 61, 0.14), transparent 55%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(244, 249, 245, 0.95) 100%);
    border: 1px solid rgba(26, 122, 61, 0.14);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.modern-hero-top {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.modern-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.78rem;
    color: var(--primary-green-dark);
    background: rgba(26, 122, 61, 0.10);
    border: 1px solid rgba(26, 122, 61, 0.14);
}

.modern-pill.alt {
    color: #7a5400;
    background: rgba(240, 180, 41, 0.18);
    border-color: rgba(240, 180, 41, 0.28);
}

.modern-hero-title {
    color: var(--primary-green-dark);
    font-weight: 900;
    margin-bottom: 10px;
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}

.modern-hero-desc {
    color: var(--text-muted);
    margin-bottom: 18px;
    max-width: 680px;
}

.modern-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 10px;
}

.modern-mini-card {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 12px;
    align-items: start;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(26, 122, 61, 0.12);
    transition: var(--transition);
}

.modern-mini-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(26, 122, 61, 0.26);
}

.mm-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 122, 61, 0.12) 0%, rgba(240, 180, 41, 0.18) 100%);
    color: var(--primary-green);
    font-size: 1.05rem;
    transition: var(--transition);
}

.modern-mini-card:hover .mm-icon {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: var(--text-light);
}

.modern-mini-card h5 {
    margin-bottom: 4px;
    font-size: 0.95rem;
    color: var(--primary-green-dark);
    font-weight: 900;
}

.modern-mini-card p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.6;
}

.modern-cta {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.modern-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.collage-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(26, 122, 61, 0.12);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: #ffffff;
    min-height: 190px;
}

.collage-item.tall {
    grid-column: span 2;
    min-height: 260px;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.collage-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 61, 31, 0.78) 0%, rgba(13, 61, 31, 0.18) 55%, transparent 100%);
    opacity: 0.9;
    pointer-events: none;
}

.collage-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 122, 61, 0.28);
}

.collage-item:hover img {
    transform: scale(1.06);
}

.collage-cap {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    color: var(--text-light);
}

.cap-title {
    font-weight: 900;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.cap-meta {
    font-weight: 600;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.82);
}

.modern-note {
    background: rgba(26, 122, 61, 0.08);
    border: 1px solid rgba(26, 122, 61, 0.14);
    color: var(--primary-green-dark);
    border-radius: 14px;
    padding: 12px 14px;
    font-weight: 700;
    font-size: 0.86rem;
}

/* ---- About Page ---- */
.about-hero {
    position: relative;
    padding: 90px 0 70px;
    overflow: hidden;
    background:
        radial-gradient(900px 380px at 12% 10%, rgba(240, 180, 41, 0.25), transparent 60%),
        radial-gradient(900px 380px at 88% 0%, rgba(26, 122, 61, 0.25), transparent 55%),
        linear-gradient(135deg, #0b3b1e 0%, #0f4c27 45%, #0b3b1e 100%);
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(600px 280px at 18% 20%, rgba(255, 255, 255, 0.08), transparent 60%),
        radial-gradient(520px 260px at 82% 30%, rgba(255, 255, 255, 0.06), transparent 60%);
    pointer-events: none;
}

.about-hero::after {
    content: '';
    position: absolute;
    right: -120px;
    top: -120px;
    width: 320px;
    height: 320px;
    background: rgba(240, 180, 41, 0.16);
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(240, 180, 41, 0.16);
    border: 1px solid rgba(240, 180, 41, 0.45);
    color: rgba(255, 255, 255, 0.92);
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.82rem;
    margin-bottom: 16px;
}

.about-hero-title {
    color: var(--text-light);
    font-weight: 900;
    font-size: clamp(2rem, 4.6vw, 3rem);
    margin-bottom: 12px;
}

.about-hero-sub {
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.05rem;
    max-width: 700px;
    margin-bottom: 22px;
}

.about-hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 680px;
}

.about-point {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 10px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

.about-point i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(240, 180, 41, 0.22);
    color: var(--secondary-gold-light);
}

.ap-label {
    color: rgba(255, 255, 255, 0.74);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.ap-value {
    color: rgba(255, 255, 255, 0.96);
    font-weight: 900;
    font-size: 0.98rem;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about-hero-card {
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(26, 122, 61, 0.18);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.about-hero-card-top {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 12px;
    align-items: center;
    padding: 18px;
    background: linear-gradient(135deg, rgba(26, 122, 61, 0.08), rgba(240, 180, 41, 0.12));
}

.about-hero-card-top img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: contain;
    border: 2px solid var(--primary-green);
    padding: 2px;
    background: #fff;
}

.about-hero-card-top h5 {
    color: var(--primary-green-dark);
    font-size: 1.02rem;
    font-weight: 900;
}

.about-hero-card-body {
    padding: 18px;
    display: grid;
    gap: 12px;
}

.about-hero-mini {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: start;
    padding: 14px;
    border-radius: 16px;
    background: var(--bg-light);
    border: 1px solid rgba(26, 122, 61, 0.10);
}

.about-hero-mini i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 122, 61, 0.10);
    color: var(--primary-green);
}

.m-title {
    font-weight: 900;
    color: var(--primary-green-dark);
    margin-bottom: 2px;
}

.m-value {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.5;
}

.about-hero-card-footer {
    padding: 14px 18px 18px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.about-call,
.about-mail {
    flex: 1;
    min-width: 160px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 14px;
    font-weight: 800;
    border: 1px solid rgba(26, 122, 61, 0.16);
}

.about-call {
    background: rgba(26, 122, 61, 0.10);
    color: var(--primary-green-dark);
}

.about-call:hover {
    background: var(--primary-green);
    color: var(--text-light);
}

.about-mail {
    background: rgba(240, 180, 41, 0.16);
    color: #7a5400;
    border-color: rgba(240, 180, 41, 0.30);
}

.about-mail:hover {
    background: var(--secondary-gold);
    color: var(--primary-green-dark);
}

.mv-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(26, 122, 61, 0.12);
    box-shadow: var(--shadow-sm);
    padding: 28px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 160px;
    height: 160px;
    background: rgba(240, 180, 41, 0.12);
    border-radius: 50%;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 122, 61, 0.28);
}

.mv-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 122, 61, 0.12) 0%, rgba(240, 180, 41, 0.18) 100%);
    color: var(--primary-green);
    font-size: 1.35rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.mv-card h4 {
    color: var(--primary-green-dark);
    font-weight: 900;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.mv-card p {
    color: var(--text-muted);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.timeline {
    display: grid;
    gap: 16px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 14px;
    align-items: start;
}

.timeline-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-top: 16px;
    background: var(--secondary-gold);
    box-shadow: 0 0 0 6px rgba(240, 180, 41, 0.18);
}

.timeline-card {
    background: #ffffff;
    border: 1px solid rgba(26, 122, 61, 0.12);
    border-radius: 18px;
    padding: 18px 18px 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.timeline-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(26, 122, 61, 0.25);
}

.timeline-year {
    display: inline-block;
    background: rgba(26, 122, 61, 0.10);
    color: var(--primary-green-dark);
    border: 1px solid rgba(26, 122, 61, 0.14);
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 0.78rem;
    margin-bottom: 10px;
}

.timeline-card h5 {
    font-weight: 900;
    color: var(--primary-green-dark);
    font-size: 1.02rem;
    margin-bottom: 6px;
}

.timeline-card p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ---- Tour ---- */
.tour-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.tour-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: var(--transition);
}

.tour-image-wrap:hover .tour-image {
    transform: scale(1.05);
}

.tour-image-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(26, 122, 61, 0.18);
    color: var(--primary-green-dark);
    padding: 10px 14px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: var(--shadow-md);
}

.tour-points li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.tour-points i {
    color: var(--primary-green);
    margin-top: 4px;
}

/* ---- Campus Tour Grid ---- */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.tour-card {
    background: #ffffff;
    border: 1px solid rgba(26, 122, 61, 0.12);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 122, 61, 0.28);
}

.tour-card-img {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.tour-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.tour-card:hover .tour-card-img img {
    transform: scale(1.07);
}

.tour-chip {
    position: absolute;
    left: 14px;
    bottom: 14px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-green-dark);
    border: 1px solid rgba(26, 122, 61, 0.16);
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.78rem;
    box-shadow: var(--shadow-md);
}

.tour-card-body {
    padding: 18px 18px 20px;
}

.tour-card-body h5 {
    color: var(--primary-green-dark);
    font-size: 1rem;
    margin-bottom: 8px;
}

.tour-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.78rem;
    margin-bottom: 10px;
}

.tour-card-body p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ---- Modern Feature Media Cards ---- */
.feature-media-card {
    background: #ffffff;
    border: 1px solid rgba(26, 122, 61, 0.12);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.feature-media-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 122, 61, 0.28);
}

.feature-media-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: var(--transition);
}

.feature-media-card:hover .feature-media-img {
    transform: scale(1.06);
}

.feature-media-body {
    padding: 16px 18px 18px;
}

.feature-media-title {
    font-weight: 800;
    color: var(--primary-green-dark);
    margin-bottom: 8px;
}

.feature-media-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.78rem;
}

/* ---- Testimonials ---- */
.testimonial-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 26px;
    border: 1px solid rgba(26, 122, 61, 0.12);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    background: rgba(240, 180, 41, 0.12);
    border-radius: 50%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 122, 61, 0.30);
}

.testimonial-stars {
    color: var(--secondary-gold-dark);
    margin-bottom: 12px;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.testimonial-person {
    display: flex;
    gap: 12px;
    align-items: center;
}

.tp-avatar {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(26, 122, 61, 0.10);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-person h6 {
    color: var(--primary-green-dark);
    font-weight: 800;
}

.testimonial-person small {
    color: var(--text-muted);
    font-weight: 600;
}

/* ---- Contact Info Cards ---- */
.contact-info-card {
    background: var(--text-light);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-green);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--text-light);
    font-size: 1.3rem;
    transition: var(--transition);
}

.contact-info-card:hover .contact-info-icon {
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--secondary-gold-dark) 100%);
    color: var(--primary-green-dark);
}

.contact-info-card h5 {
    color: var(--primary-green-dark);
    font-size: 1rem;
    margin-bottom: 8px;
}

.contact-info-card p,
.contact-info-card a {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 0;
}

.contact-info-card a:hover {
    color: var(--primary-green);
}

/* ---- Footer ---- */
.site-footer {
    position: relative;
    margin-top: 0;
}

.footer-wave {
    color: var(--primary-green-dark);
    line-height: 0;
    margin-bottom: -1px;
}

.footer-wave svg {
    width: 100%;
    height: 60px;
}

.footer-main {
    background: linear-gradient(180deg, var(--primary-green-dark) 0%, #0d3d1f 100%);
    color: rgba(255, 255, 255, 0.85);
    padding: 60px 0 40px;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--secondary-gold);
    padding: 2px;
    background: white;
    margin-right: 12px;
}

.footer-brand h5 {
    color: var(--text-light);
    font-size: 1rem;
}

.footer-brand small {
    color: rgba(255, 255, 255, 0.6);
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-motto {
    color: var(--secondary-gold);
    font-size: 0.85rem;
}

.footer-title {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-gold);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a i {
    font-size: 0.65rem;
    color: var(--secondary-gold);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-gold);
    padding-left: 5px;
}

.footer-info li {
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.75);
}

.footer-info strong {
    color: var(--secondary-gold);
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.85rem;
}

.footer-contact li i {
    color: var(--secondary-gold);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact a:hover {
    color: var(--secondary-gold);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary-gold);
    color: var(--primary-green-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    background: #082a15;
    padding: 16px 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25d366;
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--text-light);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    background: var(--text-dark);
    color: var(--text-light);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45); }
    50% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7); }
}

/* ---- Back to Top ---- */
.back-to-top {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 44px;
    height: 44px;
    background: var(--primary-green);
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-gold);
    color: var(--primary-green-dark);
    transform: translateY(-4px);
}

/* ---- Modal ---- */
.modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: var(--text-light);
    border: none;
    padding: 16px 24px;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-green);
    padding: 4px;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .top-header-info {
        gap: 0.6rem;
        font-size: 0.75rem;
    }

    .top-header-info li:last-child span {
        display: none;
    }

    .main-navbar .navbar-collapse {
        background: var(--text-light);
        padding: 16px;
        border-radius: 12px;
        margin-top: 12px;
        box-shadow: var(--shadow-md);
    }

    .main-navbar .nav-link::after {
        display: none;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-content {
        padding: 80px 0 60px;
    }

    .hero-card {
        margin-top: 30px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-image-wrap img {
        height: 300px;
    }

    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    .top-header-info li:nth-child(2) {
        display: none;
    }

    .brand-name {
        font-size: 0.72rem;
    }

    .brand-sub {
        font-size: 0.62rem;
    }

    .brand-logo {
        width: 42px;
        height: 42px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat-number {
        font-size: 1.6rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 40px;
        height: 40px;
    }

    .principal-card {
        padding: 28px;
    }

    .tour-image {
        height: 300px;
    }

    .modern-cards {
        grid-template-columns: 1fr;
    }

    .about-hero {
        padding: 78px 0 60px;
    }

    .about-hero-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        text-align: center;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ---- Utility Animations ---- */
.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Preloader (optional lightweight) */
.page-loaded .hero-content {
    animation: fadeInUp 1s ease;
}
