/* ==========================================================================
   Çağrı Group — Modern & Prestijli One-Page Kurumsal Web Sitesi
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* --- Root Variables: Dark Mode (Default) --- */
:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Theme: Dark (Default) */
  --bg-main: #070a12;
  --bg-secondary: #0c1220;
  --bg-surface: #10192d;
  --bg-surface-elevated: #16223d;
  --bg-glass: rgba(16, 25, 45, 0.72);
  --bg-glass-card: rgba(18, 28, 52, 0.65);
  --nav-bg: rgba(7, 10, 18, 0.85);

  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #64748b;
  --text-light: #ffffff;

  --accent-cyan: #00d2ff;
  --accent-blue: #0066fe;
  --accent-gradient: linear-gradient(135deg, #00d2ff 0%, #0066fe 50%, #3a7bd5 100%);
  --accent-gold: #f59e0b;
  --accent-gold-gradient: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  --glow-cyan: rgba(0, 210, 255, 0.25);
  --glow-blue: rgba(0, 102, 254, 0.35);

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-card: rgba(255, 255, 255, 0.12);
  --border-hover: rgba(0, 210, 255, 0.45);

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 35px rgba(0, 102, 254, 0.28);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  --max-width: 1280px;
}

/* --- Light Mode Overrides --- */
[data-theme="light"] {
  --bg-main: #f8fafc;
  --bg-secondary: #f1f5f9;
  --bg-surface: #ffffff;
  --bg-surface-elevated: #f8fafc;
  --bg-glass: rgba(255, 255, 255, 0.88);
  --bg-glass-card: rgba(255, 255, 255, 0.95);
  --nav-bg: rgba(255, 255, 255, 0.92);

  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --text-light: #ffffff;

  --accent-cyan: #0284c7;
  --accent-blue: #1d4ed8;
  --accent-gradient: linear-gradient(135deg, #0284c7 0%, #1d4ed8 100%);
  --accent-gold: #d97706;
  --accent-gold-gradient: linear-gradient(135deg, #f59e0b 0%, #b45309 100%);
  --glow-cyan: rgba(2, 132, 199, 0.18);
  --glow-blue: rgba(29, 78, 216, 0.18);

  --border-subtle: rgba(0, 0, 0, 0.08);
  --border-card: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(2, 132, 199, 0.45);

  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 25px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 8px 30px rgba(2, 132, 199, 0.15);
}

/* --- Global Reset & Basics --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Subtle background ambient mesh */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(circle, var(--glow-blue) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

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

button, input, textarea, select {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* Section Title System */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-cyan);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

.badge-tag i {
  font-size: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Gradient Text Helper */
.text-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  padding: 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.site-header.scrolled .nav-container {
  height: 88px;
}

/* Logo (+10% larger, fixed size on scroll) */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.site-header.scrolled .brand-logo img {
  height: 64px;
}

.brand-logo:hover img {
  transform: scale(1.04);
}

/* Dark mode logo enhancement for optimal contrast and vibrancy */
[data-theme="dark"] .brand-logo img,
[data-theme="dark"] .drawer-logo img,
[data-theme="dark"] .footer-brand img,
[data-theme="dark"] .hero-logo-box img {
  filter: brightness(1.22) contrast(1.05);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.mobile-drawer-top,
.drawer-bottom,
.nav-link-icon,
.nav-link-arrow {
  display: none;
}

.nav-link-left {
  display: inline;
}

.drawer-links-wrap {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 0.4rem 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Nav Actions (Theme, Lang, CTA) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 3px;
  gap: 2px;
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-btn.active {
  background: var(--accent-gradient);
  color: var(--text-light);
  box-shadow: 0 2px 8px var(--glow-cyan);
}

/* Theme Toggle Button */
.theme-toggle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 0.95rem;
}

.theme-toggle-btn:hover {
  background: var(--bg-surface-elevated);
  border-color: var(--accent-cyan);
  transform: rotate(15deg);
}

/* Nav CTA Button */
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-gradient);
  color: var(--text-light);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-glow);
  transition: all var(--transition-fast);
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--glow-blue);
}

/* Mobile Hamburger Toggle */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.4rem;
}

