/*
Theme Name: KORENEL
Theme URI: https://korenel.com
Author: Korenel
Description: Korenel website custom theme - Optimized & Refactored
Version: 1.0.1
Requires at least: 5.3
Tested up to: 6.0
Requires PHP: 7.4
Bootstrap version: 5.3.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: korenel
*/

:root {
  --color-primary: #a02c2c;
  --color-primary-dark: #8a2525;
  --color-secondary: #6c757d;
  --color-success: #28a745;
  --color-danger: #dc3545;
  --color-warning: #ffc107;
  --color-info: #17a2b8;
  --color-light: #f8f9fa;
  --color-dark: #343a40;
  --color-white: #ffffff;
  --color-black: #000000;

  --text-primary: #333333;
  --text-secondary: #505056;
  --text-muted: #6c757d;
  --text-light: #ffffff;

  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-dark: #333333;
  --bg-darker: #222222;
  --bg-light: #f8f9fa;

  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;

  --font-xs: 0.75rem;
  --font-sm: 0.875rem;
  --font-base: 1rem;
  --font-lg: 1.125rem;
  --font-xl: 1.25rem;
  --font-2xl: 1.5rem;
  --font-3xl: 1.875rem;
  --font-4xl: 2.25rem;
  --font-5xl: 3rem;

  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-black: 900;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
  --z-toast: 9999;

  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1400px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Helvetica Neue", Arial, sans-serif !important;
  font-weight: var(--font-normal);
  font-size: var(--font-base);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none !important;
  transition: var(--transition-base);
}

a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

*:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

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

.transition-base {
  transition: var(--transition-base);
}
.transition-fast {
  transition: var(--transition-fast);
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Figür etiketi içindeki görseller için de ekleyebilirsiniz */
figure.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center; /* Figür başlığı varsa onu da ortalar */
}

/* ============================= */
/* NAVIGATION BAR (ORTAK)        */
/* ============================= */

.top-navigation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: all 0.3s ease-in-out;
}

.top-navigation.sticky {
  position: fixed;
  top: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  max-width: 1700px;
  margin: 0 auto;
}

/* Logo stilleri */
.logo {
  flex-shrink: 0;
}

.logo-container {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
}

.logo-main {
  display: flex;
  align-items: center;
  z-index: 2;
  position: relative;
}

.site-logo {
  height: 50px;
  width: auto;
}

.logo-secondary {
  position: absolute;
  left: 55px;
  top: 50%;
  transform: translateY(-50%);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
  white-space: nowrap;
}

.site-logo-secondary {
  height: 70px;
  width: auto;
  max-width: none;
  display: block;
}

.logo-container:hover .logo-secondary {
  clip-path: inset(0 0 0 0);
}

/* Menü toggle butonu */
.nav-menu-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: white;
  font-weight: 500;
  font-size: 16px;
  transition: opacity 0.3s ease;
}

.nav-menu-toggle:hover {
  opacity: 0.8;
}

/* Hamburger menü ikonu */
.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hamburger-icon .menu-bar {
  width: 22px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}

/* ============================= */
/* RESPONSIVE NAVIGATION (ORTAK) */
/* ============================= */

@media (max-width: 768px) {
  .nav-container {
    padding: 15px 4%;
  }

  .nav-menu-toggle {
    gap: 8px;
  }

  .hamburger-icon .menu-bar {
    width: 18px;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 12px 3%;
  }
}

/* ============================= */
/* HERO MOBILE MENU STYLES (ORTAK) */
/* ============================= */

/* Mobil menü offcanvas stilleri */
.hero-mobile-menu {
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-mobile-menu .offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
}

.hero-mobile-menu .mobile-logo-img {
  max-height: 40px;
  width: auto;
}

.hero-mobile-menu .mobile-site-title {
  color: white;
  font-size: 18px;
  font-weight: 600;
}

/* Mobil menü bölümleri */
.hero-mobile-main-menu,
.hero-mobile-language,
.hero-mobile-social,
.hero-mobile-contact {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-mobile-contact {
  border-bottom: none;
}

/* Mobil menü başlıkları */
.mobile-menu-title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

/* Ana menü stilleri */
.hero-mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-mobile-nav-item {
  margin-bottom: 0;
}

.hero-mobile-nav-link {
  display: block;
  padding: 12px 0;
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-mobile-nav-link:hover {
  color: #4a90e2;
  padding-left: 10px;
  text-decoration: none;
}

/* Dropdown menü stilleri */
.hero-mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-mobile-dropdown-toggle:hover {
  color: #4a90e2;
  text-decoration: none;
}

.hero-mobile-dropdown-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.hero-mobile-dropdown-menu.show {
  max-height: 300px;
}

.hero-mobile-dropdown-menu li {
  margin-left: 20px;
}

.hero-mobile-dropdown-menu a {
  display: block;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.hero-mobile-dropdown-menu a:hover {
  color: #4a90e2;
  text-decoration: none;
}

/* Dil seçici stilleri */
.hero-mobile-lang-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-mobile-lang-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-mobile-lang-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-mobile-lang-btn.active {
  background: rgba(74, 144, 226, 0.3);
  border-color: #4a90e2;
  color: #4a90e2;
}

/* Sosyal medya stilleri */
.hero-social-links {
  display: flex;
  gap: 15px;
}

.hero-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-social-link:hover {
  background: #4a90e2;
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

.hero-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.hero-contact-btn:hover {
  background: linear-gradient(135deg, #357abd 0%, #2968a3 100%);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

/* ==========================================================================
   UPDATED FULLSCREEN OVERLAY MENU STYLES - GÖRSEL UYUMLU VERSİYON
   ========================================================================== */

/* Tam Ekran Overlay Menü Container */
.fullscreen-overlay-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  pointer-events: none;
}

.fullscreen-overlay-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.7) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 1;
}

.fullscreen-overlay-menu.menu-active {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}

/* Menü İçerik Container */
.menu-content-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 0;
  transform: translateY(30px);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.fullscreen-overlay-menu.menu-active .menu-content-container {
  transform: translateY(0);
}

/* ==========================================================================
   MENU HEADER STYLES - GÖRSEL UYUMLU 2 BÖLÜM DÜZENİ
   ========================================================================== */

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  min-height: 70px;
  flex-shrink: 0;
}

.menu-header-left {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: nowrap;
  flex: 1;
}

.menu-logo-img {
  max-height: 50px;
  width: auto;
}

.menu-site-title {
  color: white;
  font-size: 20px;
  font-weight: 600;
}

.menu-logo {
  flex-shrink: 0;
  margin-right: 40px;
}

/* Header Sağ Bölüm - Sadece kapatma butonu */
.menu-header-right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 80px;
}

/* Arama Butonu */
.menu-search-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}

.menu-search-toggle:hover {
  color: white;
}

.menu-search-toggle svg {
  flex-shrink: 0;
}

.search-text {
  display: inline;
}

/* Dikey Çizgi */
.menu-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

/* Ana Navigasyon */
.menu-top-navigation {
  display: flex;
  align-items: center;
  gap: 25px;
}

.menu-top-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: all 0.3s ease;
  white-space: nowrap;
  padding: 5px 0;
}

.menu-top-link:hover {
  color: white;
  text-decoration: none;
}

/* Sosyal Medya */
.menu-header-social {
  display: flex;
  align-items: center;
  gap: 15px;
}

.menu-header-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.menu-header-social-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transform: translateY(-2px);
}

/* Dil Seçici Dropdown */
.menu-header-lang {
  position: relative;
}

.lang-dropdown {
  position: relative;
}

.lang-dropdown-toggle {
  background: transparent;
  border: none;
  color: white;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 60px;
  justify-content: center;
}

.lang-dropdown-toggle:hover {
  color: rgba(255, 255, 255, 0.8);
}

.dropdown-arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.lang-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  min-width: 80px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 99999;
  margin-top: 5px;
  backdrop-filter: blur(10px);
}

.lang-dropdown.active .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown-item {
  display: block;
  padding: 10px 15px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-dropdown-item:last-child {
  border-bottom: none;
}

.lang-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
}

/* Kapatma Butonu */
.menu-close-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  padding: 8px 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 400;
  white-space: nowrap;
  width: auto;
  height: auto;
}

.menu-close-btn:hover {
  color: white;
  transform: translateY(-1px);
}

.close-text {
  display: inline;
}

.menu-close-btn svg {
  transition: transform 0.3s ease;
}

.menu-close-btn:hover svg {
  transform: rotate(90deg);
}

/* ==========================================================================
   MENU MAIN CONTENT STYLES (EXISTING)
   ========================================================================== */

/* Ana Menü İçeriği */
.menu-main-content {
  display: flex;
  flex-direction: column;
  padding-top: 2vh;
  padding-bottom: 2vh;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

/* Menü Kategorileri Flexbox */
.menu-categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 60px;
  max-width: 1000px;
  margin: 0;
  margin-left: 100px;
  justify-content: flex-start;
  align-content: flex-start;
}

/* Menü Kategorisi */
.menu-category {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(33.333% - 40px);
  text-align: left;
}

.menu-category-empty {
  visibility: hidden;
}

.menu-category-title {
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 20px 0;
  padding-top: 8px;
  border-top: 2px solid rgba(255, 255, 255, 0.8);
  width: 100%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.menu-category-title a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding: 4px 0;
}

.menu-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-category-list li {
  margin-bottom: 0.3rem;
}

.menu-category-list a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.4;
  transition: all 0.3s ease;
  display: block;
  padding: 4px 0;
}

.menu-category-list a:hover {
  color: white;
  text-decoration: none;
}

/* Alt Kısım: Büyük Logo */
.menu-bottom-section {
  margin-top: auto;
  padding-top: 20px;
  flex-shrink: 0;
}

.menu-bottom-logo {
  text-align: center;
  margin-left: clamp(20px, 8vw, 100px);
  margin-top: clamp(10px, 2vh, 20px);
  position: relative;
  width: 100%;
  max-height: 25vh;
  overflow: hidden;
}

.menu-bottom-image {
  height: clamp(40px, 15vh, 150px);
  width: auto;
  display: block;
  transition: all 0.3s ease;
  max-width: 100%;
  object-fit: contain;
}

.menu-big-logo {
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
  letter-spacing: 8px;
  text-transform: uppercase;
}

/* Hamburger İkon Animasyonu - Devre Dışı */
.nav-menu-toggle.menu-open .hamburger-icon .menu-bar:first-child {
  /* Animasyon kaldırıldı */
}

.nav-menu-toggle.menu-open .hamburger-icon .menu-bar:last-child {
  /* Animasyon kaldırıldı */
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 1400px) {
  .menu-header-left {
    gap: 20px;
  }

  .menu-top-navigation {
    gap: 20px;
  }

  .menu-top-link {
    font-size: 14px;
  }

  .menu-bottom-image {
    height: 250px;
  }
}

@media (max-width: 1200px) {
  .menu-header-left {
    gap: 15px;
  }

  .menu-top-navigation {
    gap: 15px;
  }

  .menu-header-social {
    gap: 10px;
  }

  .menu-header-social-link {
    width: 35px;
    height: 35px;
  }

  .menu-categories-grid {
    gap: 25px 35px;
  }

  /* Keep 3 columns below 1201px - user's request */
  .menu-category {
    flex: 0 0 calc(33.333% - 23px);
  }

  .menu-category-list a {
    font-size: 0.8rem;
  }

  .menu-bottom-image {
    height: 180px;
  }
}

