/* ========================================
   HRA Website - Main Stylesheet
   ======================================== */

/* Root Variables */
:root {
    --primary-red: #E31E24;
    --dark-navy: #2D1B4E;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-secondary: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Text Utilities */
.text-red {
    color: var(--primary-red);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

.btn-primary:hover {
    background-color: #c41a1f;
    border-color: #c41a1f;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.btn-outline:hover {
    background-color: var(--text-dark);
    color: var(--white);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.site-header {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    margin-bottom: 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo a {
    display: block;
    line-height: 0;
}

.site-logo img {
    height: 50px;
    width: auto;
    display: block;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.main-nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.main-nav a.active {
    color: var(--primary-red);
    font-weight: 600;
}

.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover {
    color: var(--primary-red);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: none;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    margin-top: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.has-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu li a {
    color: var(--text-dark);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: background-color 0.3s;
}

.dropdown-menu li a:hover {
    background-color: #f1f1f1;
    color: var(--primary-red);
}

.dropdown-menu li a.active {
    background-color: #f1f1f1;
    color: var(--primary-red);
    font-weight: 600;
}

.nav-btn-member {
    padding: 10px 20px !important;
    font-size: 14px !important;
    color: var(--white) !important;
}

.nav-btn-member:hover {
    color: var(--white) !important;
}

.nav-btn-member::after {
    display: none !important;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* ========================================
   PAGE HERO SECTION (For Inner Pages)
   ======================================== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-red) 0%, #c41a1f 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.page-hero-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
}

.page-hero-content-clean {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-hero-text {
    flex: 1;
    color: var(--white);
    padding-bottom: 50px;
}

.page-hero-text-clean {
    color: var(--white);
    max-width: 800px;
}

.page-subtitle {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    opacity: 0.9;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.page-hero-image {
    flex: 0 0 auto;
    text-align: right;
    position: relative;
    align-self: flex-end;
}

.page-hero-image img {
    max-width: 320px;
    height: auto;
    display: block;
    margin-left: auto;
    object-fit: contain;
    object-position: bottom;
}

/* ========================================
   CONTENT SECTION
   ======================================== */
.content-section {
    padding: 80px 0;
    background-color: var(--white);
}

.content-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.content-row-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-image {
    width: 100%;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.content-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.content-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
}

/* ========================================
   ALTERNATIVE FEATURES SECTION
   ======================================== */
.features-section-alt {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.features-grid-alt {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.features-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-card-alt {
    text-align: center;
    padding: 20px;
}

.feature-title-alt {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

.feature-description-alt {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    background: transparent;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.hero-section::before {
    display: none;
}

/* Hero Slider Container */
.hero-slider-container {
    width: 100%;
    position: relative;
    min-height: 700px;
}

.hero-slide {
    display: none;
    position: relative;
    width: 100%;
    height: 700px;
    animation: fadeIn 0.8s ease-in-out;
}

.hero-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Full-width Image */
.hero-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Show desktop image by default, hide mobile */
.hero-desktop-image {
    display: block;
}

.hero-mobile-image {
    display: none;
}

/* Overlay for text - REMOVED */
.hero-slide-overlay {
    display: none;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    color: var(--white);
    padding-bottom: 0;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 32px;
    background: white;
    color: var(--primary-red);
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-btn:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-image {
    flex: 0 0 auto;
    text-align: right;
    position: relative;
    align-self: center;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.3));
    animation: fadeInRight 1s ease-out 0.6s both;
}

.hero-image img {
    max-width: 450px;
    height: auto;
    display: block;
    margin-left: auto;
    object-fit: contain;
    object-position: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    border-radius: 4px;
}

.hero-image img:hover {
    transform: scale(1.03) translateY(-5px);
    filter: brightness(1.05);
}

/* Animated background glow effect */
.hero-image::before {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
    z-index: 0;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.hero-image:hover::after {
    opacity: 1;
}

/* Hero Slider Controls */
.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-btn svg {
    width: 24px;
    height: 24px;
}

.hero-prev {
    left: 20px;
    display: none; /* Hidden */
}

.hero-next {
    right: 20px;
    display: none; /* Hidden */
}

/* Hero Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: none; /* Hidden */
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.slider-dot.active {
    background: white;
    width: 32px;
    border-radius: 6px;
}

/* ===== RESPONSIVE HERO SLIDER ===== */

/* Large Desktop (1920px and up) */
@media (min-width: 1920px) {
    .hero-section,
    .hero-slider-container {
        min-height: 850px;
    }
    
    .hero-slide {
        height: 850px;
    }
}

/* Desktop (1440px to 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .hero-section,
    .hero-slider-container {
        min-height: 750px;
    }
    
    .hero-slide {
        height: 750px;
    }
}

/* Laptop (1024px to 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
    .hero-section,
    .hero-slider-container {
        min-height: 600px;
    }
    
    .hero-slide {
        height: 600px;
    }
}

/* Tablet (768px to 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-section,
    .hero-slider-container {
        min-height: 500px;
    }
    
    .hero-slide {
        height: 500px;
    }
    
    .hero-slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .hero-slider-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
    .hero-section,
    .hero-slider-container {
        min-height: 75vh;
        max-height: 75vh;
    }
    
    .hero-slide {
        height: 75vh;
    }
    
    .hero-slide-image {
        height: 100%;
        position: relative;
    }
    
    .hero-slide-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        position: absolute;
        top: 0;
        left: 0;
    }
    
    /* Desktop image - show by default on mobile */
    .hero-desktop-image {
        display: block;
    }
    
    /* Mobile image - hidden by default */
    .hero-mobile-image {
        display: none;
    }
    
    /* When mobile image exists, hide desktop and show mobile */
    .hero-slide.has-mobile-image .hero-desktop-image {
        display: none;
    }
    
    .hero-slide.has-mobile-image .hero-mobile-image {
        display: block;
    }
    
    .hero-slider-btn {
        width: 35px;
        height: 35px;
    }
    
    .hero-slider-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .hero-prev {
        left: 10px;
    }
    
    .hero-next {
        right: 10px;
    }
    
    .hero-slider-dots {
        bottom: 20px;
        gap: 8px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-dot.active {
        width: 24px;
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .hero-section,
    .hero-slider-container {
        min-height: 75vh;
        max-height: 75vh;
    }
    
    .hero-slide {
        height: 75vh;
    }
    
    .hero-slide-image {
        height: 100%;
        position: relative;
    }
    
    .hero-slide-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        position: absolute;
        top: 0;
        left: 0;
    }
    
    .hero-slider-btn {
        width: 30px;
        height: 30px;
    }
    
    .hero-slider-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
    
    .slider-dot.active {
        width: 20px;
    }
}



@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
    padding: 100px 0;
    background-color: var(--white);
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    line-height: 1.3;
    color: var(--text-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.feature-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image {
    flex: 1;
    display: flex;
    align-items: center;
}

.about-image img {
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    height: auto;
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.about-text .section-title {
    font-size: 38px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-description {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text .btn {
    margin-top: 20px;
}

.read-more-link {
    display: inline-block;
    color: var(--primary-red);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.3s ease;
    align-self: flex-end;
}

.read-more-link:hover {
    color: #c0392b;
    transform: translateX(5px);
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    background: url('../images/conf-home.png') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: 150px 0;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.92) 0%, rgba(71, 85, 105, 0.88) 100%);
    z-index: 1;
}

.stats-overlay {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 50px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    position: relative;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.stat-card-title {
    background: rgba(255, 255, 255, 0.98);
    text-align: left;
    align-items: flex-start;
    justify-content: center;
    padding: 50px 40px;
}

.stat-card-title:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.98);
}

.stat-card-title .stat-title {
    color: var(--text-dark);
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
}

.stat-card-title .text-red {
    color: var(--primary-red);
    display: block;
    margin-top: 8px;
}

.stat-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: block;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.4;
    max-width: 200px;
}

/* ========================================
   NEWS & UPDATES SECTION
   ======================================== */
.news-section {
    padding: 100px 0;
    background-color: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.news-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(227, 30, 36, 0.15);
    border-color: rgba(227, 30, 36, 0.1);
}

.news-image {
    height: 250px;
    overflow: hidden;
    position: relative;
    background-color: var(--light-gray);
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.08);
}

.news-card .news-date,
.news-image .news-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-primary);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(227, 30, 36, 0.6);
    z-index: 10;
    letter-spacing: 0.3px;
    display: block;
}

.news-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.4;
    font-weight: 600;
}

.news-card .service-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.4;
    font-weight: 600;
}

.news-card .service-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.news-excerpt {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.news-link {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: #c41a1f;
    gap: 5px;
}

.news-read-more {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    margin-top: auto;
}

.news-read-more:hover {
    color: #c41a1f;
    transform: translateX(5px);
}

.section-footer {
    text-align: center;
    margin-top: 50px;
}

/* Pagination Styles */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.pagination {
    display: flex;
    gap: 10px;
    align-items: center;
}

.page-link {
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    background-color: var(--white);
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.page-link:hover {
    background-color: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

.page-link.active {
    background-color: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, #E31E24 0%, #C41E3A 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    color: var(--white);
}

.cta-title {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 35px;
}

.cta-phone {
    color: var(--white);
    font-weight: 700;
    font-size: 24px;
}

.cta-phone:hover {
    color: #f0f0f0;
}

.btn-white {
    background: var(--white);
    color: var(--primary-red);
    border: 2px solid var(--white);
    padding: 14px 35px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background-color: var(--dark-navy);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-about h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 24px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p,
.footer-section ul {
    font-size: 14px;
    line-height: 2;
}

.footer-section ul {
    list-style: none;
}

.footer-section a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

/* ========================================
   About Page Styles
   ======================================== */

/* About Hero Section */
.about-hero-section {
    background: linear-gradient(135deg, #E31E24 0%, #c71820 100%);
    padding: 120px 0;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.about-hero-grid-clean {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero-content-centered {
    text-align: center;
    color: var(--white);
    max-width: 800px;
}

.about-hero-left {
    color: var(--white);
}

.about-hero-subtitle {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-hero-title {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.2;
}

.about-hero-right {
    display: flex;
    justify-content: flex-end;
}

.about-hero-right img {
    max-width: 450px;
    width: 100%;
    height: auto;
}

/* About Content Section */
.about-content-section {
    padding: 80px 0;
    background-color: var(--white);
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.about-content-heading {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

.about-content-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.about-content-text:last-child {
    margin-bottom: 0;
}

/* About Testimonial Section */
.about-testimonial-section {
    background: linear-gradient(rgba(45, 27, 78, 0.85), rgba(45, 27, 78, 0.85)), 
                url('../images/conf-home.png') center/cover no-repeat;
    padding: 100px 0;
    position: relative;
}

.about-testimonial-content {
    text-align: center;
    color: var(--white);
}

.quote-icon {
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 30px;
    color: var(--white);
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 700;
}

.testimonial-author {
    font-size: 36px;
    font-weight: 600;
}

/* About Team Section */
.about-team-section {
    padding: 80px 0;
    background-color: var(--white);
}

.about-team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-team-left img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.about-team-heading {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.about-team-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.about-team-text:last-child {
    margin-bottom: 0;
}

.president-signature {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

.president-signature strong {
    font-weight: 600;
    color: var(--text-dark);
}

/* About Final Section */
.about-final-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.about-final-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-final-heading {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-dark);
}

/* Newsletter Form in Final Section */
.about-final-content .newsletter-form {
    margin-top: 40px;
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.about-final-content .newsletter-input {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    padding: 16px 24px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
    font-family: var(--font-secondary);
}

.about-final-content .newsletter-input:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.1);
}

.about-final-content .newsletter-input::placeholder {
    color: #999;
}

.about-final-content .newsletter-button {
    padding: 16px 40px;
    border-radius: 50px;
    background: var(--primary-red);
    color: var(--white);
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.about-final-content .newsletter-button:hover {
    background: #c41a1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
}

/* Services Grid Section */
.about-services-section {
    padding: 80px 0;
    background-color: var(--white);
}

.services-grid-3x2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    text-align: left;
}

.service-icon {
    margin-bottom: 20px;
    color: var(--primary-red);
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Contact CTA Section */
.about-contact-cta {
    background-color: var(--dark-navy);
    padding: 80px 0;
    text-align: center;
}

.contact-cta-content {
    color: var(--white);
}

.contact-cta-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-cta-text {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-cta-subtext {
    font-size: 14px;
    opacity: 0.8;
}

/* ========================================
   Membership Page Styles
   ======================================== */

/* Membership Hero Section */
.membership-hero-section {
    background: linear-gradient(135deg, #E31E24 0%, #c71820 100%);
    padding: 80px 0 100px;
}

.membership-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.membership-hero-left {
    color: var(--white);
}

.membership-hero-subtitle {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.membership-hero-title {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 40px;
}

.scroll-down-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.scroll-down-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(5px);
}

.membership-hero-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: var(--white);
}

.benefits-section-alt {
    background-color: var(--light-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
}

.benefits-grid-reverse {
    grid-template-columns: 1fr 400px;
}

.benefits-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.benefits-category {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
    color: var(--text-dark);
}

.benefits-section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
    color: var(--text-dark);
}

.section-title-center {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.benefits-category span {
    color: var(--primary-red);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.benefit-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 35px;
    height: 35px;
    background-color: var(--text-dark);
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    border-radius: 4px;
}

.benefit-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
    padding-top: 5px;
}

/* Membership Plans Section */
.membership-plans-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.membership-plans-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(227, 30, 36, 0.3) 50%, transparent 100%);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.plan-card {
    padding: 60px 45px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.3) 100%);
}

.plan-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.plan-card-personal {
    background: linear-gradient(145deg, #E31E24 0%, #c71820 50%, #a8141a 100%);
    color: var(--white);
}

.plan-card-business {
    background: linear-gradient(145deg, #2d1b4e 0%, #1a0f2e 50%, #0f0820 100%);
    color: var(--white);
}

.plan-category {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 24px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 12px;
    gap: 10px;
}

.price-amount {
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.price-gst {
    font-size: 20px;
    font-weight: 600;
    opacity: 0.95;
}

.price-period {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 500;
}

.plan-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0;
    opacity: 0.95;
    text-align: left;
    font-weight: 400;
}

/* Membership CTA */
.membership-cta {
    text-align: center;
    max-width: 600px;
    margin: 60px auto 0;
    padding: 40px 20px 0;
    border-top: 2px solid var(--gray-200);
}

.membership-cta-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.3;
}

.membership-cta-btn {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #E31E24 0%, #c71820 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
    text-decoration: none;
}

.membership-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.4);
    background: linear-gradient(135deg, #c71820 0%, #a8141a 100%);
    color: var(--white);
}

/* Membership Contact Section */
.membership-contact-section {
    background: linear-gradient(135deg, var(--dark-navy) 0%, #1a0f2e 100%);
    padding: 80px 0;
}

.membership-contact-content {
    text-align: center;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto;
}

.membership-contact-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
}

.membership-contact-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
}

.membership-contact-phone {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 22px;
}

.membership-contact-phone:hover {
    color: #ff3a3f;
}

.membership-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: var(--font-secondary);
}

select.form-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 45px;
    cursor: pointer;
}

select.form-input option {
    background-color: var(--dark-navy);
    color: var(--white);
    padding: 10px;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    background-color: rgba(255, 255, 255, 0.15);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit-btn {
    padding: 15px 40px;
    background-color: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    background-color: #c71820;
    transform: translateY(-2px);
}

.membership-contact-note {
    font-size: 13px;
    opacity: 0.7;
    margin-top: 20px;
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Contact Form Main Section */
.contact-form-main-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-form-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-description {
    font-size: 16px;
    color: var(--text-light);
    margin-top: 15px;
}

.contact-form-main {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 8px;
}

.contact-form-main .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
}

.contact-form-main .form-group {
    margin-bottom: 25px;
}

.contact-form-main .form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.contact-form-main .form-input {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: var(--white);
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-family: var(--font-secondary);
}

.contact-form-main .form-input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1);
}

.contact-form-main textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 16px;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.contact-info-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.contact-info-icon {
    color: var(--primary-red);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.contact-info-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 20px;
    text-align: center;
}

.contact-info-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.9;
    text-align: center;
    max-width: 250px;
}

.contact-info-text a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: var(--primary-red);
}

/* Map Section */
.contact-map-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 60px;
    margin-bottom: 30px;
}

.contact-map iframe {
    display: block;
    width: 100%;
}

.contact-map-footer {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-map-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

/* FAQ Section */
.contact-faq-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.faq-answer {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-answer a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* ========================================
   GALLERY PAGE STYLES
   ======================================== */

/* Gallery Filter Section */
.gallery-filter-section {
    padding: 50px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.gallery-filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-secondary);
}

.filter-btn:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

/* Albums Section */
.albums-section {
    padding: 80px 0;
    background: var(--white);
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.album-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    opacity: 1;
}

.album-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.album-image {
    position: relative;
    overflow: hidden;
    padding-top: 75%; /* 4:3 aspect ratio */
}

.album-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.album-card:hover .album-image img {
    transform: scale(1.1);
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.album-overlay-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.album-count {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
}

.btn-white-small {
    background: var(--white);
    color: var(--primary-red);
    padding: 10px 25px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-white-small:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
}

.album-content {
    padding: 25px;
}

.album-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.album-category {
    background: var(--primary-red);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.album-date {
    font-size: 13px;
    color: var(--text-light);
}

.album-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
    line-height: 1.3;
    font-family: var(--font-primary);
}

.album-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Gallery Stats Section */
.gallery-stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, #c41a1f 100%);
}

.gallery-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.gallery-stat-card {
    text-align: center;
    padding: 30px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-stat-card:last-child {
    border-right: none;
}

.gallery-stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.gallery-stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ========================================
   WHAT WE DO PAGE STYLES
   ======================================== */

/* Section Header Center */
.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-intro {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 20px;
}

/* Services Overview Section */
.services-overview-section {
    padding: 100px 0;
    background: var(--white);
}

.services-main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.service-main-card {
    background: #f8f9fa;
    padding: 40px 35px;
    border-radius: 8px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.service-main-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-red);
    background: var(--white);
}

.service-icon-large {
    color: var(--primary-red);
    margin-bottom: 25px;
}

.service-main-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.service-main-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-list li {
    font-size: 14px;
    color: var(--text-dark);
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}

.service-features-list li:last-child {
    border-bottom: none;
}

.service-features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 700;
}

/* How It Works Section */
.how-it-works-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: var(--primary-red);
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #c41a1f 100%);
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.3);
}

.process-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.process-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Specialized Programs Section */
.programs-section {
    padding: 100px 0;
    background: var(--white);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.program-card {
    background: #f8f9fa;
    padding: 35px 25px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.program-card:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.program-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-red);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.program-icon {
    color: var(--primary-red);
    margin-bottom: 20px;
}

.program-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 15px;
    line-height: 1.3;
}

.program-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.program-link {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.program-link:hover {
    gap: 5px;
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2D1B4E 0%, #1a0f30 100%);
}

.testimonials-section .section-title {
    color: #ffffff !important;
}

.testimonials-section .text-red {
    color: #E31E24 !important;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 35px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.testimonial-quote {
    color: #E31E24;
    margin-bottom: 20px;
    opacity: 0.9;
}

.testimonial-text {
    font-size: 16px;
    color: #ffffff !important;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.testimonial-name {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8) !important;
}

/* ========================================
   LEADERSHIP PAGE STYLES
   ======================================== */

/* Leadership Introduction */
.leadership-intro-section {
    padding: 80px 0 40px;
    background: var(--white);
}

/* Leadership Section Headers */
.leadership-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.leadership-section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leadership-divider {
    width: 80px;
    height: 4px;
    background: var(--primary-red);
    margin: 0 auto;
}

/* Executive Leadership Section */
.executive-leadership-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.leadership-grid-executive {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

/* Board Members Section */
.board-section {
    padding: 80px 0;
    background: var(--white);
}

/* Advisory Council Section */
.advisory-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Honorary Members Section */
.honorary-section {
    padding: 80px 0;
    background: var(--white);
}

/* Board Members Section - Legacy */
.board-members-section {
    padding: 80px 0;
    background: var(--white);
}

.leadership-grid-board {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

/* Three Column Grid for Executive, Board, Advisory, Honorary */
.leadership-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Advisory Council Section */
.advisory-council-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Honorary Members Section */
.honorary-members-section {
    padding: 80px 0;
    background: var(--white);
}

/* Leader Cards */
.leader-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.leader-card.executive {
    border-top: 4px solid var(--primary-red);
}

.leader-card.board {
    border-top: 3px solid var(--primary-navy);
}

/* Leader Image */
.leader-image-wrapper {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    border-radius: 8px 8px 0 0;
    height: 350px;
    flex-shrink: 0;
}

.leader-card.executive .leader-image-wrapper {
    height: 350px;
}

.leader-card.board .leader-image-wrapper {
    height: 350px;
}

.leader-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.4s ease;
    background: #f0f0f0;
}

.leader-card:hover .leader-image {
    transform: scale(1.08);
}

/* Leader Overlay */
.leader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
}

.leader-card:hover .leader-overlay {
    opacity: 1;
}

/* Social Links */
.leader-social {
    display: flex;
    gap: 12px;
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 10;
}

.leader-card.executive .leader-social {
    bottom: 20px;
    right: 20px;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
}

.leader-card.board .social-link {
    width: 34px;
    height: 34px;
}

/* Leader Content */
.leader-content {
    padding: 30px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.leader-card.board .leader-content {
    padding: 30px 25px;
}

.leader-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 10px;
    font-family: var(--font-primary);
    line-height: 1.3;
}

.leader-card.board .leader-name {
    font-size: 22px;
}

.leader-title {
    font-size: 15px;
    color: var(--primary-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    line-height: 1.4;
}

.leader-card.board .leader-title {
    font-size: 15px;
}

.leader-meta {
    margin-bottom: 15px;
}

.leader-tenure {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-light);
    background: #f0f0f0;
    padding: 6px 12px;
    border-radius: 20px;
}

.leader-card.board .leader-tenure {
    font-size: 12px;
    padding: 5px 10px;
}

.leader-tenure svg {
    color: var(--primary-red);
}

.leader-bio {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.leader-card.board .leader-bio {
    font-size: 14px;
    margin-bottom: 15px;
}

/* Expertise Tags */
.leader-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.expertise-tag {
    background: linear-gradient(135deg, var(--primary-red) 0%, #c41a1f 100%);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.leader-expertise-single {
    margin-top: 5px;
}

.expertise-tag-small {
    background: var(--primary-navy);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
    display: inline-block;
}

/* ========================================
   History Page Styles
   ======================================== */

/* History Introduction Section */
.history-intro-section {
    padding: 80px 0;
    background: var(--white);
}

.history-intro-content {
    max-width: 1200px;
    margin: 0 auto;
}

.history-intro-text {
    margin-bottom: 60px;
    text-align: left;
}

.section-title-left {
    font-size: 42px;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.history-intro-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
    max-width: 100%;
}

.history-intro-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.history-stat-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    border-radius: 15px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.history-stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.1);
}

.history-stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-red);
    font-family: var(--font-primary);
    margin-bottom: 10px;
    line-height: 1;
}

.history-stat-label {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0 10px;
    background: linear-gradient(to bottom, #f9f9f9 0%, #ffffff 100%);
    position: relative;
}

.timeline-wrapper {
    max-width: 1000px;
    margin: 60px auto 0;
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    opacity: 0;
    animation: fadeInTimeline 0.8s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }
.timeline-item:nth-child(7) { animation-delay: 0.7s; }
.timeline-item:nth-child(8) { animation-delay: 0.8s; }
.timeline-item:nth-child(9) { animation-delay: 0.9s; }

@keyframes fadeInTimeline {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-marker {
    flex-shrink: 0;
    width: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.timeline-dot {
    width: 24px;
    height: 24px;
    background: var(--white);
    border: 4px solid var(--primary-red);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    box-shadow: 0 0 0 8px rgba(227, 30, 36, 0.1);
}

.timeline-item.current .timeline-dot {
    background: var(--primary-red);
    box-shadow: 0 0 0 8px rgba(227, 30, 36, 0.2);
    animation: pulse 2s infinite;
}

.timeline-line {
    width: 3px;
    flex-grow: 1;
    background: linear-gradient(to bottom, var(--primary-red) 0%, #ffc0c2 100%);
    margin-top: 10px;
}

.timeline-item:last-child .timeline-line {
    display: none;
}

.timeline-content {
    flex-grow: 1;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-right: 4px solid var(--primary-red);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.timeline-year {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-primary);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.timeline-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: var(--font-primary);
}

.timeline-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.timeline-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

.highlight-item svg {
    flex-shrink: 0;
    color: var(--primary-red);
    margin-top: 3px;
}

.timeline-continue-message {
    margin-top: 80px;
    text-align: center;
    padding: 40px 20px;
    background: #f8f8f8;
    border-radius: 12px;
}

/* Achievements Section */
.achievements-section {
    padding: 20px 0 100px;
    background: var(--white);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.achievement-card {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #f0f0f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--dark-navy) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.achievement-card:hover::before {
    transform: scaleX(1);
}

.achievement-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 15px 40px rgba(227, 30, 36, 0.15);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #c81419 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.4s ease;
}

.achievement-card:hover .achievement-icon {
    transform: rotateY(360deg);
}

.achievement-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: var(--font-primary);
}

.achievement-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
}

/* ========================================
   Gallery Detail Page Styles
   ======================================== */

/* Album Info Section */
.album-info-section {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid #e0e0e0;
}

.album-info-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.album-info-left {
    flex: 1;
}

.album-meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.album-category-badge {
    background: var(--primary-red);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.album-date-badge,
.album-count-badge {
    background: #f0f0f0;
    color: var(--text-dark);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.album-date-badge svg,
.album-count-badge svg {
    color: var(--primary-red);
}

.album-info-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
}

.album-info-right {
    flex-shrink: 0;
}

.btn-outline-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: transparent;
    color: var(--text-dark);
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline-back:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
}

.btn-outline-back svg {
    transition: transform 0.3s ease;
}

.btn-outline-back:hover svg {
    transform: translateX(-3px);
}

/* Photos Grid Section */
.photos-grid-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    background: var(--white);
    aspect-ratio: 1;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.photo-item:hover img {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(227, 30, 36, 0.85);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

.photo-overlay-content {
    text-align: center;
    color: var(--white);
}

.photo-overlay-content svg {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: zoom 0.3s ease;
}

@keyframes zoom {
    from {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--white);
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--primary-red);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 60px;
    font-weight: 300;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    transition: all 0.3s ease;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--primary-red);
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Mobile adjustments for lightbox arrows */
@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        font-size: 40px;
        padding: 10px 15px;
        background: rgba(0, 0, 0, 0.7);
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 18px;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 30px;
    border-radius: 4px;
    max-width: 80%;
    font-weight: 500;
}

/* Related Albums Section */
.related-albums-section {
    padding: 100px 0;
    background: var(--white);
}

.related-albums-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

/* ========================================
   NEWS PAGES
   ======================================== */

/* News Categories Filter */
.news-categories-section {
    padding: 30px 0;
    background: var(--white);
    border-bottom: 1px solid #e5e5e5;
}

.news-categories {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 24px;
    border: 2px solid #e5e5e5;
    background: var(--white);
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    background: rgba(227, 6, 19, 0.05);
}

.category-btn.active {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

/* Featured News Section */
.featured-news-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.featured-news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.featured-news-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    display: flex;
    flex-direction: column;
}

.featured-news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.featured-news-card.large {
    grid-row: span 2;
}

.featured-news-card.large .news-image {
    height: 350px;
}

.featured-news-card .news-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    flex-shrink: 0;
}

.featured-news-card .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-red);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.featured-news-card .news-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-news-card.large .news-content {
    padding: 35px;
}

.news-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.news-date,
.news-read-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #777;
    font-weight: 500;
}

.news-date svg,
.news-read-time svg {
    stroke: var(--primary-red);
    flex-shrink: 0;
}

.news-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-news-card.large .news-title {
    font-size: 26px;
    -webkit-line-clamp: 3;
    margin-bottom: 15px;
}

.news-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.featured-news-card.large .news-excerpt {
    -webkit-line-clamp: 3;
    font-size: 16px;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    gap: 12px;
}

.btn-read-more svg {
    transition: transform 0.3s ease;
}

.btn-read-more:hover svg {
    transform: translateX(4px);
}

/* Recent News Section */
.recent-news-section {
    padding: 80px 0 100px 0;
    background: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.news-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
    opacity: 1;
    transform: translateY(0);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.news-card .news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-card .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.08);
}

.news-card .news-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card .news-title {
    font-size: 18px;
    margin-bottom: 12px;
}

.news-card .news-excerpt {
    font-size: 14px;
    -webkit-line-clamp: 2;
    margin-bottom: auto;
}

.news-load-more {
    text-align: center;
    margin-top: 60px;
}

.news-load-more .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Newsletter CTA */
.newsletter-cta-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, #c41a1f 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.newsletter-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.newsletter-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.newsletter-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.newsletter-input-group input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    outline: none;
}

.newsletter-input-group input::placeholder {
    color: #999;
}

.newsletter-input-group .btn {
    padding: 16px 40px;
    border-radius: 50px;
    background: var(--white);
    color: var(--primary-red);
    font-weight: 600;
    white-space: nowrap;
}

.newsletter-input-group .btn:hover {
    background: var(--text-dark);
    color: var(--white);
}

.newsletter-privacy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ========================================
   NEWS DETAIL PAGE
   ======================================== */

.article-content-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

.article-main {
    background: var(--white);
    border-radius: 12px;
    padding: 50px;
}

.article-header {
    margin-bottom: 40px;
}

.article-category-badge {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.article-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 25px;
}

.article-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.article-meta-item svg {
    stroke: var(--primary-red);
    flex-shrink: 0;
}

.article-featured-image {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-body {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

.article-lead {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 30px;
}

.article-body h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 40px 0 20px 0;
    line-height: 1.3;
}

.article-body h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 30px 0 15px 0;
    line-height: 1.4;
}

.article-body h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 25px 0 12px 0;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-body li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.article-quote {
    background: var(--light-gray);
    border-left: 5px solid var(--primary-red);
    padding: 30px 40px;
    margin: 40px 0;
    border-radius: 0 8px 8px 0;
}

.article-quote p {
    font-size: 20px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

.article-quote cite {
    display: block;
    margin-top: 15px;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-red);
}

.article-image-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.article-image {
    border-radius: 8px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.image-caption {
    font-size: 14px;
    color: #777;
    margin-top: 10px;
    font-style: italic;
}

.article-highlight-box {
    background: rgba(227, 6, 19, 0.05);
    border: 2px solid var(--primary-red);
    border-radius: 8px;
    padding: 30px;
    margin: 40px 0;
}

.article-highlight-box h4 {
    color: var(--primary-red);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 20px;
}

.article-highlight-box ul {
    margin: 0;
    padding-left: 25px;
}

.article-highlight-box li {
    color: var(--text-dark);
    font-weight: 500;
}

.article-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.tag-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.article-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--light-gray);
    color: var(--text-dark);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.article-tag:hover {
    background: var(--primary-red);
    color: var(--white);
}

.article-share {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.share-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--white);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0a66c2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 140px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-red);
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-article {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.related-article:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.related-article-image {
    flex-shrink: 0;
    width: 100px;
    height: 70px;
    border-radius: 6px;
    overflow: hidden;
}

.related-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-article:hover .related-article-image img {
    transform: scale(1.1);
}

.related-article-content {
    flex: 1;
}

.related-article-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-article-title a {
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.related-article-title a:hover {
    color: var(--primary-red);
}

.related-article-meta {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #777;
}

.related-article-meta svg {
    stroke: var(--primary-red);
}

.widget-newsletter {
    background: linear-gradient(135deg, var(--primary-red) 0%, #c41a1f 100%);
    color: var(--white);
}

.widget-newsletter .widget-title {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.widget-newsletter p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.newsletter-form-sidebar input {
    width: 100%;
    padding: 12px 18px;
    border: none;
    border-radius: 6px;
    margin-bottom: 12px;
    font-size: 14px;
}

.newsletter-form-sidebar .btn {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    background: var(--white);
    color: var(--primary-red);
    font-weight: 600;
}

.newsletter-form-sidebar .btn:hover {
    background: var(--text-dark);
    color: var(--white);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list li:last-child {
    margin-bottom: 0;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-list a:hover {
    color: var(--primary-red);
    padding-left: 10px;
}

.category-count {
    background: var(--light-gray);
    color: #666;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.category-list a:hover .category-count {
    background: var(--primary-red);
    color: var(--white);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud-item {
    padding: 8px 16px;
    background: var(--light-gray);
    color: var(--text-dark);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag-cloud-item:hover {
    background: var(--primary-red);
    color: var(--white);
}

/* More News Section */
.more-news-section {
    padding: 80px 0;
    background: var(--white);
}

.more-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.news-card-small {
    background: var(--white);
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-card-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.news-image-small {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card-small:hover .news-image-small img {
    transform: scale(1.08);
}

.news-category-small {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-red);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.news-content-small {
    padding: 20px;
}

.news-title-small {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta-small {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #777;
    margin-bottom: 15px;
}

.read-more-link {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    color: var(--text-dark);
}

.view-all-news {
    text-align: center;
    margin-top: 50px;
}