/* ==========================================================================
   Hero Slider Section (Electric Supply, Contracting, Solar & Steel)
   ========================================================================== */
.hero-slider-section {
  position: relative;
  min-height: 96vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 120px 0 0 0;
  background: radial-gradient(ellipse at 80% 15%, var(--glow-cyan) 0%, transparent 55%),
              radial-gradient(ellipse at 15% 75%, var(--glow-blue) 0%, transparent 60%);
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, var(--border-subtle) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border-subtle) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle at center, black 45%, transparent 85%);
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  z-index: 2;
  min-height: 560px;
}

.hero-slide {
  display: none;
  width: 100%;
  opacity: 0;
  transform: translateY(12px) scale(0.99);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide.active {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: heroSlideIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroSlideIn {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.72fr);
  align-items: center;
  gap: 3rem;
  position: relative;
  padding: 1.25rem 0 1.75rem 0;
  width: 100%;
}

.hero-text-col {
  width: 100%;
  max-width: 680px;
  min-width: 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.15rem;
  background: rgba(0, 210, 255, 0.08);
  border: 1px solid rgba(0, 210, 255, 0.25);
  border-radius: var(--radius-pill);
  color: var(--accent-cyan);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 10px rgba(0, 210, 255, 0.1); }
  100% { box-shadow: 0 0 22px rgba(0, 210, 255, 0.35); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
  min-height: 6.6rem;
}

@media (min-width: 993px) {
  .hero-title span {
    white-space: nowrap;
    display: inline-block;
  }
}

.hero-slogan {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  padding: 0.35rem 0.9rem;
  background: rgba(245, 158, 11, 0.1);
  border-left: 3px solid var(--accent-gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.2rem;
}

.hero-description {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.4rem;
  min-height: 4.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--accent-gradient);
  color: var(--text-light);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-glow);
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--glow-blue);
  color: var(--text-light);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--bg-surface);
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-card);
  transition: all var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--bg-surface-elevated);
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
  color: var(--text-primary);
}

/* Hero Quick Stats Row */
.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.25rem;
  min-height: 4.8rem;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.hero-stat-val {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--accent-cyan);
  line-height: 1.1;
  white-space: nowrap;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.25rem;
  min-height: 2.2rem;
  line-height: 1.35;
}

/* Hero Visual / Card Showcase */
.hero-visual-col {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin-left: auto;
  min-width: 0;
}

