
:root {
    --color-primary: #003a23; 
    --color-primary-light: #005937;
    --color-accent: #a38753; 
    
    --color-text-main: #111111;
    --color-text-muted: #666666;
    
    
    --color-bg-body: #fcfcfc;
    --color-border: #e2e2e2;
    
    --font-main: 'Rubik', sans-serif;
    
    --transition-fast: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-smooth: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    
    --shadow-soft: 0 15px 35px rgba(0,0,0,0.04);
    --shadow-hover: 0 25px 50px rgba(0,0,0,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-main);
    color: var(--color-text-main);
    background-color: var(--color-bg-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 2rem; }


.reveal {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    will-change: transform, opacity;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.8s ease;
}
.reveal.active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.watermark {
    position: absolute;
    font-size: 15vw;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.02);
    z-index: 0;
    line-height: 1;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
}
.watermark-right { top: 10%; right: -5%; }
.watermark-left { top: 20%; left: -5%; }


.header-wrapper {
    position: fixed; top: 20px; left: 0; width: 100%; z-index: 1000;
    display: flex; justify-content: center; padding: 0 clamp(1rem, 2vw, 2rem);
    transition: var(--transition-smooth);
}
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    width: 100%; max-width: 1500px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255,255,255,0.8);
    transition: var(--transition-smooth);
}

body.scrolled .header-wrapper { top: 0; padding: 0; }
body.scrolled .header { border-radius: 0; max-width: 100%; }

.header-container { display: flex; align-items: center; justify-content: space-between; height: 80px; padding: 0 clamp(1.2rem, 2.5vw, 2.5rem); gap: 1.5rem; }
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 25px; width: auto; }
.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; color: var(--color-primary); cursor: pointer; }
.nav { display: flex; align-items: center; flex-grow: 1; justify-content: flex-end; min-width: 0; }
.nav-list { display: flex; align-items: center; gap: 1.6rem; flex-wrap: nowrap; }

.nav-link {
    font-size: 15px; font-weight: 500; letter-spacing: 0.2px;
    color: var(--color-text-main); padding: 0.5rem 0;
    transition: color var(--transition-fast);
    white-space: nowrap;
}
.nav-link:hover { color: var(--color-primary); }
.nav-divider { width: 1px; height: 28px; background-color: rgba(0,0,0,0.08); margin: 0 0.6rem; }

.header-phone {
    font-size: 15px; font-weight: 500; color: var(--color-primary);
    display: flex; align-items: center; gap: 0.6rem;
    background: rgba(0, 58, 35, 0.04);
    padding: 0.65rem 1.4rem; border-radius: 50px;
    margin: 0 0.4rem;
    transition: all var(--transition-fast);
    white-space: nowrap;
}
.header-phone:hover { background: rgba(0, 58, 35, 0.08); }
.header-phone i { color: var(--color-accent); font-size: 1rem; }

.header-socials { display: flex; gap: 0.4rem; color: var(--color-text-muted); }
.header-socials a {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    transition: all var(--transition-fast);
}
.header-socials a:hover { color: var(--color-primary); background: rgba(0, 58, 35, 0.04); }