@media (max-width: 992px) {
  .menu-header {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 15px 4%;
    min-height: auto;
  }

  .menu-header-left {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    order: 1;
  }

  .menu-logo {
    margin-right: 20px;
  }

  .menu-header-right {
    justify-content: center;
    order: 2;
    margin-right: 0;
  }

  .menu-divider {
    display: none;
  }

  .menu-main-content {
    padding: 15px 4% 8px;
    flex: 1;
    overflow-y: auto;
    min-height: 0;
  }

  .menu-categories-grid {
    gap: 20px 15px;
  }

  .menu-category {
    flex: 0 0 calc(50% - 7.5px);
  }

  .menu-category-title {
    font-size: 0.8rem;
    margin-bottom: 15px;
  }

  .menu-category-list a {
    font-size: 0.75rem;
  }

  .menu-category-empty {
    display: none;
  }

  .menu-bottom-logo {
    margin-top: 15px;
    height: 80px;
    padding-top: 10px;
  }

  .menu-bottom-image {
    height: 60px;
  }
}

/* Hide logo on smaller height screens */

/* Tablet screens */
@media (max-width: 1024px) and (min-width: 769px) {
  .menu-bottom-logo {
    max-height: 20vh;
  }
}

@media (max-width: 768px) {
  .menu-header {
    padding: 12px 3%;
    gap: 12px;
  }

  .menu-header-left {
    gap: 10px;
  }

  .menu-logo {
    margin-right: 15px;
  }

  .menu-logo-img {
    max-height: 45px;
  }

  .menu-top-link {
    font-size: 13px;
  }

  .menu-header-social-link {
    width: 32px;
    height: 32px;
  }

  .menu-header-social-link svg {
    width: 16px;
    height: 16px;
  }

  .menu-main-content {
    padding: 12px 3% 8px;
    flex: 1;
    overflow-y: auto;
    min-height: 0;
  }

  .menu-categories-grid {
    gap: 15px;
  }

  .menu-category {
    flex: 0 0 100%;
  }

  .menu-category {
    text-align: left;
  }

  .menu-category-title {
    font-size: 0.75rem;
    margin-bottom: 10px;
  }

  .menu-category-list {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .menu-category-list li {
    margin-bottom: 8px;
  }

  .menu-category-list a {
    font-size: 0.7rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .menu-category-list a:hover {
    color: white;
    padding-left: 10px;
  }

  .menu-bottom-logo {
    margin-top: 10px;
    height: 60px;
  }

  .menu-bottom-image {
    height: 50px;
  }
}

@media (max-width: 576px) {
  .menu-header {
    padding: 10px 4%;
    gap: 12px;
  }

  .menu-header-left {
    gap: 10px;
  }

  .menu-close-btn svg {
    width: 22px;
    height: 22px;
  }

  /* Mobilde navigasyon linklerini grid düzenine çevir */
  .menu-top-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    order: 2;
  }

  .menu-top-link {
    justify-content: center;
    padding: 10px 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    text-align: center;
  }

  .menu-top-link:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .menu-header-social {
    order: 3;
    justify-content: center;
    width: 100%;
    gap: 15px;
  }

  .menu-header-lang {
    order: 4;
  }

  .menu-header-social-link {
    width: 30px;
    height: 30px;
  }

  .menu-main-content {
    padding: 12px 0 8px 4%;
    flex: 1;
    overflow-y: auto;
    min-height: 0;
  }

  .menu-category-title {
    font-size: 0.75rem;
    margin-bottom: 10px;
  }

  .menu-category-list li {
    margin-bottom: 5px;
  }

  .menu-category-list a {
    font-size: 0.75rem;
  }

  .menu-bottom-logo {
    margin-top: 12px;
    height: 50px;
    padding-top: 8px;
  }

  .menu-bottom-image {
    height: 40px;
  }
}

/* ==========================================================================
   MOBILE MENU STYLES - 769px AND BELOW
   ========================================================================== */

/* Show/Hide Desktop vs Mobile Menu */
.mobile-menu-content {
  display: none;
}

@media (max-width: 768px) {
  .desktop-menu-content {
    display: none;
  }

  .mobile-menu-content {
    display: flex;
    flex-direction: column;
    height: 100vh;
    max-height: 100vh;
    min-height: 100vh;
    overflow-y: auto;
  }
}

/* Mobile Menu Header */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.mobile-menu-logo-img {
  max-height: 50px;
  width: auto;
}

/* Mobile Language Selector in Header */
.mobile-menu-language-header {
  display: flex;
  align-items: center;
}

.mobile-menu-language-header .mobile-lang-dropdown {
  position: relative;
}

.mobile-menu-language-header .mobile-lang-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-language-header .mobile-lang-dropdown-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.mobile-menu-language-header .mobile-lang-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  min-width: 80px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  z-index: 10;
}

.mobile-menu-language-header
  .mobile-lang-dropdown.active
  .mobile-lang-dropdown-menu {
  max-height: 200px;
}

.mobile-menu-language-header .mobile-lang-dropdown-item {
  display: block;
  padding: 10px 15px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-language-header .mobile-lang-dropdown-item:last-child {
  border-bottom: none;
}

.mobile-menu-language-header .mobile-lang-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.mobile-menu-site-title {
  color: white;
  font-size: 18px;
  font-weight: 600;
}

.mobile-menu-close-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close-btn:hover {
  color: white;
  transform: rotate(90deg);
}

/* Mobile Menu Main Content */
.mobile-menu-main {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  min-height: 0;
}

.mobile-navigation {
  flex: 1 !important;
  display: block !important;
}

/* Mobile Menu Items */
.mobile-menu-item {
  width: 100% !important;
  margin-bottom: 0.5rem !important;
  box-sizing: border-box !important;
  padding: 0 !important;
  border: 0 !important;
  clear: both !important;
}

.mobile-menu-link,
.mobile-menu-toggle {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  padding: 18px 1rem !important;
  color: white !important;
  text-decoration: none !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: none !important;
  border-radius: 8px !important;
  width: 100% !important;
  text-align: left !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
  margin: 0 !important;
}

.mobile-menu-link:hover,
.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  text-decoration: none !important;
}

.mobile-menu-toggle svg {
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.mobile-menu-toggle.active svg {
  transform: rotate(180deg);
}

/* Mobile Submenu */
.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  margin: 0;
  padding: 0 20px;
}

.mobile-submenu.active {
  max-height: 500px;
  margin-top: 0.5rem;
}