.hero-card-showcase {
  position: relative;
  width: 100%;
  min-height: 435px;
  background: var(--bg-glass-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.hero-card-showcase:hover {
  border-color: rgba(0, 210, 255, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

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

.hero-logo-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.hero-logo-box img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: livePing 1.5s infinite;
}

@keyframes livePing {
  0% { transform: scale(0.9); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
  100% { transform: scale(0.9); opacity: 1; }
}

.hero-card-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.1rem;
  border: 1px solid var(--border-subtle);
  position: relative;
}

.hero-card-image img {
  width: 100%;
  height: 205px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-card-showcase:hover .hero-card-image img {
  transform: scale(1.04);
}

.hero-card-info {
  margin-top: auto;
}

.hero-card-info h4 {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-card-info p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.45;
  min-height: 2.5rem;
  margin: 0;
}



/* Floating Badges */
.floating-card {
  position: absolute;
  background: var(--bg-glass);
  border: 1px solid var(--border-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.1rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 3;
}

.floating-card-1 {
  bottom: -20px;
  left: -20px;
  animation: floatSlow 5s ease-in-out infinite;
}

.floating-card-2 {
  top: 10px;
  right: -20px;
  animation: floatSlow 5s ease-in-out infinite 2.5s;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.floating-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.floating-text h5 {
  font-size: 0.9rem;
  font-weight: 800;
  margin: 0;
  color: var(--text-primary);
}

.floating-text span {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* Slider Controls: Arrows & Dots */
.slider-controls-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem 1.5rem;
  position: relative;
  z-index: 3;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
  font-size: 1rem;
}

.slider-arrow:hover {
  background: var(--accent-gradient);
  color: white;
  border-color: transparent;
  transform: scale(1.08);
  box-shadow: 0 4px 15px var(--glow-blue);
}

.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex: 1;
  max-width: 680px;
}

.slider-dot {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.4rem 0.2rem;
  text-align: left;
  transition: opacity var(--transition-fast);
}

.slider-dot .dot-progress {
  display: block;
  width: 100%;
  height: 4px;
  background: var(--border-subtle);
  border-radius: var(--radius-pill);
  position: relative;
  overflow: hidden;
}

.slider-dot .dot-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--accent-gradient);
  transition: width 0.4s ease;
}

.slider-dot.active .dot-progress::after {
  width: 100%;
}

.slider-dot.active.animating .dot-progress::after {
  animation: dotFill 6s linear forwards;
}

@keyframes dotFill {
  0% { width: 0%; }
  100% { width: 100%; }
}

.slider-dot .dot-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slider-dot.active .dot-title {
  color: var(--accent-cyan);
}

/* Bottom Quick-Bar */
.hero-quick-bar {
  width: 100%;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  z-index: 3;
  margin-top: 0.75rem;
}

.quick-bar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.quick-bar-container::-webkit-scrollbar {
  display: none;
}

.quick-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1rem;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.quick-bar-item i {
  color: var(--accent-cyan);
  font-size: 0.85rem;
}

.quick-bar-item:hover {
  background: var(--bg-surface);
  border-color: var(--accent-cyan);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.quick-bar-item.active-highlight {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.35);
  color: var(--text-primary);
  font-weight: 700;
}

.quick-bar-item.active-highlight i {
  color: #10b981;
}

.quick-badge {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  background: #10b981;
  color: white;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
  padding: 100px 0;
  position: relative;
  background-color: var(--bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.about-visual-wrapper {
  position: relative;
  height: 100%;
  display: flex;
}

.about-main-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-card);
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 680px;
  background: var(--bg-surface-elevated);
}

.about-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-main-image:hover img {
  transform: scale(1.03);
}

.about-text-content .lead-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.about-text-content .body-p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}

.about-pillar-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.2rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.about-pillar-card:hover {
  transform: translateX(6px);
  border-color: var(--border-hover);
  background: var(--bg-surface-elevated);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-card);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.about-pillar-card:hover .pillar-icon {
  background: var(--accent-gradient);
  color: var(--text-light);
}

.pillar-info h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.pillar-info p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ==========================================================================
   Group Companies Section (Core Focus)
   ========================================================================== */
.companies-section {
  padding: 110px 0;
  position: relative;
  background-color: var(--bg-main);
}

/* Category Filter Tabs */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.filter-btn {
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  background: var(--bg-surface-elevated);
  color: var(--text-primary);
  border-color: var(--border-hover);
}

.filter-btn.active {
  background: var(--accent-gradient);
  color: var(--text-light);
  border-color: transparent;
  box-shadow: 0 4px 18px var(--glow-cyan);
}

/* Companies Grid */
.companies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
}

/* Company Card */
.company-card {
  background: var(--bg-glass-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  position: relative;
}

.company-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: var(--border-hover);
}

.company-card.highlight-targeted {
  outline: 3px solid var(--accent-cyan) !important;
  border-color: var(--accent-cyan) !important;
  box-shadow: 0 0 35px var(--glow-cyan), var(--shadow-lg) !important;
  transform: translateY(-8px) scale(1.02) !important;
  animation: targetCardPulse 1.4s ease-in-out infinite alternate !important;
  z-index: 10;
}

@keyframes targetCardPulse {
  0% {
    box-shadow: 0 0 15px var(--glow-cyan), var(--shadow-lg);
    border-color: var(--accent-cyan);
  }
  100% {
    box-shadow: 0 0 45px rgba(0, 210, 255, 0.7), var(--shadow-lg);
    border-color: #38bdf8;
  }
}

/* Company Card Header (Icon & Badges) */
.company-card-header {
  padding: 1.8rem 1.8rem 0.8rem 1.8rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.company-card-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-card);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.company-card:hover .company-card-icon-wrap {
  background: var(--accent-gradient);
  color: var(--text-light);
  transform: scale(1.08) rotate(4deg);
  box-shadow: 0 8px 24px var(--glow-cyan);
  border-color: transparent;
}

.company-card-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
}

