/* 
   Salai St. Xavier's Village Development Trust
   Master Style System (style.css)
*/

/* --------------------------------------------------
   1. ROOT VARIABLES & GLOBAL STYLES
   -------------------------------------------------- */
:root {
    /* Color Palette */
    --primary-color: #0d2240;      /* Deep Navy Blue */
    --primary-dark: #071529;       /* Darker Navy */
    --primary-light: #163663;      /* Semi Light Navy */
    --secondary-color: #2e7d32;    /* Warm Forest Green */
    --secondary-dark: #1b5e20;     /* Deep Green */
    --accent-color: #e6bd39;       /* Premium Gold */
    --accent-hover: #bda02b;      /* Darker Gold */
    --bg-light: #f8f9fa;           /* Off-White/Light Gray */
    --bg-white: #ffffff;
    --text-dark: #2d3748;          /* Charcoal Black */
    --text-muted: #718096;         /* Slate Muted Gray */
    --text-light: #f7fafc;
    --border-color: #e2e8f0;
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions & Shadows */
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.text-justify {
    text-align: justify;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for sticky header */
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
}

a {
    transition: var(--transition-smooth);
}

/* --------------------------------------------------
   2. UTILITIES & REUSABLE CLASSES
   -------------------------------------------------- */
.text-accent { color: var(--accent-color) !important; }
.text-secondary-custom { color: var(--secondary-color) !important; }
.bg-primary-custom { background-color: var(--primary-color) !important; }
.bg-dark-blue { background-color: var(--primary-dark) !important; }
.bg-dark-blue-light { background-color: var(--primary-light) !important; }
.bg-light-gray { background-color: var(--bg-light) !important; }
.border-white-10 { border-color: rgba(255, 255, 255, 0.1) !important; }

.fs-sm { font-size: 0.875rem; }
.fs-xs { font-size: 0.75rem; }

.btn-accent {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-dark);
    font-weight: 600;
    transition: var(--transition-smooth);
}
.btn-accent:hover, .btn-accent:focus {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline-white {
    background-color: transparent;
    border: 2px solid var(--bg-white);
    color: var(--bg-white);
    font-weight: 600;
    transition: var(--transition-smooth);
}
.btn-outline-white:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
    transition: var(--transition-smooth);
}
.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.section-padding {
    padding: 90px 0;
}

/* Custom Section Titles */
.section-title-wrapper {
    margin-bottom: 50px;
}
.section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 10px;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 15px;
    color: var(--primary-color);
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}
.section-title-left::after {
    left: 0;
    transform: none;
}

/* --------------------------------------------------
   3. TOP HEADER & NAVIGATION
   -------------------------------------------------- */
.top-header {
    background-color: var(--primary-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-header .social-link {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border-radius: 50%;
    font-size: 0.8rem;
    text-decoration: none;
}
.top-header .social-link:hover {
    background-color: var(--accent-color);
    color: var(--primary-dark);
}

/* Navigation bar */
#mainNavbar {
    background-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    padding: 15px 0;
}
#mainNavbar.navbar-scrolled {
    background-color: rgba(13, 34, 64, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}
.brand-logo {
    height: 48px;
    width: auto;
}
.brand-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--bg-white);
    line-height: 1.2;
}
.brand-subtitle {
    font-size: 0.65rem;
    color: var(--accent-color);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.brand-tagline {
    font-size: 0.8rem;
    color: var(--bg-white);
    opacity: 0.8;
    font-style: italic;
    letter-spacing: 0.5px;
    line-height: 1.1;
    margin-top: 1px;
}

#mainNavbar .nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 15px;
    position: relative;
}
#mainNavbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition-smooth);
}
#mainNavbar .nav-link:hover,
#mainNavbar .nav-link.active {
    color: var(--accent-color);
}
#mainNavbar .nav-link:hover::after,
#mainNavbar .nav-link.active::after {
    width: calc(100% - 30px);
}

/* --------------------------------------------------
   3b. OFFCANVAS MOBILE MENU
   -------------------------------------------------- */
