/* --- RESET & VARIABLES --- */
:root {
    --forest-green: #0a3a2a;
    --forest-light: #165b44;
    --gold: #d4af37;
    --gold-hover: #b5952f;
    --white: #ffffff;
    --charcoal: #222222;
    --text-gray: #555555;
    --light-bg: #f4f7f6;
    --dark-bg: #111111;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    --transition: all 0.3s ease-in-out;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--charcoal); background-color: var(--white); line-height: 1.6; overflow-x: hidden; }

/* --- IMAGE BLUR / SHARPNESS FIX --- */
img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; color: var(--forest-green); }
.section-padding { padding: 80px 0; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.bg-light { background-color: var(--light-bg); }
.bg-dark { background-color: var(--dark-bg); color: var(--white); }
.gold-text { color: var(--gold); }
.text-light { color: #dddddd; }

/* Buttons */
.btn { display: inline-block; padding: 12px 30px; font-size: 1rem; font-weight: 500; border-radius: 4px; cursor: pointer; transition: var(--transition); text-decoration: none; border: 2px solid transparent; }
.btn-primary { background: var(--forest-green); color: var(--white); }
.btn-primary:hover { background: var(--gold); color: var(--white); box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3); }
.btn-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--forest-green); }
.w-100 { width: 100%; }

.section-title { text-align: center; margin-bottom: 50px; position: relative; z-index: 2; }
.section-title h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 10px; }
.title-line { height: 3px; width: 80px; background: var(--gold); margin: 0 auto; border-radius: 2px; }
.light-title h2 { color: var(--white); }

/* --- PRELOADER --- */
#preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--forest-green); z-index: 9999; display: flex; justify-content: center; align-items: center; transition: opacity 0.5s ease; }
.loader-content { text-align: center; color: var(--gold); }
.spinner { width: 60px; height: 60px; border: 5px solid rgba(212, 175, 55, 0.3); border-top-color: var(--gold); border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto 20px; }
@keyframes spin { 100% { transform: rotate(360deg); } }
.loader-content h2 { color: var(--white); font-size: 1.5rem; }

/* --- NAVBAR --- */
header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: var(--transition); background: transparent; }
header.scrolled { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; transition: var(--transition); }
header.scrolled .navbar { padding: 10px 0; }
.logo a { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--white); text-decoration: none; transition: var(--transition); }
header.scrolled .logo a { color: var(--forest-green); }

.nav-links { display: flex; list-style: none; gap: 25px; }
.nav-links li a { color: var(--white); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: var(--transition); position: relative; }
header.scrolled .nav-links li a { color: var(--charcoal); }
.nav-links li a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--gold); transition: var(--transition); }
.nav-links li a:hover::after, .nav-links li a.active::after { width: 100%; }
.nav-links li a:hover, .nav-links li a.active { color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 20px; }
.lang-toggle { background: transparent; border: 1px solid var(--gold); color: var(--gold); padding: 4px 12px; border-radius: 20px; cursor: pointer; font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; transition: var(--transition); }
.lang-toggle:hover { background: var(--gold); color: var(--forest-green); }
header.scrolled .lang-toggle { border-color: var(--forest-green); color: var(--forest-green); }
header.scrolled .lang-toggle:hover { background: var(--forest-green); color: var(--white); }

.hamburger { display: none; cursor: pointer; }
.hamburger .bar { display: block; width: 25px; height: 3px; margin: 5px auto; transition: all 0.3s ease-in-out; background-color: var(--forest-green); }
header:not(.scrolled) .hamburger .bar { background-color: var(--white); }

/* --- HERO SECTION --- */
.hero { 
    min-height: 100vh; position: relative; 
    background: url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?q=80&w=1920&auto=format&fit=crop') no-repeat center center fixed; 
    background-size: cover; 
    display: flex; align-items: center; overflow: hidden; 
    padding: 120px 0 60px 0;
}
.hero::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(10,58,42,0.92) 0%, rgba(17,17,17,0.88) 100%);
    z-index: 1;
}
.particles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; background-image: radial-gradient(var(--gold) 1px, transparent 1px); background-size: 50px 50px; opacity: 0.1; animation: moveParticles 20s linear infinite; z-index: 1; }
@keyframes moveParticles { 100% { background-position: 500px 500px; } }