.company-card-tag {
  background: rgba(0, 210, 255, 0.08);
  border: 1px solid rgba(0, 210, 255, 0.22);
  color: var(--accent-cyan);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.company-est-badge {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.company-card-body {
  padding: 0.8rem 1.8rem 1.8rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.company-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.company-card-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.company-card-features {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
  margin-bottom: 1.5rem;
}

.company-card-features li {
  font-size: 0.84rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.company-card-features li i {
  color: var(--accent-cyan);
  font-size: 0.72rem;
}

.company-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.2rem;
}

.btn-card-detail {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-card);
  color: var(--text-primary);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-card-detail:hover {
  background: var(--accent-gradient);
  color: var(--text-light);
  border-color: transparent;
  box-shadow: 0 4px 12px var(--glow-cyan);
}

.btn-card-web {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent-cyan);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.6rem 0.8rem;
  transition: color var(--transition-fast);
}

.btn-card-web:hover {
  color: var(--text-light);
  text-decoration: underline;
}

/* ==========================================================================
   Sectors Grid Section
   ========================================================================== */
.sectors-section {
  padding: 100px 0;
  background-color: var(--bg-secondary);
  position: relative;
}

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

.sector-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.sector-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.sector-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}

.sector-card:hover::before {
  opacity: 1;
}

.sector-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-card);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.4rem;
  transition: all var(--transition-fast);
}

.sector-card:hover .sector-icon {
  background: var(--accent-gradient);
  color: var(--text-light);
  box-shadow: 0 4px 20px var(--glow-cyan);
}

.sector-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.sector-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   Metrics / Numbers Section
   ========================================================================== */
.stats-section {
  padding: 90px 0;
  position: relative;
  background: linear-gradient(135deg, rgba(0, 102, 254, 0.08) 0%, rgba(0, 210, 255, 0.05) 100%), var(--bg-main);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-box {
  padding: 1.5rem 1rem;
  border-radius: var(--radius-md);
  background: var(--bg-glass-card);
  border: 1px solid var(--border-subtle);
  transition: transform var(--transition-fast);
}

.stat-box:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent-cyan);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
  padding: 110px 0;
  position: relative;
  background-color: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: stretch;
}

/* Contact Info Column */
.contact-info-col {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-col h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-card);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-item-info h5 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.contact-item-info p,
.contact-item-info a {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.5;
}

.contact-item-info a:hover {
  color: var(--accent-cyan);
}

/* Social links box */
.contact-social-box {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.8rem;
}

.contact-social-box h5 {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.social-icons-row {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-card);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background: var(--accent-gradient);
  color: var(--text-light);
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 4px 14px var(--glow-cyan);
}

/* Contact Map Column (Right Column Map Card) */
.contact-map-col {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-map-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-map-card:hover {
  border-color: rgba(0, 210, 255, 0.4);
  box-shadow: var(--shadow-md);
}

.map-card-header {
  padding: 1.25rem 1.6rem;
  background: var(--bg-surface-elevated);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.map-header-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.map-header-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(0, 210, 255, 0.1);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.map-header-left h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.map-header-left span {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
}

.btn-open-maps {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--accent-gradient);
  color: var(--text-light);
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-glow);
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.btn-open-maps:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--glow-blue);
  color: var(--text-light);
}