#navOffcanvas {
    background: linear-gradient(170deg, var(--primary-dark) 0%, var(--primary-color) 60%, #0e2a50 100%);
    width: 300px;
    border-left: 1px solid rgba(230, 189, 57, 0.2);
}
.offcanvas-header {
    padding: 1.25rem 1.5rem;
}
.offcanvas-logo {
    height: 42px;
    width: auto;
    flex-shrink: 0;
}
.offcanvas-brand-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--bg-white);
    line-height: 1.2;
}
.offcanvas-brand-subtitle {
    font-size: 0.5rem;
    color: var(--accent-color);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    line-height: 1.4;
}
.offcanvas-brand-tagline {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.65);
    font-style: italic;
    letter-spacing: 0.3px;
    line-height: 1.3;
}
.offcanvas-body {
    padding: 1rem 0;
}
.offcanvas-nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    transition: var(--transition-smooth);
    letter-spacing: 0.3px;
}
.offcanvas-nav-link i {
    color: var(--accent-color);
    font-size: 0.9rem;
    width: 20px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}
.offcanvas-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(230, 189, 57, 0.15) 0%, transparent 100%);
    transition: var(--transition-smooth);
}
.offcanvas-nav-link:hover,
.offcanvas-nav-link.active {
    color: var(--accent-color);
    padding-left: 2rem;
}
.offcanvas-nav-link:hover::before,
.offcanvas-nav-link.active::before {
    width: 100%;
}
.offcanvas-nav-link:hover i,
.offcanvas-nav-link.active i {
    transform: scale(1.2);
}
.offcanvas-footer {
    padding: 0 1.5rem;
}
.offcanvas-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255,255,255,0.1);
}
.offcanvas-social-link:hover {
    background: var(--accent-color);
    color: var(--primary-dark);
    transform: translateY(-2px);
    border-color: var(--accent-color);
}

/* --------------------------------------------------
   4. HERO BANNER SECTION (SWIPER)
   -------------------------------------------------- */
.hero-slider-section {
    position: relative;
    height: calc(100vh - 120px);
    min-height: 550px;
    background-color: var(--primary-dark);
}
.hero-slider-section .swiper {
    width: 100%;
    height: 100%;
}
.hero-slide {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7, 21, 41, 0.85) 0%, rgba(13, 34, 64, 0.5) 100%);
    z-index: 1;
}
.hero-content-wrapper {
    position: relative;
    z-index: 2;
    color: var(--bg-white);
    max-width: 800px;
}
.hero-badge {
    background-color: rgba(46, 125, 50, 0.2);
    border: 1px solid var(--secondary-color);
    color: #4cd137;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--bg-white);
}
.hero-tagline {
    font-size: 1.25rem;
    color: var(--border-color);
    margin-bottom: 35px;
    font-weight: 300;
}

/* Swiper custom overrides */
.hero-slider-section .swiper-button-prev,
.hero-slider-section .swiper-button-next {
    color: var(--bg-white);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    transition: var(--transition-smooth);
}
.hero-slider-section .swiper-button-prev:after,
.hero-slider-section .swiper-button-next:after {
    font-size: 1.2rem;
    font-weight: bold;
}
.hero-slider-section .swiper-button-prev:hover,
.hero-slider-section .swiper-button-next:hover {
    background-color: var(--accent-color);
    color: var(--primary-dark);
}
.hero-slider-section .swiper-pagination-bullet {
    background: var(--bg-white);
    opacity: 0.4;
    width: 10px;
    height: 10px;
}
.hero-slider-section .swiper-pagination-bullet-active {
    background: var(--accent-color);
    opacity: 1;
    width: 25px;
    border-radius: 10px;
}

/* --------------------------------------------------
   5. ABOUT THE TRUST SECTION
   -------------------------------------------------- */
.about-image-wrapper {
    position: relative;
    padding-right: 15px;
    padding-bottom: 15px;
}
.about-img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
    object-fit: cover;
}
.about-image-wrapper::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 80%;
    height: 80%;
    border: 8px solid var(--accent-color);
    z-index: -1;
    border-radius: 8px;
    transition: var(--transition-smooth);
}
.about-image-wrapper:hover::after {
    transform: translate(-10px, -10px);
}

.objective-box {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    background-color: var(--bg-light);
    transition: var(--transition-smooth);
    border-left: 4px solid var(--secondary-color);
}
.objective-box:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
    background-color: var(--bg-white);
}
.objective-icon-container {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(46, 125, 50, 0.1);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.objective-title {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--primary-color);
}
.objective-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* --------------------------------------------------
   6. FOUNDER SECTION
   -------------------------------------------------- */