.mobile-submenu-main-link,
.mobile-submenu-link {
  display: block;
  padding: 12px 0 12px 20px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-submenu-main-link {
  font-weight: 600;
  color: white;
}

.mobile-submenu-link:hover,
.mobile-submenu-main-link:hover {
  color: white;
  padding-left: 30px;
  text-decoration: none;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
  margin-top: auto;
  padding-top: 20px;
  padding-bottom: env(safe-area-inset-bottom, 1rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* Mobile Language Selector */
.mobile-menu-language {
  margin-bottom: 30px;
}

.mobile-lang-dropdown {
  position: relative;
}

.mobile-lang-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
  background: transparent;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-lang-dropdown-toggle:hover {
  color: rgba(255, 255, 255, 0.8);
  padding-left: 10px;
}

.mobile-lang-dropdown-toggle svg {
  transition: transform 0.3s ease;
}

.mobile-lang-dropdown.active .mobile-lang-dropdown-toggle svg {
  transform: rotate(180deg);
}

.mobile-lang-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  margin: 0 -20px;
  padding: 0 20px;
}

.mobile-lang-dropdown.active .mobile-lang-dropdown-menu {
  max-height: 150px;
}

.mobile-lang-dropdown-item {
  display: block;
  padding: 12px 0 12px 20px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-lang-dropdown-item:hover {
  color: white;
  padding-left: 30px;
  text-decoration: none;
}

/* Mobile Social Links */
.mobile-menu-social {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.mobile-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-social-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transform: translateY(-2px);
}

/* ==========================================================================
   SEARCH PAGE STYLES
   ========================================================================== */
.search-page {
  min-height: 100vh;
}

.search-main-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.search-count {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-top: 15px;
  font-weight: 300;
}

.search-query {
  color: #ffd700;
  font-weight: 600;
}

/* Search Form Container */
.search-form-container {
  margin-bottom: 60px;
}

.search-form-title {
  color: #2c3e50;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.search-form-wrapper .subtitle-underline {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.search-form-wrapper .long-line {
  width: 60px;
  height: 3px;
  background: var(--color-primary);
}

.search-form-wrapper .short-line {
  width: 20px;
  height: 3px;
  background: #34495e;
  margin-left: 10px;
}

/* Search Results */
.search-results-header {
  text-align: center;
  margin-bottom: 50px;
}

.search-results-title {
  color: #2c3e50;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.search-results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

.search-result-item {
  margin: 0;
}

.search-result-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.search-result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--color-primary);
}

.result-header {
  margin-bottom: 20px;
}

.result-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.result-type,
.result-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #6c757d;
  font-weight: 500;
}

.result-type i,
.result-date i {
  color: var(--color-primary);
  font-size: 0.8rem;
}

.result-content {
  flex: 1;
  margin-bottom: 25px;
}

.result-title {
  margin-bottom: 15px;
}

.result-title a {
  color: #2c3e50;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.result-title a:hover {
  color: var(--color-primary);
}

.result-excerpt {
  color: #6c757d;
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

.result-footer {
  margin-top: auto;
}

.result-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(
    45deg,
    var(--color-primary),
    var(--color-primary-dark)
  );
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
}

.result-btn:hover {
  background: linear-gradient(45deg, var(--color-primary-dark), #6b1d1d);
  transform: translateX(5px);
  color: white;
}

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

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

/* Search Pagination */
.search-pagination {
  text-align: center;
  margin-top: 50px;
}

.search-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.search-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  height: 45px;
  padding: 0 15px;
  background: white;
  color: #2c3e50;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.search-pagination .page-numbers:hover,
.search-pagination .page-numbers.current {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.search-pagination .page-numbers.prev,
.search-pagination .page-numbers.next {
  padding: 0 20px;
  gap: 8px;
}

/* No Results */
.no-results {
  text-align: center;
  padding: 80px 20px;
}

.no-results-content {
  max-width: 600px;
  margin: 0 auto;
}

.no-results-icon {
  font-size: 4rem;
  color: var(--color-primary);
  margin-bottom: 30px;
}

.no-results-title {
  color: #2c3e50;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.no-results-desc {
  color: #6c757d;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.search-suggestions {
  background: white;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
}

.suggestions-title {
  color: #2c3e50;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.suggestions-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #6c757d;
  font-size: 1rem;
}

.suggestion-item i {
  color: #27ae60;
  font-size: 0.9rem;
}

.alternative-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.action-btn.primary {
  background: linear-gradient(
    45deg,
    var(--color-primary),
    var(--color-primary-dark)
  );
  color: white;
}

.action-btn.primary:hover {
  background: linear-gradient(45deg, var(--color-primary-dark), #6b1d1d);
  transform: translateY(-2px);
  color: white;
}

.action-btn.secondary {
  background: white;
  color: #2c3e50;
  border-color: #e9ecef;
}

.action-btn.secondary:hover {
  background: #2c3e50;
  color: white;
  border-color: #2c3e50;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .search-main-section {
    padding: 60px 0;
  }

  .search-form-wrapper {
    padding: 30px 20px;
  }

  .search-form-title {
    font-size: 1.5rem;
  }

  .search-results-title {
    font-size: 1.7rem;
  }

  .search-result-card {
    padding: 25px 20px;
  }

  .result-title a {
    font-size: 1.2rem;
  }

  .result-meta {
    gap: 15px;
  }

  .alternative-actions {
    flex-direction: column;
    align-items: center;
  }

  .action-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .no-results-icon {
    font-size: 3rem;
  }

  .no-results-title {
    font-size: 1.8rem;
  }

  .search-pagination .nav-links {
    gap: 5px;
  }

  .search-pagination .page-numbers {
    min-width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .search-form-wrapper {
    padding: 25px 15px;
  }

  .search-result-card {
    padding: 20px 15px;
  }

  .result-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .suggestions-list {
    gap: 12px;
  }

  .search-count {
    font-size: 1rem;
  }
}

/* ==========================================================================
   SEARCH OVERLAY STYLES - MINIMAL VERSION
   ========================================================================== */

/* Arama Overlay */
.search-overlay-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}

.search-overlay-header {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 20px 30px;
}

.search-overlay-close {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-overlay-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.search-overlay-modal.search-active {
  visibility: visible;
  opacity: 1;
}

/* Arama Formu */
.search-overlay-form {
  width: 100%;
  max-width: 600px;
  padding: 0 20px;
  margin-top: 50px;
  transform: translateY(-30px);
  transition: transform 0.4s ease;
}

.search-overlay-modal.search-active .search-overlay-form {
  transform: translateY(0);
}

.search-input-container {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  max-width: 500px;
  margin: 0 auto;
}

.search-input-container:focus-within {
  background: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.search-overlay-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  color: #2d3436;
  outline: none;
}

.search-overlay-input::placeholder {
  color: #636e72;
}

.search-overlay-submit {
  background: var(--color-primary);
  border: none;
  color: white;
  padding: 20px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.search-overlay-submit:hover {
  background: var(--color-primary-dark);
}

/* Responsive */
@media (max-width: 768px) {
  .search-overlay-modal {
    padding: 80px 15px 15px;
  }

  .search-overlay-input {
    padding: 10px 15px;
    font-size: 16px;
  }

  .search-overlay-submit {
    padding: 10px 15px;
  }

  .search-overlay-submit svg {
    width: 16px;
    height: 16px;
  }

  .mobile-menu-language-header .mobile-lang-dropdown-menu {
    border: none;
  }
}

@media (max-width: 480px) {
  .search-overlay-modal {
    padding: 60px 10px 10px;
  }

  .search-overlay-input {
    padding: 8px 12px;
    font-size: 15px;
  }

  .search-overlay-submit {
    padding: 8px 12px;
  }

  .search-input-container {
    max-width: 400px;
  }
}

@media (max-width: 576px) {
  .search-text {
    display: none;
  }

  .menu-search-toggle {
    padding: 8px 0;
  }

  .close-text {
    display: none;
  }

  .menu-logo {
    margin-right: 15px;
  }

  .menu-logo-img {
    max-height: 40px;
  }
}

/* ==========================================================================
   PERFORMANCE & ACCESSIBILITY
   ========================================================================== */

/* Scroll Bar Özelleştirme */
.menu-main-content::-webkit-scrollbar {
  width: 6px;
}

.menu-main-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

.menu-main-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.menu-main-content::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* Performans Optimizasyonu */
.fullscreen-overlay-menu {
  will-change: opacity, visibility;
}

.menu-bg-image {
  will-change: transform;
}

.menu-header-right {
  will-change: transform;
}

.menu-search-form,
.menu-top-link,
.menu-header-social-link,
.lang-dropdown-toggle,
.menu-close-btn {
  will-change: transform, background-color;
}

/* Focus states for accessibility */
.menu-search-input:focus,
.menu-search-button:focus,
.menu-top-link:focus,
.menu-header-social-link:focus,
.lang-dropdown-toggle:focus,
.lang-dropdown-item:focus,
.menu-close-btn:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

/* Dark mode ve high contrast desteği */
@media (prefers-contrast: high) {
  .menu-header {
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .menu-search-form,
  .menu-header-social-link,
  .lang-dropdown-toggle,
  .menu-close-btn {
    border-width: 2px;
  }

  .menu-divider {
    background: rgba(255, 255, 255, 0.5);
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu-search-form,
  .menu-top-link,
  .menu-header-social-link,
  .lang-dropdown-toggle,
  .lang-dropdown-menu,
  .menu-close-btn,
  .menu-close-btn svg {
    transition: none;
  }
}

/* ==========================================================================
   NOTIFICATION STYLES (COOKIE & POPUP)
   ========================================================================== */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.85));
  color: var(--color-white);
  padding: var(--spacing-md);
  z-index: var(--z-toast);
  transform: translateY(100%);
  animation: slideUp 0.5s ease forwards;
  backdrop-filter: blur(10px);
}

.cookie-notice-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-xl);
  padding: var(--spacing-sm);
}

.cookie-notice p {
  margin: 0;
  font-size: var(--font-sm);
  line-height: 1.5;
  flex: 1;
}

.cookie-notice-accept {
  white-space: nowrap;
  padding: var(--spacing-sm) var(--spacing-lg);
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  font-weight: var(--font-medium);
  cursor: pointer;
  transition: var(--transition-base);
  flex-shrink: 0;
}

.cookie-notice-accept:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.site-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal);
  opacity: 0;
  animation: fadeIn 0.3s ease forwards;
  backdrop-filter: blur(5px);
}

.popup-content {
  background: var(--color-white);
  box-shadow: var(--shadow-xl);
  max-width: 500px;
  width: 90%;
  position: relative;
  transform: translateY(20px);
  animation: slideUpPopup 0.3s ease forwards;
  overflow: hidden;
}

.popup-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  background: var(--color-dark);
  color: var(--color-white);
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
  z-index: 1;
}

.popup-close:hover {
  background: var(--color-danger);
  transform: rotate(90deg);
  box-shadow: var(--shadow-md);
}

.popup-image {
  overflow: hidden;
}

.popup-image img {
  width: 100%;
  height: auto;
  display: block;
}

.popup-title {
  padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-sm);
  margin: 0;
  font-size: var(--font-2xl);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
}

.popup-body {
  padding: var(--spacing-sm) var(--spacing-lg) var(--spacing-md);
  font-size: var(--font-sm);
  line-height: 1.5;
  color: var(--text-secondary);
}

.popup-actions {
  padding: 0 var(--spacing-lg) var(--spacing-lg);
  text-align: center;
}

.popup-button {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-lg);
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  font-weight: var(--font-medium);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-base);
  font-size: var(--font-sm);
}

.popup-button:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
  color: var(--color-white);
  text-decoration: none;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (min-width: 1400px) {
  :root {
    --font-base: 1.125rem;
  }

  .custom-logo {
    max-height: 70px;
  }
}

@media (min-width: 1200px) {
  .custom-logo {
    max-height: 60px;
  }

  .header-social {
    gap: var(--spacing-lg);
  }
}

@media (max-width: 992px) {
  .header-social {
    padding-left: var(--spacing-md);
    gap: 12px;
  }

  .header-social__link {
    --size: 36px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-lg: 1rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 2.5rem;
  }

  .navbar {
    padding: var(--spacing-sm) 0;
  }

  .custom-logo {
    max-height: 40px;
  }

  .site-title {
    font-size: var(--font-xl);
  }

  .header-social {
    display: none;
  }

  .cookie-notice-content {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-md);
  }

  .popup-content {
    width: 95%;
    margin: var(--spacing-md);
  }

  .popup-title {
    font-size: var(--font-xl);
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-sm);
  }

  .popup-body {
    padding: var(--spacing-sm) var(--spacing-md) var(--spacing-md);
  }

  .popup-actions {
    padding: 0 var(--spacing-md) var(--spacing-md);
  }

  .popup-button {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: var(--font-sm);
  }

  .site-footer {
    text-align: center;
    padding: var(--spacing-xl) 0 0;
  }

  .site-footer .row > div {
    margin-bottom: var(--spacing-xl);
  }

  .footer-logo {
    text-align: center;
  }

  .contact-info {
    text-align: left;
    display: inline-block;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-bottom .row {
    text-align: center;
  }

  .footer-bottom .col-md-4 {
    margin-bottom: var(--spacing-md);
  }

  .footer-bottom .footer-links a {
    margin: 0 var(--spacing-sm);
  }
}

@media (max-width: 576px) {
  :root {
    --spacing-md: 0.75rem;
    --spacing-lg: 1rem;
    --spacing-xl: 1.5rem;
    --spacing-xxl: 2rem;
  }

  .custom-logo {
    max-height: 35px;
  }

  .site-title {
    font-size: var(--font-lg);
  }

  .mobile-social__links {
    justify-content: center;
  }

  .social-icons li a {
    --size: 36px;
    font-size: 16px;
  }

  .contact-info li {
    margin-bottom: var(--spacing-sm);
  }

  .site-footer h3 {
    font-size: var(--font-base);
  }

  .footer-bottom {
    padding: var(--spacing-md) 0;
  }

  .footer-bottom .footer-links {
    margin-top: var(--spacing-sm);
  }

  .footer-bottom .footer-links a {
    display: block;
    margin: var(--spacing-xs) 0;
  }
}

@media print {
  .navbar,
  .cookie-notice,
  .site-popup,
  .mobile-social,
  .header-social {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .site-footer {
    background: white !important;
    color: black !important;
  }
}

/* ==========================================================================
   SEARCH RESULTS STYLES
   ========================================================================== */
.search-results-page {
  padding: var(--spacing-xxl) 0;
  min-height: 70vh;
}

.search-header {
  margin-bottom: var(--spacing-xl);
  text-align: center;
}

.search-title {
  font-size: var(--font-3xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.search-query {
  color: var(--color-primary);
  font-style: italic;
}

.search-count {
  font-size: var(--font-base);
  color: var(--text-muted);
  margin-bottom: var(--spacing-lg);
}

.search-form-container {
  margin-bottom: var(--spacing-xxl);
  text-align: center;
}

.search-form-container .search-form {
  max-width: 500px;
  margin: 0 auto;
}

.search-results {
  margin-bottom: var(--spacing-xl);
}

.search-result-item {
  background: var(--bg-secondary);
  margin-bottom: var(--spacing-xl);
  transition: var(--transition-base);
  border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
}

.search-result-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.result-title {
  margin-bottom: var(--spacing-md);
}

.result-title a {
  font-size: var(--font-xl);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition-base);
  line-height: 1.3;
}

.result-title a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.result-meta {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  font-size: var(--font-sm);
  color: var(--text-muted);
}

.result-type {
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--spacing-xs) var(--spacing-sm);
  font-weight: var(--font-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: var(--font-xs);
}

.result-date::before {
  content: "•";
  margin-right: var(--spacing-xs);
}

.result-excerpt {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.result-link {
  color: var(--color-primary);
  font-weight: var(--font-medium);
  text-decoration: none;
  transition: var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.result-link:hover {
  color: var(--color-primary-dark);
  transform: translateX(3px);
}

.no-results {
  text-align: center;
  padding: var(--spacing-xxl) var(--spacing-lg);
  background: var(--bg-secondary);
  margin-top: var(--spacing-xl);
}

.no-results-content h3 {
  font-size: var(--font-2xl);
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

.no-results-content p {
  font-size: var(--font-lg);
  color: var(--text-secondary);
  margin-bottom: var(--spacing-xl);
}

.search-suggestions {
  margin-bottom: var(--spacing-xl);
  text-align: left;
  display: inline-block;
}

.search-suggestions h4 {
  font-size: var(--font-lg);
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-semibold);
}

.search-suggestions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.search-suggestions li {
  padding: var(--spacing-xs) 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: var(--spacing-lg);
}

.search-suggestions li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--font-bold);
}

.alternative-actions {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-xl);
  text-decoration: none !important;
  font-weight: var(--font-medium);
  text-align: center;
  transition: var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  font-size: var(--font-base);
  line-height: 1;
}

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

.btn-outline-primary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

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

.btn-outline-secondary:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.search-pagination {
  margin-top: var(--spacing-xxl);
  text-align: center;
}

.search-pagination .page-numbers {
  display: inline-flex;
  padding: var(--spacing-sm) var(--spacing-md);
  margin: 0 var(--spacing-xs);
  background: var(--bg-secondary);
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition-base);
  border: 1px solid var(--color-light);
  font-weight: var(--font-medium);
}