.btn-solid {
    background-color: var(--color-primary); color: #fff;
    padding: 0.8rem 1.7rem; border-radius: 50px;
    font-size: 14.5px; font-weight: 600; letter-spacing: 0.5px;
    transition: all var(--transition-fast);
    white-space: nowrap;
}
.btn-solid:hover { background-color: var(--color-primary-light); color: #fff; box-shadow: 0 8px 20px rgba(0,58,35,0.25); transform: translateY(-1px); }


.dropdown { position: relative; }
.dropdown-menu {
    position: absolute; top: calc(100% + 15px); left: -10px;
    background: #fff; min-width: 260px; width: max-content;
    border-radius: 8px; box-shadow: var(--shadow-hover);
    padding: 1rem 0; opacity: 0; visibility: hidden;
    transform: translateY(10px); transition: var(--transition-fast);
}
.dropdown-menu::before {
    content: ''; position: absolute; top: -15px; left: 0; right: 0; height: 15px;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a {
    display: block; padding: 0.8rem 1.5rem; font-size: 0.85rem;
    color: var(--color-text-muted); transition: var(--transition-fast);
    white-space: nowrap;
}
.dropdown-menu li a:hover { color: var(--color-primary); background: rgba(0,0,0,0.02); padding-left: 2rem; }


.split-slider { display: flex; height: 100vh; min-height: 700px; background: #fff; }

.split-content-pane {
    width: 45%; padding: 0 6%;
    display: flex; flex-direction: column; justify-content: center;
    position: relative; z-index: 2;
}
.split-slide-text { position: absolute; opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.8s ease; }
.split-slide-text.active { position: relative; opacity: 1; visibility: visible; transform: translateY(0); }

.split-label {
    display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 3px;
    color: var(--color-accent); margin-bottom: 2rem; text-transform: uppercase;
}
.split-title {
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    line-height: 1.1; color: var(--color-primary); margin-bottom: 1.5rem;
    font-weight: 500; white-space: nowrap;
}
.split-desc { font-size: 1.1rem; color: var(--color-text-muted); line-height: 1.8; margin-bottom: 3rem; max-width: 450px; }

.btn-link {
    display: inline-flex; align-items: center; gap: 1rem;
    font-size: 0.8rem; font-weight: 700; letter-spacing: 2px;
    color: var(--color-primary); border-bottom: 2px solid var(--color-primary);
    padding-bottom: 0.5rem; transition: var(--transition-fast);
}
.btn-link:hover { gap: 1.5rem; color: var(--color-accent); border-color: var(--color-accent); }

.split-controls { position: absolute; bottom: 5%; display: flex; align-items: center; gap: 2rem; }
.split-btn {
    background: none; border: 1px solid var(--color-border);
    width: 45px; height: 45px; border-radius: 50%;
    color: var(--color-primary); cursor: pointer; transition: var(--transition-fast);
}
.split-btn:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.split-pagination { font-size: 0.9rem; font-weight: 600; color: var(--color-text-muted); }
#current-slide { color: var(--color-primary); font-size: 1.2rem; }

.split-image-pane { width: 55%; position: relative; overflow: hidden; }
.split-slide-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1s ease; }
.split-slide-img.active { opacity: 1; }
.split-slide-img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); transition: transform 6s ease-out; }
.split-slide-img.active img { transform: scale(1); }


.about-section { padding: 8rem 0; background: #fff; position: relative; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; position: relative; z-index: 2; }

.section-label {
    display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 3px;
    color: var(--color-accent); margin-bottom: 1.5rem; text-transform: uppercase;
}
.about-title {
    font-size: clamp(1.8rem, 3vw, 3rem);
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 500;
    white-space: normal;
}


.tab-controls { display: flex; gap: 2rem; border-bottom: 1px solid var(--color-border); margin-bottom: 2rem; }
.tab-btn {
    background: none; border: none; font-size: 1rem; font-weight: 600; font-family: var(--font-main);
    color: var(--color-text-muted); padding-bottom: 1rem; cursor: pointer;
    border-bottom: 3px solid transparent; transition: all var(--transition-fast);
}
.tab-btn:hover { color: var(--color-primary); }
.tab-btn.active { color: var(--color-primary); border-bottom-color: var(--color-primary); }

.tab-pane { display: none; animation: fadeIn 0.5s ease; }
.tab-pane.active { display: block; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.about-text { font-size: 1.05rem; color: var(--color-text-muted); line-height: 1.8; margin-bottom: 1.5rem; }
.about-text strong { color: var(--color-text-main); font-weight: 600; }


.about-slider-container {
    position: relative; width: 100%; height: 550px;
    z-index: 1; 
}


.about-slider-container::after {
    content: ''; position: absolute;
    bottom: -30px; right: -30px; width: 50%; height: 50%;
    background-image: radial-gradient(var(--color-primary) 1.5px, transparent 1.5px); 
    background-size: 20px 20px;
    opacity: 0.15;
    z-index: -2;
}

.slider-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 40%);
    z-index: 2; pointer-events: none; border-radius: 24px;
}
.about-slide { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    opacity: 0; transition: opacity 0.6s ease; z-index: 1; 
    border-radius: 24px; overflow: hidden; 
    box-shadow: 0 20px 40px rgba(0,58,35,0.15);
}
.about-slide.active { opacity: 1; }
.about-slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); transition: transform 4s ease-out; }
.about-slide.active img { transform: scale(1); }