.map-card-body {
  flex: 1;
  min-height: 420px;
  position: relative;
  width: 100%;
  background: var(--bg-main);
}

.map-card-body iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(1.05);
  transition: filter var(--transition-fast);
}

/* Dark mode map adaptation */
[data-theme="dark"] .map-card-body iframe {
  filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

.map-card-footer {
  padding: 0.85rem 1.6rem;
  background: var(--bg-surface-elevated);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.map-footer-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.map-footer-item i {
  color: var(--accent-cyan);
}

/* ==========================================================================
   Footer — Premium Corporate 3-Column Layout
   ========================================================================== */
.site-footer {
  padding: 80px 0 35px 0;
  position: relative;
  overflow: hidden;
  transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 102, 254, 0.3) 20%, rgba(0, 210, 255, 0.7) 50%, rgba(0, 102, 254, 0.3) 80%, transparent 100%);
}

/* Dark Theme Footer */
[data-theme="dark"] .site-footer {
  background: #070b16;
  color: #cbd5e1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background-image: radial-gradient(circle at 12% 15%, rgba(0, 102, 254, 0.08) 0%, transparent 40%),
                    radial-gradient(circle at 88% 25%, rgba(0, 210, 255, 0.06) 0%, transparent 45%);
}

/* Light Theme Footer */
[data-theme="light"] .site-footer {
  background: #f1f5f9;
  color: #475569;
  border-top: 1px solid #e2e8f0;
  background-image: radial-gradient(circle at 15% 15%, rgba(0, 102, 254, 0.04) 0%, transparent 40%),
                    radial-gradient(circle at 85% 25%, rgba(0, 210, 255, 0.04) 0%, transparent 45%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.75fr 1fr 1.35fr;
  gap: 3rem 4.5rem;
  margin-bottom: 3.5rem;
}

/* Col 1: Brand & Identity */
.footer-brand-col {
  display: flex;
  flex-direction: column;
}

.footer-logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.footer-logo {
  height: 52px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
}

/* Logo Theme Switch */
[data-theme="light"] .footer-logo-light {
  display: block;
}
[data-theme="light"] .footer-logo-dark {
  display: none;
}

[data-theme="dark"] .footer-logo-light {
  display: none;
}
[data-theme="dark"] .footer-logo-dark {
  display: block;
}

.footer-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all var(--transition-fast);
}

[data-theme="dark"] .footer-trust-badge {
  background: rgba(0, 210, 255, 0.08);
  border: 1px solid rgba(0, 210, 255, 0.22);
  color: #00d2ff;
}

[data-theme="light"] .footer-trust-badge {
  background: rgba(0, 102, 254, 0.08);
  border: 1px solid rgba(0, 102, 254, 0.2);
  color: #0052cc;
}

.footer-trust-badge i {
  font-size: 0.8rem;
  color: #f59e0b;
}

.footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 360px;
}

[data-theme="dark"] .footer-brand-desc {
  color: #94a3b8;
}

[data-theme="light"] .footer-brand-desc {
  color: #64748b;
}

.footer-social-wrapper {
  margin-top: auto;
}

.footer-social-title {
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.65rem;
}

[data-theme="dark"] .footer-social-title {
  color: #64748b;
}

[data-theme="light"] .footer-social-title {
  color: #64748b;
}

.social-icons-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

[data-theme="dark"] .social-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
}

[data-theme="light"] .social-btn {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #475569;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
  transition: transform var(--transition-fast);
}

.social-linkedin:hover {
  background: #0a66c2 !important;
  border-color: #0a66c2 !important;
  color: #ffffff !important;
  box-shadow: 0 6px 18px rgba(10, 102, 194, 0.4);
  transform: translateY(-3px);
}