.search-pagination .page-numbers:hover,
.search-pagination .page-numbers.current {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.search-pagination .page-numbers.dots {
  background: transparent;
  border: none;
  cursor: default;
}

.search-pagination .page-numbers.dots:hover {
  background: transparent;
  transform: none;
  box-shadow: none;
}

.error-404-page {
  padding: 60px 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.error-code h1 {
  font-size: 8rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
  line-height: 1;
}

.error-message h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.error-message p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.error-actions {
  margin-bottom: 2rem;
}

.error-actions .btn {
  margin: 0 0.5rem 1rem 0.5rem;
  padding: 0.75rem 2rem;
}

@media (max-width: 768px) {
  .search-title {
    font-size: var(--font-2xl);
  }

  .search-result-item {
    padding: var(--spacing-lg);
  }

  .result-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-sm);
  }

  .result-date::before {
    display: none;
  }

  .alternative-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .error-code h1 {
    font-size: 5rem;
  }

  .error-message h2 {
    font-size: 1.5rem;
  }

  .error-actions .btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
  }

  .search-pagination .page-numbers {
    margin: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: var(--font-sm);
  }
}

@media (prefers-contrast: high) {
  :root {
    --color-primary: #0066cc;
    --bg-secondary: #f0f0f0;
  }

  .header-social__link,
  .mobile-social__link {
    border: 2px solid currentColor;
  }

  .search-result-item {
    border-width: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================= */
/* COMPANY INTRODUCTION SECTION  */
/* ============================= */

.company-introduction-section {
  padding: 80px 0;
  position: relative;
}

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

.intro-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.intro-main-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.intro-main-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2d3436;
  line-height: 1.2;
  margin: 0;
}

.intro-cta-button {
  background: #d63031;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.intro-cta-button:hover {
  background: #b71c1c;
  color: white;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(214, 48, 49, 0.4);
}

.intro-cta-button i {
  position: relative;
  top: 1.5px;
  transition: transform 0.3s ease;
}

.intro-cta-button:hover i {
  transform: translateX(5px);
}

.intro-description-content {
  display: flex;
  align-items: center;
}

.intro-description-text {
  font-size: 1.2rem;
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}

/* Desktop'ta mobile buton gizle */
.mobile-button {
  display: none !important;
}

/* UNDERLINE */

.title-underline {
  margin-bottom: 2.5rem;
  position: relative;
}

.title-underline .long-line {
  width: 100%;
  height: 2px;
  background-color: #e9ecef;
  position: relative;
}

.title-underline .short-line {
  width: 60px;
  height: 4px;
  background-color: var(--color-primary);
  position: absolute;
  top: -1px;
  left: 0;
}

.subtitle-underline {
  margin-bottom: 2rem;
  position: relative;
}

.subtitle-underline .long-line {
  width: 100%;
  height: 2px;
  background-color: #e9ecef;
  position: relative;
}

.subtitle-underline .short-line {
  width: 50px;
  height: 3px;
  background-color: var(--color-primary);
  position: absolute;
  top: -0.5px;
  left: 0;
}

@media (max-width: 992px) {
  .title-underline .short-line {
    width: 50px;
    height: 3px;
  }

  .subtitle-underline .short-line {
    width: 40px;
  }
}
/* ============================= */
/* EXPERTISE SECTION              */
/* ============================= */

.expertise-section {
  background: #ffffff;
  padding: 80px 0;
}

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

.expertise-image {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
}

.expertise-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expertise-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 60px 40px 40px;
}

.expertise-content {
  color: white;
  max-width: 500px;
}

.expertise-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: white;
}

.expertise-description {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 20px 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.expertise-link {
  display: inline-block;
  padding: 10px 0;
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  border-bottom: 2px solid #b71c1c;
  position: relative;
  overflow: hidden;
}

.expertise-link:hover {
  text-decoration: none;
  color: white;
  border-bottom: 2px solid white;
}

/* ============================= */
/* SERVICES SECTION               */
/* ============================= */

.services-section {
  background: #ffffff;
  padding: 50px 0 50px 0;
  position: relative;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* Service Item Container */
.service-image-container {
  position: relative;
  width: 100%;
}

.service-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

/* Desktop Content - varsayılan olarak görünür */
.service-desktop-content {
  display: block;
}

/* Mobile Overlay - varsayılan olarak gizli */
.service-mobile-overlay {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 20px;
  text-align: center;
}

.service-mobile-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  color: white;
}

.service-mobile-link {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  padding: 8px 16px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.service-mobile-link:hover {
  background: white;
  color: #333;
  text-decoration: none;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 20px 0;
  color: #2d3436;
}

.service-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 15px;
  background: #b71c1c;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  border: 2px solid #b71c1c;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.service-link:hover {
  background: #a91a1a;
  text-decoration: none;
  color: white;
  box-shadow: 0 4px 12px rgba(183, 28, 28, 0.3);
  border-color: #a91a1a;
}

.service-link i {
  position: relative;
  top: 1.5px;
  font-size: 1em;
  transition: none;
  animation: none;
}

.service-link:hover i {
  animation: iconSlideOut 0.6s ease-in-out;
}

@keyframes iconSlideOut {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(20px);
    opacity: 0;
  }
  51% {
    transform: translateX(-20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ============================= */
/* TECHNOLOGY SECTION             */
/* ============================= */

.technology-section {
  background: #ffffff;
  padding: 0;
}

.technology-container {
  width: 100%;
  max-width: none;
}

.technology-top,
.technology-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 600px;
}

.technology-left,
.technology-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px;
  background: #e7eef1;
}

.technology-left img,
.technology-right img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.technology-top .technology-left,
.technology-bottom .technology-right {
  padding: 0;
  background: transparent;
}

.technology-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 25px 0;
  color: #2d3436;
  line-height: 1.2;
}

.technology-description {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 30px 0;
  color: #636e72;
  text-align: justify;
}

/* ============================= */
/* SUSTAINABILITY SECTION         */
/* ============================= */

.sustainability-section {
  background: #ffffff;
  padding: 100px 0;
}

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

.sustainability-main-title {
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0 0 40px 0;
  color: #2d3436;
}

.sustainability-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

/* Sol Kart: Çevre Politikamız */
.sustainability-environment-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.sustainability-environment-text {
  background-color: #7fb8c9;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
}

.sustainability-environment-text .sustainability-card-title {
  color: white;
  font-size: 1.6rem;
}

.sustainability-environment-text .sustainability-card-description {
  color: white;
  font-size: 1rem;
  line-height: 1.7;
  flex-grow: 1;
}

.sustainability-environment-text .sustainability-card-link {
  color: white;
  text-decoration: none;
}

.sustainability-environment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Sağ Kartlar */
.sustainability-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: space-between;
}

.sustainability-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  flex: 1;
}

.sustainability-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.sustainability-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  color: #2d3436;
}

.sustainability-card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 20px 0;
  color: #636e72;
  flex-grow: 1;
}

/* Genel Link Stilleri */
.sustainability-card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  width: 100%;
  transition: all 0.3s ease;
  align-self: flex-start;
  color: #2d3436;
}

.sustainability-card-link:hover {
  text-decoration: none;
  color: #000;
}

/* Ok Kutusu */
.arrow-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.sustainability-card-link:hover .arrow-box {
  background-color: #2d3436;
  color: white;
  border-color: #2d3436;
}

/* ============================= */
/* CAREER SECTION                 */
/* ============================= */

.career-section {
  background-color: #f0f2f5;
  padding: 100px 0;
}

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

.career-main-title {
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0 0 40px 0;
  color: #2d3436;
}

.career-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: stretch;
}

.career-image-column {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.career-image-column img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.career-content-column {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly !important;
}

.career-bottom-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.career-block-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: #2d3436;
}

.career-block-description {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 20px 0;
  color: #636e72;
}

.career-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-primary);
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.career-button:hover {
  background: var(--color-primary-dark);
  color: white;
  text-decoration: none;
  padding-right: 30px;
}

.career-button .arrow-icon {
  transition: transform 0.3s ease;
}

.career-button:hover .arrow-icon {
  transform: translateX(5px);
}

/* ============================= */
/* INVESTOR RELATIONS SECTION (REVISED) */
/* ============================= */

.investor-relations-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.investor-relations-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.investor-relations-main-title {
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0 0 60px 0;
  color: #2d3436;
  text-align: left;
}

.investor-relations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
}

.investor-card {
  display: flex;
  flex-direction: column;
  padding: 20px 40px;
  border-right: 1px solid #e0e0e0;
}

.investor-card .service-link {
  margin-top: auto;
  align-self: center;
}

.investor-card:last-child {
  border-right: none;
}

.investor-card-icon {
  margin: 0 auto 25px auto;
}

.investor-card-icon img {
  height: 100px;
  width: auto;
  margin: 0 auto;
}

.investor-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: #2d3436;
}

.investor-card-description {
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 auto 30px auto;
  color: #636e72;
  max-width: 350px;
}

/* Responsive Design - Ana Sayfaya Özel Bölümler */
@media (max-width: 992px) {
  .mobile-button {
    display: none !important;
  }
  .sustainability-content {
    grid-template-columns: 1fr;
  }
  .sustainability-environment-card {
    grid-template-columns: 1fr;
  }
  .sustainability-environment-image {
    max-height: 300px;
  }
  .career-grid {
    grid-template-columns: 1fr;
  }
  .career-image-column {
    margin-bottom: 30px;
  }

  .career-image-column img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  /* Investor Relations Responsive */
  .investor-relations-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .investor-card {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 40px 20px;
  }
  .investor-card:last-child {
    border-bottom: none;
  }
  .investor-relations-main-title {
    text-align: center;
  }
}

