/* =============================================
   PERFECT DESIGN - LUXURY GOLD THEME
   Colors & Fonts from First Design
   Structure from Final Design
   ============================================= */

:root {
    /* Gold Palette from First Design */
    --gold-primary: #D4AF37;
    --gold-dark: #B8922C;
    --gold-light: #F4E5C2;
    --champagne: #F7EED3;
    
    /* Dark Palette */
    --dark-charcoal: #1A1A1A;
    --soft-charcoal: #2A2A2A;
    --warm-black: #0A0A0A;
    --cream: #FAF8F3;
    
    /* Typography from First Design */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background: var(--warm-black);
    color: #FFFFFF;
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* =============================================
   TOP RIGHT FLAGS
   ============================================= */
.lang-flags-corner {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    gap: 0.5rem;
}

.flag-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.flag-btn .flag {
    font-size: 0.7rem;
}

.flag-btn:hover,
.flag-btn.active {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

/* Mobile Flags */
@media (max-width: 768px) {
    .lang-flags-corner {
        top: 1rem;
        right: 1rem;
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .flag-btn {
        width: 40px;
        height: 40px;
        border-width: 1.5px;
    }
    
    .flag-btn .flag {
        font-size: 1.2rem;
    }
}

/* =============================================
   BOTTOM FLOATING NAVIGATION
   ============================================= */
.floating-bottom-nav {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: flex;
    gap: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 60px;
    padding: 0.2rem 0.3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.nav-link {
    color: #CCCCCC;
    text-decoration: none;
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover,
.nav-link.active {
    color: var(--warm-black);
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border: none;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--warm-black);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    backdrop-filter: blur(5px);
}

.menu-overlay.active {
    display: block;
}

/* =============================================
   MOBILE RESPONSIVE - HAMBURGER MENU
   ============================================= */
@media (max-width: 768px) {
    /* Hide desktop nav */
    .floating-bottom-nav {
        position: fixed;
        top: 0;
        right: -100%;
        bottom: 0;
        left: auto;
        transform: none;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        align-items: stretch;
        padding: 6rem 0 2rem;
        border-radius: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        border: none;
        border-left: 2px solid rgba(212, 175, 55, 0.3);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
    }
    
    /* Show menu when active */
    .floating-bottom-nav.active {
        right: 0;
    }
    
    /* Menu links styling */
    .nav-link {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        text-align: left;
        border-radius: 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .nav-link::before {
        border-radius: 0;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    /* Show hamburger button */
    .mobile-menu-toggle {
        display: flex;
    }
}

/* =============================================
   HERO SECTION WITH PHOTO
   ============================================= */
.hero-photo-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 12rem;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-photo {
    position: relative;
}

.photo-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--gold-primary);
    box-shadow: 
        0 20px 60px rgba(212, 175, 55, 0.3),
        inset 0 0 0 8px rgba(212, 175, 55, 0.1);
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
}

.hero-content {
    padding-right: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    color: var(--gold-light);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    50% { opacity: 0.7; box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
}

.hero-name {
    margin-bottom: 1rem;
}

.name-main {
    display: block;
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #C9A961 0%, var(--gold-primary) 50%, #C9A961 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.name-subtitle {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--gold-light);
    font-style: italic;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.gold-text {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #CCCCCC;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gold-light);
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    background: rgba(212, 175, 55, 0.3);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--warm-black);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--gold-primary);
    border-color: var(--gold-primary);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

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

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, transparent, var(--gold-primary));
    margin: 0 auto 0.8rem;
}

.scroll-indicator span {
    font-size: 0.75rem;
    color: var(--gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* =============================================
   SECTION BACKGROUNDS - LIGHT/DARK CONTRAST
   ============================================= */
.light-section {
    background: #FAF8F3 !important;
}

.light-section .section-title {
    color: var(--dark-charcoal);
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.light-section .section-hint {
    color: #666666;
}

.light-section .timeline-card,
.light-section .method-card {
    background: #FFFFFF;
    color: var(--dark-charcoal);
}

.light-section .timeline-card h3,
.light-section .method-card h3 {
    color: var(--dark-charcoal);
}

.light-section .timeline-card p,
.light-section .method-card p {
    color: #555555;
}

.light-section .timeline-line {
    background: linear-gradient(180deg, 
        transparent 0%, 
        var(--gold-primary) 10%, 
        var(--gold-primary) 90%, 
        transparent 100%
    );
}

.light-section .timeline-dot {
    border-color: #FAF8F3;
}

.dark-section {
    background: var(--dark-charcoal) !important;
}

/* =============================================
   SECTIONS
   ============================================= */
.section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-tag {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(212, 175, 55, 0.15);
    border: none;
    border-radius: 50px;
    color: var(--gold-dark);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.light-section .section-tag {
    background: var(--champagne);
    color: var(--gold-dark);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-hint {
    font-size: 1.1rem;
    color: #AAAAAA;
    max-width: 600px;
    margin: 0 auto;
}

/* =============================================
   VISION SECTION - 6 BOXES (3x2 GRID)
   ============================================= */
.vision-section {
    background: var(--dark-charcoal);
}

.vision-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .vision-grid-6 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .vision-grid-6 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.vision-card {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.vision-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    background: rgba(26, 26, 26, 0.8);
}

.vision-card .card-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    display: block;
}

.vision-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--gold-light);
}

.vision-card p {
    color: #CCCCCC;
    margin-bottom: 1.2rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.vision-card ul {
    list-style: none;
}

.vision-card li {
    padding: 0.5rem 0;
    color: #DDDDDD;
    font-size: 0.9rem;
    padding-left: 1.2rem;
    position: relative;
}

.vision-card li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
}

/* =============================================
   JOURNEY TIMELINE
   ============================================= */
.journey-section {
    background: linear-gradient(180deg, var(--warm-black), var(--dark-charcoal));
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        var(--gold-primary) 10%, 
        var(--gold-primary) 90%, 
        transparent 100%
    );
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    width: 100%;
}

.timeline-item.left {
    justify-content: flex-start;
}

.timeline-item.right {
    justify-content: flex-end;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--gold-primary);
    border: 4px solid var(--warm-black);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.3);
    z-index: 10;
}

.timeline-card {
    width: calc(50% - 60px);
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.timeline-item.left .timeline-card {
    margin-right: auto;
}

.timeline-item.right .timeline-card {
    margin-left: auto;
}

.timeline-card:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
    transform: scale(1.05);
}

.timeline-year {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--gold-primary);
    color: var(--warm-black);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.timeline-card h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #FFFFFF;
}

.timeline-card p {
    color: #BBBBBB;
    line-height: 1.7;
}

/* =============================================
   INITIATIVES SECTION
   ============================================= */
.initiatives-section {
    background: var(--dark-charcoal);
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.5rem;
}

.initiative-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.initiative-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.initiative-card.featured {
    border-color: var(--gold-primary);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-icon {
    font-size: 2.5rem;
}

.card-badge {
    padding: 0.4rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-light);
}

.card-badge.highlight {
    background: var(--gold-primary);
    color: var(--warm-black);
    border-color: var(--gold-primary);
    animation: pulse 2s infinite;
}

.initiative-card h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.initiative-card p {
    color: #BBBBBB;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-link {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.card-link:hover {
    gap: 0.5rem;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
    background: linear-gradient(180deg, var(--warm-black), var(--dark-charcoal));
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    margin-top: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-item:hover {
    border-color: var(--gold-primary);
    transform: translateX(10px);
}

.info-icon {
    font-size: 2rem;
}

.info-content h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--gold-primary);
}