.social-instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%) !important;
  border-color: transparent !important;
  color: #ffffff !important;
  box-shadow: 0 6px 18px rgba(214, 36, 159, 0.4);
  transform: translateY(-3px);
}

.social-facebook:hover {
  background: #1877f2 !important;
  border-color: #1877f2 !important;
  color: #ffffff !important;
  box-shadow: 0 6px 18px rgba(24, 119, 242, 0.4);
  transform: translateY(-3px);
}

.social-youtube:hover {
  background: #ff0000 !important;
  border-color: #ff0000 !important;
  color: #ffffff !important;
  box-shadow: 0 6px 18px rgba(255, 0, 0, 0.4);
  transform: translateY(-3px);
}

/* Headings */
.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 1.3rem;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 0.65rem;
}

[data-theme="dark"] .footer-col-title {
  color: #f8fafc;
}

[data-theme="light"] .footer-col-title {
  color: #0f172a;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2.5px;
  background: linear-gradient(90deg, #00d2ff, #0066fe);
  border-radius: 2px;
}

/* Col 2: Navigation Links */
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav-list li a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.22s ease;
  font-weight: 500;
}

[data-theme="dark"] .footer-nav-list li a {
  color: #94a3b8;
}

[data-theme="light"] .footer-nav-list li a {
  color: #475569;
}

.footer-nav-list li a i {
  font-size: 0.72rem;
  transition: all 0.22s ease;
}

[data-theme="dark"] .footer-nav-list li a i {
  color: #475569;
}

[data-theme="light"] .footer-nav-list li a i {
  color: #94a3b8;
}

.footer-nav-list li a:hover {
  transform: translateX(5px);
}

[data-theme="dark"] .footer-nav-list li a:hover {
  color: #00d2ff;
}

[data-theme="dark"] .footer-nav-list li a:hover i {
  color: #00d2ff;
  transform: translateX(2px);
}

[data-theme="light"] .footer-nav-list li a:hover {
  color: #0066fe;
}

[data-theme="light"] .footer-nav-list li a:hover i {
  color: #0066fe;
  transform: translateX(2px);
}

/* Col 3: Group Companies List — %50 tighter spacing */
.footer-companies-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.12rem; /* %50 tighter */
}

.footer-companies-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.22rem 0.45rem; /* %50 tighter */
  border-radius: 7px;
  text-decoration: none;
  font-size: 0.86rem;
  transition: all 0.22s ease;
  border: 1px solid transparent;
  background: transparent;
}

[data-theme="dark"] .footer-companies-list li a {
  color: #94a3b8;
}

[data-theme="light"] .footer-companies-list li a {
  color: #334155;
}

.company-icon-bullet {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  margin-right: 0.55rem;
  flex-shrink: 0;
  transition: all 0.22s ease;
}

[data-theme="dark"] .company-icon-bullet {
  background: rgba(255, 255, 255, 0.05);
  color: #00d2ff;
}

[data-theme="light"] .company-icon-bullet {
  background: #e2e8f0;
  color: #0066fe;
}

.company-name {
  flex: 1;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ext-arrow {
  font-size: 0.65rem;
  opacity: 0;
  transform: translate(-3px, 3px);
  transition: all 0.22s ease;
  flex-shrink: 0;
  margin-left: 0.35rem;
}

[data-theme="dark"] .ext-arrow {
  color: #475569;
}

[data-theme="light"] .ext-arrow {
  color: #94a3b8;
}

.footer-companies-list li a:hover {
  transform: translateX(3px);
}

[data-theme="dark"] .footer-companies-list li a:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
}

[data-theme="dark"] .footer-companies-list li a:hover .company-icon-bullet {
  background: rgba(0, 210, 255, 0.18);
  color: #00d2ff;
}

[data-theme="dark"] .footer-companies-list li a:hover .ext-arrow {
  opacity: 1;
  transform: translate(0, 0);
  color: #00d2ff;
}

