@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap");
:root {
    --bg-color: #f0f5f2;
    --text-main: #0c140e;
    --text-muted: #3f4a42;
    --accent-green: #639a3d;
    --highlight-green: #97ca63;
    --glass-bg: rgba(255, 255, 255, 0.68);
    --card-bg: rgba(255, 255, 255, 0.45);
    --glass-glow: rgba(99, 154, 61, 0.04);
    --shadow-sm: 0 4px 20px rgba(99, 154, 61, 0.02);
    --shadow-md: 0 30px 60px rgba(99, 154, 61, 0.08);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: "Plus Jakarta Sans", sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
}
.liquid-bg { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1; overflow: hidden; pointer-events: none; }
.blob { position: absolute; background: linear-gradient(135deg, rgba(151, 202, 99, 0.3) 0%, rgba(99, 154, 61, 0.45) 100%); border-radius: 50%; filter: blur(90px); opacity: 0.85; }
.blob-1 { width: 420px; height: 420px; top: -12%; left: -12%; }
.blob-2 { width: 1000px; height: 1000px; bottom: -25%; right: -15%; background: linear-gradient(135deg, rgba(99, 154, 61, 0.35) 0%, rgba(151, 202, 99, 0.55) 100%); }
.blob-3 { width: 500px; height: 500px; top: -15%; right: -12%; background: linear-gradient(135deg, rgba(99, 154, 61, 0.32) 0%, rgba(151, 202, 99, 0.42) 100%); }

