/* TerraSion Landing Page Styles */

/* CSS Variables for Brand Colors */
:root {
    --navy-blue: #2B3E50;
    --dark-navy: #1a2836;
    --gold: #C9A961;
    --light-gold: #E5D4A8;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Language Toggle Button - now part of navbar */
.lang-toggle {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    margin-left: 20px;
}

.lang-toggle:hover {
    background: var(--light-gold);
    color: var(--navy-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.lang-flag {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Header & Navigation */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
}

.logo-terra {
    color: var(--gold);
}

.logo-sion {
    color: var(--navy-blue);
}

.logo-divider {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 400;
}

.logo-moledet {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy-blue);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-highlight {
    background: var(--gold);
    color: white !important;
    padding: 8px 18px !important;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-highlight:hover {
    background: var(--navy-blue);
    transform: translateY(-2px);
}

.nav-highlight::after {
    display: none;
}

/* Hero Section - Compact & Minimalist */
.hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23C9A961" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,117.3C1248,117,1344,139,1392,149.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--dark-navy) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 30px 20px;
}

.hero-title {
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Special styling for Terra and Sion in hero - enhanced contrast */
.hero-title .logo-terra {
    color: var(--gold);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-title .logo-sion {
    color: #FFFFFF !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero .logo-sion {
    color: #FFFFFF !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 16px;
    color: var(--light-gold);
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.hero-description {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-values {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--light-gold);
}

.value-item i {
    font-size: 24px;
    color: var(--gold);
}

.cta-button {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.cta-button:hover {
    background: var(--light-gold);
    color: var(--navy-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.5);
}

.hero-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.cta-primary {
    background: var(--gold);
    color: white;
}

.cta-primary:hover {
    background: var(--navy-blue);
    color: white;
}

.cta-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-secondary:hover {
    background: white;
    color: var(--navy-blue);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 28px;
    font-family: 'Playfair Display', serif;
    color: var(--navy-blue);
    text-align: center;
    margin-bottom: 15px;
}

.subsection-title {
    font-size: 20px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 25px;
    font-weight: 400;
    font-style: italic;
}

/* Mission Section */
/* Mission + Video Combined Section */
.mission-video-combined {
    background: var(--light-gray);
    padding: 40px 0;
}

.mission-video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Mission Text Side */
.mission-text-side {
    padding-right: 20px;
}

.mission-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
    color: var(--text-dark);
}

.mission-highlight {
    font-size: 16px;
    font-weight: 600;
    color: var(--gold);
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Video Side */
.video-side {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.video-side-title {
    font-size: 20px;
    color: var(--navy-blue);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Compact Video Link */
.video-link-compact {
    display: block;
    text-decoration: none;
    margin-bottom: 15px;
}

.video-thumbnail-compact {
    position: relative;
    width: 100%;
    padding-top: 35%; /* ~21:9 aspect ratio - shorter to match mission text height */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.video-cover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay-compact {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.video-link-compact:hover .video-overlay-compact {
    background: rgba(0, 0, 0, 0.5);
}

.play-button-compact {
    font-size: 60px;
    color: var(--white);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.video-link-compact:hover .play-button-compact {
    transform: scale(1.1);
    opacity: 1;
}

.video-info-compact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 25px;
    backdrop-filter: blur(5px);
}

.video-info-compact i {
    font-size: 18px;
}

/* About Report Button */
.about-report-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    border: 2px solid var(--navy-blue);
    color: var(--navy-blue);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-report-btn:hover {
    background: var(--navy-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.about-report-btn i {
    font-size: 16px;
}

/* Video CTA Button (Compact) */
.video-cta-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gold);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.video-cta-btn:hover {
    background: var(--navy-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.video-cta-btn i {
    font-size: 15px;
}

/* Report Info Modal */
.report-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.report-modal-content {
    background: var(--white);
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.report-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid var(--light-gray);
}

.report-modal-header h3 {
    font-size: 20px;
    color: var(--navy-blue);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--navy-blue);
    transform: rotate(90deg);
}

.report-modal-body {
    padding: 25px;
}

.report-modal-body p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: justify;
}

.report-emphasis {
    font-weight: 600;
    color: var(--navy-blue);
}

/* Compact CTA Section */
.compact-cta-section {
    background: var(--light-gray);
    padding: 30px 0;
}

.compact-cta {
    text-align: center;
    background: var(--white);
    padding: 25px 40px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin: 0 auto;
}

.compact-cta h3 {
    font-size: 22px;
    color: var(--navy-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.compact-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.compact-cta .cta-button:hover {
    background: var(--navy-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.compact-cta .cta-button i {
    font-size: 16px;
}

/* Video Section - Compact */
.video-section {
    background: var(--white);
    padding: 30px 0;
}

.video-intro {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Video Link Styling */
.video-link {
    display: block;
    text-decoration: none;
    position: relative;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    min-height: 280px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, #1a2a3a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.video-thumbnail:hover {
    background: linear-gradient(135deg, #1a2a3a 0%, var(--navy-blue) 100%);
    transform: scale(1.02);
}

.video-thumbnail .fa-facebook-square {
    font-size: 50px;
    color: #1877f2;
    margin-bottom: 18px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 65px;
    color: var(--gold);
    opacity: 0.9;
    transition: all 0.3s ease;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.video-thumbnail:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    margin-top: 15px;
}

.video-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.video-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
}

.video-duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.video-note {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.video-wrapper iframe {
    width: 100%;
    height: 476px;
    display: block;
}

.video-note {
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
}

/* Video Introduction - Main Page */
.video-introduction {
    background: var(--white);
    padding: 30px 40px;
    border-radius: 0;
    margin-top: 30px;
    margin-bottom: 25px;
    border-left: 4px solid var(--gold);
    box-shadow: none;
}

.video-introduction h3 {
    font-size: 26px;
    color: var(--navy-blue);
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    text-align: left;
}

.video-introduction h3::after {
    display: none;
}

.video-introduction p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-dark);
    margin-bottom: 18px;
    text-align: left;
}

.video-introduction-emphasis {
    font-weight: 500;
    color: var(--text-dark);
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin-top: 20px;
    border: none;
}

.video-introduction-emphasis strong {
    color: var(--gold);
    font-weight: 700;
    font-size: 16px;
    display: inline;
    margin-top: 0;
    text-align: left;
}

/* Subtitles Info Box */
.subtitles-info-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #f5f5f5 100%);
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-left: 4px solid var(--gold);
}

.subtitles-info-box i {
    font-size: 28px;
    color: var(--gold);
    margin-top: 2px;
}

.subtitles-info-box p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* Video Modal Styles */
.modal,
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show,
.video-modal.show {
    opacity: 1;
}

.modal-content {
    position: relative;
    background-color: white;
    margin: 2% auto;
    width: 95%;
    max-width: 1400px;
    height: 90vh;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.modal-header {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--gold) 100%);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.modal-header h3 {
    font-size: 28px;
    font-family: 'Playfair Display', serif;
    margin: 0;
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 28px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: white;
    color: var(--navy-blue);
    transform: rotate(90deg);
}

.modal-body {
    flex: 1;
    overflow: hidden;
    background: var(--light-gray);
}

.modal-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    gap: 0;
}

/* Video Side */
.modal-video-side {
    background: linear-gradient(135deg, var(--navy-blue) 0%, #1a2a3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

/* Facebook Video Container */
.facebook-video-container {
    text-align: center;
    color: white;
    max-width: 500px;
}

.facebook-video-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
    margin-bottom: 25px;
}

.facebook-video-link:hover {
    background: var(--light-gold);
    color: var(--navy-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.5);
}

.facebook-video-link i {
    font-size: 24px;
}

.video-placeholder {
    text-align: center;
    color: white;
    max-width: 500px;
}

.video-placeholder .fa-facebook {
    color: #1877f2;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.video-placeholder h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.video-placeholder p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.watch-on-facebook-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
    margin-bottom: 25px;
}

.watch-on-facebook-btn:hover {
    background: var(--light-gold);
    color: var(--navy-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.5);
}

.video-tip {
    font-size: 14px;
    font-style: italic;
    color: var(--gold);
    margin-top: 20px;
}

.modal-video-side iframe {
    width: 100%;
    height: 100%;
    max-width: 600px;
    max-height: 600px;
}

/* Subtitles Side */
.modal-subtitles-side {
    background: white;
    overflow-y: auto;
    padding: 40px;
}

.modal-subtitles-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
}

.modal-subtitles-header i {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 15px;
}

.modal-subtitles-header h4 {
    font-size: 24px;
    color: var(--navy-blue);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.modal-subtitles-header p {
    font-size: 14px;
    color: var(--text-light);
}

/* Video Context Section */
.video-context {
    background: var(--white);
    padding: 30px;
    border-radius: 0;
    margin-bottom: 35px;
    border-left: 4px solid var(--gold);
    box-shadow: none;
}

.video-context h5 {
    font-size: 22px;
    color: var(--navy-blue);
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    display: block;
}

.video-context h5::before {
    display: none;
}

.video-context p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: left;
}

.video-context-emphasis {
    font-weight: 500;
    color: var(--text-dark);
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin-top: 15px;
}

.video-context-emphasis strong {
    color: var(--gold);
    font-weight: 700;
    font-size: 16px;
}

.modal-subtitles-content {
    line-height: 1.8;
    color: var(--text-dark);
}

.modal-subtitles-content p {
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
    border-left: 3px solid var(--gold);
}

.modal-subtitles-content strong {
    color: var(--navy-blue);
    font-weight: 700;
}

/* Responsive Modal */
@media (max-width: 1024px) {
    .modal-split {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }
    
    .modal-video-side {
        padding: 20px;
        min-height: 400px;
    }
    
    .modal-subtitles-side {
        padding: 30px 20px;
    }
    
    .video-context {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    
    .video-context h5 {
        font-size: 20px;
        margin-bottom: 18px;
    }
    
    .video-context p {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .video-context-emphasis {
        padding: 0;
        margin-top: 12px;
    }
    
    .video-context-emphasis strong {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .modal-content {
        width: 98%;
        height: 95vh;
        margin: 1% auto;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-header h3 {
        font-size: 22px;
    }
    
    .modal-close {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .modal-video-side {
        min-height: 300px;
        padding: 15px;
    }
    
    .modal-subtitles-side {
        padding: 25px 15px;
    }
    
    .modal-subtitles-header i {
        font-size: 36px;
    }
    
    .modal-subtitles-header h4 {
        font-size: 20px;
    }
    
    .modal-subtitles-content p {
        font-size: 14px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        border-radius: 0;
        height: 100vh;
        margin: 0;
        width: 100%;
    }
    
    .modal-video-side {
        min-height: 250px;
        padding: 10px;
    }
    
    .subtitles-info-box {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .subtitles-info-box i {
        font-size: 32px;
    }
    
    .subtitles-info-box p {
        font-size: 14px;
    }
}

/* Subtitles Container */
.subtitles-container {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.subtitles-header {
    text-align: center;
    margin-bottom: 30px;
}

.subtitles-header i {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 15px;
}

.subtitles-header h3 {
    font-size: 28px;
    color: var(--navy-blue);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.subtitles-header p {
    font-size: 16px;
    color: var(--text-light);
}

.subtitles-content {
    max-width: 800px;
    margin: 0 auto;
}

.subtitles-toggle {
    width: 100%;
    padding: 15px 30px;
    background: var(--navy-blue);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(43, 62, 80, 0.3);
}

.subtitles-toggle:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

.subtitles-toggle i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.subtitles-text {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-top: 20px;
    line-height: 1.8;
    color: var(--text-dark);
    max-height: 500px;
    overflow-y: auto;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
}

.subtitles-text p {
    margin-bottom: 15px;
}

.subtitles-text strong {
    color: var(--navy-blue);
    display: block;
    margin-bottom: 10px;
}

/* Video CTA */
.video-cta {
    text-align: center;
    margin-top: 30px;
    padding: 28px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--gold) 100%);
    border-radius: 10px;
    color: white;
}

.video-cta h3 {
    font-size: 24px;
    margin-bottom: 18px;
    font-family: 'Playfair Display', serif;
}

.video-cta .cta-button {
    background: white;
    color: var(--navy-blue);
}

.video-cta .cta-button:hover {
    background: var(--light-gold);
    color: var(--navy-blue);
    transform: translateY(-3px);
}

/* Responsive Video Section */
@media (max-width: 768px) {
    .video-section {
        padding: 40px 0;
    }
    
    .video-wrapper {
        max-width: 100%;
    }
    
    .video-introduction {
        padding: 30px 25px;
        margin-top: 30px;
    }
    
    .video-introduction h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .video-introduction p {
        font-size: 15px;
        line-height: 1.65;
    }
    
    .video-introduction-emphasis {
        padding: 0;
        margin-top: 20px;
    }
    
    .video-introduction-emphasis strong {
        font-size: 16px;
    }
    
    .video-thumbnail {
        min-height: 280px;
        padding: 30px 18px;
    }
    
    .video-thumbnail .fa-facebook-square {
        font-size: 50px;
    }
    
    .play-button {
        font-size: 65px;
    }
    
    .video-info h4 {
        font-size: 18px;
    }
    
    .video-info p {
        font-size: 14px;
    }
    
    .video-wrapper iframe {
        height: 350px;
    }
    
    .subtitles-container {
        padding: 25px;
    }
    
    .subtitles-header h3 {
        font-size: 24px;
    }
    
    .subtitles-text {
        padding: 20px;
        font-size: 14px;
        max-height: 400px;
    }
    
    .video-cta {
        padding: 25px 18px;
    }
    
    .video-cta h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .video-thumbnail {
        min-height: 260px;
        padding: 25px 15px;
    }
    
    .video-introduction {
        padding: 28px 18px;
        margin-top: 28px;
    }
    
    .video-introduction h3 {
        font-size: 22px;
        margin-bottom: 18px;
    }
    
    .video-introduction p {
        font-size: 14px;
        line-height: 1.65;
    }
    
    .video-introduction-emphasis {
        padding: 0;
        margin-top: 18px;
    }
    
    .video-introduction-emphasis strong {
        font-size: 15px;
    }
    
    .video-thumbnail .fa-facebook-square {
        font-size: 50px;
    }
    
    .play-button {
        font-size: 70px;
    }
    
    .video-info h4 {
        font-size: 18px;
    }
    
    .video-wrapper iframe {
        height: 280px;
    }
    
    .subtitles-header i {
        font-size: 36px;
    }
    
    .subtitles-toggle {
        font-size: 14px;
        padding: 12px 20px;
    }
}

/* About Section */
.about-section {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.about-card {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about-card i {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 12px;
}

.about-card h4 {
    font-size: 18px;
    color: var(--navy-blue);
    margin-bottom: 12px;
}

.about-card p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-light);
    text-align: justify;
}

/* Projects Section - Minimalist Redesign */
.projects-section {
    background: var(--navy-blue);
    color: var(--white);
    padding: 40px 0;
}

.projects-section .section-title {
    color: var(--white);
}

.project-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
    transition: all 0.3s ease;
}

.project-header {
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    padding: 20px;
    text-align: center;
}

.project-title {
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    color: var(--navy-blue);
    font-weight: 700;
    margin: 0;
}

.project-details {
    padding: 25px;
    color: var(--text-dark);
}

.detail-item {
    margin-bottom: 15px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
    border-left: 3px solid var(--gold);
}

.detail-item i {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 8px;
}

.detail-item h4 {
    font-size: 16px;
    color: var(--navy-blue);
    margin-bottom: 8px;
    font-weight: 600;
}

.detail-item p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-light);
    margin: 0;
}

.project-specs {
    margin-top: 20px;
    padding: 20px;
    background: var(--navy-blue);
    border-radius: 12px;
    color: var(--white);
}

.project-specs h4 {
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 20px;
    text-align: center;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.spec-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.spec-item.highlight {
    background: var(--gold);
    color: var(--navy-blue);
}

.spec-item.highlight:hover {
    background: var(--light-gold);
}

.spec-item i {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 10px;
}

.spec-item.highlight i {
    color: var(--navy-blue);
}

.spec-content h5 {
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 600;
}

.spec-content p {
    font-size: 12px;
    line-height: 1.5;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy-blue);
    margin: 10px 0;
}

.price-details {
    font-size: 11px;
    font-style: italic;
}

/* Contact Section */
.contact-section {
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.contact-card {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-card.highlight {
    background: var(--gold);
    color: var(--white);
}

.contact-card i {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 12px;
}

.contact-card.highlight i {
    color: var(--white);
}

.contact-card h4 {
    font-size: 16px;
    color: var(--navy-blue);
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-card.highlight h4 {
    color: var(--white);
}

.contact-card p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-light);
}

.contact-card.highlight p {
    color: var(--white);
}

.contact-card a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--navy-blue);
}

.contact-card.highlight a {
    color: var(--white);
    text-decoration: underline;
}

.contact-card.highlight a:hover {
    color: var(--light-gold);
}

/* Timing/Opportunity Section */
.timing-section {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    color: var(--white);
    padding: 40px 0;
}

.timing-section .section-title {
    color: var(--white);
    margin-bottom: 20px;
}

.timing-intro {
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.timing-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.timing-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(201, 169, 97, 0.3);
}

.timing-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.timing-card i {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 12px;
}

.timing-card h4 {
    font-size: 16px;
    color: var(--light-gold);
    margin-bottom: 10px;
    font-weight: 600;
}

.timing-card p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--white);
}

/* Project Filter */
.project-filter {
    margin-bottom: 25px;
    text-align: center;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.filter-btn {
    background: var(--light-gray);
    color: var(--navy-blue);
    border: 2px solid transparent;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.filter-btn.active {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

/* Edit Mode Section - Compact */
.edit-mode-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    padding: 12px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 8px;
}

.edit-mode-btn {
    background: var(--navy-blue);
    color: var(--white);
    border: 2px solid var(--gold);
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.edit-mode-btn:hover {
    background: var(--gold);
    color: var(--navy-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
}

.edit-mode-btn.active {
    background: var(--gold);
    color: var(--navy-blue);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(201, 169, 97, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(201, 169, 97, 0.8);
    }
}

.edit-hint {
    font-size: 11px;
    color: var(--text-light);
    font-style: italic;
}

/* Coordinates Display - Compact */
.coordinates-display {
    background: var(--white);
    padding: 15px;
    border-radius: 10px;
    margin: 15px auto;
    max-width: 700px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gold);
}

.coordinates-display h4 {
    color: var(--navy-blue);
    margin-bottom: 15px;
    text-align: center;
    font-size: 16px;
}

.coord-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    margin-bottom: 15px;
}

.coord-item {
    background: var(--light-gray);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
}

.coord-item strong {
    display: block;
    margin-bottom: 6px;
    color: var(--navy-blue);
    font-size: 13px;
}

.coord-item code {
    display: block;
    background: var(--white);
    padding: 8px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    color: var(--gold);
    font-weight: bold;
    border: 1px solid var(--gold);
}

.copy-btn {
    background: var(--navy-blue);
    color: var(--white);
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: var(--gold);
    color: var(--navy-blue);
    transform: scale(1.05);
}

.copy-btn:active {
    transform: scale(0.95);
}

/* Draggable Marker Hint */
.leaflet-marker-draggable {
    cursor: move !important;
}

.leaflet-marker-draggable .custom-marker {
    animation: bounce-hint 2s infinite;
}

@keyframes bounce-hint {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Map Container - Compact */
.map-container {
    margin-bottom: 30px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.projects-map {
    width: 100%;
    height: 350px;
    border-radius: 12px;
}

.map-legend {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--white);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.map-legend h4 {
    font-size: 14px;
    color: var(--navy-blue);
    margin-bottom: 10px;
    font-weight: 600;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 12px;
    color: var(--text-dark);
}

.legend-marker {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
}

.legend-marker.barkan {
    background: #E74C3C;
}

.legend-marker.oranit {
    background: #3498DB;
}

.legend-marker.kokhav {
    background: #2ECC71;
}

/* Project Cards */
.project-card {
    display: block;
    margin-bottom: 40px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.project-card.hidden {
    display: none;
}

/* Project Note */
.project-note {
    background: rgba(201, 169, 97, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--gold);
    margin-top: 25px;
}

.project-note i {
    color: var(--gold);
    margin-right: 10px;
}

.project-note p {
    font-size: 15px;
    color: var(--white);
    margin-bottom: 10px;
}

.project-note p:last-child {
    margin-bottom: 0;
}

/* Payment List */
.payment-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.payment-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
}

.payment-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--navy-blue);
    font-weight: bold;
}

/* Collective Note */
.collective-note {
    background: var(--light-gold);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-top: 50px;
}

.collective-note i {
    font-size: 48px;
    color: var(--navy-blue);
    margin-bottom: 20px;
}

.collective-note p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--navy-blue);
    max-width: 900px;
    margin: 0 auto;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
}

.whatsapp-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Accessibility Button & Menu */
.accessibility-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--navy-blue);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(43, 62, 80, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    cursor: pointer;
}

.accessibility-float:hover {
    background: var(--gold);
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 25px rgba(201, 169, 97, 0.7);
}

.accessibility-menu {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    width: 90%;
    max-width: 400px;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.accessibility-menu.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: all;
}

.accessibility-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid var(--light-gray);
}

.accessibility-header h3 {
    margin: 0;
    font-size: 20px;
    color: var(--navy-blue);
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--navy-blue);
}

.accessibility-options {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accessibility-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light-gray);
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    color: var(--navy-blue);
    text-align: left;
}

.accessibility-option:hover {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
    transform: translateX(5px);
}

.accessibility-option i {
    font-size: 20px;
    width: 25px;
}

.reset-btn {
    background: #f8d7da;
    color: #721c24;
}

.reset-btn:hover {
    background: #dc3545;
    color: white;
}

/* Accessibility States */
body.high-contrast {
    filter: contrast(1.5);
}

body.highlight-links a {
    background: yellow;
    outline: 2px solid red;
    padding: 2px 4px;
}

body.font-size-large {
    font-size: 18px;
}

body.font-size-larger {
    font-size: 20px;
}

body.font-size-largest {
    font-size: 22px;
}

/* Legal Pages Styling */
.legal-section {
    padding: 100px 0 60px;
    background: var(--light-gray);
    min-height: 100vh;
}

.legal-content {
    background: white;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    color: var(--navy-blue);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 30px;
    font-style: italic;
}

.legal-section-block {
    margin-bottom: 40px;
}

.legal-section-block h2 {
    font-size: 28px;
    color: var(--navy-blue);
    margin-bottom: 20px;
    margin-top: 30px;
    border-bottom: 3px solid var(--gold);
    padding-bottom: 10px;
}

.legal-section-block h3 {
    font-size: 22px;
    color: var(--navy-blue);
    margin: 25px 0 15px;
}

.legal-section-block p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.legal-section-block ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-section-block ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.legal-section-block a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-section-block a:hover {
    color: var(--navy-blue);
    text-decoration: underline;
}

.legal-back {
    text-align: center;
    margin-top: 50px;
}

.footer-links {
    margin-top: 10px;
    font-size: 14px;
}

.footer-links a {
    color: var(--light-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

/* Application Form Styling */
.application-section {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--light-gray) 0%, #e8e8e8 100%);
    min-height: 100vh;
}

.application-content {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-icon {
    font-size: 60px;
    color: var(--gold);
    margin-bottom: 20px;
}

.form-header h1 {
    font-size: 42px;
    color: var(--navy-blue);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.form-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.application-form {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* JotForm Container Styling */
.jotform-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.jotform-container iframe {
    border: none;
    width: 100%;
    min-height: 600px;
}

/* Responsive JotForm */
@media (max-width: 768px) {
    .jotform-container {
        padding: 20px;
    }
    
    .jotform-container iframe {
        min-height: 500px;
    }
}

.form-group {
    margin-bottom: 30px;
}

.form-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--navy-blue);
    margin-bottom: 10px;
}

.form-label i {
    margin-right: 8px;
    color: var(--gold);
}

.required-star {
    color: #dc3545;
    margin-left: 4px;
}

.optional-text {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
    margin-left: 5px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.form-select {
    cursor: pointer;
    background: white;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin: 30px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.form-checkbox {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--gold);
}

.checkbox-text {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

.form-note {
    font-size: 14px;
    color: var(--text-light);
    margin: 20px 0;
}

.error-message {
    display: block;
    color: #dc3545;
    font-size: 14px;
    margin-top: 8px;
    min-height: 20px;
}

.form-actions {
    text-align: center;
    margin-top: 40px;
}

.submit-button {
    background: var(--gold);
    color: white;
    border: none;
    padding: 16px 50px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.submit-button:hover {
    background: var(--navy-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 62, 80, 0.4);
}

.submit-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.submit-button i {
    margin-right: 10px;
}

.form-message {
    margin-top: 30px;
    padding: 18px 24px;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 18px;
    color: var(--navy-blue);
    margin-bottom: 10px;
}

.info-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--dark-navy);
    color: var(--white);
    padding: 25px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo .logo {
    font-size: 22px;
    margin-bottom: 8px;
}

.footer-tagline {
    color: var(--light-gold);
    font-size: 12px;
}

.footer-info p {
    font-size: 12px;
    color: var(--light-gray);
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--navy-blue);
    border-radius: 50%;
    color: var(--gold);
    font-size: 22px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--gold);
    color: var(--navy-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.3);
}

.social-link i {
    transition: transform 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.1);
}

/* Leaflet Map Custom Styles */
.custom-marker {
    background: transparent !important;
    border: none !important;
}

/* Pulse Animation for Markers */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

/* Make sure Leaflet map renders properly */
#projectsMap {
    z-index: 1;
}

.leaflet-popup-content-wrapper {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.leaflet-popup-tip {
    background: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Compress header/navbar for mobile */
    .navbar {
        padding: 10px 0;
    }
    
    .logo-section {
        flex-direction: row;
        text-align: left;
        gap: 8px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo-divider {
        font-size: 10px;
    }
    
    .logo-moledet {
        font-size: 18px;
    }
    
    .navbar .container {
        flex-direction: row;
        gap: 10px;
        padding: 0 15px;
    }

    .nav-links {
        display: none; /* Hide navigation links on mobile to save space */
    }
    
    .lang-toggle {
        margin-left: auto;
        padding: 6px 12px;
        font-size: 11px;
    }
    
    /* Add hamburger menu button */
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--navy-blue);
        cursor: pointer;
        padding: 5px;
    }
    
    /* Show nav links when menu is active */
    .nav-links.active {
        display: flex;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 99;
        max-height: 300px;
        overflow-y: auto;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-heading {
        font-size: 24px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-values {
        flex-direction: column;
        gap: 15px;
    }

    .section-title {
        font-size: 24px;
    }

    .subsection-title {
        font-size: 16px;
    }

    .mission-text {
        font-size: 16px;
        text-align: left;
    }

    .mission-highlight {
        font-size: 20px;
        padding: 20px;
    }

    .project-title {
        font-size: 28px;
    }

    .spec-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .lang-toggle {
        margin-left: 0;
        margin-top: 10px;
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Edit Mode Mobile */
    .edit-mode-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .coord-grid {
        grid-template-columns: 1fr;
    }
    
    .coordinates-display {
        padding: 20px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    
    .accessibility-float {
        bottom: 90px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .accessibility-menu {
        width: 95%;
        max-width: 350px;
    }
    
    /* Legal Pages Mobile */
    .legal-content {
        padding: 30px 20px;
    }
    
    .legal-content h1 {
        font-size: 32px;
    }
    
    .legal-section-block h2 {
        font-size: 24px;
    }
    
    .legal-section-block h3 {
        font-size: 20px;
    }
    
    /* Application Form Mobile */
    .application-form {
        padding: 30px 20px;
    }
    
    .form-header h1 {
        font-size: 32px;
    }
    
    .form-subtitle {
        font-size: 16px;
    }
    
    .submit-button {
        width: 100%;
        padding: 14px 30px;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-heading {
        font-size: 24px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .about-card,
    .contact-card,
    .detail-item {
        padding: 25px;
    }

    .timing-highlights {
        grid-template-columns: 1fr;
    }

    .timing-intro {
        font-size: 16px;
        text-align: left;
        padding: 20px;
    }

    .projects-map {
        height: 400px;
    }

    .map-legend {
        position: static;
        margin-top: 20px;
    }

    .filter-buttons {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ============================================
   EVENTS SECTION
   ============================================ */

.events-section {
    background: var(--light-gray);
    padding: 40px 0;
}

.section-subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    margin-top: -5px;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Events Filter - Compact */
.events-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.events-filter .filter-btn {
    background: white;
    color: var(--navy-blue);
    border: 2px solid var(--navy-blue);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.events-filter .filter-btn:hover {
    background: var(--navy-blue);
    color: white;
    transform: translateY(-2px);
}

.events-filter .filter-btn.active {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}

/* Events Container - Compact Grid */
.events-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* Event Card - Compact */
.event-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    max-width: 380px;
    margin: 0 auto;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.event-card.featured {
    border: 3px solid var(--gold);
}

.featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gold);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(201, 169, 97, 0.4);
}

/* Event Image - Compact Square */
.event-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.event-date-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--navy-blue);
    color: white;
    padding: 10px 12px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.event-date-badge .day {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.event-date-badge .month {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Event Content - Compact */
.event-content {
    padding: 20px;
}

.event-type-badge {
    display: inline-block;
    background: var(--light-gold);
    color: var(--navy-blue);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
}

.event-content h3 {
    font-size: 17px;
    color: var(--navy-blue);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    font-weight: 600;
}

.event-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-light);
    font-size: 11px;
}

.event-meta-item i {
    color: var(--gold);
    font-size: 12px;
}

.event-description {
    color: var(--text-dark);
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-location {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    color: var(--text-light);
    font-size: 11px;
    margin-bottom: 12px;
    padding-top: 10px;
    border-top: 1px solid var(--light-gray);
}

.event-location i {
    color: var(--gold);
    margin-top: 2px;
}

.event-register-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s ease;
}

.event-register-btn:hover {
    background: var(--navy-blue);
    transform: translateX(5px);
}

.event-register-btn i {
    transition: transform 0.3s ease;
}

.event-register-btn:hover i {
    transform: translateX(3px);
}

/* Event Action Buttons Container */
.event-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

/* Primary Button - Facebook Registration */
.event-btn-primary {
    background: linear-gradient(135deg, #1877f2, #0a5dcd) !important;
    color: white !important;
    border: none;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.event-btn-primary:hover {
    background: linear-gradient(135deg, #0a5dcd, #084a9e) !important;
    transform: translateY(-3px) translateX(0) !important;
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

/* Secondary Button - Phone Call */
.event-btn-secondary {
    background: transparent !important;
    color: var(--navy-blue) !important;
    border: 2px solid var(--navy-blue);
}

.event-btn-secondary:hover {
    background: var(--navy-blue) !important;
    color: white !important;
    transform: translateY(-2px) translateX(0) !important;
}

/* Events Loading/Empty/Error States */
.events-loading,
.events-empty,
.events-error {
    text-align: center;
    padding: 60px 20px;
}

.events-loading i,
.events-empty i,
.events-error i {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;
}

.events-loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.events-error i {
    color: #E74C3C;
}

/* Calendar Section */
.calendar-toggle-section {
    text-align: center;
    margin: 25px 0 20px;
}

.calendar-toggle-btn {
    background: var(--navy-blue);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.calendar-toggle-btn:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.3);
}

.calendar-toggle-btn i {
    font-size: 14px;
}

/* Calendar View - Compact Sidebar Style */
.calendar-view {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-month {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy-blue);
    font-family: 'Playfair Display', serif;
}

.calendar-nav {
    background: var(--light-gray);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--navy-blue);
    transition: all 0.3s ease;
    font-size: 12px;
}

.calendar-nav:hover {
    background: var(--gold);
    color: white;
}

/* Calendar Grid - Compact */
.calendar-weekdays,
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.calendar-weekday {
    text-align: center;
    font-weight: 600;
    color: var(--navy-blue);
    padding: 6px;
    font-size: 11px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-dark);
    transition: all 0.2s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.calendar-day:hover:not(.empty) {
    background: var(--light-gray);
}

.calendar-day.empty {
    cursor: default;
}

.calendar-day.today {
    background: var(--navy-blue);
    color: white;
    font-weight: 700;
}

.calendar-day.has-event {
    background: var(--light-gold);
    border-color: var(--gold);
    font-weight: 600;
}

.calendar-day.has-event.today {
    background: var(--gold);
    color: white;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--light-gray);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.has-event {
    background: var(--gold);
}

/* ============================================
   GALLERY PAGE
   ============================================ */

.gallery-hero {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

.gallery-hero-title {
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}

.gallery-hero-subtitle {
    font-size: 20px;
    color: var(--light-gold);
}

/* Gallery Section */
.gallery-section {
    padding: 40px 0;
    background: var(--light-gray);
}

/* Gallery Filters - Compact */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    background: white;
    border: 2px solid var(--navy-blue);
    color: var(--navy-blue);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.gallery-filter-btn:hover {
    background: var(--navy-blue);
    color: white;
    transform: translateY(-2px);
}

.gallery-filter-btn.active {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}

/* Gallery Grid - Compact */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* Gallery Item - Compact */
.gallery-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.gallery-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-item-image img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 95, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-view-btn {
    background: var(--gold);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-view-btn:hover {
    transform: scale(1.1);
    background: var(--light-gold);
}

.media-type-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* Gallery Item Info */
.gallery-item-info {
    padding: 20px;
}

.gallery-item-info h3 {
    font-size: 20px;
    color: var(--navy-blue);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.gallery-item-info p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.gallery-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gallery-tags .tag {
    background: var(--light-gray);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

/* Gallery Loading/Empty/Error */
.gallery-loading,
.gallery-empty,
.gallery-error {
    text-align: center;
    padding: 80px 20px;
    grid-column: 1 / -1;
}

.gallery-loading i,
.gallery-empty i,
.gallery-error i {
    font-size: 64px;
    color: var(--gold);
    margin-bottom: 20px;
}

.gallery-loading i {
    animation: spin 1s linear infinite;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
}

.lightbox-content {
    position: relative;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    z-index: 10001;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 36px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: var(--gold);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-media {
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 70vh;
    border-radius: 10px;
    overflow: hidden;
}

.lightbox-media img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
}

.lightbox-media video,
.lightbox-media iframe {
    width: 100%;
    height: 70vh;
}

.lightbox-info {
    background: white;
    padding: 25px;
    border-radius: 0 0 10px 10px;
}

.lightbox-info h3 {
    font-size: 24px;
    color: var(--navy-blue);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.lightbox-info p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--gold) 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 42px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Responsive - Events & Gallery */
@media (max-width: 768px) {
    .events-container,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .calendar-view {
        padding: 20px 15px;
    }
    
    .calendar-month {
        font-size: 20px;
    }
    
    .calendar-day {
        font-size: 13px;
    }
    
    .gallery-hero-title {
        font-size: 36px;
    }
    
    .gallery-hero-subtitle {
        font-size: 18px;
    }
    
    .lightbox-nav {
        display: none;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
    
    .cta-section h2 {
        font-size: 32px;
    }
    
    .cta-section p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .events-filter,
    .gallery-filters {
        gap: 10px;
    }
    
    .events-filter .filter-btn,
    .gallery-filter-btn {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .event-card,
    .gallery-item {
        border-radius: 10px;
    }
    
    .calendar-weekdays,
    .calendar-days {
        gap: 5px;
    }
    
    .calendar-weekday,
    .calendar-day {
        font-size: 12px;
    }
    
    /* Event action buttons - stack vertically on mobile */
    .event-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .event-register-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* ========================================
   Responsive Rules for Mission-Video Combined
   ======================================== */

/* Tablet: 768px and below */
@media (max-width: 768px) {
    .mission-video-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mission-text-side {
        padding-right: 0;
    }
    
    .video-side {
        padding: 20px;
    }
    
    .video-side-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .play-button-compact {
        font-size: 50px;
    }
    
    .compact-cta {
        padding: 20px 25px;
    }
    
    .compact-cta h3 {
        font-size: 20px;
    }
    
    .report-modal-content {
        max-width: 90%;
    }
}

/* Mobile: 480px and below */
@media (max-width: 480px) {
    .mission-video-combined {
        padding: 30px 0;
    }
    
    .mission-video-grid {
        gap: 20px;
    }
    
    .mission-text {
        font-size: 14px;
    }
    
    .mission-highlight {
        font-size: 15px;
        padding: 12px;
    }
    
    .video-side {
        padding: 15px;
    }
    
    .video-side-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .play-button-compact {
        font-size: 45px;
    }
    
    .video-info-compact {
        font-size: 14px;
        padding: 6px 15px;
    }
    
    .about-report-btn {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .compact-cta {
        padding: 18px 20px;
    }
    
    .compact-cta h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .compact-cta .cta-button {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .report-modal-content {
        max-width: 95%;
        max-height: 90vh;
    }
    
    .report-modal-header {
        padding: 15px 18px;
    }
    
    .report-modal-header h3 {
        font-size: 18px;
    }
    
    .report-modal-body {
        padding: 18px;
    }
    
    .report-modal-body p {
        font-size: 14px;
    }
}