@media (max-width: 768px) {
  /* Company Introduction */
  .intro-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .intro-main-content {
    order: 1;
    text-align: left;
  }

  .intro-main-title {
    font-size: 2rem;
    text-align: start;
    margin-bottom: 0;
  }

  /* Desktop buton gizle */
  .desktop-button {
    display: none;
  }

  /* Mobile buton göster */
  .mobile-button {
    display: inline-flex;
    margin-top: 20px;
  }

  .intro-description-content {
    order: 2;
    text-align: left;
    flex-direction: column;
    align-items: start;
  }

  .company-introduction-section {
    padding: 60px 0;
  }

  .intro-description-text {
    text-align: left;
  }

  .intro-container {
    padding: 0 15px;
  }

  /* Expertise Section Responsive */
  .expertise-section {
    padding: 60px 0;
  }

  .expertise-container {
    padding: 0 15px;
  }

  .expertise-image {
    height: 500px;
  }

  .expertise-overlay {
    padding: 40px 20px 25px;
  }

  .expertise-title {
    font-size: 1.5rem;
  }

  .expertise-description {
    font-size: 0.9rem;
  }

  /* Services Section Responsive */
  .services-section {
    padding: 0 0 60px 0;
  }

  .services-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 15px;
  }

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

  .service-item img {
    height: 250px;
    object-fit: cover;
    margin-bottom: 0;
  }

  /* Desktop content gizle */
  .service-desktop-content {
    display: none;
  }

  /* Mobile overlay göster */
  .service-mobile-overlay {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    min-height: 120px;
  }

  .service-mobile-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .service-mobile-link {
    font-size: 0.85rem;
    padding: 6px 12px;
  }

  /* Technology Section Responsive */
  .technology-section {
    padding: 60px 0;
  }

  .technology-container {
    padding: 0 15px;
  }

  .technology-top,
  .technology-bottom {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    height: auto;
  }

  .technology-left,
  .technology-right {
    flex: 1;
    width: 100%;
    padding: 30px 20px;
  }

  /* Mobilde görseller her zaman önce gelsin */
  .technology-top .technology-left,
  .technology-bottom .technology-right {
    order: 1;
    padding: 0;
  }

  /* Mobilde içerik her zaman sonra gelsin */
  .technology-top .technology-right,
  .technology-bottom .technology-left {
    order: 2;
    text-align: left;
  }

  .technology-left img,
  .technology-right img {
    height: 300px;
    width: 100%;
    object-fit: cover;
  }

  .technology-title {
    font-size: 1.5rem;
    text-align: left;
  }

  .technology-description {
    font-size: 0.95rem;
    text-align: left;
  }

  /* Sustainability Section Responsive */
  .sustainability-section {
    padding: 60px 0;
  }

  .sustainability-container {
    padding: 0 15px;
  }

  .sustainability-main-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .sustainability-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .sustainability-environment-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .sustainability-environment-text {
    order: 2;
  }

  .sustainability-environment-image {
    order: 1;
  }

  .sustainability-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .sustainability-card {
    padding: 25px 20px;
  }

  .sustainability-card-title {
    font-size: 1.2rem;
  }

  /* Career Section Responsive */
  .career-section {
    padding: 60px 0;
  }

  .career-container {
    padding: 0 15px;
  }

  .career-main-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .career-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .career-image-column {
    order: 1;
  }

  .career-content-column {
    order: 2;
  }

  .career-image-column img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
  }

  .career-block-title {
    font-size: 1.3rem;
  }

  .career-bottom-blocks {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  /* Services Cards */
  .services-cards-section {
    padding: 60px 0;
  }

  .services-cards-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-card-image {
    height: 200px;
  }

  .service-card-info {
    padding: 20px 25px 25px;
  }

  .service-card-info-title {
    font-size: 1.3rem;
  }

  /* Investor Relations Responsive */
  .investor-relations-section {
    padding: 60px 0;
  }

  .investor-relations-container {
    padding: 0 15px;
  }

  .investor-relations-main-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .investor-relations-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .investor-card {
    padding: 25px 20px;
    text-align: center;
  }

  .investor-card-title {
    font-size: 1.2rem;
  }

  .investor-card-icon {
    margin-bottom: 15px;
  }

  .investor-card-icon img {
    width: 40px;
    height: 40px;
  }
}

/* ============================= */
/* COMMON PAGE HERO STYLES */
/* ============================= */

/* Ortak Hero Section - Ana sayfa dışındaki tüm sayfalar için */
.page-hero-section {
  position: relative;
  height: 30vh;
  min-height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
}

.page-hero-title {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  font-weight: 600;
  color: white;
  margin: 0;
  line-height: 1.2;
}

.page-breadcrumb {
  margin-top: 20px;
}

.breadcrumb-links {
  font-size: 0.9rem;
  color: #fff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb-links a {
  color: #fff !important;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
}

.breadcrumb-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.breadcrumb-home-icon {
  font-size: 1rem;
}

.breadcrumb-separator {
  margin: 0 10px;
  opacity: 0.7;
}

.breadcrumb-current {
  font-weight: 500;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .page-breadcrumb {
    margin-top: 15px;
  }

  .breadcrumb-links {
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 5px;
  }

  .breadcrumb-separator {
    margin: 0 5px;
  }
}

/* ============================= */
/* INVESTOR RELATIONS PAGE STYLES */
/* ============================= */

/* Main Section */
.investor-main-section {
  padding: 80px 0;
  background: #ffffff;
}

.investor-intro-text {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.investor-intro-text h2,
.investor-intro-text h3 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.investor-intro-text p {
  margin-bottom: 1.5rem;
}

/* Section Cards Grid - Image Based */
.investor-sections-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 60px;
  justify-content: center;
}

.investor-section-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  height: 400px;
  width: 280px;
  flex-shrink: 0;
}

.investor-section-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.investor-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.investor-card-link:hover {
  text-decoration: none;
  color: inherit;
}

.investor-card-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  filter: brightness(0.6) grayscale(100%);
  transition: all 0.4s ease;
}

.investor-section-card:hover .investor-card-image {
  filter: brightness(1) grayscale(0%);
}

.investor-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.3) 60%,
    rgba(0, 0, 0, 0.7) 100%
  );
  transition: all 0.4s ease;
}

.investor-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: white;
  z-index: 3;
  padding: 30px;
  text-align: center;
  transition: all 0.4s ease;
}

.investor-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.3;
}

/* Additional Section */
.investor-additional-section {
  padding: 60px 0;
  background: #f8fafc;
}