.info-content a,
.info-content p {
    color: #BBBBBB;
    text-decoration: none;
}

.info-content a:hover {
    color: var(--gold-primary);
}

.contact-form {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    color: #be982e;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.contact-form .btn {
    width: 100%;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--warm-black);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    gap: 1.5rem;
}

.footer-symbol {
    font-size: 3rem;
    color: var(--gold-primary);
}

.footer-brand h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.3rem;
}

.footer-brand p {
    color: #AAAAAA;
    font-size: 0.9rem;
}

.footer-tagline {
    color: var(--gold-light) !important;
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h5 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-family: var(--font-serif);
}

.footer-column a {
    display: block;
    color: #AAAAAA;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--gold-primary);
    padding-left: 10px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #777777;
    font-size: 0.9rem;
}

/* =============================================
   MOBILE RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-photo {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-content {
        text-align: center;
        padding-right: 0;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .timeline-item.left .timeline-card,
    .timeline-item.right .timeline-card {
        width: calc(100% - 80px);
        margin-left: 80px;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .contact-wrapper,
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .lang-flags-corner {
        top: 1rem;
        right: 1rem;
        flex-wrap: wrap;
        width: 60px;
    }
    
    .flag-btn {
        width: 45px;
        height: 45px;
    }
    
    .floating-bottom-nav {
        bottom: 1rem;
        flex-direction: column;
        width: auto;
        padding: 0.5rem;
    }
    
    .nav-link {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .name-main {
        font-size: 3.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .vision-grid {
        grid-template-columns: 1fr;
    }
    
    .initiatives-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}

/* =============================================
   METHODOLOGY SECTION - LIGHT
   ============================================= */
.methodology-section {
    background: #FAF8F3;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .methodology-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.method-card {
    background: #FFFFFF;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
}

.method-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--champagne);
    margin-bottom: 1rem;
}

.method-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    margin-bottom: 1rem;
}

.method-card p {
    color: #555555;
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .methodology-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* =============================================
/* ============================================= 
   GALLERY SECTION - DARK
   ============================================= */
.gallery-section {
    background: var(--dark-charcoal);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay p {
    color: #FFFFFF;
    font-size: 0.95rem;
    margin: 0;
}

/* =============================================
   ADDITIONAL MOBILE RESPONSIVE FIXES
   ============================================= */
@media (max-width: 1024px) {
    .methodology-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .vision-grid-6 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 768px) {
    /* Vision Section - Mobile Single Column */
    .vision-grid-6 {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .vision-card {
        padding: 2rem !important;
    }
    
    .vision-card .card-icon {
        font-size: 2.5rem !important;
    }
    
    .vision-card h3 {
        font-size: 1.4rem !important;
    }
    
    .vision-card p {
        font-size: 0.95rem !important;
    }
    
    .vision-card ul {
        margin-top: 1rem !important;
    }
    
    .vision-card li {
        font-size: 0.9rem !important;
        padding: 0.4rem 0 !important;
    }
    
    /* Methodology Mobile - Single Column */
    .methodology-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .method-card {
        padding: 2rem !important;
    }
    
    .method-number {
        font-size: 2.5rem !important;
    }
    
    .method-card h3 {
        font-size: 1.3rem !important;
    }
    
    .method-card p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }
    
    /* Gallery Mobile - Single Column */
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    /* Section spacing - Mobile */
    .section {
        padding: 4rem 0 !important;
    }
    
    .section-header {
        margin-bottom: 2.5rem !important;
    }
    
    .section-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }
    
    .section-hint {
        font-size: 1rem !important;
        padding: 0 1rem !important;
    }
    
    .section-tag {
        font-size: 0.65rem !important;
        padding: 0.5rem 1.2rem !important;
    }
    
    /* Container padding - Mobile */
    .container {
        padding: 0 1.5rem !important;
    }
    
    /* Initiatives Grid - Mobile */
    .initiatives-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}