[data-theme="light"] .footer-companies-list li a:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  color: #0066fe;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .footer-companies-list li a:hover .company-icon-bullet {
  background: rgba(0, 102, 254, 0.12);
  color: #0066fe;
}

[data-theme="light"] .footer-companies-list li a:hover .ext-arrow {
  opacity: 1;
  transform: translate(0, 0);
  color: #0066fe;
}

/* Footer Bottom Bar */
.footer-bottom {
  padding-top: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  transition: border-color var(--transition-normal);
}

[data-theme="dark"] .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .footer-bottom {
  border-top: 1px solid #e2e8f0;
}

.footer-bottom-copy p {
  font-size: 0.84rem;
  margin: 0;
}

[data-theme="dark"] .footer-bottom-copy p {
  color: #64748b;
}

[data-theme="light"] .footer-bottom-copy p {
  color: #64748b;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
}

.footer-legal-links a {
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}

[data-theme="dark"] .footer-legal-links a {
  color: #94a3b8;
}

[data-theme="dark"] .footer-legal-links a:hover {
  color: #00d2ff;
}

[data-theme="light"] .footer-legal-links a {
  color: #64748b;
}

[data-theme="light"] .footer-legal-links a:hover {
  color: #0066fe;
}

.legal-sep {
  user-select: none;
}

[data-theme="dark"] .legal-sep {
  color: #334155;
}

[data-theme="light"] .legal-sep {
  color: #cbd5e1;
}



/* ==========================================================================
   Company Detail Modal
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 7, 14, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(30px) scale(0.96);
  transition: transform var(--transition-normal);
  position: relative;
}

.modal-overlay.active .modal-container {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-card);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--accent-gradient);
  color: white;
  border-color: transparent;
}

.modal-header-banner {
  position: relative;
  height: 120px;
  background: radial-gradient(circle at top right, var(--glow-cyan) 0%, transparent 65%),
              linear-gradient(135deg, var(--bg-surface-elevated) 0%, var(--bg-surface) 100%);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  padding: 0 2rem;
}

.modal-header-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--accent-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px var(--glow-cyan);
}

.modal-body {
  padding: 2rem;
}

.modal-category-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-cyan);
  background: var(--bg-surface-elevated);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  margin-bottom: 0.75rem;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.modal-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.modal-section-subtitle {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-cyan);
}

.modal-highlights-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1rem;
  margin-bottom: 2rem;
}

.modal-highlights-list li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.modal-highlights-list li i {
  color: var(--accent-cyan);
  font-size: 0.8rem;
}

.modal-footer-actions {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: white;
  border: none;
  box-shadow: var(--shadow-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all var(--transition-normal);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px var(--glow-blue);
}

/* ==========================================================================
   Toast Notification
   ========================================================================== */
.toast-msg {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-surface-elevated);
  color: var(--text-primary);
  padding: 1rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-card);
  border-left: 4px solid var(--color-success);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  font-weight: 500;
  z-index: 99999;
  transform: translateY(150%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s ease;
}

.toast-msg.show {
  transform: translateY(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.toast-msg i {
  color: var(--color-success);
  font-size: 1.25rem;
}

/* ==========================================================================
   Legal & KVKK Modal Specialized Styling
   ========================================================================== */
.legal-modal-container {
  max-width: 820px !important;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
}

.legal-modal-body {
  padding: 2.2rem 2.5rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.legal-modal-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1.25rem;
}

.legal-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(30, 77, 217, 0.15), rgba(6, 182, 212, 0.15));
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  flex-shrink: 0;
}

.legal-modal-header .modal-category-badge {
  margin-bottom: 0.35rem;
}

.legal-modal-header .modal-title {
  margin-bottom: 0;
  font-size: 1.4rem;
}

.legal-modal-content-wrapper {
  overflow-y: auto;
  max-height: 52vh;
  padding-right: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
}