.hero-container { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; position: relative; z-index: 2; }
.hero-content { color: var(--white); }
.hero-title { font-size: clamp(2.2rem, 5vw, 4rem); color: var(--gold); margin-bottom: 15px; line-height: 1.1; }
.hero-subtitle { font-size: clamp(0.95rem, 1.8vw, 1.15rem); color: var(--white); margin-bottom: 20px; font-weight: 300; }
.hero-text { font-size: 0.95rem; margin-bottom: 30px; opacity: 0.95; color: #eaeaea; }

.hero-buttons { 
    display: flex; 
    gap: 15px; 
    flex-wrap: wrap; 
}

.hero-image-wrapper { position: relative; display: flex; justify-content: center; z-index: 2; }
.hero-image { width: 100%; max-width: 380px; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); border: 4px solid rgba(212, 175, 55, 0.4); object-fit: cover; object-position: center; }

/* --- ABOUT SECTION --- */
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.about-image { position: relative; border-radius: 10px; overflow: hidden; }
.about-image img { width: 100%; display: block; border-radius: 10px; object-fit: cover; object-position: center; }
.glass-overlay { position: absolute; bottom: 20px; left: 20px; right: 20px; background: rgba(10, 58, 42, 0.7); backdrop-filter: blur(8px); padding: 15px; color: var(--gold); border-radius: 8px; font-weight: 600; text-align: center; font-size: 1.1rem; border: 1px solid rgba(212, 175, 55, 0.3); }
.about-content p { font-size: 1.1rem; color: var(--text-gray); margin-bottom: 30px; }
.glass-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.glass-card { background: var(--light-bg); padding: 25px 20px; border-radius: 10px; text-align: center; border: 1px solid #eaeaea; transition: var(--transition); }
.glass-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); border-color: var(--gold); }
.glass-card i { font-size: 2rem; color: var(--gold); margin-bottom: 15px; }
.glass-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.glass-card p { font-size: 0.9rem; margin: 0; color: var(--text-gray); }

/* --- IMPACT COUNTERS SECTION --- */
.counters-section { background: var(--forest-green); padding: 60px 0; }
.counters-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.counter-box { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 20px; border-radius: 10px; text-align: center; backdrop-filter: blur(5px); color: var(--white); }
.counter-box i { font-size: 2rem; margin-bottom: 10px; }
.counter { font-size: 2.5rem; font-weight: 700; color: var(--white); font-family: var(--font-heading); margin-bottom: 5px; }

/* --- REGIONAL CONNECT SECTION --- */
.regional-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.regional-visual { position: relative; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.regional-img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; min-height: 400px; }
.pulse-marker { position: absolute; top: 40%; left: 50%; transform: translate(-50%, -50%); color: var(--gold); font-size: 2.5rem; z-index: 2; }
.regional-overlay-card { position: absolute; bottom: 30px; left: 30px; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); padding: 20px; border-radius: 10px; border-left: 4px solid var(--forest-green); }
.regional-list { display: flex; flex-direction: column; gap: 20px; }
.regional-item { display: flex; gap: 20px; background: var(--white); padding: 20px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); border: 1px solid transparent; }
.regional-item:hover { transform: translateX(10px); border-color: var(--gold); }
.reg-icon { width: 50px; height: 50px; min-width: 50px; background: var(--forest-green); color: var(--gold); display: flex; justify-content: center; align-items: center; border-radius: 50%; font-size: 1.2rem; }
.regional-item h4 { margin-bottom: 5px; font-size: 1.4rem; font-weight: 700; }
.regional-item p { color: var(--text-gray); font-size: 1.1rem; line-height: 1.4; }