.investor-additional-content {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.investor-additional-content h2,
.investor-additional-content h3 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.investor-additional-content p {
  margin-bottom: 1.5rem;
}

.investor-additional-content ul,
.investor-additional-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.investor-additional-content li {
  margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .investor-sections-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }

  .investor-section-card {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .page-hero-section {
    height: 25vh;
    min-height: 200px;
  }

  .page-hero-overlay {
    align-items: flex-end;
    padding-bottom: 2rem;
  }

  .page-hero-title {
    font-size: 1.5rem;
  }

  .investor-main-section {
    padding: 60px 0;
  }

  .investor-sections-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .investor-section-card {
    height: 300px;
  }

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

  .investor-card-title {
    font-size: 1.2rem;
  }

  .investor-card-content {
    padding: 25px;
  }

  .investor-additional-section {
    padding: 40px 0;
  }

  .career-text-block {
    margin-bottom: 40px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .page-hero-section {
    height: 25vh;
    min-height: 180px;
  }

  .page-hero-overlay {
    align-items: flex-end;
    padding-bottom: 1.5rem;
  }

  .page-hero-title {
    font-size: 1.5rem;
  }

  .investor-section-card {
    height: 280px;
  }

  .investor-card-title {
    font-size: 1.1rem;
  }

  .investor-card-content {
    padding: 20px;
  }
}
/* ============================= */
/* FRONT-PAGE EXTRA SMALL SCREENS */
/* ============================= */

@media (max-width: 480px) {
  /* Company Introduction - Extra Small */
  .company-introduction-section {
    padding: 40px 0;
  }

  .intro-container {
    padding: 0 10px;
  }

  .intro-content-wrapper {
    gap: 25px;
  }

  .intro-main-title {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .intro-description-text {
    font-size: 1rem;
    line-height: 1.6;
  }

  /* Expertise Section - Extra Small */
  .expertise-section {
    padding: 40px 0;
  }

  .expertise-container {
    padding: 0 10px;
  }

  .expertise-image {
    height: 400px;
  }

  .expertise-overlay {
    padding: 25px 15px 20px;
  }

  .expertise-title {
    font-size: 1.2rem;
  }

  .expertise-description {
    font-size: 0.85rem;
  }

  /* Services Section - Extra Small */
  .services-section {
    padding: 0 0 40px 0;
  }

  .services-container {
    gap: 25px;
    padding: 0 10px;
  }

  .service-item img {
    height: 200px;
    margin-bottom: 0;
  }

  /* Mobile overlay ayarları */
  .service-mobile-overlay {
    min-height: 100px;
    padding: 15px;
  }

  .service-mobile-title {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .service-mobile-link {
    font-size: 0.8rem;
    padding: 5px 10px;
  }

  /* Technology Section - Extra Small */
  .technology-section {
    padding: 40px 0;
  }

  .technology-container {
    padding: 0 10px;
  }

  .technology-top,
  .technology-bottom {
    gap: 0;
  }

  /* Mobilde görseller önce, içerik sonra */
  .technology-top .technology-left,
  .technology-bottom .technology-right {
    order: 1;
    padding: 0;
  }

  .technology-top .technology-right,
  .technology-bottom .technology-left {
    order: 2;
    padding: 20px 15px;
    margin-bottom: 20px;
  }

  .technology-left img,
  .technology-right img {
    height: 250px;
  }

  .technology-title {
    font-size: 1.2rem;
    text-align: left;
  }

  .technology-description {
    font-size: 0.9rem;
    text-align: left;
  }

  /* Sustainability Section - Extra Small */
  .sustainability-section {
    padding: 40px 0;
  }

  .sustainability-container {
    padding: 0 10px;
  }

  .sustainability-main-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .sustainability-content {
    gap: 25px;
  }

  .sustainability-environment-card {
    gap: 20px;
  }

  .sustainability-right {
    gap: 20px;
  }

  .sustainability-card {
    padding: 20px 15px;
  }

  .sustainability-card-title {
    font-size: 1rem;
  }

  .sustainability-card-description {
    font-size: 0.9rem;
  }

  /* Career Section - Extra Small */
  .career-section {
    padding: 40px 0;
  }

  .career-container {
    padding: 0 10px;
  }

  .career-main-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .career-grid {
    gap: 20px;
  }

  .career-image-column img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
  }

  .career-block-title {
    font-size: 1.1rem;
  }

  .career-block-description {
    font-size: 0.9rem;
  }

  .career-bottom-blocks {
    gap: 0;
  }

  /* Investor Relations - Extra Small */
  .investor-relations-section {
    padding: 40px 0;
  }

  .investor-relations-container {
    padding: 0 10px;
  }

  .investor-relations-main-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .investor-relations-grid {
    gap: 20px;
  }

  .investor-card {
    padding: 20px 15px;
  }

  .investor-card-title {
    font-size: 1rem;
  }

  .investor-card-description {
    font-size: 0.85rem;
  }

  .investor-card-icon img {
    width: 35px;
    height: 35px;
  }

  /* Service Link Responsive */
  .service-link {
    font-size: 0.9rem;
    padding: 8px 16px;
  }

  /* Button Responsive */
  .intro-cta-button,
  .expertise-link,
  .sustainability-card-link {
    font-size: 0.9rem;
    padding: 10px 16px;
  }
}

/* ============================= */
/* INVESTOR RELATIONS SUB PAGES */
/* ============================= */

.investor-sub-page {
  min-height: 100vh;
}

.investor-sub-main {
  padding: 60px 0;
  background: #f8fafc;
}

/* Breadcrumb */
.page-hero-breadcrumb {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  opacity: 0.9;
}

.page-hero-breadcrumb a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.page-hero-breadcrumb a:hover {
  opacity: 0.8;
  color: white;
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-current {
  color: rgba(255, 255, 255, 0.8);
}

/* Sidebar */
.investor-sidebar {
  background: white;
  border-radius: 15px;
  padding: 30px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 100px;
}

.investor-sidebar-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 25px;
  padding: 0 25px;
  border-bottom: 2px solid #f1f3f4;
  padding-bottom: 20px;
}

.investor-nav {
  display: flex;
  flex-direction: column;
}

.investor-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 25px;
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.investor-nav-link:hover {
  background: #f8fafc;
  color: #6b7280;
  text-decoration: none;
  border-left-color: #6b7280;
}

.investor-nav-link.active {
  background: #f1f5f9;
  color: var(--color-primary);
  border-left-color: var(--color-primary);
  font-weight: 600;
  outline: none;
}

.investor-nav-icon {
  color: inherit;
  flex-shrink: 0;
}

.investor-nav-text {
  font-size: 14px;
}

/* Dropdown Navigation */
.dropdown-parent {
  position: relative;
}

.dropdown-arrow {
  font-size: 12px;
  color: inherit;
  transition: transform 0.3s ease;
}

.dropdown-parent:hover .dropdown-arrow {
  transform: scale(1.1);
}

.sub-nav-items {
  display: none;
  margin-left: 0;
  border-left: 2px solid #e2e8f0;
  margin-top: 5px;
}

.sub-nav-items .investor-nav-link {
  padding: 12px 25px 12px 40px;
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  background: transparent;
  border-left: none;
  position: relative;
}

.sub-nav-items .investor-nav-link::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #cbd5e1;
  border-radius: 50%;
}

.sub-nav-items .investor-nav-link:hover {
  background: #f8fafc;
  color: #6b7280;
  border-left: none;
}

.sub-nav-items .investor-nav-link:hover::before {
  background: #6b7280;
}

.sub-nav-items .investor-nav-link.active {
  background: #f1f5f9;
  color: var(--color-primary);
  font-weight: 600;
  border-left: none;
}

.sub-nav-items .investor-nav-link.active::before {
  background: var(--color-primary);
  width: 6px;
  height: 6px;
}

/* Content Area */
.investor-content {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-left: 30px;
}

.investor-intro {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid #f1f3f4;
}

.investor-intro h2 {
  color: var(--color-primary);
  margin-bottom: 20px;
}

.investor-intro p {
  font-size: 16px;
  line-height: 1.7;
  color: #64748b;
}

/* Content Sections */
.content-section {
  margin-bottom: 50px;
}

/* Dynamic Content Transitions */
.dynamic-content {
  transition: all 0.3s ease;
  transform: translateY(0);
  opacity: 1;
}

/* Loading State */
.content-loading {
  text-align: center;
  padding: 60px 20px;
}

.loading-spinner {
  display: inline-block;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid var(--color-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px auto;
}

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

.loading-spinner p {
  color: #64748b;
  font-size: 14px;
  margin: 0;
}

.content-section:last-child {
  margin-bottom: 0;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
}

.section-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 20px;
  margin-top: 30px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.info-card {
  background: #f8fafc;
  border-radius: 12px;
  padding: 25px;
  border-left: 4px solid var(--color-primary);
}

.info-card h4 {
  color: var(--color-primary);
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: 600;
}

.info-card p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Document Lists */
.document-list {
  background: #f8fafc;
  border-radius: 12px;
  padding: 30px;
  margin: 25px 0;
}

.document-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #e2e8f0;
}

.document-item:last-child {
  border-bottom: none;
}

.document-info {
  flex: 1;
}

.document-title {
  font-weight: 600;
  color: #374151;
  margin-bottom: 5px;
}

.document-description {
  font-size: 14px;
  color: #64748b;
}

.document-link {
  background: var(--color-primary);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.document-link:hover {
  background: #6b7280;
  color: white;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
  .investor-content {
    margin-left: 0;
    margin-top: 30px;
  }

  .investor-sidebar {
    position: static;
  }

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

@media (max-width: 768px) {
  .investor-sub-main {
    padding: 30px 0;
  }

  .investor-content {
    padding: 25px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .document-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* ============================= */
/* COMPANY INFORMATION PAGE STYLES */
/* ============================= */

/* Trade Registry Section */
.company-header-card {
  display: flex;
  align-items: center;
  gap: 30px;
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  border: 1px solid #e2e8f0;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.company-info-section h3 {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.company-description {
  line-height: 1.7;
  font-size: 15px;
}

.registry-section {
  margin: 30px 0;
}

.section-subtitle {
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.registry-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.registry-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.registry-item:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.1);
  transform: translateY(-2px);
}

.registry-content strong {
  display: block;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 5px;
}

.registry-content span {
  color: #374151;
  font-size: 15px;
}

/* Capital Section */
.capital-section {
  margin: 40px 0;
}

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

.capital-card {
  text-align: center;
  padding: 25px 20px;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.capital-card {
  background: var(--color-primary);
  color: white;
}

.capital-amount {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.capital-label {
  font-size: 14px;
  opacity: 0.9;
}

/* Contact Section */
.contact-section {
  margin: 30px 0;
}

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

.contact-item {
  background: white;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.contact-item:hover {
  border-color: var(--color-primary);
  box-shadow: 0 5px 20px rgba(99, 102, 241, 0.1);
}

.contact-item h4 {
  color: var(--color-primary);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.contact-item p {
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

/* Activity Section */
.activity-section {
  background: white;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  margin: 30px 0;
}

.activity-section h4 {
  color: var(--color-primary);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.activity-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.activity-list li {
  padding: 8px 0;
  position: relative;
  padding-left: 20px;
  color: #374151;
}

.activity-list li:before {
  content: "▸";
  color: var(--color-primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Regulatory Info */
.regulatory-info {
  margin: 30px 0;
}

.regulatory-badge {
  background: #f8fafc;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--color-primary);
}

.badge-content h5 {
  color: var(--color-primary);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.badge-content p {
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

/* ============================= */
/* PARTNERSHIP STRUCTURE STYLES */
/* ============================= */

.partnership-overview {
  margin-bottom: 30px;
}

.overview-card {
  background: #f0f9ff;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #0284c7;
}

.overview-content h3 {
  color: #0284c7;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.overview-content p {
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

/* Partnership Table */
.partnership-table {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin: 30px 0;
}

.table-header {
  background: var(--color-primary);
  padding: 20px 25px;
}

.table-title {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.table-wrapper {
  padding: 25px;
}

.table-header-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 2px solid var(--color-primary);
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--color-primary);
}

.table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #e2e8f0;
  align-items: center;
  transition: background-color 0.3s ease;
}

.table-row:hover {
  background-color: #f8fafc;
}

.partner-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.partner-name {
  font-weight: 600;
  color: #374151;
  font-size: 15px;
}

.amount {
  color: #374151;
  font-weight: 500;
}

.percentage-text {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 14px;
}

.table-total {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
  padding: 20px 0;
  font-weight: 700;
  background: #f8fafc;
  margin-top: 20px;
  border-radius: 8px;
  color: var(--color-primary);
}

/* Capital Details */
.capital-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.detail-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.detail-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.1);
  transform: translateY(-2px);
}

.detail-card.highlight {
  background: #f0f9ff;
  border-color: #0284c7;
}

.detail-content h4 {
  color: var(--color-primary);
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
}

.detail-value {
  color: #374151;
  font-weight: 600;
  font-size: 16px;
  margin: 0;
}

/* ============================= */
/* MANAGEMENT BOARD STYLES */
/* ============================= */

.board-overview {
  margin-bottom: 40px;
}

.board-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.stat-item {
  text-align: center;
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.stat-item:hover {
  border-color: var(--color-primary);
  box-shadow: 0 5px 20px rgba(99, 102, 241, 0.1);
  transform: translateY(-3px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.stat-label {
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
}

/* Board Members */
.board-members {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 30px 0;
}

.member-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.member-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.member-card.chairman,
.member-card.vice-chairman,
.member-card.independent,
.member-card.member {
  border-left: 4px solid var(--color-primary);
}

.member-name {
  color: #374151;
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.member-position {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
}

.chairman-badge,
.vice-chairman-badge,
.independent-badge,
.member-badge {
  background: transparent;
  color: var(--color-primary);
}

.member-education,
.member-experience {
  margin-bottom: 10px;
  font-size: 14px;
  color: #64748b;
}

.member-bio {
  color: #374151;
  line-height: 1.6;
  font-size: 14px;
  margin: 15px 0 0 0;
}

/* Meeting Info */
.meeting-info {
  margin: 30px 0;
}

.meeting-card {
  background: #fffbeb;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #f59e0b;
}

.meeting-content h4 {
  color: #92400e;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.meeting-content p {
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

/* ============================= */
/* GENERAL MANAGER MESSAGE STYLES */
/* ============================= */

.manager-profile {
  margin-bottom: 40px;
}

.profile-header {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.manager-name {
  color: var(--color-primary);
  font-size: 1.8rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.manager-title {
  color: #64748b;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 16px;
}

.profile-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-item {
  font-size: 14px;
  color: #374151;
  margin-bottom: 8px;
}

/* Message Container */
.message-container {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.message-header {
  background: var(--color-primary);
  padding: 25px;
}

.message-title {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.message-content {
  padding: 30px;
}

.message-intro {
  margin-bottom: 25px;
}

.greeting {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 20px 0;
}

.message-paragraphs {
  margin-bottom: 30px;
}

.message-paragraph {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.paragraph-marker {
  min-width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  margin-top: 12px;
}

.message-paragraph p {
  color: #374151;
  line-height: 1.7;
  font-size: 15px;
  margin: 0;
  font-style: italic;
}

.message-signature {
  background: #f8fafc;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--color-primary);
}

.signature-line {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 10px;
}

.signature-name {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.signature-title {
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
}

/* Responsive Design for Company Information */
@media (max-width: 768px) {
  .company-header-card,
  .profile-header {
    text-align: center;
  }

  .registry-items,
  .capital-cards,
  .capital-details,
  .board-stats {
    grid-template-columns: 1fr;
  }

  .table-header-row,
  .table-row,
  .table-total {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .table-row {
    text-align: center;
    padding: 15px;
  }

  .partner-info {
    align-items: center;
  }

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

  .overview-card,
  .meeting-card {
    text-align: center;
  }
}

/* ============================= */
/* NEW FOOTER DESIGN (VISUAL-BASED) */
/* ============================= */
.new-kapeks-footer {
  background-color: #2c2f3b; /* From image */
  color: #a9aebd; /* From image */
  font-family: "Barlow", sans-serif;
  padding: 60px 0 0;
}

.new-kapeks-footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.new-kapeks-footer a:hover {
  color: #ffffff;
  text-decoration: none;
}

.new-kapeks-footer .footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================= */
/* CORPORATE GOVERNANCE PAGE STYLES */
/* ============================= */

/* Governance Overview Card */
.governance-overview-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #e2e8f0;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.governance-content h3 {
  color: var(--color-primary);
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.governance-content p {
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

/* Document Sections */
.document-section {
  margin: 40px 0;
}

.document-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.document-item-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.document-item-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 5px 20px rgba(99, 102, 241, 0.1);
  transform: translateY(-2px);
}

.document-item-card.highlight {
  background: #f8fafc;
  border-color: var(--color-primary);
}

.document-header {
  display: flex;
  justify-content: between;
  align-items: center;
  margin-bottom: 15px;
}

.document-header h4 {
  color: var(--color-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  flex-grow: 1;
}

.document-date {
  background: var(--color-primary);
  color: white;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

.document-description {
  color: #374151;
  line-height: 1.6;
  margin-bottom: 20px;
}

.document-actions {
  display: flex;
  gap: 10px;
}

.document-download-btn {
  background: var(--color-primary);
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.document-download-btn:hover {
  background: #6b7280;
  color: white;
  transform: translateY(-1px);
}

/* Articles Summary */
.articles-summary {
  margin: 40px 0;
}

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

.article-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.article-item:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.1);
  transform: translateY(-2px);
}

.article-item h4 {
  color: var(--color-primary);
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.article-item p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Assembly Info */
.assembly-info {
  margin: 40px 0;
}

.assembly-details {
  margin-top: 20px;
}

.assembly-card {
  display: flex;
  background: white;
  border-radius: 15px;
  border: 1px solid #e2e8f0;
  padding: 25px;
  gap: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.assembly-date {
  min-width: 80px;
  text-align: center;
  padding: 15px;
  background: var(--color-primary);
  border-radius: 10px;
  color: white;
}

.date-day {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.date-month {
  display: block;
  font-size: 12px;
  margin-top: 5px;
  opacity: 0.9;
}

.assembly-info-content h4 {
  color: var(--color-primary);
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.assembly-info-content p {
  color: #374151;
  line-height: 1.6;
  margin-bottom: 15px;
}

.assembly-location,
.assembly-time {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 8px;
}

/* Regulations Grid */
.regulations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.regulation-category {
  background: white;
  border-radius: 15px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.regulation-category h3 {
  background: var(--color-primary);
  color: white;
  padding: 20px 25px;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.regulation-items {
  padding: 25px;
}

.regulation-item {
  margin-bottom: 20px;
}

.regulation-item:last-child {
  margin-bottom: 0;
}

.regulation-item h4 {
  color: var(--color-primary);
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.regulation-item p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Committees Section */
.committees-section {
  margin-top: 30px;
}

.committee-card {
  background: white;
  border-radius: 15px;
  border: 1px solid #e2e8f0;
  margin-bottom: 25px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.committee-header {
  background: var(--color-primary);
  color: white;
  padding: 20px 25px;
}

.committee-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.committee-content {
  padding: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.committee-members h4,
.committee-duties h4 {
  color: var(--color-primary);
  font-size: 1rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.member-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.member-list li {
  padding: 8px 0;
  color: #374151;
  font-size: 14px;
  border-bottom: 1px solid #f1f5f9;
}

.member-list li:last-child {
  border-bottom: none;
}

.committee-duties ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.committee-duties li {
  padding: 8px 0;
  position: relative;
  padding-left: 20px;
  color: #374151;
  font-size: 14px;
}

.committee-duties li:before {
  content: "▸";
  color: var(--color-primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Policies Grid */
.policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.policy-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  text-align: center;
}

.policy-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 5px 20px rgba(99, 102, 241, 0.1);
  transform: translateY(-2px);
}

.policy-card h3 {
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.policy-card p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.policy-actions {
  margin-top: 15px;
}

.policy-download {
  background: var(--color-primary);
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.policy-download:hover {
  background: #4f46e5;
  color: white;
  transform: translateY(-1px);
}

/* Compliance Summary */
.compliance-summary {
  display: flex;
  gap: 20px;
  margin: 15px 0;
  padding: 15px;
  background: #f8fafc;
  border-radius: 8px;
}

.compliance-item {
  display: flex;
  gap: 8px;
  align-items: center;
}

.compliance-label {
  color: #64748b;
  font-size: 14px;
}

.compliance-value {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 14px;
}

.compliance-summary-section {
  margin: 40px 0;
}

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

.compliance-stat-card {
  text-align: center;
  background: white;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.compliance-stat-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 5px 20px rgba(99, 102, 241, 0.1);
  transform: translateY(-3px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.stat-label {
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
}

/* Sustainability Areas */
.sustainability-areas {
  margin: 40px 0;
}

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

.sustainability-card {
  background: white;
  padding: 25px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.sustainability-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 5px 20px rgba(99, 102, 241, 0.1);
  transform: translateY(-2px);
}

.sustainability-card h4 {
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.sustainability-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sustainability-card li {
  padding: 6px 0;
  position: relative;
  padding-left: 20px;
  color: #374151;
  font-size: 14px;
}

.sustainability-card li:before {
  content: "▸";
  color: var(--color-primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Disclosures Section */
.disclosures-section {
  margin-top: 30px;
}

.disclosure-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.disclosure-item-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.disclosure-item-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 5px 20px rgba(99, 102, 241, 0.1);
  transform: translateY(-2px);
}

.disclosure-header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 15px;
}

.disclosure-date {
  min-width: 60px;
  text-align: center;
  padding: 12px;
  background: var(--color-primary);
  border-radius: 8px;
  color: white;
}

.disclosure-title {
  flex-grow: 1;
}

.disclosure-title h4 {
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.disclosure-category {
  background: #f1f5f9;
  color: #64748b;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

.disclosure-description {
  color: #374151;
  line-height: 1.6;
  margin-bottom: 15px;
}

.disclosure-actions {
  display: flex;
  gap: 10px;
}

.disclosure-link {
  color: var(--color-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.disclosure-link:hover {
  color: #4f46e5;
}

/* Disclosure Categories */
.disclosure-categories {
  margin: 40px 0;
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.category-tag {
  background: #f1f5f9;
  color: #64748b;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.category-tag:hover {
  background: var(--color-primary);
  color: white;
}

/* KAP Link Section */
.kap-link-section {
  margin: 40px 0;
}

.kap-info-card {
  background: #f8fafc;
  padding: 30px;
  border-radius: 15px;
  border: 1px solid #e2e8f0;
  text-align: center;
}

.kap-info-card h4 {
  color: var(--color-primary);
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.kap-info-card p {
  color: #374151;
  line-height: 1.6;
  margin-bottom: 25px;
}

.kap-button {
  background: var(--color-primary);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.kap-button:hover {
  background: #6b7280;
  color: white;
  transform: translateY(-2px);
}

/* Year Filters */
.year-filters {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.year-filters::before {
  content: "Yıl:";
  font-weight: 600;
  color: #374151;
  font-size: 14px;
}

.year-filter-dropdown {
  background: white;
  color: #374151;
  border: 2px solid #e5e7eb;
  padding: 12px 40px 12px 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  min-width: 140px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23374151'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
}

.year-filter-dropdown:hover {
  border-color: #d1d5db;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.year-filter-dropdown:focus {
  border-color: #9ca3af;
  box-shadow: 0 0 0 3px rgba(156, 163, 175, 0.1);
  outline: none;
}

.year-filter-dropdown option {
  color: #374151;
  background: white;
  padding: 8px;
  font-weight: 500;
}

/* Committee Sections */
.committee-item {
  margin-bottom: 20px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  background: white;
  overflow: hidden;
}

.committee-header-clickable {
  background: #f8fafc;
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.committee-header-clickable:hover {
  background: #f1f5f9;
  border-bottom-color: #e5e7eb;
}

.committee-header-clickable h3 {
  margin: 0;
  color: #374151;
  font-size: 18px;
  font-weight: 600;
}

.committee-arrow {
  color: #6b7280;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.committee-details {
  padding: 0;
  background: white;
}

.committee-members-table {
  padding: 25px;
}

.members-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.members-table th {
  background: #f8fafc;
  color: #374151;
  font-weight: 600;
  padding: 15px 20px;
  text-align: left;
  border-bottom: 2px solid #e5e7eb;
  font-size: 14px;
}

.members-table td {
  padding: 15px 20px;
  border-bottom: 1px solid #f1f3f4;
  color: #4b5563;
  vertical-align: middle;
}

.members-table tbody tr:hover {
  background: #f9fafb;
}

.members-table tbody tr:last-child td {
  border-bottom: none;
}

/* Process Steps */
.process-section {
  margin-top: 40px;
}

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

.process-step {
  background: white;
  padding: 25px;
  border-radius: 12px;
  border: 2px solid #f1f3f4;
  transition: all 0.3s ease;
  text-align: center;
}

.process-step:hover {
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin: 0 auto 20px;
}

.step-content h4 {
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-content p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design for Corporate Governance */
@media (max-width: 768px) {
  .articles-grid,
  .regulations-grid,
  .policies-grid,
  .sustainability-grid,
  .compliance-grid {
    grid-template-columns: 1fr;
  }

  .assembly-card {
    flex-direction: column;
    text-align: center;
  }

  .committee-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .disclosure-header {
    flex-direction: column;
    gap: 15px;
  }

  .disclosure-date {
    align-self: center;
  }

  .compliance-summary {
    flex-direction: column;
    gap: 10px;
  }

  .category-tags {
    justify-content: center;
  }
}

/* Main Layout Grid */
.new-kapeks-footer .footer-layout-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr; /* Main 2-column layout */
  gap: 60px;
}

.new-kapeks-footer .footer-main-title {
  font-size: 1.8rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 40px 0;
  text-align: left;
}

/* Left Column Content */
.new-kapeks-footer .footer-grid-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns for links */
  gap: 40px;
}

.new-kapeks-footer .footer-widget-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.new-kapeks-footer .footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.new-kapeks-footer .footer-link-list li {
  margin-bottom: 12px;
}

.new-kapeks-footer .footer-link-list a {
  font-size: 1rem;
  transition: all 0.2s ease;
}

.new-kapeks-footer .footer-link-list a:hover {
  font-weight: 500;
}

.new-kapeks-footer .footer-divider {
  border: 0;
  height: 1px;
  background-color: #4a4e5b;
  margin: 40px 0;
}

.new-kapeks-footer .footer-grid-bottom {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.new-kapeks-footer .footer-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.new-kapeks-footer .footer-legal-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
  text-align: left;
}

.new-kapeks-footer .footer-legal-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: white;
  font-weight: bold;
}

/* Right Column Content */
.new-kapeks-footer .footer-layout-right .footer-widget-title {
  margin-top: 58px; /* Align with titles on the left */
}

.new-kapeks-footer .footer-video-widget {
  margin-bottom: 20px;
}

.new-kapeks-footer .video-thumbnail-link {
  display: block;
  position: relative;
}

.new-kapeks-footer .video-thumbnail-link img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #4a4e5b;
}

.new-kapeks-footer .video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.new-kapeks-footer .video-thumbnail-link:hover .video-play-button {
  background-color: rgba(160, 44, 44, 0.7);
}

.new-kapeks-footer .video-play-button::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 18px solid #ffffff;
  margin-left: 5px;
}

.new-kapeks-footer .footer-widget-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.footer-image {
  margin-bottom: 15px;
}

/* Bottom Bar */
.new-kapeks-footer .footer-bottom-bar {
  border-top: 1px solid #4a4e5b;
  margin-top: 40px;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.new-kapeks-footer .footer-copyright {
  margin: 0;
  font-size: 0.9rem;
}

.new-kapeks-footer .footer-korenel-logo img {
  max-height: 15px;
  transition: opacity 0.3s ease;
}

/* Responsive Footer */
@media (max-width: 1200px) {
  .new-kapeks-footer .footer-layout-grid {
    grid-template-columns: 2fr 1fr;
  }
}

@media (max-width: 992px) {
  .new-kapeks-footer .footer-layout-grid {
    grid-template-columns: 1fr; /* Stack main columns */
  }
  .new-kapeks-footer .footer-layout-right .footer-widget-title {
    margin-top: 0;
  }
  .new-kapeks-footer .footer-grid-bottom {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .new-kapeks-footer {
    padding-top: 40px;
  }
  .new-kapeks-footer .footer-grid-top,
  .new-kapeks-footer .footer-grid-bottom {
    grid-template-columns: 1fr;
  }
  .new-kapeks-footer .footer-main-title {
    text-align: center;
  }
  .new-kapeks-footer .footer-bottom-bar {
    flex-direction: column;
    gap: 15px;
  }
  .new-kapeks-footer .footer-column,
  .new-kapeks-footer .footer-column-full {
    text-align: center;
  }
  .new-kapeks-footer .footer-legal-list li {
    text-align: center;
    padding-left: 0;
  }
  .new-kapeks-footer .footer-legal-list li::before {
    display: none;
  }
}

/* ===== RESPONSIVE NAVIGATION STYLES ===== */

/* Mobile Menu Z-Index Fix */
.mobile-menu-content {
  z-index: 9999 !important;
  position: relative;
}

.fullscreen-overlay-menu {
  z-index: 9998 !important;
}

/* Responsive Menu Grid Fixes */
@media (max-width: 1440px) {
  .menu-categories-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
  }
}

/* Desktop menu adjustments for medium screens */
@media (max-width: 1440px) and (min-width: 1201px) {
  .menu-categories-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.2rem !important;
  }
}

/* Mobile/Desktop Menu Toggle */
@media (max-width: 992px) {
  .desktop-menu-content {
    display: none !important;
  }

  .mobile-menu-content {
    display: block !important;
  }
}

/* Desktop Menu Content Container - only for screens above 992px */
@media (min-width: 993px) {
  .desktop-menu-content {
    display: block !important;
  }

  .mobile-menu-content {
    display: none !important;
  }
}

/* Responsive Logo Scaling */
.responsive-logo {
  max-width: 100% !important;
  height: auto !important;
  width: auto !important;
}

@media (max-width: 992px) {
  .menu-bottom-logo {
    max-width: 200px !important;
  }

  .responsive-logo {
    max-width: 180px !important;
  }
}

/* Mobile Menu Styling */
@media (max-width: 992px) {
  .mobile-menu-content {
    padding: 0 1rem !important;
    height: 100vh !important;
    max-height: 100vh !important;
    min-height: 100vh !important;
    overflow-y: auto !important;
    z-index: 9999 !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .mobile-menu-header {
    margin-bottom: 2rem !important;
    padding-bottom: 1rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    flex-shrink: 0 !important;
  }

  .mobile-menu-main {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
  }

  .mobile-navigation {
    flex: 1 !important;
  }

  .mobile-menu-item {
    margin-bottom: 0.5rem !important;
  }

  .mobile-menu-toggle,
  .mobile-menu-link {
    font-size: 1.1rem !important;
    padding: 18px 1rem !important;
    color: white !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    border: none !important;
    width: 100% !important;
    text-align: left !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
  }

  .mobile-menu-toggle svg {
    margin-left: auto !important;
    flex-shrink: 0 !important;
    transition: transform 0.3s ease !important;
  }

  .mobile-menu-toggle:hover,
  .mobile-menu-link:hover {
    background: rgba(255, 255, 255, 0.2) !important;
  }

  .mobile-submenu {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease !important;
    margin: 0 !important;
    background: rgba(0, 0, 0, 0.2) !important;
    border-radius: 8px !important;
  }

  .mobile-submenu.active {
    max-height: 500px !important;
    margin-top: 0.5rem !important;
    padding: 0.5rem !important;
  }

  .mobile-submenu-link,
  .mobile-submenu-main-link {
    display: block !important;
    padding: 0.6rem 1rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    border-radius: 6px !important;
    margin-bottom: 0.3rem !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
  }

  .mobile-submenu-main-link {
    font-weight: 600 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    margin-bottom: 0.5rem !important;
    padding-bottom: 0.8rem !important;
  }

  .mobile-submenu-link:hover,
  .mobile-submenu-main-link:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
  }

  .mobile-menu-footer {
    margin-top: auto !important;
    padding-top: 1rem !important;
    padding-bottom: env(safe-area-inset-bottom, 1rem) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
    flex-shrink: 0 !important;
  }

  .mobile-menu-social {
    display: flex !important;
    justify-content: center !important;
    gap: 15px !important;
    margin-bottom: 0 !important;
  }

  .mobile-social-link {
    width: 45px !important;
    height: 45px !important;
    flex-shrink: 0 !important;
  }

  .mobile-menu-close-btn {
    background: transparent !important;
    border: none !important;
    color: white !important;
    padding: 0.5rem !important;
    cursor: pointer !important;
  }
}

@media (max-width: 768px) {
  .menu-bottom-section {
    display: none !important;
  }
}

/* FORCE MENU BOTTOM SECTION TO BOTTOM - DESKTOP ONLY */
@media (min-width: 993px) {
  html
    body
    div.fullscreen-overlay-menu
    div.menu-content-container
    div.menu-main-content
    div.menu-bottom-section {
    margin-top: auto !important;
    flex-shrink: 0 !important;
    position: relative !important;
  }
}

/* Desktop menu styles - only for large screens */
@media (min-width: 993px) {
  div.fullscreen-overlay-menu {
    height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
  }

  div.menu-content-container {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
  }

  div.menu-main-content {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
  }
}

/* Override JavaScript hide/show for better flexbox positioning */
@media (min-height: 921px) {
  .menu-bottom-logo {
    display: block !important;
    visibility: visible !important;
  }
}

@media (max-height: 920px) {
  .menu-bottom-section {
    margin-top: auto !important;
    padding-top: 10px !important;
    min-height: 20px !important;
  }
}

/* Prevent Menu Overflow - Updated for proper flexbox */

.menu-main-content {
  overflow-y: auto !important;
  overflow-x: hidden !important;
  flex: 1 !important;
  min-height: 0 !important;
}

/* Alternative calc approach if flexbox fails */
@supports not (flex: 1) {
  .menu-main-content {
    height: calc(100vh - 100px) !important;
  }
}

/* Hide empty menu categories on mobile since we're using mobile menu */
@media (max-width: 992px) {
  .menu-category-empty {
    display: none !important;
  }
}

/* Post Date Header */
.post-date-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.post-date-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f8f9fa;
  padding: 0.75rem 1rem;
  border-radius: 5px;
  color: #6c757d;
  font-size: 0.9rem;
  border: 1px solid #dee2e6;
}

.post-date-info i {
  color: var(--color-primary, #0056b3);
}

@media (max-width: 768px) {
  .post-date-header {
    justify-content: center;
    padding: 0;
  }

  .post-date-info {
    font-size: 0.85rem;
    padding: 0.6rem 0.8rem;
  }
}

/* ============================= */
/* SINGLE PRODUCT PAGE */
/* ============================= */

/* Product intro background */
.product-intro-background {
  background-color: #ffffff;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 80px 0 0 0;
}

/* Mobile responsive for product intro background */
@media (max-width: 768px) {
  .product-intro-background {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .product-intro-background {
    padding: 40px 0;
  }
}

/* Product PDFs background */
.product-pdfs-background {
  background-color: #ffffff;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 80px 0;
}

/* Mobile responsive for product PDFs background */
@media (max-width: 768px) {
  .product-pdfs-background {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .product-pdfs-background {
    padding: 40px 0;
  }
}

/* ============================= */
/* REUSABLE GALLERY COMPONENT */
/* ============================= */

/* Gallery Section - Genel kullanım için */
.image-gallery-section {
  padding: 60px 0;
}

.image-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.image-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 200px;
  background: white;
}

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

.image-gallery-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.image-gallery-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.3s ease;
  display: block;
}

.image-gallery-item:hover .image-gallery-thumbnail {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .image-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .image-gallery-section {
    padding: 40px 0;
  }

  .image-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .image-gallery-item {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .image-gallery-section {
    padding: 30px 0;
  }

  .image-gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .image-gallery-item {
    height: 150px;
  }
}

/* ============================= */
/* GALLERY MODAL COMPONENT */
/* ============================= */

/* Gallery Modal */
.gallery-modal-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.gallery-modal-overlay.modal-active {
  display: flex !important;
}

.gallery-modal-close {
  position: fixed;
  top: 20px;
  right: 20px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 300;
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 10001;
  background: rgba(0, 0, 0, 0.5);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-modal-close:hover,
.gallery-modal-close:focus {
  color: #ffffff;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.gallery-modal-prev,
.gallery-modal-next {
  position: fixed;
  top: 50%;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  color: white;
  font-weight: 300;
  font-size: 16px;
  transition: all 0.3s ease;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.gallery-modal-prev {
  left: 20px;
}

.gallery-modal-next {
  right: 20px;
}

.gallery-modal-prev:hover,
.gallery-modal-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.gallery-modal-image {
  max-width: calc(100vw - 140px);
  max-height: calc(100vh - 100px);
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

.gallery-modal-caption {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: auto;
  max-width: calc(100vw - 40px);
  text-align: center;
  color: #ccc;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 1.4;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 5px;
  z-index: 10000;
}

/* Gallery Overlay for hover effect */
.image-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

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

.image-gallery-overlay i {
  color: white;
  font-size: 1.8rem;
}

.image-gallery-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

/* Responsive Modal */
@media (max-width: 768px) {
  .gallery-modal-prev,
  .gallery-modal-next {
    width: 38px;
    height: 38px;
    margin-top: -19px;
    font-size: 14px;
  }

  .gallery-modal-prev {
    left: 10px;
  }

  .gallery-modal-next {
    right: 10px;
  }

  .gallery-modal-close {
    font-size: 20px;
    width: 38px;
    height: 38px;
    top: 15px;
    right: 15px;
  }

  .gallery-modal-image {
    max-width: calc(100vw - 20px);
    max-height: calc(100vh - 100px);
  }
}

/* ========================================
   FRONT PAGE - SERVICES HEADER
   ======================================== */

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.services-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.services-view-all {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.services-view-all:hover {
  color: #a02c2c;
}

.services-view-all i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.services-view-all:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .services-header {
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .sustainability-card-link {
    justify-content: space-around;
  }

  .services-main-title {
    font-size: 1.8rem;
  }

  .services-view-all {
    font-size: 0.9rem;
  }
}