.section { padding: 8rem 0; position: relative; overflow: hidden; }
.bg-texture { background-color: var(--color-bg-body); background-image: radial-gradient(#e5e5e5 1px, transparent 1px); background-size: 40px 40px; }

.section-header { margin-bottom: 6rem; max-width: 600px; position: relative; z-index: 2; }
.section-title { font-size: 3rem; color: var(--color-primary); margin-bottom: 1.5rem; line-height: 1.2; }
.section-divider { width: 60px; height: 3px; background: var(--color-accent); margin-bottom: 2rem; }
.section-desc { font-size: 1.1rem; color: var(--color-text-muted); }

.overlap-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6rem 4rem; position: relative; z-index: 2; }

.overlap-card { position: relative; display: flex; align-items: flex-end; padding-bottom: 3rem; }
.overlap-card.reverse { justify-content: flex-end; }

.overlap-image { width: 80%; height: 450px; overflow: hidden; border-radius: 24px; box-shadow: var(--shadow-soft); }
.overlap-image img { width: 100%; height: 100%; object-fit: cover; }

.overlap-content {
    position: absolute; bottom: 0; right: 0;
    background: #fff; padding: 3rem; width: 60%;
    box-shadow: var(--shadow-hover); border-radius: 24px;
}
.overlap-card.reverse .overlap-content { right: auto; left: 0; }


#faaliyetler-alt { overflow: visible; }

.interactive-split {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; 
    position: relative;
}
.interactive-list {
    display: flex; flex-direction: column; gap: 1rem;
}
.interactive-item {
    padding: 2rem; border-left: 4px solid transparent;
    cursor: pointer; transition: all 0.4s ease; opacity: 0.5;
    border-radius: 0 16px 16px 0;
}
.interactive-item:hover, .interactive-item.active {
    opacity: 1; border-left-color: var(--color-primary);
    background: rgba(0, 58, 35, 0.03);
}
.item-num { font-size: 0.9rem; font-weight: 700; color: var(--color-accent); margin-bottom: 0.5rem; display: block; }
.item-title { font-size: 1.8rem; color: var(--color-primary); font-weight: 500; }
.item-desc { font-size: 0.95rem; color: var(--color-text-muted); line-height: 1.6; max-height: 0; overflow: hidden; transition: all 0.4s ease; opacity: 0; margin-top: 0; }
.interactive-item.active .item-desc { max-height: 150px; opacity: 1; margin-top: 1rem; }

.mobile-item-img { display: none; margin-top: 1.5rem; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-soft); }
.mobile-item-img img { width: 100%; height: 250px; object-fit: cover; display: block; }

.interactive-display {
    position: sticky; top: 120px; 
    height: calc(100vh - 160px); 
    min-height: 400px; max-height: 700px;
    border-radius: 24px; overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,58,35,0.15);
    align-self: start;
}
.interactive-display img {
    width: 100%; height: 100%; object-fit: cover; transition: opacity 0.5s ease, transform 1s ease;
}
.interactive-display img.fade { opacity: 0; transform: scale(1.05); }
.interactive-overlay {
    position: absolute; top:0; left:0; width:100%; height:100%;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%);
    pointer-events: none;
}
.interactive-btn {
    position: absolute; bottom: 2rem; right: 2rem;
    background: #fff; color: var(--color-primary);
    padding: 1rem 2rem; border-radius: 50px;
    font-weight: 600; font-size: 0.95rem;
    display: inline-flex; align-items: center; gap: 1rem;
    box-shadow: var(--shadow-hover);
    transition: all var(--transition-fast);
    z-index: 5;
    text-transform: uppercase; letter-spacing: 1px;
}
.interactive-btn:hover {
    gap: 1.5rem; background: var(--color-primary); color: #fff;
}


.parallax-reveal {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
    will-change: transform, opacity;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.2s ease;
    transition-delay: var(--stagger-delay, 0s);
}
.parallax-reveal.active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}


.parallax-reveal .overlap-image img {
    transform: scale(1.15);
    transition: transform 1.6s cubic-bezier(0.25, 1, 0.5, 1);
    
}
.parallax-reveal.active .overlap-image img {
    transform: scale(1);
}


.parallax-reveal .overlap-content {
    transform: translate3d(0, 30px, 0);
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: calc(var(--stagger-delay, 0s) + 0.15s); 
}
.parallax-reveal.active .overlap-content {
    transform: translate3d(0, 0, 0);
}


.overlap-card:hover .overlap-image img { transform: scale(1.04); transition: transform 0.6s ease-out; }
.overlap-card:hover .overlap-content { transform: translate3d(0, -10px, 0); transition: transform 0.4s ease; }


.full-width-card { grid-column: 1 / -1; justify-content: center; }
.full-width-card .overlap-image { width: 100%; height: 600px; }
.full-width-card .overlap-content {
    left: 50%; width: 50%;
    border-left: none; border-bottom: 4px solid var(--color-primary);
    text-align: center;
}

.full-width-card.parallax-reveal .overlap-content { transform: translateX(-50%) translateY(40px); }
.full-width-card.parallax-reveal.active .overlap-content { transform: translateX(-50%) translateY(0); }
.full-width-card.parallax-reveal.active:hover .overlap-content { transform: translateX(-50%) translateY(-10px); }

.card-icon {
    font-size: 2rem; color: var(--color-accent); margin-bottom: 1.5rem;
    opacity: 0.8;
}

.overlap-content h3 { font-size: 1.5rem; color: var(--color-primary); margin-bottom: 1rem; }
.overlap-content p { color: var(--color-text-muted); font-size: 0.95rem; margin-bottom: 2rem; }
.overlap-link {
    font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
    color: var(--color-accent); border-bottom: 1px solid var(--color-accent); padding-bottom: 3px;
}