#regional .section-title h2 { font-size: 3.5rem !important; margin-bottom: 15px; }
#regional .section-title p { font-size: 1.3rem !important; color: var(--text-gray); }

/* --- JOURNEY SECTION --- */
.timeline { position: relative; max-width: 900px; margin: 0 auto; }
.timeline::after { content: ''; position: absolute; width: 4px; background-color: var(--gold); top: 0; bottom: 0; left: 50%; margin-left: -2px; border-radius: 2px; }
.timeline-item { padding: 10px 40px; position: relative; background-color: inherit; width: 50%; }
.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; }
.timeline-dot { position: absolute; width: 20px; height: 20px; right: -10px; top: 15px; background-color: var(--white); border: 4px solid var(--forest-green); border-radius: 50%; z-index: 1; }
.timeline-item:nth-child(even) .timeline-dot { left: -10px; }
.timeline-content { padding: 20px 30px; background: var(--white); position: relative; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border-top: 4px solid var(--gold); }
.timeline-content h3 { margin-bottom: 5px; }
.timeline-content .date { display: inline-block; color: var(--forest-green); font-weight: 600; margin-bottom: 15px; }
.timeline-content img { width: 100%; border-radius: 5px; margin-bottom: 15px; object-fit: cover; object-position: center; }

/* --- CINEMATIC FOREST SECTION --- */
.cinematic-section { position: relative; background: url('https://images.unsplash.com/photo-1425913397330-cf8af2ff40a1?q=80&w=1920&auto=format&fit=crop') no-repeat center center fixed; background-size: cover; color: var(--white); overflow: hidden; }
.cinematic-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(10,58,42,0.85), rgba(17,17,17,0.9)); z-index: 1; }
.fog-layer { position: absolute; top: 0; left: 0; width: 200%; height: 100%; background: url('https://raw.githubusercontent.com/danielstuart14/CSS_FOG_ANIMATION/master/fog1.png') repeat-x; background-size: cover; opacity: 0.3; animation: fog-anim 60s linear infinite; z-index: 1; pointer-events: none; }
@keyframes fog-anim { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.relative-z { position: relative; z-index: 2; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { 
    background: var(--white); border-radius: 15px; 
    overflow: visible !important; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: var(--transition); 
    border: 1px solid transparent; position: relative; margin-bottom: 25px; 
}
.glass-theme { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); color: var(--white); }
.glass-theme:hover { transform: translateY(-10px); border-color: var(--gold); box-shadow: 0 15px 30px rgba(0,0,0,0.5); }
.card-img { position: relative; height: 200px; overflow: hidden; border-top-left-radius: 15px; border-top-right-radius: 15px; }
.card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.5s; }
.service-card:hover .card-img img { transform: scale(1.1); }