.legal-modal-content-wrapper::-webkit-scrollbar {
  width: 6px;
}
.legal-modal-content-wrapper::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
}
.legal-modal-content-wrapper::-webkit-scrollbar-thumb {
  background: var(--border-subtle);
  border-radius: 3px;
}
.legal-modal-content-wrapper::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}

.legal-section {
  margin-bottom: 1.6rem;
}

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

.legal-section h4 {
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  font-family: var(--font-heading);
}

.legal-section p {
  margin-bottom: 0.8rem;
}

.legal-table-responsive {
  width: 100%;
  overflow-x: auto;
  margin: 1rem 0;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  text-align: left;
}

.legal-table th,
.legal-table td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: top;
}

.legal-table th {
  background: var(--bg-surface-elevated);
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-table tr:last-child td {
  border-bottom: none;
}

.legal-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

.legal-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.legal-bullet-list li {
  position: relative;
  padding-left: 1.35rem;
  line-height: 1.6;
}

.legal-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
}

.legal-notice-box {
  background: rgba(6, 182, 212, 0.07);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.15rem;
  margin: 1.15rem 0 0.5rem 0;
  display: flex;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.legal-notice-box i {
  color: var(--accent-cyan);
  font-size: 1.15rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.legal-download-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  margin: 1.35rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.legal-download-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.legal-download-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.legal-download-info h5 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.legal-download-info p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin: 0;
}

.btn-download-pdf {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #ef4444;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.7rem 1.3rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-download-pdf:hover {
  background: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(239, 68, 68, 0.35);
}

.legal-modal-footer {
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-outline-legal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--border-card);
  color: var(--text-secondary);
  padding: 0.6rem 1.15rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-outline-legal:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
  background: var(--bg-surface-elevated);
}

/* ==========================================================================
   Cookie Consent Banner
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(140px);
  width: calc(100% - 48px);
  max-width: 1040px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.03);
  padding: 1.25rem 1.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.4s ease;
}

[data-theme="dark"] .cookie-banner {
  background: #0e1726;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cookie-banner-main {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
  min-width: 0;
}

.cookie-icon-badge {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: #ecfdf5;
  border: 1.5px solid #a7f3d0;
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

[data-theme="dark"] .cookie-icon-badge {
  background: rgba(16, 185, 129, 0.14);
  border-color: rgba(16, 185, 129, 0.35);
  color: #34d399;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cookie-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.01em;
}

[data-theme="dark"] .cookie-title {
  color: #f8fafc;
}

.cookie-text {
  font-family: var(--font-body);
  font-size: 0.86rem;
  line-height: 1.55;
  color: #475569;
  margin: 0;
}

[data-theme="dark"] .cookie-text {
  color: #94a3b8;
}

.cookie-link {
  color: #10b981;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.cookie-link:hover {
  color: #059669;
}

[data-theme="dark"] .cookie-link {
  color: #34d399;
}

[data-theme="dark"] .cookie-link:hover {
  color: #6ee7b7;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-cookie {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.7rem 1.45rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  border: none;
  outline: none;
  white-space: nowrap;
}

.btn-cookie-necessary {
  background: #f8fafc;
  color: #334155;
  border: 1.5px solid #cbd5e1;
}

.btn-cookie-necessary:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
  color: #0f172a;
  transform: translateY(-1px);
}

[data-theme="dark"] .btn-cookie-necessary {
  background: rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
  border-color: rgba(255, 255, 255, 0.16);
}

[data-theme="dark"] .btn-cookie-necessary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.btn-cookie-accept {
  background: #2ea664;
  color: #ffffff;
  border: 1.5px solid transparent;
  box-shadow: 0 4px 14px rgba(46, 166, 100, 0.35);
}

.btn-cookie-accept:hover {
  background: #279357;
  box-shadow: 0 6px 18px rgba(46, 166, 100, 0.45);
  transform: translateY(-1px);
}

.btn-cookie-accept:active,
.btn-cookie-necessary:active {
  transform: translateY(0);
}