.spinner-gradient {
    width: 44px;
    height: 44px;
    border: 4px solid rgba(151, 202, 99, 0.15);
    border-top: 4px solid var(--accent-green);
    border-right: 4px solid var(--highlight-green);
    border-radius: 50%;
    animation: spinMediaLoader 0.8s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -22px;
    margin-left: -22px;
    z-index: 5;
    transition: opacity 0.3s ease;
}
@pragma spinMediaLoader {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes glassReveal {
    from {
        background-color: rgba(255, 255, 255, 0);
        border-color: rgba(255, 255, 255, 0);
        box-shadow: 0 20px 50px rgba(12, 20, 14, 0);
        backdrop-filter: blur(0px); -webkit-backdrop-filter: blur(0px);
    }
    to {
        background-color: rgba(255, 255, 255, 0.38);
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 20px 50px rgba(12, 20, 14, 0.05);
        backdrop-filter: blur(25px) saturate(140%); -webkit-backdrop-filter: blur(25px) saturate(140%);
    }
}
.animate-item { opacity: 0; animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.hero-text h1.animate-item { animation-delay: 0.3s; }
.hero-text p.animate-item { animation-delay: 0.5s; }
.hero-text .btn.animate-item { animation-delay: 0.7s; }
.stats-inner-anim { opacity: 0; animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; }
.reveal { opacity: 0; transform: translateY(60px); transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; display: flex; align-items: center; justify-content: center; flex-direction: column; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.top-bar { width: 100%; background: #ffffff; height: 38px; display: flex; align-items: center; justify-content: center; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); border-bottom: 1px solid rgba(0,0,0,0.04); overflow: hidden; opacity: 1; }
header.scrolled .top-bar { height: 0px; opacity: 0; border-bottom: none; padding: 0; }
.top-bar-container { width: 100%; max-width: 1300px; padding: 0 2.5rem; display: flex; justify-content: space-between; align-items: center; }
.top-info { display: flex; gap: 2rem; font-size: 0.8rem; color: var(--text-muted); font-weight: 600; align-items: center; }
.top-info a, .top-info span { color: var(--text-muted); text-decoration: none; display: inline-flex; align-items: center; gap: 0.45rem; line-height: 1; }
.top-info i { display: inline-flex; align-items: center; justify-content: center; font-size: 0.85rem; transform: translateY(1px); }
.top-info a:hover { color: var(--accent-green); }
.top-social { display: flex; gap: 0.5rem; align-items: center; }
.top-social a, .top-social span { width: 24px; height: 24px; background: rgba(0, 0, 0, 0.03); color: var(--text-muted); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.78rem; text-decoration: none; transition: all 0.3s ease; }
.top-social a:hover, .top-social span:hover { background: var(--accent-green); color: #fff; }

.nav-bar-main { width: 100%; height: 90px; display: flex; align-items: center; justify-content: center; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
header.scrolled { top: 15px; width: calc(100% - 40px); left: 20px; }
header.scrolled .nav-bar-main { height: 75px; background: rgba(255, 255, 255, 0.45); backdrop-filter: blur(30px) saturate(170%); -webkit-backdrop-filter: blur(30px) saturate(170%); box-shadow: var(--shadow-sm); border-radius: 24px; }
.nav-container { width: 100%; max-width: 1300px; padding: 0 2.5rem; display: flex; justify-content: space-between; align-items: center; }
.logo-container { display: flex; align-items: center; gap: 0.85rem; text-decoration: none; }
.logo-img { height: 42px; width: auto; object-fit: contain; }
.logo-text { font-size: 1.75rem; font-weight: 800; letter-spacing: -0.04em; background: linear-gradient(135deg, #97ca63 0%, #639a3d 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links .nav-item { position: relative; padding: 2rem 0; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; font-weight: 600; transition: color 0.3s; display: flex; align-items: center; gap: 0.35rem; }
.nav-links a:hover { color: var(--accent-green); }
.nav-links a::after { content: ""; position: absolute; width: 0; height: 2px; bottom: 12px; left: 0; background: var(--accent-green); transition: width 0.3s ease; }
.nav-links a:hover::after { width: 100%; }
.dropdown-menu-wrapper { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(15px); opacity: 0; visibility: hidden; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); pointer-events: none; padding-top: 5px; z-index: 1010; }
.nav-item:hover .dropdown-menu-wrapper { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.dropdown-menu { background: rgba(255, 255, 255, 0.72); backdrop-filter: blur(35px) saturate(160%); -webkit-backdrop-filter: blur(35px) saturate(160%); padding: 1.25rem 0; min-width: 260px; border-radius: 24px; box-shadow: var(--shadow-md), inset 0 1px 2px rgba(255,255,255,0.95), 0 0 40px var(--glass-glow); display: flex; flex-direction: column; gap: 0.35rem; }
.dropdown-menu a { padding: 0.75rem 2rem; font-size: 0.95rem; color: var(--text-muted); width: 100%; display: block; transition: all 0.3s ease; font-weight: 600; }
.dropdown-menu a::after { content: none !important; width: 0 !important; }
.dropdown-menu.regions-large-menu { min-width: 720px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.35rem; padding: 1.75rem; }
.dropdown-menu.regions-large-menu a { padding: 0.65rem 1.25rem; border-radius: 12px; }
.dropdown-menu.regions-large-menu a:hover { padding-left: 1.5rem; }
.burger-btn { display: none; background: transparent; border: none; cursor: pointer; width: 28px; height: 24px; position: relative; z-index: 1100; }
.burger-btn span { display: block; position: absolute; height: 2.5px; width: 100%; background: var(--text-main); border-radius: 4px; opacity: 1; left: 0; transform: rotate(0deg); transition: .3s cubic-bezier(0.16, 1, 0.3, 1); }
.burger-btn span:nth-child(1) { top: 0px; }
.burger-btn span:nth-child(2) { top: 9px; }
.burger-btn span:nth-child(3) { top: 18px; }
.burger-btn.open span:nth-child(1) { top: 9px; transform: rotate(135deg); background: var(--accent-green); }
.burger-btn.open span:nth-child(2) { opacity: 0; left: -60px; }
.burger-btn.open span:nth-child(3) { top: 9px; transform: rotate(-135deg); background: var(--accent-green); }
.mobile-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; height: 100dvh; background: rgba(245, 249, 247, 0.99); backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px); z-index: 1050; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; transform: translateX(100%); transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); overflow-y: auto; padding: 100px 2rem; }
.mobile-menu.active { transform: translateX(0); }
.mobile-menu a { font-size: 1.5rem; font-weight: 700; color: var(--text-main); text-decoration: none; transition: color 0.3s; }
.mobile-sub-trigger { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; width: 100%; }
.mobile-sub-menu { display: none; flex-direction: column; align-items: center; gap: 0.5rem; background: rgba(99, 154, 61, 0.04); padding: 1rem; border-radius: 20px; width: 100%; max-width: 300px; max-height: 240px; overflow-y: auto; }
.mobile-close-btn { position: absolute; top: 33px; right: 2.5rem; width: 28px; height: 24px; background: transparent; border: none; cursor: pointer; display: none; z-index: 1200; font-size: 24px; line-height: 1; color: var(--text-main); align-items: center; justify-content: center; }
.mobile-menu.active .mobile-close-btn { display: flex; }

.float-stack { position: fixed; bottom: 2.5rem; right: 2.5rem; display: flex; flex-direction: column; z-index: 999999; align-items: center; gap: 0; }
.float-btn { width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(135deg, #97ca63 0%, #639a3d 100%) !important; border: 1px solid rgba(255, 255, 255, 0.45) !important; box-shadow: 0 15px 35px rgba(12, 20, 14, 0.12), inset 0 1px 1px rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 1.35rem; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); cursor: pointer; color: #ffffff !important; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.float-btn i { color: #ffffff !important; }
.float-btn:hover { transform: scale(1.08) translateY(-2px); background: linear-gradient(135deg, #a6d972 0%, #73ad4b 100%) !important; box-shadow: 0 20px 45px rgba(99, 154, 61, 0.25) !important; }
.float-btn.phone-btn { margin-top: 0.8rem; }
.float-btn.whatsapp-btn i { font-size: 1.65rem !important; }

.float-btn.scroll-btn {
    height: 0;
    opacity: 0;
    visibility: hidden;
    margin-top: 0;
    padding: 0;
    border: none !important;
    transform: scale(0.5) translateY(20px);
    overflow: hidden;
    pointer-events: none;
}
.float-btn.scroll-btn.show {
    height: 54px;
    opacity: 1;
    visibility: visible;
    margin-top: 0.8rem;
    transform: scale(1) translateY(0);
    border: 1px solid rgba(255, 255, 255, 0.45) !important;
    pointer-events: auto;
}

.main-body-wrapper-node { width: 100%; display: flex; flex-direction: column; align-items: center; }
main { z-index: 10; width: 100%; margin: auto; }

.fullscreen-container { width: 100vw; min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; justify-content: center; padding: 180px 2rem 4rem 2rem; box-sizing: border-box; background: url("../images/bg.jpg") no-repeat center center / cover; position: relative; }
.hero-fullscreen { width: 100%; max-width: 1300px; display: block; z-index: 5; margin: 0 auto; padding: 0 2.5rem; }
.hero-left-col { display: flex; flex-direction: column; width: 100%; max-width: 780px; text-align: left; padding: 0; margin: 0; }
.hero-text { padding: 3.5rem 3rem; border-radius: 32px; text-align: left; background-color: rgba(255, 255, 255, 0); border: 1px solid rgba(255, 255, 255, 0); box-shadow: 0 20px 50px rgba(12, 20, 14, 0); backdrop-filter: blur(0px); -webkit-backdrop-filter: blur(0px); animation: glassReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.hero-text h1 { font-size: 2.8rem; font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 1.5rem; color: var(--text-main); }
.hero-text p { color: var(--text-main); font-size: 1.05rem; line-height: 1.7; font-weight: 300; margin-bottom: 2rem; max-width: 650px; }
.btn { display: inline-block; padding: 1.15rem 2.75rem; background: var(--text-main); color: #fff; text-decoration: none; border-radius: 100px; font-weight: 700; font-size: 1.05rem; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); border: none; cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.btn.btn-gradient { background: linear-gradient(135deg, #97ca63 0%, #639a3d 100%); color: #ffffff; }
.btn.btn-gradient:hover { background: linear-gradient(135deg, #639a3d 0%, #46662d 100%); transform: translateY(-4px); box-shadow: 0 15px 30px rgba(99, 154, 61, 0.35); }

.btn.btn-services-custom { background: #0c140e !important; color: #fff !important; }
.btn.btn-services-custom:hover { background: #222a24 !important; transform: translateY(-4px); box-shadow: 0 15px 30px rgba(12,20,14,0.25); }

.stats-container { display: flex; gap: 1rem; margin-top: 1.5rem; width: 100%; flex-wrap: nowrap; }
.stat-box-btn { flex: 1; min-width: 0; padding: 1.5rem 1rem; border-radius: 22px; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; text-decoration: none; color: var(--text-main); border: 1px solid rgba(255, 255, 255, 0); position: relative; z-index: 6; background-color: rgba(255, 255, 255, 0); box-shadow: 0 20px 50px rgba(12, 20, 14, 0); backdrop-filter: blur(0px); -webkit-backdrop-filter: blur(0px); animation: glassReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.stat-box-btn:hover { background: rgba(255, 255, 255, 0.55) !important; transform: translateY(-3px); box-shadow: 0 25px 55px rgba(99,154,61,0.12) !important; }
.stat-box-btn h4, .stat-box-btn .stat-number { font-size: 2.5rem; font-weight: 800; color: var(--accent-green); line-height: 1; }
.stat-box-btn p { font-size: 0.75rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.03em; text-align: center; }
.stat-box-btn:nth-child(1) { animation-delay: 0.4s; }
.stat-box-btn:nth-child(1) .stats-inner-anim { animation-delay: 0.4s; }
.stat-box-btn:nth-child(2) { animation-delay: 0.55s; }
.stat-box-btn:nth-child(2) .stats-inner-anim { animation-delay: 0.55s; }
.stat-box-btn:nth-child(3) { animation-delay: 0.7s; }
.stat-box-btn:nth-child(3) .stats-inner-anim { animation-delay: 0.7s; }

.fluid-section-wrapper { width: 100%; max-width: 1300px; margin: 0 auto; padding: 4rem 2.5rem; box-sizing: border-box; }
.standard-container { width: 100%; max-width: 1300px; margin: 0 auto; padding: 180px 2.5rem 5rem 2.5rem; box-sizing: border-box; }

.index-cards-section { padding: 5rem 2.5rem !important; margin-top: 30px !important; }
.index-services-section { padding: 5rem 2.5rem !important; }

.glass-panel { width: 100% !important; display: block !important; box-sizing: border-box; background: var(--glass-bg); backdrop-filter: blur(35px) saturate(160%); -webkit-backdrop-filter: blur(35px) saturate(160%); border-radius: 40px; padding: 5rem 4.5rem; box-shadow: var(--shadow-md), inset 0 1px 2px rgba(255, 255, 255, 0.95), 0 0 50px var(--glass-glow); border: none; }
.breadcrumb { background: rgba(255, 255, 255, 0.38); backdrop-filter: blur(25px) saturate(140%); -webkit-backdrop-filter: blur(25px) saturate(140%); padding: 0.65rem 1.5rem; border-radius: 100px; display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; font-weight: 600; color: var(--text-muted); margin-bottom: 1.5rem; text-align: left; border: 1px solid rgba(255, 255, 255, 0.2); width: max-content; box-shadow: 0 10px 30px rgba(12, 20, 14, 0.03); }
.breadcrumb a { color: var(--text-main); text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--accent-green); }
.corporate-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 5rem; text-align: left; }
.regions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 5rem; width: 100%; }
.corp-card { background: var(--card-bg); padding: 4rem 2.5rem; border-radius: 32px; text-align: left; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s; text-decoration: none; color: inherit; display: block; box-shadow: var(--shadow-sm); border: none; backdrop-filter: blur(20px); }
.corp-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.corp-card h1, .corp-card h2, .corp-card h3 { font-size: 1.5rem; font-weight: 800; color: var(--text-main); margin-bottom: 1.25rem; letter-spacing: -0.02em; }

.corp-card p { font-size: 0.90rem; color: var(--text-muted); line-height: 1.65; margin-top: 1.20rem; }

.regions-grid .corp-card { padding: 2rem 1.5rem; text-align: center; border-radius: 24px; }
.regions-grid .corp-card h1, .regions-grid .corp-card h2, .regions-grid .corp-card h3 { font-size: 1.25rem; margin-bottom: 0; text-align: center; }
.step-num { position: absolute; top: -22px; left: 22px; width: 44px; height: 44px; background: #0c140e; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; box-shadow: 0 6px 16px rgba(0,0,0,0.06); z-index: 10; }
.icon-box { width: 64px; height: 64px; background: #fff; border-radius: 20px; display: flex; align-items: center; justify-content: center; margin-bottom: 2rem; border: 1px solid rgba(255,255,255,1); box-shadow: var(--shadow-sm); color: var(--accent-green); font-weight: 800; font-size: 1.4rem; }
.section-header { text-align: center; max-width: 800px; margin: 0 auto 4.5rem auto; }
.section-header h1, .section-header h2 { font-size: 2.2rem; font-weight: 800; color: var(--text-main); margin-bottom: 1.5rem; letter-spacing: -0.03em; }
.section-header p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; }
.split-content { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.rich-text-block { margin-bottom: 3rem; }
.rich-text-block h1, .rich-text-block h2, .rich-text-block h3, .rich-text-block h4 { font-size: 1.3rem; font-weight: 800; color: var(--text-main); margin-bottom: 1rem; }
.rich-text-block p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.75; }
.process-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 5rem; }
.process-step { background: var(--card-bg); padding: 2.5rem 2rem; border-radius: 28px; position: relative; box-shadow: var(--shadow-sm); border: none; backdrop-filter: blur(20px); }
.process-step h1, .process-step h2, .process-step h3, .process-step h4 { font-size: 1.15rem; font-weight: 800; margin-top: 0.5rem; margin-bottom: 0.75rem; }
.process-step p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

.footer { background: linear-gradient(135deg, #97ca63 0%, #639a3d 100%); width: 100%; padding: 5rem 0 3rem 0; margin-top: 6rem; color: #ffffff; border: none; display: flex; flex-direction: column; align-items: center; }
.footer-container { width: 100%; max-width: 1300px; padding: 0 2.5rem; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 4rem; text-align: left; }
.footer-col h4 { font-size: 1.2rem; font-weight: 800; margin-bottom: 1.5rem; color: #ffffff; position: relative; letter-spacing: -0.01em; }
.footer-col h4::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 35px; height: 2px; background: #ffffff; }
.footer-col p { font-size: 1rem; color: rgba(255, 255, 255, 0.9); line-height: 1.7; font-weight: 300; }
.footer-col.brand-col p { margin-top: 1.25rem; max-width: 340px; }
.footer-col.brand-col img.logo-img { filter: brightness(0) invert(1) !important; }
.footer-col.links-col { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-col.links-col a { color: rgba(255, 255, 255, 0.9); text-decoration: none; font-size: 0.95rem; font-weight: 300; transition: all 0.3s ease; }
.footer-col.links-col a:hover { color: #ffffff !important; font-weight: 700 !important; }

.footer-col.contact-col p { margin-bottom: 1rem; }
.footer-col.contact-col p a { display: inline-flex; align-items: center; color: rgba(255, 255, 255, 0.9); text-decoration: none; font-weight: 300; font-size: 0.95rem; transition: all 0.3s ease; width: 100%; }
.footer-col.contact-col p a:hover { color: #ffffff !important; font-weight: 700 !important; }
.footer-col.contact-col p .liquid-glass-icon-capsule { width: 36px !important; height: 36px !important; border-radius: 50% !important; background: rgba(255, 255, 255, 0.15) !important; border: 1px solid rgba(255, 255, 255, 0.25) !important; color: #ffffff !important; display: inline-flex !important; align-items: center !important; justify-content: center !important; font-size: 1rem !important; transition: all 0.3s ease !important; backdrop-filter: blur(5px) !important; vertical-align: middle; margin-right: 0.5rem; }
.footer-col.contact-col p a:hover .liquid-glass-icon-capsule { background: #ffffff !important; color: #639a3d !important; transform: translateY(-2px); }

.footer-bottom { width: 100%; max-width: 1300px; margin: 4rem auto 0 auto; padding: 2rem 2.5rem 0 2.5rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.footer-legal-bar { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; }
.footer-legal-bar a { color: rgba(255, 255, 255, 0.85); text-decoration: none; font-size: 0.9rem; font-weight: 300; transition: all 0.3s ease; }
.footer-legal-bar a:hover { color: #ffffff !important; font-weight: 700 !important; }
.footer-social-bar { display: flex; gap: 1rem; justify-content: center; }
.footer-social-bar a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255, 255, 255, 0.15); border: 1px solid rgba(255, 255, 255, 0.25); color: #ffffff; display: flex; align-items: center; justify-content: center; font-size: 1rem; text-decoration: none; transition: all 0.3s ease; backdrop-filter: blur(5px); }
.footer-social-bar a:hover { background: #ffffff; color: var(--accent-green); transform: translateY(-2px); }
.copyright { font-size: 0.9rem; color: rgba(255, 255, 255, 0.8); letter-spacing: 0.02em; font-weight: 300; width: 100%; border-top: 1px solid rgba(255, 255, 255, 0.2); padding-top: 1.5rem; margin-top: 0.5rem; }
.copyright .brand { color: #ffffff; font-weight: 800; text-decoration: none; display: inline-block; transition: all 0.3s ease; }
.copyright .brand:hover { color: #0c140e; text-shadow: 0 0 10px #ffffff; }

.media-toggle-wrapper { display: flex; width: 100%; justify-content: center; margin-bottom: 3.5rem; }
.media-toggle-container { display: inline-flex; background: rgba(12, 20, 14, 0.05); padding: 5px; border-radius: 100px; border: 1px solid rgba(0,0,0,0.03); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }

.media-toggle-btn { 
    padding: 0.75rem 2.5rem; 
    border: none !important; 
    background: transparent !important; 
    color: var(--text-main) !important; 
    font-weight: 700; 
    font-size: 0.95rem; 
    border-radius: 100px; 
    cursor: pointer; 
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
    font-family: inherit;
    outline: none !important;
    box-shadow: none !important;
}
.media-toggle-btn.active { 
    background: linear-gradient(135deg, #97ca63 0%, #639a3d 100%) !important; 
    color: #ffffff !important; 
    box-shadow: 0 8px 20px rgba(99, 154, 61, 0.25) !important; 
}

.gallery-grid { display: none; opacity: 0; }
.gallery-grid.active-grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 2rem; width: 100%; opacity: 1; animation: slideFadeTab 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes slideFadeTab {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

.gallery-item { 
    background: rgba(255, 255, 255, 0.42) !important; 
    border: 1px solid rgba(255, 255, 255, 0.6) !important; 
    border-radius: 24px !important; 
    padding: 0.85rem !important; 
    box-shadow: 0 12px 40px rgba(99, 154, 61, 0.03) !important; 
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s !important; 
    overflow: hidden;
    cursor: pointer;
}
.gallery-item:hover { 
    transform: translateY(-6px) scale(1.01) !important; 
    border-color: rgba(255, 255, 255, 0.8) !important; 
    box-shadow: 0 20px 50px rgba(99, 154, 61, 0.14) !important; 
}
.gallery-img-placeholder { 
    width: 100%; 
    height: 250px; 
    background: rgba(12, 20, 14, 0.03) !important; 
    border-radius: 16px !important; 
    overflow: hidden; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 0 !important; 
    position: relative;
}
.gallery-img-placeholder img, .gallery-img-placeholder video { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); 
}
.gallery-item:hover .gallery-img-placeholder img { 
    transform: scale(1.04); 
}

.about-logo-col img { max-width: 380px; width:100%; height: auto; object-fit: contain; filter: drop-shadow(0 10px 25px rgba(99,154,61,0.15)); }

.faq-section { margin-top: 5rem; text-align: left; }
.faq-header { font-size: 1.75rem; font-weight: 800; color: var(--text-main); margin-bottom: 2rem; letter-spacing: -0.02em; text-align: center; }
.faq-grid { display: flex; flex-direction: column; gap: 1.5rem; }
.faq-item { background: var(--card-bg); backdrop-filter: blur(20px); padding: 2rem; border-radius: 24px; box-shadow: var(--shadow-sm); border: 1px solid rgba(255,255,255,0.3); }
.faq-item h1, .faq-item h2, .faq-item h3, .faq-item h4 { font-size: 1.15rem; font-weight: 800; color: var(--text-main); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.faq-item h1 i, .faq-item h2 i, .faq-item h3 i, .faq-item h4 i { color: var(--accent-green); font-size: 1rem; }
.faq-item p { font-size: 1rem; color: var(--text-muted); line-height: 1.65; font-weight: 300; }
.service-img-placeholder { width: 100%; height: 200px; background: rgba(12, 20, 14, 0.05); border-radius: 16px; margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(5px); }
.service-img-placeholder i { color: var(--accent-green); font-size: 1.75rem; opacity: 0.35; }

.service-page-hero-banner { width: calc(100% + 9rem); margin: -4rem -4.5rem 4rem -4.5rem; height: 320px; background: rgba(12, 20, 14, 0.04); border-bottom: 1px solid rgba(255,255,255,0.2); border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.service-page-hero-banner img { width: 100%; height: 100%; object-fit: cover; }

.contact-interactive-link { display: flex; align-items: center; gap: 1.5rem; padding: 1.75rem 2rem; border-radius: 24px; background: var(--card-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.3); text-decoration: none; color: inherit; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: var(--shadow-sm); margin: 0; text-align: left !important; justify-content: flex-start !important; }
.contact-interactive-link:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: rgba(255, 255, 255, 0.55); }
.liquid-glass-icon-capsule { width: 56px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.15) !important; border: 1px solid rgba(255, 255, 255, 0.25) !important; box-shadow: 0 8px 20px rgba(99, 154, 61, 0.08); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); color: var(--accent-green); font-size: 1.25rem; flex-shrink: 0; }
.contact-card-info-pane h1, .contact-card-info-pane h2, .contact-card-info-pane h3 { font-size: 1.2rem; font-weight: 700; color: var(--text-main); margin-bottom: 0.35rem; text-transform: none; text-align: left !important; }
.contact-card-info-pane p { font-size: 0.95rem; color: var(--text-muted); font-weight: 400; line-height: 1.4; text-align: left !important; }

.cookie-banner-panel { position: fixed; bottom: 25px; right: 110px; max-width: 600px; width: calc(100% - 140px); background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(25px) saturate(140%); -webkit-backdrop-filter: blur(25px) saturate(140%); border-radius: 24px; border: 1px solid rgba(255,255,255,0.2); box-shadow: 0 20px 50px rgba(12, 20, 14, 0.1); padding: 1.25rem 2rem; z-index: 9999999; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(20px); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.4s; text-align: left; color: var(--text-main); }
.cookie-banner-panel.active { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.cookie-banner-panel h4, .cookie-banner-panel .cookie-title { font-size: 0.92rem; font-weight: 800; margin-bottom: 0.4rem; color: var(--text-main); }
.cookie-banner-panel p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; font-weight: 400; margin-bottom: 1.25rem; }
.cookie-banner-actions { display: flex; gap: 0.5rem; width: 100%; align-items: center; flex-wrap: nowrap; }
.cookie-banner-btn { flex: 1; padding: 0.75rem 0.5rem; border-radius: 100px; font-size: 0.82rem; font-weight: 700; text-align: center; cursor: pointer; border: none; font-family: "Plus Jakarta Sans", sans-serif !important; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.cookie-banner-btn.c-accept { background: linear-gradient(135deg, #97ca63 0%, #639a3d 100%); color: #ffffff; }
.cookie-banner-btn.c-accept:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(99,154,61,0.3); }
.cookie-banner-btn.c-reject { background: #0c140e !important; color: #ffffff !important; } 
.cookie-banner-btn.c-reject:hover { background: #222a24 !important; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.cookie-banner-btn.c-settings { background: #ffffff !important; color: #0c140e !important; border: 1px solid rgba(12, 20, 14, 0.15) !important; } 
.cookie-banner-btn.c-settings:hover { background: #f0f5f2 !important; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }

.kvkk-modal-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(12,20,14,0.4); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); z-index: 10000001; opacity: 0; visibility: hidden; pointer-events: none; display: flex; align-items: center; justify-content: center; padding: 1.5rem; transition: opacity 0.4s ease, visibility 0.4s; }
.kvkk-modal-overlay.active { opacity: 1; visibility: visible; pointer-events: auto; }
.kvkk-modal-window { background: #ffffff; width: 100%; max-width: 680px; border-radius: 32px; box-shadow: var(--shadow-md); border: 1px solid rgba(0,0,0,0.05); padding: 2.5rem; display: flex; flex-direction: column; max-height: calc(100vh - 3rem); position: relative; text-align: left; }
.kvkk-modal-close { position: absolute; top: 2rem; right: 2rem; background: transparent; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-muted); transition: color 0.2s; z-index: 10; }
.kvkk-modal-close:hover { color: var(--text-main); }
.kvkk-modal-window h1, .kvkk-modal-window h2, .kvkk-modal-window h3 { font-size: 1.5rem; font-weight: 800; color: var(--text-main); margin-bottom: 1rem; letter-spacing: -0.02em; }
.kvkk-modal-window p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.5rem; font-weight: 300; }
.kvkk-preferences-list { display: flex; flex-direction: column; gap: 1rem; overflow-y: auto; padding-right: 0.5rem; margin-bottom: 2rem; }
.kvkk-pref-item { border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 1rem; display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; }
.kvkk-pref-meta { flex: 1; }
.kvkk-pref-meta h1, .kvkk-pref-meta h2, .kvkk-pref-meta h3, .kvkk-pref-meta h5 { font-size: 1.05rem; font-weight: 700; color: var(--text-main); margin-bottom: 0.25rem; }
.kvkk-pref-meta p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.4; margin: 0; }
.kvkk-toggle-switch { position: relative; display: inline-block; width: 46px; height: 26px; flex-shrink: 0; }
.kvkk-toggle-switch input { opacity: 0; width: 0; height: 0; }
.kvkk-slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(12,20,14,0.1); transition: .3s cubic-bezier(0.16, 1, 0.3, 1); border-radius: 34px; }
.kvkk-slider:before { position: absolute; content: ""; height: 20px; width: 20px; left: 3px; bottom: 3px; background-color: white; transition: .3s cubic-bezier(0.16, 1, 0.3, 1); border-radius: 50%; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
input:checked + .kvkk-slider { background-color: var(--accent-green); }
input:checked + .kvkk-slider:before { transform: translateX(20px); }
input:disabled + .kvkk-slider { background-color: rgba(99, 154, 61, 0.25); }
input:disabled + .kvkk-slider:before { background-color: #639a3d; }
.kvkk-modal-footer-actions { display: flex; gap: 1rem; justify-content: flex-end; }
.page-main-title { font-size: 2.2rem; font-weight: 800; color: var(--text-main) !important; position: relative; padding-bottom: 0.75rem; margin-bottom: 1.5rem; display: inline-block; text-transform: uppercase; letter-spacing: 0.02em; text-align: left !important; }
.page-main-title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 45px; height: 2px; background: linear-gradient(135deg, #97ca63 0%, #639a3d 100%); }
.page-main-title.centered { display: inline-block; text-align: center !important; margin: 0 auto 1.5rem auto; }
.page-main-title.centered::after { left: 50%; transform: translateX(-50%); }

.lightbox-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(12, 20, 14, 0.78); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    z-index: 9999999999 !important; display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.4s ease, visibility 0.4s;
}
.lightbox-overlay.active { opacity: 1; visibility: visible; pointer-events: auto; }
.lightbox-content { max-width: 85vw; max-height: 80vh; display: flex; align-items: center; justify-content: center; position: relative; }
.lightbox-content img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 24px; box-shadow: var(--shadow-md); border: 1px solid rgba(255,255,255,0.25); }

.lightbox-close { 
    position: absolute; top: 2.5rem; right: 2.5rem; 
    background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.25); 
    font-size: 1.1rem; color: #fff; width: 54px; height: 54px; border-radius: 50%; 
    cursor: pointer; display: flex; align-items: center; justify-content: center; 
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); z-index: 2000010; 
    backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); 
}
.lightbox-close:hover { background: #fff; color: #639a3d; transform: scale(1.05); }

.lightbox-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); font-size: 1.5rem; color: #fff; width: 54px; height: 54px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); z-index: 2000010; backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); }
.lightbox-arrow:hover { background: #fff; color: #639a3d; transform: translateY(-50%) scale(1.05); }
.lightbox-arrow.left { left: 2.5rem; }
.lightbox-arrow.right { right: 2.5rem; }

body.lightbox-active header,
body.lightbox-active .cookie-banner-panel,
body.lightbox-active .float-stack {
    display: none !important;
}

/* Custom Hover & Page Layout Enhancements */
.btn-all-services { transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important; }
.btn-all-services:hover { background: #0c140e !important; color: #ffffff !important; border-color: #0c140e !important; }
.regions-grid .corp-card { transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s, background 0.5s ease, color 0.5s ease !important; }
.regions-grid .corp-card:hover { background: linear-gradient(135deg, #97ca63 0%, #639a3d 100%) !important; color: #ffffff !important; transform: translateY(-8px); box-shadow: var(--shadow-md); }
.regions-grid .corp-card:hover h1, .regions-grid .corp-card:hover h2, .regions-grid .corp-card:hover h3 { color: #ffffff !important; }
.discipline-card { background: rgba(255, 255, 255, 0.72) !important; border: 1px solid rgba(255, 255, 255, 0.45) !important; backdrop-filter: blur(30px) saturate(150%); box-shadow: var(--shadow-md), 0 10px 30px rgba(99,154,61,0.05) !important; border-radius: 28px !important; padding: 3rem 2.5rem !important; text-align: left !important; }
.discipline-card h1, .discipline-card h2, .discipline-card h3 { font-size: 1.5rem !important; font-weight: 800 !important; color: var(--text-main) !important; border-bottom: 2px solid var(--accent-green); padding-bottom: 0.75rem; margin-bottom: 1.5rem !important; text-align: left !important; }
.discipline-item { font-size: 1.05rem !important; font-weight: 700 !important; color: var(--accent-green) !important; margin-bottom: 0.75rem !important; display: flex; align-items: center; gap: 0.5rem; transition: transform 0.3s ease; text-align: left !important; }
.discipline-item:hover { transform: translateX(6px); }

/* Lüks Diğer Bölgeler Masaüstü CSS Hizalama ve Tipografi Tasarımı */
.other-regions-box {
    padding: 3.5rem 3rem !important;
    background: rgba(255, 255, 255, 0.55) !important;
    border-radius: 32px !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: var(--shadow-sm) !important;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.other-regions-links {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.other-regions-links a {
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.25rem !important;
    background: rgba(255, 255, 255, 0.45) !important;
    color: var(--text-main) !important;
    text-decoration: none;
    border-radius: 16px !important;
    font-weight: 600;
    font-size: 0.98rem !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    border: 1px solid rgba(12, 20, 14, 0.02) !important;
}
.other-regions-links a:hover {
    background: linear-gradient(135deg, #97ca63 0%, #639a3d 100%) !important;
    color: #ffffff !important;
    transform: translateX(6px);
    box-shadow: 0 8px 20px rgba(99, 154, 61, 0.12) !important;
    border-color: transparent !important;
}

@media (max-width: 768px) {
    body { font-size: 0.80rem !important; }
    
    .other-regions-box { display: none !important; } 
    
    .breadcrumb { font-size: 0.75rem !important; padding: 0.4rem 1rem !important; gap: 0.4rem !important; max-width: 100% !important; box-sizing: border-box !important; }
    .breadcrumb a, .breadcrumb span { font-size: 0.75rem !important; }
    .breadcrumb i { font-size: 0.55rem !important; margin: 0 0.3rem !important; }
    
    .section-header p { font-size: 0.88rem !important; }
    
    .faq-header { font-size: 1.35rem !important; margin-bottom: 1.5rem !important; }
    .faq-item p { font-size: 0.85rem !important; }
    
    .hero-text h1 { font-size: 1.70rem !important; line-height: 1.25 !important; letter-spacing: -0.02em !important; }
    .hero-text p { font-size: 0.92rem !important; line-height: 1.60 !important; }
    
    .stat-box-btn { padding: 0.85rem 0.50rem !important; gap: 0.35rem !important; }
    .stat-box-btn h4, .stat-box-btn .stat-number { font-size: 1.35rem !important; }
    .stat-box-btn p { font-size: 0.60rem !important; letter-spacing: 0.01em !important; }

    h1, h2, .section-header h1, .section-header h2, .page-main-title { font-size: 1.22rem !important; line-height: 1.25 !important; }
    h2, h3, .corp-card h2, .corp-card h3 { font-size: 1.02rem !important; font-weight: 700 !important; }
    
    .burger-btn { display: block; }
    .nav-links { display: none; }
    .footer-container { grid-template-columns: 1fr !important; gap: 3rem; }
    
    .regions-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1.25rem !important; }
    .corporate-grid, .process-row { grid-template-columns: 1fr !important; margin-top: 2rem !important; }
    
    .index-cards-section .corporate-grid { gap: 2.5rem !important; }
    
    .split-content { display: flex !important; flex-direction: column !important; gap: 2rem !important; width: 100% !important; }
    .contact-interactive-link { padding: 1.25rem 1rem !important; gap: 1rem !important; width: 100% !important; box-sizing: border-box !important; }
    .contact-card-info-pane { min-width: 0 !important; flex: 1 !important; }
    .contact-card-info-pane p { word-break: break-word !important; font-size: 0.80rem !important; }
    
    .img-container { width: 100% !important; min-height: 280px !important; height: 320px !important; max-width: 100% !important; display: block !important; }
    .img-container iframe { width: 100% !important; height: 100% !important; border-radius: 24px !important; display: block !important; }
    
    .service-btn-row { display: flex !important; flex-direction: column !important; gap: 0.85rem !important; width: 100% !important; margin-top: 2rem !important; }
    .service-btn-row .btn { width: 100% !important; text-align: center !important; padding: 1rem 1.5rem !important; margin: 0 !important; font-size: 0.88rem !important; box-sizing: border-box !important; }
    
    .nav-container { padding: 0 1.5rem !important; }
    .fullscreen-container { padding-left: 0 !important; padding-right: 0 !important; width: 100% !important; max-width: 100vw !important; }
    .hero-fullscreen { max-width: 100% !important; padding: 0 !important; margin: 0 !important; }
    .hero-left-col { max-width: 100% !important; padding: 0 1.5rem !important; width: 100% !important; margin: 0 !important; }
    .hero-text { width: 100% !important; padding: 2rem 1.25rem !important; border-radius: 24px !important; margin: 0 !important; box-sizing: border-box !important; }
    
    .index-cards-section { padding: 4rem 1.5rem !important; width: 100% !important; max-width: 100% !important; margin: 0 !important; box-sizing: border-box !important; }
    .index-cards-section .corporate-grid { width: 100% !important; }
    .index-cards-section .corp-card { width: 100% !important; margin: 0 !important; padding: 2.25rem 1.25rem !important; border-radius: 24px !important; box-sizing: border-box !important; }
    
    /* Mobil Alt Menü Elemanları ve Tıklanabilir Yapı Optimizasyonu */
    .mobile-sub-menu a { 
        font-size: 1.05rem !important; 
        padding: 0.5rem 0 !important; 
        font-weight: 600 !important; 
        opacity: 0.9 !important; 
        display: block !important; 
        width: 100% !important; 
        text-align: center !important;
    }

    .glass-panel { padding: 2.5rem 1.5rem !important; border-radius: 32px !important; }
    .standard-container { padding: 140px 1.5rem 4rem 1.5rem !important; }
    .fluid-section-wrapper { padding: 2rem 1.5rem !important; }
    .service-page-hero-banner { width: calc(100% + 3rem) !important; margin: -2.5rem -1.5rem 2.5rem -1.5rem !important; }
    .top-bar { display: none !important; }
    .fullscreen-container { padding-top: 110px; }
    
    .about-logo-col { display: none !important; }
    
    .float-stack { bottom: 15px !important; right: 15px !important; }
    
    .cookie-banner-panel { bottom: 15px !important; right: 80px !important; width: calc(100% - 95px) !important; padding: 1.15rem 1.25rem !important; border-radius: 24px !important; }
    .cookie-banner-actions { display: flex !important; flex-direction: row !important; flex-wrap: nowrap !important; gap: 0.35rem !important; width: 100% !important; align-items: center !important; }
    .cookie-banner-btn { flex: 1 !important; padding: 0.75rem 0.15rem !important; font-size: 0.70rem !important; white-space: nowrap !important; letter-spacing: -0.01em; }
    
    .kvkk-modal-window { 
        padding: 1.5rem 1.25rem !important; 
        border-radius: 24px !important; 
        max-height: calc(100vh - 2rem) !important; 
        width: calc(100% - 2rem) !important; 
        margin: 1rem !important;
        box-sizing: border-box !important;
    }
    .kvkk-modal-window h1, .kvkk-modal-window h2, .kvkk-modal-window h3 { font-size: 1.10rem !important; margin-bottom: 0.75rem !important; padding-right: 2rem; }
    .kvkk-modal-window p { font-size: 0.78rem !important; margin-bottom: 1rem !important; }
    .kvkk-preferences-list { max-height: calc(100vh - 16rem) !important; overflow-y: auto !important; gap: 0.75rem !important; margin-bottom: 1.25rem !important; padding-right: 0.25rem !important; }
    .kvkk-pref-item { gap: 1rem !important; padding-bottom: 0.75rem !important; }
    .kvkk-pref-meta h1, .kvkk-pref-meta h2, .kvkk-pref-meta h3 { font-size: 0.88rem !important; }
    .kvkk-pref-meta p { font-size: 0.74rem !important; }
    .kvkk-modal-footer-actions { display: flex !important; flex-direction: column !important; gap: 0.5rem !important; }
    .kvkk-modal-footer-actions .btn { width: 100% !important; padding: 0.75rem 1.5rem !important; font-size: 0.82rem !important; text-align: center !important; margin: 0 !important; }
    
    .lightbox-arrow.left { left: 1rem !important; }
    .lightbox-arrow.right { right: 1rem !important; }
    
    .lightbox-close { top: 1.5rem !important; right: 1.5rem !important; width: 44px !important; height: 44px !important; font-size: 1rem !important; }
    .lightbox-content { max-width: 92vw !important; }
    .gallery-grid.active-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1.25rem !important; }
}
@media (max-width: 480px) {
    .regions-grid { grid-template-columns: 1fr !important; }
    .gallery-grid.active-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 640px) {
    body { padding-top: 0; }
    header { height: 80px; }
    header.scrolled { top: 10px; left: 10px; width: calc(100% - 20px); }
    .fullscreen-container { padding-top: 110px; }
    .hero-text h1 { font-size: 1.35rem; }
    .mobile-close-btn { top: 28px; right: 2.5rem; }
}