.card-icon { 
    position: absolute; bottom: -20px; right: 25px; 
    width: 50px; height: 50px; background: var(--forest-green); 
    color: var(--gold); border-radius: 50%; display: flex; 
    justify-content: center; align-items: center; font-size: 1.3rem; 
    border: 3px solid var(--gold); z-index: 5; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.3); 
}
.card-body { padding: 35px 25px 25px; }
.glass-theme .card-body h3 { color: var(--gold); margin-bottom: 10px; font-size: 1.3rem; }
.glass-theme .card-body p { color: #dddddd; font-size: 0.95rem; }

/* --- MEDIA ARCHIVE SECTION (RESPONSIVE SLIDER) --- */
.filter-controls { display: flex; justify-content: center; gap: 15px; margin-bottom: 30px; flex-wrap: wrap; }
.filter-btn { padding: 8px 20px; border: 2px solid var(--forest-green); background: transparent; color: var(--forest-green); border-radius: 30px; cursor: pointer; font-family: var(--font-body); font-weight: 500; transition: var(--transition); }
.filter-btn.active, .filter-btn:hover { background: var(--forest-green); color: var(--white); }

.slider-wrapper { position: relative; overflow: hidden; width: 100%; max-width: 1200px; margin: 0 auto; border-radius: 12px; }
.slider-container { display: flex; transition: transform 0.5s ease-in-out; gap: 20px; }
.slide { min-width: calc(33.333% - 14px); position: relative; aspect-ratio: 4/3; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.08); background: #f9f9f9; }
.slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.archive-overlay { position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(to top, rgba(10,58,42,0.9), transparent); padding: 20px; color: var(--gold); font-weight: 600; font-family: var(--font-heading); display: flex; align-items: flex-end; }

.slider-btn-custom {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(10, 58, 42, 0.85); color: var(--gold); border: 2px solid var(--gold);
    width: 45px; height: 45px; border-radius: 50%; cursor: pointer;
    display: flex; justify-content: center; align-items: center; font-size: 1.2rem;
    z-index: 10; transition: var(--transition);
}
.slider-btn-custom:hover { background: var(--gold); color: var(--forest-green); }
.slider-btn-custom.prev { left: 5px; }
.slider-btn-custom.next { right: 5px; }

/* --- GALLERY SECTION --- */
.masonry-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 8px; cursor: pointer; aspect-ratio: 1 / 1; }
.gallery-img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.4s ease; }
.gallery-item:hover .gallery-img { transform: scale(1.1); }
.gallery-item::after { content: '\f00e'; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10,58,42,0.6); color: var(--white); display: flex; justify-content: center; align-items: center; font-size: 2rem; opacity: 0; transition: var(--transition); }
.gallery-item:hover::after { opacity: 1; }