.news-section { background-color: rgba(0, 58, 35, 0.02); }

.news-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; }
.news-controls { display: flex; gap: 1rem; margin-bottom: 2rem; }
.news-btn { 
    width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--color-border);
    background: #fff; color: var(--color-primary); font-size: 1.2rem;
    cursor: pointer; transition: all var(--transition-fast);
    display: flex; align-items: center; justify-content: center;
}
.news-btn:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

.news-carousel {
    display: flex; gap: 2rem; overflow-x: auto;
    scroll-snap-type: x mandatory; scroll-behavior: smooth;
    padding-bottom: 2rem; 
    
    -ms-overflow-style: none; scrollbar-width: none;
}
.news-carousel::-webkit-scrollbar { display: none; }

.news-card {
    flex: 0 0 calc(33.333% - 1.34rem); scroll-snap-align: start;
    background: #fff; border-radius: 24px; overflow: hidden;
    box-shadow: var(--shadow-soft); transition: transform var(--transition-smooth);
}
@media (max-width: 992px) { .news-card { flex: 0 0 calc(50% - 1rem); } }
@media (max-width: 768px) { .news-card { flex: 0 0 100%; } }

.news-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }

.news-img { width: 100%; height: 250px; overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.news-card:hover .news-img img { transform: scale(1.05); }

.news-content { padding: 2rem; position: relative; }
.news-date { font-size: 0.85rem; color: var(--color-accent); font-weight: 600; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px; }
.news-title { font-size: 1.3rem; color: var(--color-primary); font-weight: 500; margin-bottom: 1rem; line-height: 1.4; }
.news-excerpt { font-size: 0.95rem; color: var(--color-text-muted); line-height: 1.6; margin-bottom: 2rem; }

.news-link {
    position: absolute; bottom: 2rem; right: 2rem;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(0, 58, 35, 0.05); color: var(--color-primary);
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition-fast);
}
.news-card:hover .news-link { background: var(--color-primary); color: #fff; }


.inv-section { padding-top: 6rem; padding-bottom: 6rem; }
.inv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.inv-desc { font-size: 1.1rem; color: var(--color-text-muted); line-height: 1.8; margin-bottom: 2.5rem; max-width: 500px; }

.inv-links { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--color-border); }
.inv-link-item {
    display: flex; align-items: center; padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-main); font-weight: 500; font-size: 1.1rem;
    transition: all var(--transition-fast);
    position: relative; overflow: hidden;
}
.inv-link-item i:first-child { font-size: 1.4rem; color: var(--color-accent); width: 40px; }
.inv-link-item .inv-arrow { margin-left: auto; color: var(--color-text-muted); transition: all var(--transition-fast); }
.inv-link-item:hover { color: var(--color-primary); padding-left: 1rem; border-bottom-color: var(--color-primary); }
.inv-link-item:hover .inv-arrow { color: var(--color-primary); transform: translateX(5px); }