.founder-card {
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border: none;
}
.founder-img-wrapper {
    position: relative;
    overflow: hidden;
    background-color: var(--primary-dark);
}
.founder-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: top center;
    transition: var(--transition-smooth);
}
.founder-card:hover .founder-img {
    transform: scale(1.05);
}
.founder-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(7, 21, 41, 0.9) 0%, rgba(7, 21, 41, 0) 50%);
}
.founder-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--accent-color);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 4px;
}
.founder-details {
    padding: 30px;
}
.founder-name {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 5px;
}
.founder-title {
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.founder-quote {
    font-style: italic;
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-dark);
    position: relative;
    padding-left: 25px;
    border-left: 3px solid var(--accent-color);
    margin-bottom: 20px;
}
.founder-message {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* --------------------------------------------------
   7. TRUST ACTIVITIES SECTION
   -------------------------------------------------- */
.activity-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary-color);
    z-index: -1;
    transition: var(--transition-smooth);
}
.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}
.activity-card:hover::before {
    height: 100%;
}
.activity-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    background-color: var(--bg-light);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}
.activity-card:hover .activity-icon-box {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--accent-color);
}
.activity-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 15px;
    transition: var(--transition-smooth);
}
.activity-card:hover .activity-card-title {
    color: var(--bg-white);
}
.activity-card-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    margin-bottom: 0;
}
.activity-card:hover .activity-card-text {
    color: rgba(255, 255, 255, 0.8);
}

/* --------------------------------------------------
   8. ACHIEVEMENTS / IMPACT SECTION
   -------------------------------------------------- */
.impact-section {
    background: linear-gradient(135deg, rgba(7, 21, 41, 0.95) 0%, rgba(13, 34, 64, 0.95) 100%), url('../image/Trust name board 26.jpg.jpeg') no-repeat center center / cover;
    background-attachment: fixed;
    color: var(--bg-white);
    padding: 80px 0;
}
.counter-box {
    text-align: center;
}
.counter-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}
.counter-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--bg-white);
}
.counter-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--border-color);
    margin-bottom: 0;
}

/* --------------------------------------------------
   9. TRUST MEMBERS SECTION
   -------------------------------------------------- */
.member-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    text-align: center;
    padding: 30px 20px;
    height: 100%;
}
.member-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}
.member-avatar-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
}
.member-card:hover .member-avatar-wrapper {
    border-color: var(--accent-color);
    transform: scale(1.05);
}
.member-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.member-avatar-placeholder {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.7;
}
.member-name {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--primary-color);
}
.member-role {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.member-bio {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 15px;
}
.member-contact-info {
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}
.member-phone {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}
.member-phone i {
    color: var(--accent-color);
}
.member-phone:hover {
    color: var(--secondary-color);
}

/* --------------------------------------------------
   10. PHOTO GALLERY SECTION
   -------------------------------------------------- */
.gallery-filter-buttons {
    margin-bottom: 35px;
}
.gallery-btn {
    background-color: transparent;
    border: 1px solid var(--border-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin: 4px;
    transition: var(--transition-smooth);
}
.gallery-btn:hover,
.gallery-btn.active {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--bg-white);
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}
.gallery-item {
    padding: 10px;
    width: 25%; /* Default desktop 4 columns */
    display: block; /* Managed by JS filter */
    transition: var(--transition-smooth);
}
.gallery-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4 / 3;
    background-color: var(--primary-dark);
}
.gallery-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.gallery-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 21, 41, 0.8);
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition-smooth);
    padding: 20px;
    text-align: center;
}
.gallery-card:hover .gallery-card-img {
    transform: scale(1.1);
}
.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}
.gallery-icon-holder {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 12px;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}
.gallery-card:hover .gallery-icon-holder {
    transform: translateY(0);
}
.gallery-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 4px;
}
.gallery-title {
    color: var(--bg-white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0;
}

/* Lightbox Styles */
.custom-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 21, 41, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.lightbox-content-wrapper {
    position: relative;
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lightbox-img {
    max-height: 80vh;
    max-width: 100%;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
}
.lightbox-caption {
    color: var(--bg-white);
    margin-top: 15px;
    font-size: 1.05rem;
    font-family: var(--font-heading);
    text-align: center;
}
.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--bg-white);
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    transition: var(--transition-smooth);
}
.lightbox-close:hover {
    color: var(--accent-color);
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--bg-white);
    font-size: 2.5rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    transition: var(--transition-smooth);
}
.lightbox-nav:hover {
    color: var(--accent-color);
}
.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }

/* --------------------------------------------------
   11. TESTIMONIAL SECTION
   -------------------------------------------------- */
.testimonial-section {
    background-color: var(--bg-light);
}
.testimonial-swiper {
    padding-bottom: 50px !important;
}
.testimonial-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
}
.testimonial-quote-icon {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: var(--border-color);
    opacity: 0.3;
}
.testimonial-rating {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 25px;
}
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
}
.testimonial-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2px;
}
.testimonial-role {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--secondary-color);
}

/* --------------------------------------------------
   12. CONTACT & GOOGLE MAPS
   -------------------------------------------------- */
.contact-card-info {
    background-color: var(--primary-color);
    border-radius: 12px;
    padding: 40px;
    color: var(--bg-white);
    height: 100%;
}
.contact-item-box {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}
.contact-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-item-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--bg-white);
}
.contact-item-text {
    font-size: 0.9rem;
    color: var(--border-color);
    margin-bottom: 0;
}
.contact-item-text a {
    color: var(--border-color);
    text-decoration: none;
}
.contact-item-text a:hover {
    color: var(--accent-color);
}

/* Contact Form */
.contact-form-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}
.form-label {
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--primary-color);
}
.form-control {
    padding: 12px 18px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
}
.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(46, 125, 50, 0.15);
}

/* Map Styling */
.map-section {
    padding: 0;
    line-height: 0;
    overflow: hidden;
    border-top: 5px solid var(--accent-color);
}
.map-iframe {
    width: 100%;
    height: 450px;
    border: 0;
    filter: grayscale(10%) contrast(105%);
}

/* --------------------------------------------------
   13. FOOTER
   -------------------------------------------------- */
.footer-section {
    background-color: var(--primary-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand-logo {
    height: 40px;
    width: auto;
}
.footer-heading {
    font-size: 1.15rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
}
.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
    display: inline-block;
}

/* --------------------------------------------------
   14. FLOATING ELEMENTS & ANIMATIONS
   -------------------------------------------------- */
/* Floating Buttons */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    z-index: 999;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}
.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top-btn:hover {
    background-color: var(--accent-color);
    color: var(--primary-dark);
    transform: translateY(-5px);
}

.floating-whatsapp-btn {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #25d366;
    color: var(--bg-white);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
    z-index: 998;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition-smooth);
    animation: pulse-whatsapp 2s infinite;
}
.floating-whatsapp-btn:hover {
    background-color: #128c7e;
    color: var(--bg-white);
    transform: translateY(-5px);
}

.floating-call-btn {
    position: fixed;
    bottom: 150px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(13, 34, 64, 0.4);
    z-index: 998;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: var(--transition-smooth);
}
.floating-call-btn:hover {
    background-color: var(--accent-color);
    color: var(--primary-dark);
    transform: translateY(-5px);
}

/* Animations */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Swiper Custom Pagination Bullets across all sections */
.activities-swiper, .members-swiper, .gallery-swiper, .testimonial-swiper {
    padding-top: 15px !important;
    margin-top: -15px !important;
    padding-bottom: 50px !important;
}
.activities-swiper .swiper-pagination-bullet,
.members-swiper .swiper-pagination-bullet,
.gallery-swiper .swiper-pagination-bullet,
.testimonial-swiper .swiper-pagination-bullet {
    background: var(--primary-color) !important;
    opacity: 0.3 !important;
    width: 8px;
    height: 8px;
    transition: var(--transition-smooth);
}
.activities-swiper .swiper-pagination-bullet-active,
.members-swiper .swiper-pagination-bullet-active,
.gallery-swiper .swiper-pagination-bullet-active,
.testimonial-swiper .swiper-pagination-bullet-active {
    background: var(--accent-color) !important;
    opacity: 1 !important;
    width: 24px !important;
    border-radius: 10px !important;
}