/* --- SOCIAL WALL SECTION --- */
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.social-card { 
    background: var(--white); border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); 
    overflow: hidden; display: flex; flex-direction: column; 
    border: 1px solid #eaeaea; 
}
.social-card-header { padding: 15px 20px; font-weight: 600; font-size: 1.1rem; color: white; display: flex; align-items: center; gap: 10px; }
.fb-header { background: #1877F2; }
.x-header { background: #000000; }
.social-card-body { background: #fff; }

/* IG Stylized Card */
.ig-placeholder {
    height: 100%; display: flex; flex-direction: column;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white; padding: 40px 20px; justify-content: center; align-items: center; text-align: center;
}
.ig-placeholder h3 { font-family: var(--font-body); font-weight: 600; margin-bottom: 10px; font-size: 1.4rem; }
.ig-placeholder p { font-size: 0.95rem; margin-bottom: 25px; opacity: 0.95; }
.ig-placeholder .btn-ig {
    background: white; color: #dc2743; padding: 10px 25px; border-radius: 30px;
    text-decoration: none; font-weight: bold; transition: var(--transition);
}
.ig-placeholder .btn-ig:hover { background: var(--dark-bg); color: white; transform: translateY(-3px); }

/* LIGHTBOX */
.lightbox { display: none; position: fixed; z-index: 10000; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); justify-content: center; align-items: center; }
.lightbox.active { display: flex; }
.lightbox-content { max-width: 90%; max-height: 90%; border: 4px solid var(--white); border-radius: 5px; box-shadow: 0 0 30px rgba(0,0,0,0.5); animation: zoomIn 0.3s ease; object-fit: contain; }
@keyframes zoomIn { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.close-lightbox { position: absolute; top: 20px; right: 30px; color: var(--white); font-size: 40px; cursor: pointer; transition: color 0.3s; }
.close-lightbox:hover { color: var(--gold); }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); color: white; border: none; width: 50px; height: 50px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; transition: background 0.3s; }
.slider-btn:hover { background: var(--gold); }
.prev-btn { left: 20px; }
.next-btn { right: 20px; }

/* --- CONTACT SECTION FIXED --- */
.contact-wrapper { 
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; 
    background: var(--white); padding: 50px; border-radius: 15px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
}
.contact-info h3 { margin-bottom: 20px; }
.contact-info > p { margin-bottom: 30px; color: var(--text-gray); }
.info-item { display: flex; gap: 20px; margin-bottom: 25px; align-items: flex-start; }
.info-item i { font-size: 1.5rem; color: var(--gold); width: 45px; height: 45px; min-width: 45px; background: var(--light-bg); display: flex; justify-content: center; align-items: center; border-radius: 50%; }
.info-item h4 { font-family: var(--font-body); font-size: 1.1rem; margin-bottom: 5px; }
.info-item p { color: var(--text-gray); font-size: 0.95rem; word-break: break-word; }
.contact-form .input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.input-group { margin-bottom: 20px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 5px; font-family: var(--font-body); font-size: 1rem; transition: border-color 0.3s; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
.form-message { margin-top: 15px; text-align: center; font-weight: 500; }

/* --- FOOTER --- */
.footer { background: var(--forest-green); color: var(--white); padding-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer h3 { color: var(--gold); margin-bottom: 20px; }
.footer-about p { color: #cccccc; margin-bottom: 20px; }
.social-icons { display: flex; gap: 15px; }
.social-icons a { display: inline-flex; justify-content: center; align-items: center; width: 40px; height: 40px; background: rgba(255,255,255,0.1); color: var(--white); border-radius: 50%; text-decoration: none; transition: var(--transition); }
.social-icons a:hover { background: var(--gold); transform: translateY(-3px); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #cccccc; text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact p { color: #cccccc; }
.footer-bottom { background: #06261c; padding: 20px 0; text-align: center; color: #aaaaaa; }

/* --- ANIMATIONS --- */
.reveal-up { opacity: 0; transform: translateY(50px); transition: all 0.8s ease; }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: all 0.8s ease; }
.reveal-right { opacity: 0; transform: translateX(50px); transition: all 0.8s ease; }
.reveal-up.active, .reveal-left.active, .reveal-right.active { opacity: 1; transform: translate(0); }

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
    .masonry-gallery { grid-template-columns: repeat(3, 1fr); }
    .social-grid { grid-template-columns: repeat(2, 1fr); }
    .counters-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 3rem; }
}

@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-links { position: fixed; left: -100%; top: 70px; flex-direction: column; background: var(--forest-green); width: 100%; text-align: center; transition: 0.3s; box-shadow: 0 10px 27px rgba(0,0,0,0.05); padding: 20px 0; z-index: 999; }
    .nav-links.active { left: 0; }
    header.scrolled .nav-links li a { color: var(--white); }
    
    .logo a { font-size: 1.15rem; white-space: nowrap; max-width: 50vw; overflow: hidden; text-overflow: ellipsis; display: inline-block; }
    .nav-actions { gap: 10px; }
    
    .hero { min-height: 100vh; padding: 130px 0 50px 0; height: auto; }
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .hero-image-wrapper { order: -1; margin-bottom: 0; }
    .hero-image { max-width: 280px; }
    .hero-buttons { justify-content: center; }
    
    .about-grid, .regional-wrapper, .contact-wrapper { grid-template-columns: 1fr; }
    .contact-wrapper { padding: 20px; gap: 20px; }
    .social-grid { grid-template-columns: 1fr; } 
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-icons { justify-content: center; }
    
    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; text-align: left !important; }
    .timeline-item:nth-child(even) { left: 0%; }
    .timeline-dot { left: 21px !important; }
    
    .masonry-gallery { grid-template-columns: repeat(2, 1fr); }
    .contact-form .input-row { grid-template-columns: 1fr; }
    
    #regional .section-title h2 { font-size: 2.5rem !important; }

    /* Mobile: Slider shows 1 item */
    .slide { min-width: 100%; }
}

@media (max-width: 425px) {
    .logo a { font-size: 1.05rem; max-width: 45vw; }
    .lang-toggle { padding: 3px 8px; font-size: 0.8rem; }
    .hero-title { font-size: 2rem; }
    .masonry-gallery { grid-template-columns: 1fr; }
    .glass-cards-grid { grid-template-columns: 1fr; }
    .counters-grid { grid-template-columns: 1fr; }
    .timeline-item { padding-left: 60px; padding-right: 15px; }
}