.inv-right { display: flex; justify-content: flex-end; }
.inv-vault {
    background: var(--color-primary); color: #fff;
    border-radius: 24px; padding: 4rem; width: 100%; max-width: 600px;
    box-shadow: var(--shadow-hover); position: relative; overflow: hidden;
}
.inv-vault::after {
    content: ''; position: absolute; top: -50px; right: -50px;
    width: 200px; height: 200px; border-radius: 50%;
    background: radial-gradient(var(--color-accent) 0%, transparent 60%);
    opacity: 0.1; pointer-events: none;
}
.vault-title { font-size: 2rem; font-weight: 500; margin-bottom: 3rem; color: #fff; }

.vault-list { display: flex; flex-direction: column; gap: 2.5rem; }
.vault-item { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 2.5rem; }
.vault-item:last-child { border-bottom: none; padding-bottom: 0; }
.vault-date { font-size: 0.85rem; color: var(--color-accent); font-weight: 700; letter-spacing: 1px; margin-bottom: 0.8rem; text-transform: uppercase; }
.vault-doc-title { font-size: 1.2rem; font-weight: 400; line-height: 1.5; margin-bottom: 1.5rem; color: #fff; }

.vault-download {
    display: inline-flex; align-items: center; gap: 0.8rem;
    font-size: 0.85rem; font-weight: 600; color: #fff;
    padding-bottom: 0.3rem; border-bottom: 1px solid rgba(255,255,255,0.3);
    transition: all var(--transition-fast);
}
.vault-download:hover { color: var(--color-accent); gap: 1.2rem; border-bottom-color: var(--color-accent); }

.vault-controls { display: flex; gap: 1rem; margin-top: 3rem; }
.vault-btn {
    width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1);
    border: none; color: #fff; cursor: pointer; transition: all var(--transition-fast);
    display: flex; align-items: center; justify-content: center;
}
.vault-btn:hover { background: var(--color-accent); transform: translateY(-2px); }


.footer { background: #050505; color: #888; padding-top: 6rem; position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; margin-bottom: 4rem; }
@media (min-width: 993px) {
    .footer-col:nth-child(2) { padding-left: 3rem; }
}
@media (max-width: 992px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

.logo-img-footer { max-height: 40px; width: auto; margin-bottom: 1rem; opacity: 1; }
.footer-heading { color: #fff; font-size: 1.1rem; margin-bottom: 1.5rem; letter-spacing: 0.5px; }

.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { color: #888; transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--color-primary); }

.footer-contact li { 
    display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.2rem; 
    line-height: 1.5;
}
.footer-contact i { 
    color: var(--color-accent); margin-top: 0.2rem; font-size: 1.2rem; 
    min-width: 24px; text-align: center; flex-shrink: 0;
}


.footer-socials { display: flex; gap: 1rem; margin-top: 2.5rem; }
.footer-social-icon {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #888; display: flex; align-items: center; justify-content: center;
    transition: all var(--transition-fast);
}
.footer-social-icon:hover { color: #fff; transform: translateY(-3px); }
.footer-social-icon.linkedin:hover { background: #0077b5; border-color: #0077b5; }
.footer-social-icon.instagram:hover { background: #e1306c; border-color: #e1306c; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 2rem 0; font-size: 0.85rem; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: #888; transition: color var(--transition-fast); }
.footer-legal a:hover { color: var(--color-primary); }


.go-top-btn {
    position: fixed; bottom: 30px; right: 30px; z-index: 9999;
    width: 50px; height: 50px; border-radius: 50%;
    background-color: var(--color-primary); color: #fff;
    border: none; cursor: pointer; font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(0,58,35,0.3);
    opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: all var(--transition-fast);
}
.go-top-btn.show { opacity: 1; visibility: visible; transform: translateY(0); }
.go-top-btn:hover { background-color: var(--color-accent); transform: translateY(-3px); box-shadow: 0 15px 25px rgba(163,135,83,0.4); }


.mega-menu-backdrop {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(0, 0, 0, 0.6); z-index: 1000;
    opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.mega-menu-backdrop.active { opacity: 1; visibility: visible; }

.mega-mobile-menu {
    position: fixed; top: 0; right: -100%; width: 100%; max-width: 400px;
    height: 100vh; height: 100dvh;
    background-color: #ffffff; z-index: 1001;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex; flex-direction: column; overflow-y: auto;
    z-index: 99999;
}


.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-top: 2rem; background: #fff; border-radius: 12px; box-shadow: var(--shadow-soft); padding: 1rem 2rem; }
.custom-table { width: 100%; border-collapse: collapse; min-width: 800px; }
.custom-table th {
    text-align: left; padding: 1.2rem 1rem; color: var(--color-primary);
    font-weight: 600; font-size: 1rem;
    border-bottom: 2px solid rgba(0, 58, 35, 0.5);
    white-space: nowrap;
}
.custom-table th i { font-size: 0.75rem; margin-left: 0.3rem; opacity: 0.6; }
.custom-table td {
    padding: 1.2rem 1rem; color: var(--color-text-main); font-size: 0.95rem;
    border-bottom: 1px solid var(--color-border);
}
.custom-table tr:last-child td { border-bottom: none; }
.custom-table .td-date { color: var(--color-text-muted); width: 130px; }
.custom-table .td-type { color: #0077b5; font-weight: 500; width: 100px; }
.custom-table .td-size { color: var(--color-text-muted); width: 100px; }
.custom-table tbody tr { transition: background var(--transition-fast); cursor: pointer; }
.custom-table tbody tr:hover { background: rgba(0,58,35,0.03); }
.mega-mobile-menu.active { right: 0; }

.mega-close-btn {
    position: absolute; top: 25px; right: 2rem;
    background: none; border: none; font-size: 1.8rem;
    color: var(--color-primary); cursor: pointer; z-index: 10;
}

.mega-menu-inner { padding: 40px 1.5rem 4rem 1.5rem; display: flex; flex-direction: column; min-height: 100%; }
.mega-menu-inner > * { flex-shrink: 0; }

.mega-menu-logo { max-height: 24px; margin-bottom: 2.5rem; }

.mega-nav-list { list-style: none; padding: 0; margin: 0 0 2rem 0; }
.mega-nav-list > li { margin-bottom: 0.5rem; border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 0.8rem; transform: translateX(20px); opacity: 0; transition: all 0.4s ease; }
.mega-nav-list > li:last-child { border-bottom: none; }
.mega-mobile-menu.active .mega-nav-list > li { transform: translateX(0); opacity: 1; }

.mega-mobile-menu.active .mega-nav-list > li:nth-child(1) { transition-delay: 0.1s; }
.mega-mobile-menu.active .mega-nav-list > li:nth-child(2) { transition-delay: 0.15s; }
.mega-mobile-menu.active .mega-nav-list > li:nth-child(3) { transition-delay: 0.2s; }
.mega-mobile-menu.active .mega-nav-list > li:nth-child(4) { transition-delay: 0.25s; }
.mega-mobile-menu.active .mega-nav-list > li:nth-child(5) { transition-delay: 0.3s; }

.mega-nav-link-wrap { display: flex; align-items: center; justify-content: space-between; }
.mega-nav-link { font-size: 1.1rem; font-weight: 500; color: var(--color-text-main); text-decoration: none; display: block; }
.mega-nav-link:hover, .mega-nav-link:active { color: var(--color-primary); }

.mega-submenu-toggle { background: none; border: none; font-size: 1rem; color: var(--color-text-muted); padding: 0.5rem; cursor: pointer; }
.mega-submenu { display: none; list-style: none; padding: 0.5rem 0 0 1rem; margin: 0; }
.mega-submenu.active { display: block; }
.mega-submenu li { border-bottom: none !important; margin-bottom: 0.8rem !important; padding-bottom: 0 !important; transform: none !important; opacity: 1 !important; }
.mega-submenu li a { font-size: 0.95rem; color: var(--color-text-muted); text-decoration: none; display: block; padding: 0.3rem 0; }
.mega-submenu li a:hover { color: var(--color-primary); }

.mega-contact { border-top: 2px solid var(--color-primary); padding-top: 2rem; transform: translateX(20px); opacity: 0; transition: all 0.4s ease 0.4s; }
.mega-mobile-menu.active .mega-contact { transform: translateX(0); opacity: 1; }
.mega-contact-title { color: var(--color-primary); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.5rem; }
.mega-contact-list { list-style: none; padding: 0; margin: 0 0 2rem 0; }
.mega-contact-list li { color: var(--color-text-muted); font-size: 0.85rem; margin-bottom: 1.2rem; display: flex; align-items: flex-start; gap: 1rem; line-height: 1.6; }
.mega-contact-list li a { color: var(--color-text-muted); text-decoration: none; display: flex; align-items: flex-start; gap: 1rem; }
.mega-contact-list i { color: var(--color-accent); font-size: 1.1rem; margin-top: 3px; }

.mega-socials { display: flex; gap: 1.5rem; }
.mega-socials a { color: var(--color-text-main); font-size: 1.5rem; transition: color var(--transition-fast); }
.mega-socials a:hover { color: var(--color-primary); }

body.menu-open { overflow: hidden; }


.hero-premium {
    position: relative; width: 100%; height: 50vh; min-height: 400px;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: #fff; overflow: hidden;
    padding-top: 90px; 
    padding-bottom: 30px; 
}
.hero-premium-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 120%;
    background: url('../images/holding.jpg') no-repeat center center/cover;
    z-index: 1; opacity: 0.5;
    background-attachment: fixed;
}
.hero-premium-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,20,10,0.8) 0%, rgba(0,58,35,0.95) 100%);
    z-index: 2;
}
.hero-premium-content {
    position: relative; z-index: 3; max-width: 800px; padding: 0 2rem;
}
.hero-premium-label {
    display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 4px;
    color: var(--color-accent); margin-bottom: 1.5rem; text-transform: uppercase;
}
.hero-premium-title {
    font-size: clamp(2rem, 3.5vw, 3.5rem); font-weight: 500; line-height: 1.2;
    margin-bottom: 1.5rem; text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.stats-bar {
    position: absolute; top: -60px; left: 0; right: 0; margin: 0 auto;
    z-index: 20; background: #fff; border-radius: 20px; box-shadow: var(--shadow-hover);
    padding: 2rem 3rem; display: flex; justify-content: space-between;
    max-width: 900px; width: 90%;
}
.stat-box { text-align: center; position: relative; flex: 1; }
.stat-box:not(:last-child)::after {
    content: ''; position: absolute; right: 0; top: 15%; height: 70%; width: 1px; background: var(--color-border);
}
.stat-num { font-size: 2.5rem; font-weight: 600; color: var(--color-primary); line-height: 1; margin-bottom: 0.4rem; }
.stat-text { font-size: 0.8rem; font-weight: 600; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 1px; }

.timeline-section { padding: 6rem 0; background: #f2f5f4; }
.timeline-wrap { position: relative; max-width: 800px; margin: 0 auto; padding-left: 3rem; }
.timeline-wrap::before {
    content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 100%;
    background: var(--color-border);
}
.timeline-item { position: relative; margin-bottom: 4rem; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
    position: absolute; top: 0; left: -3.4rem; width: 16px; height: 16px;
    background: var(--color-primary); border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(0,58,35,0.1);
}
.timeline-year {
    font-size: 2rem; font-weight: 700; color: var(--color-accent);
    line-height: 1; margin-bottom: 1rem;
}
.timeline-title { font-size: 1.3rem; color: var(--color-primary); margin-bottom: 0.8rem; }
.timeline-desc { font-size: 1.05rem; color: var(--color-text-muted); line-height: 1.8; }

.manifesto-text {
    font-size: clamp(1.2rem, 2vw, 1.8rem); color: var(--color-primary);
    line-height: 1.5; text-align: center; max-width: 900px; margin: 0 auto 4rem auto;
    font-weight: 400;
}

/* Clean up spacing on medium desktops (under 1600px, including 1536px) */
@media (max-width: 1600px) {
    .header-socials {
        display: none !important; /* Hide header social icons to save space */
    }
    .nav-divider {
        display: none !important; /* Hide vertical divider to save space */
    }
}

/* Adjust header paddings and sizes on smaller laptops (under 1366px, including 1280px) */
@media (max-width: 1366px) {
    .header-wrapper {
        padding: 0 0.5rem;
    }
    .header-container {
        padding: 0 1rem;
        height: 74px;
        gap: 1rem;
    }
    .logo-img {
        height: 28px;
    }
    .nav-list {
        gap: 1.1rem;
    }
    .nav-link {
        font-size: 14px;
    }
    .header-phone {
        font-size: 14px;
        padding: 0.6rem 1.1rem;
        gap: 0.5rem;
    }
    .btn-solid {
        font-size: 13.5px;
        padding: 0.75rem 1.3rem;
    }
}

/* Optimize overlap-grid layout for viewports between 1025px and 1366px */
@media (min-width: 1025px) and (max-width: 1366px) {
    .overlap-grid {
        gap: 4rem 2rem;
    }
    .overlap-image {
        height: 380px;
        width: 85%;
    }
    .overlap-content {
        padding: 2rem;
        width: 65%;
    }
    .full-width-card .overlap-image {
        height: 450px !important;
    }
    .full-width-card .overlap-content {
        width: 65% !important;
    }
}

@media (max-width: 1024px) {
    .header-container { padding: 0 1.5rem; height: 64px; }
    .logo-img { height: 26px; } 
    
    .split-slider { flex-direction: column; height: auto; min-height: 100vh; }
    .split-content-pane { width: 100%; height: auto; min-height: 50vh; padding: 100px 2rem 4rem 2rem; justify-content: flex-start; }
    .split-image-pane { width: 100%; height: 50vh; min-height: 400px; }
    
    
    .split-content-inner { display: grid; }
    .split-slide-text { grid-area: 1 / 1; position: relative !important; pointer-events: none; align-self: start; }
    .split-slide-text.active { pointer-events: auto; }
    .split-controls { grid-area: 2 / 1; position: relative; bottom: auto; margin-top: 2rem; }
    
    .split-title { font-size: 2.5rem; white-space: normal; }
    .split-desc { margin-bottom: 2rem; }
    .inv-grid { grid-template-columns: 1fr; }
    .inv-vault { padding: 2rem; }
    .overlap-grid { grid-template-columns: 1fr; gap: 4rem; }
    .overlap-card { flex-direction: column; align-items: center; padding-bottom: 0; }
    .overlap-image, .full-width-card .overlap-image { width: 100%; height: 350px !important; }
    .overlap-content { position: relative; width: 95%; margin: -50px auto 0 auto; right: auto !important; left: auto !important; padding: 1.5rem 1rem; }
    
    .full-width-card.parallax-reveal .overlap-content,
    .full-width-card.parallax-reveal.active .overlap-content,
    .full-width-card.parallax-reveal.active:hover .overlap-content,
    .full-width-card .overlap-content { 
        transform: none !important; 
        width: 95% !important; 
    }
    .header-wrapper { padding: 0; top: 0; }
    .header { border-radius: 0 !important; border: none; max-width: 100%; }
    .nav { display: none; }
    .mobile-menu-btn { display: block; }
    .section { padding: 4rem 0 !important; }
    .section-header { margin-bottom: 3rem; }
    
    
    .stats-bar {
        position: relative !important;
        top: -30px !important;
        flex-direction: column;
        gap: 2rem;
        padding: 2.5rem 1.5rem !important;
    }
    .stat-box:not(:last-child)::after {
        width: 50%; height: 1px;
        top: auto; bottom: -1rem; left: 25%;
    }
    .timeline-section > .container {
        padding-top: 2rem !important;
    }
    
    .about-section { padding: 4rem 0; }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-content { order: -1; }
    .about-slider-container { height: 400px; margin-top: 1rem; }
    .about-stats { flex-direction: column; gap: 2rem; }
    .about-title { font-size: 1.6rem; }
    .desktop-only { display: none; }
    
    .interactive-display { display: none !important; }
    .interactive-split { grid-template-columns: 1fr; gap: 2rem; }
    .mobile-item-img { display: block; }
    .interactive-list { gap: 2rem; }
    .interactive-item { 
        padding: 2rem; background: #fff; border-radius: 20px; 
        border: 1px solid var(--color-border); box-shadow: var(--shadow-soft); 
        opacity: 1 !important; margin: 0;
    }
    .interactive-item.active { background: #fff; border-left: 1px solid var(--color-border); }
    .interactive-item:hover, .interactive-list:hover .interactive-item { opacity: 1 !important; background: #fff; }
    .item-desc { max-height: none !important; opacity: 1 !important; margin-top: 1rem !important; }
    
    
    .news-header { flex-direction: column; align-items: center; text-align: center; }
    .news-header > div { margin-bottom: 1.5rem; }
    .news-controls { margin-bottom: 0; justify-content: center; }
    
    .footer-bottom-inner { flex-direction: column; text-align: center; justify-content: center; }
    .footer-legal { justify-content: center; }
}
@media (max-width: 768px) { .breadcrumb { display: none !important; } }


.lang-selector {
    position: relative;
}
.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}
.lang-dropdown {
    min-width: 120px !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(10px);
    transition: var(--transition-fast);
}
.dropdown:hover .lang-dropdown {
    transform: translateX(-50%) translateY(0);
}
.lang-dropdown li {
    width: 100%;
}
.lang-dropdown li a {
    padding: 0.6rem 1.2rem !important;
    text-align: left;
    display: flex !important;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.8rem !important;
}
.lang-dropdown li a:hover {
    padding-left: 1.5rem !important;
}
.lang-dropdown li a.active {
    color: var(--color-primary);
    font-weight: 600;
    background: rgba(0, 58, 35, 0.04);
}


.mega-lang-selector {
    display: inline-flex;
    background: rgba(0, 58, 35, 0.03);
    border-radius: 50px;
    padding: 4px;
    margin-top: 2rem;
    border: 1px solid rgba(0, 58, 35, 0.08);
    align-self: flex-start;
}
.mega-lang-btn {
    padding: 0.4rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
    border-radius: 50px;
    transition: all var(--transition-fast);
    text-decoration: none;
}
.mega-lang-btn.active {
    background: var(--color-primary);
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(0, 58, 35, 0.15);
}
.mega-lang-btn:hover:not(.active) {
    color: var(--color-primary);
    background: rgba(0, 58, 35, 0.05);
}
.mega-lang-selector {
    display: none !important;
}


.mobile-lang-container {
    display: none; 
}

@media (max-width: 1024px) {
    .mobile-lang-container {
        display: block;
        margin-left: auto; 
        margin-right: 1.2rem; 
        position: relative;
    }
    
    .mobile-lang-btn-pill {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.08);
        padding: 5px 8px 5px 5px;
        border-radius: 50px;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        transition: all var(--transition-fast);
        outline: none;
    }
    
    .mobile-lang-btn-pill:active {
        transform: scale(0.95);
    }
    
    .mobile-lang-flag {
        width: 24px;
        height: 24px;
        object-fit: cover;
        border-radius: 50%;
        box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
    }
    
    .mobile-lang-dot {
        width: 6px;
        height: 6px;
        background-color: var(--color-primary-light); 
        border-radius: 50%;
        display: inline-block;
    }
    
    .mobile-lang-dropdown {
        position: absolute;
        top: calc(100% + 12px);
        right: -8px;
        left: auto !important; 
        transform: translateY(10px);
        background: #ffffff;
        min-width: 120px !important;
        border-radius: 12px;
        box-shadow: var(--shadow-hover);
        padding: 0.5rem 0;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-fast);
        z-index: 10002;
        border: 1px solid rgba(0,0,0,0.05);
    }
    
    .mobile-lang-dropdown.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .mobile-lang-dropdown li {
        width: 100%;
    }
    
    .mobile-lang-dropdown li a {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        padding: 0.6rem 1.2rem !important;
        font-size: 0.85rem !important;
        font-weight: 500;
        color: var(--color-text-muted);
        transition: var(--transition-fast);
        text-align: left;
    }
    
    .mobile-lang-dropdown li a img {
        width: 18px;
        height: 18px;
        border-radius: 50%;
    }
    
    .mobile-lang-dropdown li a.active {
        color: var(--color-primary);
        font-weight: 600;
        background: rgba(0, 58, 35, 0.04);
    }
}


