/*
Theme Name: HomeBox Theme v34
Theme URI: https://www.homeboxmobil.com/
Author: HomeBox Team
Author URI: https://www.coreturc.com/
Description: Özel tasarımlı kurumsal HomeBox WordPress teması.
Version: 34.0.0
License: All rights reserved.
Text Domain: homebox
*/

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background-color: #ffffff;
  min-height: 100%;
  height: 100%;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: #ffffff;
  color: #1d1d1f;
  overflow-x: hidden;
  min-height: 100%;
  /* Safe area support for notch/home indicator devices */
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

/* Modern Navigation Header */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 40px;
  z-index: 100; /* Stays above everything */
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  transition: padding 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  pointer-events: none; /* Allows click-through behind empty areas */
  transform: translateY(0);
  opacity: 1;
}

.navbar.navbar-hidden {
  transform: translateY(-110%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.nav-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 10px 30px;
  box-sizing: border-box;
  pointer-events: auto; /* Re-enable clicks inside the menu container */
  
  /* Pre-allocated capsule properties to prevent rectangular corner flashing during scroll transitions */
  background: rgba(10, 10, 10, 0); 
  border-radius: 100px; 
  border: 1px solid rgba(255, 255, 255, 0); 
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0), inset 0 0px 0 rgba(255, 255, 255, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}

.logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: #111;
  text-decoration: none;
  letter-spacing: -1.5px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo span {
  font-weight: 300;
  color: #555555;
  transition: color 0.5s ease;
}

.nav-menu {
  display: flex;
  gap: 35px;
  align-items: center;
  transition: gap 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-item {
  color: #333333;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.2px;
  transition: color 0.3s ease;
}

.nav-item:hover {
  color: #000000;
}

.nav-actions {
  display: flex;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-quote {
  background-color: #111111;
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-quote:hover {
  background-color: #333333;
  transform: translateY(-1px);
}

/* ==========================================
   MORPHING PILL NAVBAR STYLE (Wolverine Revisions)
   ========================================== */
.navbar-pill {
  padding: 15px 20px; /* Reduced top gap when scrolled */
}

.navbar-pill .nav-container {
  max-width: 530px; /* Contracts layout width to wrap items tightly */
  background: rgba(10, 10, 10, 0.88); /* Translucent black capsule */
  border-radius: 100px; /* Pre-allocated capsule border radius remains static */
  padding: 6px 20px; /* Sleek, thin vertical padding */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  justify-content: center;
  gap: 20px; /* Tight gaps between components */
}

.navbar-pill .logo {
  font-size: 1rem; /* Sleek compact logo sizing */
  color: #ffffff;
  margin-right: 10px;
  letter-spacing: -1px;
}

.navbar-pill .logo span {
  color: #888888;
}

.navbar-pill .nav-menu {
  gap: 16px; /* Tightens menu spacing inside capsule */
}

.navbar-pill .nav-item {
  color: rgba(255, 255, 255, 0.6); /* Slightly dimmed text inside pill */
  font-size: 0.85rem; /* Elegant smaller typography */
}

.navbar-pill .nav-item:hover {
  color: #ffffff;
}

/* Hide the CTA quote button inside pill mode for minimalist layout */
.navbar-pill .nav-actions {
  opacity: 0;
  pointer-events: none;
  width: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* Tablet & Mobile responsive override for navbar */
@media (max-width: 991px) {
  .navbar-pill .nav-container {
    max-width: 92%;
    gap: 12px;
    padding: 6px 15px;
  }
}

/* Container for the pinned hero animation */
.hero-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: #d1e5f0; /* Light sky blue background */
}

/* Base sky background */
.sky-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #a1c4fd 0%, #c2e9fb 100%);
  z-index: 1;
}

/* Combined SVG for Hero Animation */
.hero-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

/* Initially hide the masked house inside the text */
#house-masked {
  opacity: 0;
}

/* Fog Layers Base */
.fog {
  position: absolute;
  left: -10%;
  width: 120vw;
  height: auto;
  object-fit: cover;
}

.fog-back {
  bottom: -15%; /* Original position for the background sky/fog */
  opacity: 0.9;
  z-index: 2; /* Behind house */
}

.fog-front {
  bottom: -30%; /* Lowered so it's less intense */
  opacity: 0.9;
  z-index: 5; /* In front of house and text */
}

/* Hero Text Overlay */
.hero-text-overlay {
  position: absolute;
  top: 18%; /* Positioned above the house */
  left: 0;
  text-align: center;
  z-index: 4;
  width: 100%;
}

.hero-text-overlay h1 {
  font-size: 5.5rem;
  font-weight: 800;
  letter-spacing: -2px;
  color: rgba(50, 50, 50, 0.85); /* Nice dark grey, semi-transparent like the example */
  margin-bottom: 15px;
}

.hero-text-overlay p {
  font-size: 1.5rem;
  font-weight: 400;
  color: rgba(80, 80, 80, 0.8);
}

.main-text {
  font-size: 220px; /* Coordinates of 1920x1080 */
  font-weight: 900;
  letter-spacing: -2px;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
}

/* Outline SVG Styling */
.outline-path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 3px;
  stroke-dasharray: 4500;
  stroke-dashoffset: 4500;
}

/* Cloud Transition Layer */
.cloud-transition {
  position: absolute;
  top: 100vh; /* Hidden below screen */
  left: 0;
  width: 100%;
  height: 400vh; /* Increased from 350vh to 400vh to fit new clouds */
  z-index: 10;
}

.transition-cloud {
  position: absolute;
  width: 140vw; /* Stretch wider than the viewport to completely hide the edges */
  left: -20vw;
  height: auto;
  object-fit: cover;
  opacity: 1;
}

/* Parallax creeping clouds (First look: few clouds rising slowly) */
.p1 { top: -20vh; }
.p2 { top: 0vh; transform: scaleX(-1); }
.p3 { top: 20vh; }

/* Massive wall of clouds (18 stacked and layered closely) */
.w1 { top: 50vh; }
.w2 { top: 62vh; }
.w3 { top: 74vh; transform: scaleX(-1); }
.w4 { top: 86vh; }
.w5 { top: 98vh; }
.w6 { top: 110vh; transform: scaleX(-1); }
.w7 { top: 122vh; }
.w8 { top: 134vh; }
.w9 { top: 146vh; transform: scaleX(-1); }
.w10 { top: 158vh; }
.w11 { top: 170vh; }
.w12 { top: 182vh; transform: scaleX(-1); }
.w13 { top: 194vh; }
.w14 { top: 206vh; transform: scaleX(-1); }
.w15 { top: 218vh; }
.w16 { top: 230vh; transform: scaleX(-1); }
.w17 { top: 242vh; }
.w18 { top: 254vh; transform: scaleX(-1); }

.cloud-base {
  position: absolute;
  top: 200vh; /* Start overlapping behind the last few clouds */
  left: 0;
  width: 100%;
  height: 250vh; /* Covers screen completely at the end */
  /* Smoothly fade the blue sky to solid white so the transition is unnoticeable */
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 40vh, #ffffff 100%);
}

/* Quality Statement Overlay inside Hero */
.quality-statement-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 900px;
  text-align: center;
  z-index: 11; /* Above the clouds (z-index 10) */
  pointer-events: none; /* Ignore clicks when hidden */
  transition: pointer-events 0.3s;
}

.quality-statement-overlay.active {
  pointer-events: auto; /* Allow clicks when active */
}

.q-title {
  font-size: 4rem;
  font-weight: 900;
  color: #111;
  margin-bottom: 25px;
  letter-spacing: -2px;
  line-height: 1.2;
  opacity: 0;
}

.q-desc {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
  color: #444;
  margin-bottom: 35px;
  opacity: 0;
}

.btn-quality-cta {
  display: inline-block;
  background-color: #111;
  color: #fff;
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border: 2px solid transparent;
  opacity: 0;
}

.btn-quality-cta:hover {
  background-color: #fff;
  color: #111;
  border-color: #111;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Second Section (Features Grid) */
.content-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(180deg, #a1c4fd 0%, #f0f4f8 35%, #ffffff 100%);
  z-index: 15; /* Sits above the hero and fog transition */
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0; /* Will fade in via GSAP */
}

.content-wrapper {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.features-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 60px;
  letter-spacing: -1.5px;
  color: #111;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  text-align: left;
}

.feature-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.03);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(161, 196, 253, 0.22);
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(255, 255, 255, 0.8);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: #111;
  color: #fff;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.5s ease;
}

.feature-card:hover .feature-icon {
  transform: rotateY(180deg);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.feature-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.feature-card p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.65;
}

.page-wrapper {
  position: relative;
  z-index: 2;
  background: #ffffff; /* Must have a solid background to cover the footer */
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  min-height: 100vh;
  min-height: 100dvh; /* Dynamic viewport height for mobile browsers */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .main-text {
    font-size: 100px;
  }
  .q-title {
    font-size: 2.2rem;
    letter-spacing: -1px;
    margin-bottom: 15px;
  }
  .q-desc {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 25px;
  }
  .btn-quality-cta {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
  .features-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
}

/* Floating Idle Animations to make clouds feel alive */
@keyframes float-cloud-left {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(3vw, 8px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

@keyframes float-cloud-right {
  0% { transform: translate3d(3vw, 8px, 0); }
  50% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(3vw, 8px, 0); }
}

@keyframes float-cloud-front {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(2vw, 5px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

/* Apply floating animations */
.fog-front {
  animation: float-cloud-front 14s ease-in-out infinite;
}

.transition-cloud:nth-child(even) {
  animation: float-cloud-left 12s ease-in-out infinite;
}

.transition-cloud:nth-child(odd) {
  animation: float-cloud-right 16s ease-in-out infinite;
}

/* ==========================================
   MODELLERİMİZ SECTION STYLES (Ultra Premium)
   ========================================== */

.models-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  margin-top: 0; /* Align sequentially with the end of the hero container to avoid pin overlaps */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  z-index: 12;
}

.models-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 101%; /* Extend slightly to prevent subpixel gaps */
  background: linear-gradient(180deg, #ffffff 0%, rgba(209,229,240,0.6) 35%, #a1c4fd 100%);
  z-index: 1;
  pointer-events: none;
  opacity: 1; /* Always visible, creates a seamless bridge */
}

.models-container {
  position: relative;
  width: 90%;
  max-width: 1200px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 3;
  padding-top: 60px;
  box-sizing: border-box;
}

.models-title {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -2px;
  color: #111111;
  margin: 0 0 40px 0;
  text-align: center;
  text-transform: uppercase;
  opacity: 0; /* Animated via GSAP */
}

/* Stacking Wrapper */
.models-stack-wrapper {
  position: relative;
  width: 100%;
  max-width: 940px;
  height: 520px;
  margin: 0 auto;
}

/* Base style for stacking card */
.model-stack-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  background: rgba(15, 15, 15, 0.75);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  gap: 40px;
  will-change: transform, opacity;
  transform-style: preserve-3d;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  color: #ffffff;
}

.model-stack-card:hover {
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.25);
}

.card-inner-stack {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 30px;
  transform-style: preserve-3d;
  will-change: transform;
}

/* Left Image Column */
.stack-card-img {
  width: 50%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #1a1a1a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transform: translateZ(25px);
}

.stack-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.3, 1);
}

.model-stack-card:hover .stack-card-img img {
  transform: scale(1.05);
}

/* Right Content Column */
.stack-card-info {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  padding: 10px 10px 10px 0;
  transform: translateZ(15px);
}

.stack-top-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stack-badge {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  color: #e88d23;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.stack-badge.badge-popular {
  color: #0071e3;
}

.stack-model-name {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.8px;
  line-height: 1.1;
}

.stack-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 5px;
  letter-spacing: -0.3px;
}

.stack-price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 5px;
  letter-spacing: 0;
}

/* Specs list split by dividers */
.stack-specs-list {
  list-style: none;
  padding: 12px 0;
  margin: 15px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.stack-specs-list li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: space-between;
}

.stack-specs-list li strong {
  color: #ffffff;
  font-weight: 600;
}

/* Action Buttons row */
.stack-actions {
  display: flex;
  gap: 15px;
  width: 100%;
}

.btn-stack-details {
  flex: 1;
  display: block;
  text-align: center;
  background-color: #ffffff;
  color: #111111;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background-color 0.2s, transform 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-stack-details:hover {
  background-color: #eaeaea;
  transform: translateY(-1px);
}

.btn-stack-quote {
  flex: 1;
  display: block;
  text-align: center;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 11px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.btn-stack-quote:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
  transform: translateY(-1px);
}



/* Stacking Responsive Adjustments for Mobile & Tablet */
@media (max-width: 991px) {
  .models-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    overflow: hidden;
  }
  .models-container {
    height: 100%;
    padding-top: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .models-title {
    font-size: 2.1rem;
    margin-bottom: 15px;
    letter-spacing: -1px;
  }
  .models-stack-wrapper {
    position: relative;
    width: 90%;
    max-width: 420px;
    height: 510px;
    margin: 0 auto;
    display: block;
  }
  .model-stack-card {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border-radius: 24px !important;
    padding: 16px !important;
    flex-direction: column !important;
    gap: 10px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    background: rgba(15, 15, 15, 0.92) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
  }
  .card-inner-stack {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 100% !important;
    gap: 10px !important;
    justify-content: space-between !important;
  }
  .stack-card-img {
    width: 100% !important;
    height: 160px !important;
    flex-shrink: 0 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
  }
  .stack-card-info {
    width: 100% !important;
    padding-left: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    justify-content: space-between !important;
    flex: 1 !important;
  }
  .stack-top-meta {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
  }
  .stack-badge {
    font-size: 0.65rem !important;
    padding: 2px 8px !important;
    border-radius: 12px !important;
    align-self: flex-start !important;
    margin-bottom: 2px !important;
  }
  .stack-model-name {
    font-size: 1.25rem !important;
    font-weight: 900 !important;
    letter-spacing: -0.3px !important;
    color: #ffffff !important;
  }
  .stack-price {
    font-size: 1.05rem !important;
    font-weight: 800 !important;
  }
  .stack-price span {
    font-size: 0.68rem !important;
    font-weight: 400 !important;
    opacity: 0.7 !important;
  }
  .stack-specs-list {
    margin: 4px 0 !important;
    padding: 6px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    list-style: none !important;
  }
  .stack-specs-list li {
    font-size: 0.76rem !important;
    display: flex !important;
    justify-content: space-between !important;
    color: rgba(255, 255, 255, 0.75) !important;
  }
  .stack-specs-list li strong {
    color: #ffffff !important;
    font-weight: 700 !important;
  }
  .stack-actions {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    margin-top: 4px !important;
    width: 100% !important;
  }
  .btn-stack-details {
    flex: 1 !important;
    text-align: center !important;
    padding: 9px 10px !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    color: #111111 !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
  }
  .btn-stack-quote {
    flex: 1 !important;
    text-align: center !important;
    padding: 8px 10px !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    text-decoration: none !important;
  }
}

/* ==========================================
   BLOG SECTION STYLES (Ultra Premium)
   ========================================== */
.blog-section {
  position: relative;
  width: 100%;
  padding: 120px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 50%, #e2eff7 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog-container {
  max-width: 1200px;
  width: 100%;
}

/* Header Grid */
.blog-header-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: start;
  text-align: left;
  margin-bottom: 70px;
}

.blog-header-left h2 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  color: #111;
  text-transform: uppercase;
}

.blog-header-left .subtitle-muted {
  color: #999999;
}

.blog-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}

.blog-header-right p {
  font-size: 1.3rem;
  color: #444;
  line-height: 1.6;
}

.btn-visit-blog {
  display: inline-block;
  background-color: #111;
  color: #fff;
  padding: 14px 34px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border: 2px solid transparent;
}

.btn-visit-blog:hover {
  background-color: transparent;
  color: #111;
  border-color: #111;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Horizontal Blog Rows */
.blog-list {
  display: flex;
  flex-direction: column;
}

.blog-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 50px 0;
  text-align: left;
  cursor: pointer;
}

.blog-row:hover h3 {
  color: #0066cc;
}

.blog-row-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.blog-row-date {
  font-size: 0.95rem;
  color: #888;
  font-weight: 600;
  margin-bottom: 15px;
}

.blog-row-left h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #111;
  line-height: 1.3;
  margin-bottom: 15px;
  letter-spacing: -0.8px;
  transition: color 0.3s ease;
}

.blog-row-left p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.btn-blog-row-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #111;
  padding: 10px 24px;
  border-radius: 30px;
  color: #111;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-blog-row-read:hover {
  background-color: #111;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.blog-row-right {
  position: relative;
  width: 100%;
}

.blog-row-img-container {
  position: relative;
  width: 100%;
  height: 340px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.05);
}

.blog-row-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-row:hover .blog-row-img-container img {
  transform: scale(1.04);
}

.blog-row-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .blog-section {
    padding: 80px 20px;
  }
  .blog-header-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
  }
  .blog-header-left h2 {
    font-size: 2.8rem;
  }
  .blog-header-right p {
    font-size: 1.1rem;
  }
  .blog-row {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
    padding: 40px 0;
  }
  .blog-row-left h3 {
    font-size: 1.6rem;
  }
  .blog-row-img-container {
    height: 240px;
  }
}

/* ==========================================
   ESGİNLER BRANDING CARD STYLES (Wolverine style)
   ========================================== */
.branding-section {
  position: relative;
  width: 100%;
  padding: 120px 20px;
  background: linear-gradient(180deg, #e2eff7 0%, #ffffff 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.branding-container {
  max-width: 1200px;
  width: 100%;
}

.branding-card {
  background: #000000;
  border-radius: 32px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: stretch;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
  min-height: 560px;
  position: relative;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.branding-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.25);
}

.branding-card-left {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
}

.branding-logo-centered-wrapper {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #080808; /* Pure dark grey/black background */
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05); /* Subtle dark border */
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, background 0.4s ease;
}

.branding-card:hover .branding-logo-centered-wrapper {
  border-color: rgba(255, 255, 255, 0.1);
  background: #0d0d0d;
}

.brand-logo-large {
  max-width: 80%; /* Even larger logo visual */
  max-height: 250px; /* Much taller limit */
  width: auto;
  height: auto;
  display: block;
  mix-blend-mode: screen; /* Blends logo transparently by removing black background */
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.branding-card:hover .brand-logo-large {
  transform: scale(1.03); /* Subtle scaling */
}

.branding-card-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  padding: 15px 10px;
}

.branding-card-header h2 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: #ffffff;
  text-transform: uppercase;
}

.branding-card-header .header-light {
  font-weight: 300;
  color: #aaaaaa;
}

.branding-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 40px;
  width: 100%;
}

.branding-card-desc {
  flex: 1;
  margin-right: 40px;
}

.branding-card-desc p {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* Share/Expand button styled as requested in the second image */
.branding-arrow-btn {
  width: 54px;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #888888;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), color 0.3s ease;
  flex-shrink: 0;
}

.wolverine-arrow-icon {
  width: 38px;
  height: 38px;
  stroke-width: 2.2px;
}

.branding-card:hover .branding-arrow-btn {
  color: #ffffff;
  transform: scale(1.1) translate(2px, -2px);
}

/* Responsive */
@media (max-width: 991px) {
  .branding-card {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
    padding: 30px;
  }
  .branding-img-wrapper {
    min-height: 380px;
  }
  .branding-card-header h2 {
    font-size: 3.2rem;
  }
}

@media (max-width: 768px) {
  .branding-section {
    padding: 80px 15px;
  }
  .branding-card {
    border-radius: 24px;
    padding: 20px;
  }
  .branding-img-wrapper {
    min-height: 280px;
  }
  .branding-logo-overlay {
    top: 20px;
    left: 20px;
    padding: 10px 18px;
  }
  .brand-logo-white {
    max-height: 38px;
  }
  .branding-card-header h2 {
    font-size: 2.5rem;
  }
  .branding-card-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
    gap: 15px;
  }
  .branding-card-desc {
    margin-right: 20px;
  }
}

/* ==========================================
   TESTIMONIALS SECTION STYLES (Success Stories)
   ========================================== */
.testimonials-section {
  position: relative;
  width: 100%;
  padding: 140px 20px;
  background: linear-gradient(180deg, #e2eff7 0%, #ffffff 50%, #e2eff7 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.testimonials-container {
  max-width: 1200px;
  width: 100%;
}

.testimonials-header-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: start;
  text-align: left;
  margin-bottom: 60px;
}

.testimonials-header-left h2 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  color: #111;
  text-transform: uppercase;
}

.testimonials-header-left .title-muted {
  color: #999999;
}

.testimonials-header-right p {
  font-size: 1.3rem;
  color: #444;
  line-height: 1.6;
}

.testimonials-divider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin-bottom: 45px;
}

.testimonials-controls-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 45px;
}

.testimonial-dots {
  display: flex;
  gap: 12px;
}

.testimonial-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: transparent;
  color: #555;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: #111;
  color: #111;
}

.testimonial-dot.active {
  background: #111;
  color: #fff;
  border-color: #111;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.testimonial-quote-icon {
  font-size: 6rem;
  color: #111;
  font-family: Georgia, serif;
  line-height: 1;
  font-weight: bold;
  height: 60px;
  display: flex;
  align-items: center;
}

/* Testimonial Content Wrapper */
.testimonial-content-wrapper {
  text-align: left;
  min-height: 240px; /* Pre-allocates height to prevent layout jumps on slide switch */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.testimonial-quote {
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1.5;
  color: #111;
  letter-spacing: -0.8px;
  margin-bottom: 35px;
  font-family: system-ui, -apple-system, sans-serif;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1e293b;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
}

.testimonial-author-name {
  font-size: 1rem;
  font-weight: 800;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonial-author-title {
  font-size: 0.85rem;
  color: #666;
  font-weight: 600;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 90px 20px;
  }
  .testimonials-header-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 35px;
  }
  .testimonials-header-left h2 {
    font-size: 2.8rem;
  }
  .testimonials-header-right p {
    font-size: 1.15rem;
  }
  .testimonial-quote {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 25px;
  }
  .testimonial-content-wrapper {
    min-height: 320px; /* More height allocated for wrapped text on smaller screens */
  }
}

/* ==========================================
   WOLVERINE-STYLE REVEAL FOOTER STYLES
   ========================================== */
.site-footer {
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1; /* Underneath page-wrapper */
  background: #000000;
  color: #ffffff;
  padding: 100px 40px 40px;
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.footer-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}

.footer-brand-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 25px;
}

.footer-logo {
  font-size: 2.4rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -1.5px;
}

.footer-logo span {
  font-weight: 300;
  color: #777777;
}

.footer-desc-text {
  font-size: 1.05rem;
  color: #888888;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.footer-social-link {
  font-size: 0.95rem;
  color: #666666;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-social-link:hover {
  color: #ffffff;
}

.footer-links-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
  text-align: left;
}

.footer-main-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 45px;
}

.footer-menu-item {
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: -1px;
  transition: color 0.3s ease;
  line-height: 1;
}

.footer-menu-item:hover {
  color: #888888;
}

.footer-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-sub-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sub-col-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #444444;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.footer-sub-link {
  font-size: 1.05rem;
  color: #888888;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-sub-link:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  font-size: 0.85rem;
  color: #555555;
  letter-spacing: 0.2px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-link {
  color: #555555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-link:hover {
  color: #ffffff;
}

.footer-powered {
  margin-left: 14px;
  color: #777777;
  font-size: 0.82rem;
  letter-spacing: 0.3px;
}

.footer-powered a,
.footer-powered a:visited,
.footer-powered a:hover,
.footer-powered a:focus {
  color: inherit !important;
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.footer-powered strong,
.footer-powered a strong,
.footer-powered a:hover strong {
  color: #aaaaaa !important;
  font-weight: 700;
  text-decoration: none !important;
  border-bottom: none !important;
  transition: color 0.3s ease;
}

.footer-powered a:hover strong {
  color: #ffffff !important;
}

/* Responsive Footer */
@media (max-width: 991px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .footer-menu-item {
    font-size: 2.2rem;
  }
  .site-footer {
    padding: 80px 30px 40px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    position: sticky;
    bottom: 0;
    left: 0;
    z-index: 1;
    min-height: auto;
    padding: 60px 20px 40px;
  }
  .footer-container {
    gap: 50px;
  }
  .footer-logo {
    font-size: 2rem;
  }
  .footer-menu-item {
    font-size: 1.8rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    align-items: center;
  }
  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
}

/* ==========================================
   ESGİNLER CORPORATE PAGE STYLES
   ========================================== */
/* Wolverine-style Scroll-Pin Section */
.about-pin-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
}

.about-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}

.about-hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto; /* Horizontally centered in the viewport */
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-origin: center center;
  will-change: transform, width, height, border-radius;
  background: #000000;
}

.about-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
  pointer-events: none;
}

.about-hero-text-container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  width: 100%;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  box-sizing: border-box;
  text-align: left;
  pointer-events: none;
  will-change: transform;
}

.about-hero-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  box-sizing: border-box;
  pointer-events: auto;
}

.about-hero-col h2 {
  font-size: 3.8rem; /* Refined compact size to fit in column cells */
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: #ffffff; /* White by default on top of full-screen image */
  margin-bottom: 25px;
  text-transform: uppercase;
  transition: color 0.4s ease;
  white-space: nowrap; /* Prevent title wrapping (keep HER GÜN on a single line) */
}

.about-vertical-line-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
}

.about-vertical-line {
  width: 2px;
  height: 100%;
  background: #111111; /* Vertical line draws down in black */
  transform-origin: top;
  transform: scaleY(0);
  will-change: transform;
}

.about-col-content {
  padding-left: 24px;
  box-sizing: border-box;
}

.about-col-desc {
  font-size: 1.05rem;
  color: #555555;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
}
/* Wolverine-style Heritage Section */
.about-heritage-section {
  padding: 140px 20px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.about-heritage-container {
  max-width: 1200px;
  width: 100%;
}

.about-heritage-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  text-align: left;
  align-items: start;
}

.about-heritage-left h2 {
  font-size: 3.8rem;
  font-weight: 800;
  color: #111111;
  letter-spacing: -2px;
  line-height: 1.1;
}

.about-heritage-right p {
  font-size: 1.8rem; /* High impact editorial paragraph font size */
  font-weight: 500;
  color: #111111;
  line-height: 1.55;
  letter-spacing: -0.3px;
}

/* Narrative Section */
.corp-intro-section {
  padding: 120px 20px;
  background: #ffffff;
  display: flex;
  justify-content: center;
}

.corp-intro-container {
  max-width: 1200px;
  width: 100%;
}

.corp-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 80px;
  text-align: left;
  align-items: start;
}

.corp-kicker {
  font-size: 0.85rem;
  font-weight: 700;
  color: #38bdf8;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.corp-intro-left h2 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: #111;
  letter-spacing: -1.5px;
}

.corp-intro-right p {
  font-size: 1.25rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 25px;
}

.corp-intro-right p:last-child {
  margin-bottom: 0;
}

/* Sectors Section */
.corp-sectors-section {
  padding: 120px 20px;
  background: #f7f9fc;
  display: flex;
  justify-content: center;
}

.corp-sectors-container {
  max-width: 1200px;
  width: 100%;
}

.corp-sectors-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #111;
  letter-spacing: -1.5px;
  text-align: left;
  margin-bottom: 60px;
  text-transform: uppercase;
}

/* Flex container for the accordion */
.corp-sectors-flex-container {
  display: flex;
  width: 100%;
  height: 600px;
  gap: 16px;
  overflow: hidden;
  border-radius: 24px;
}

/* Individual card */
.corp-sector-flex-card {
  position: relative;
  flex: 1; /* All cards take equal width initially */
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  transition: flex 0.7s cubic-bezier(0.25, 1, 0.3, 1);
  display: flex;
  align-items: flex-end;
  padding: 40px;
  box-sizing: border-box;
}

/* Background image for each card */
.corp-sector-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.3, 1);
}

/* Dark overlay */
.corp-sector-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 2;
  transition: background 0.5s ease;
}

/* Card content */
.corp-sector-card-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.corp-sector-card-content h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.5px;
  line-height: 1.25;
}

.corp-sector-card-content p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.3, 1), 
              max-height 0.6s cubic-bezier(0.25, 1, 0.3, 1), 
              transform 0.5s cubic-bezier(0.25, 1, 0.3, 1);
}

/* Hover States */
.corp-sector-flex-card:hover {
  flex: 3.2; /* Expands significantly */
}

.corp-sector-flex-card:hover .corp-sector-card-bg {
  transform: scale(1.05); /* Slight zoom on hover */
}

.corp-sector-flex-card:hover .corp-sector-card-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.corp-sector-flex-card:hover .corp-sector-card-content p {
  opacity: 1;
  max-height: 150px; /* Expands to fit text */
  transform: translateY(0);
}

/* Call to Action */
.corp-cta-section {
  padding: 120px 20px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  text-align: center;
}

.corp-cta-container {
  max-width: 800px;
  width: 100%;
}

.corp-cta-container h2 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #111;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.corp-cta-container p {
  font-size: 1.3rem;
  color: #555555;
  margin-bottom: 40px;
  line-height: 1.6;
}

.btn-corp-cta {
  display: inline-block;
  background-color: #111;
  color: #fff;
  padding: 16px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border: 2px solid transparent;
}

.btn-corp-cta:hover {
  background-color: transparent;
  color: #111;
  border-color: #111;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Responsive Corp Page Fallbacks */
@media (max-width: 991px) {
  .corp-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-pin-wrapper {
    height: auto; /* Disables scroll pin on mobile */
  }
  
  .about-hero {
    position: relative;
    height: auto;
    padding: 140px 20px 80px;
    flex-direction: column;
    background-color: #ffffff;
  }
  
  .about-hero-bg-wrapper {
    position: relative;
    width: 100% !important;
    height: 300px !important;
    border-radius: 24px !important;
    transform: none !important;
    margin-bottom: 40px;
  }
  
  .about-hero-overlay {
    opacity: 0.15; /* Subtler overlay on static card */
  }
  
  .about-hero-text-container {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 0;
    transform: none !important;
  }
  
  .about-hero-col h2 {
    font-size: 2.8rem;
    color: #111111 !important; /* Force black text */
    margin-bottom: 15px;
    white-space: normal; /* Allow wrapping on mobile stacked layout */
  }
  
  .about-col-desc {
    opacity: 1;
    transform: none;
  }
  
  .about-vertical-line {
    transform: scaleY(1);
  }

  .about-heritage-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-heritage-left h2 {
    font-size: 2.8rem;
  }
  
  .about-heritage-right p {
    font-size: 1.35rem;
    line-height: 1.6;
  }
  
  /* Mobile Responsive for Sector Accordion */
  .corp-sectors-flex-container {
    flex-direction: column;
    height: auto;
    gap: 16px;
  }
  
  .corp-sector-flex-card {
    height: 250px;
    padding: 30px;
    flex: none !important;
  }
  
  .corp-sector-flex-card:hover {
    flex: none !important;
  }
  
  .corp-sector-flex-card:hover .corp-sector-card-bg {
    transform: none !important;
  }
  
  .corp-sector-flex-card-bg {
    transform: none !important;
  }
  
  .corp-sector-card-content p {
    opacity: 1 !important;
    max-height: none !important;
    transform: none !important;
    margin-top: 10px;
  }
}

/* ==========================================
   MODELS PAGE SLIDER & INTERACTION STYLES
   ========================================== */
.models-page-body {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  background-color: #000000;
  position: relative;
}

/* Scroll Snap Wrapper with Sticky Overlay Layering */
.models-slider-wrapper {
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Hide Firefox scrollbar */
}

.models-slider-wrapper::-webkit-scrollbar {
  display: none; /* Hide Chrome/Safari scrollbar */
}

/* Individual Slide (Sticky Layering Parallax) */
.model-slide {
  position: sticky;
  top: 0;
  width: 100vw;
  height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: var(--slide-index);
  background-color: #000000;
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.5);
}

/* Horizontal Gallery Sub-Slider */
.slide-gallery-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.gallery-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.3, 1);
}

.gallery-slide.active {
  opacity: 1;
  z-index: 2;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 3;
  pointer-events: none;
}

/* Gallery Arrow Navigation Buttons */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 15;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.gallery-arrow svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.gallery-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.05);
}

.prev-arrow {
  left: 40px;
}

.next-arrow {
  right: 40px;
}/* Single Fixed Glassmorphic Info Card Overlay */
.model-info-card {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  width: 90%;
  max-width: 580px;
  background: rgba(15, 15, 15, 0.65);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 20px;
  box-sizing: border-box;
  max-height: 180px; /* Collapsed state limit */
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.25, 1, 0.3, 1), background-color 0.4s ease, bottom 0.6s cubic-bezier(0.25, 1, 0.3, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.model-info-card.expanded {
  max-height: 480px; /* Compact expanded height to fit technical table */
  background: rgba(10, 10, 10, 0.88);
}

/* Card inner layouts and dividing border */
.card-inner-layout {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  text-align: left;
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
}

.card-inner-layout.fade-out {
  opacity: 0;
}

.card-left {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding-right: 18px;
}

.card-brand-logo {
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.5px;
  line-height: 1.1;
  text-transform: uppercase;
}

.card-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Spaced tagline alignment row */
.card-tagline-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 4px;
}

.card-sub-title-left {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.card-sub-title-right {
  font-size: 0.65rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.card-headline {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.4;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.1px;
}

/* Specifications Table Inside Card */
.card-details-table-wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 10px;
  margin-top: 5px;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, max-height 0.5s cubic-bezier(0.25, 1, 0.3, 1), visibility 0.4s;
}

.model-info-card.expanded .card-details-table-wrapper {
  opacity: 1;
  visibility: visible;
  max-height: 340px;
  overflow-y: auto;
}

.card-long-description {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 12px 0;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
}

.card-details-table {
  width: 100%;
  border-collapse: collapse;
}

.card-details-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.card-details-table tr:last-child {
  border-bottom: none;
}

.card-details-table td {
  padding: 6px 4px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

.card-details-table td.spec-name {
  font-weight: 700;
  color: #ffffff;
  width: 35%;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
}

/* Card Actions */
.card-actions-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}

.btn-learn-more {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: inherit;
  transition: all 0.3s;
}

.btn-learn-more span {
  font-size: 0.85rem;
  line-height: 1;
}

.btn-learn-more:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
}

.btn-learn-more.close-state {
  background: #ffffff;
  color: #111111;
  border-color: #ffffff;
}

.btn-model-link {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-model-link:hover {
  background: #ffffff;
  color: #111111;
  border-color: #ffffff;
  transform: translateY(-1px);
}

/* Floating Pill Bottom Control Bar (Centered & Matches Card Width) */
.slider-control-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 580px;
  height: 44px;
  background: rgba(15, 15, 15, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  box-sizing: border-box;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.control-btn-view-all {
  background: transparent;
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: opacity 0.2s;
}

.control-btn-view-all:hover {
  opacity: 0.8;
}

.control-btn-view-all svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.control-active-model-name {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.control-right-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.control-slide-counter {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
}

.control-slide-counter .current-slide {
  color: #ffffff;
}

.control-arrows {
  display: flex;
  gap: 6px;
}

.control-arrow {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}

.control-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.control-arrow svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Frosted-Glass Overlay: VIEW ALL Menü */
.view-all-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.3, 1);
}

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

.view-all-container {
  width: 90%;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  box-sizing: border-box;
}

.view-all-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 1.5px;
  margin: 0;
}

.view-all-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: 55vh;
  overflow-y: auto;
  padding-right: 8px;
}

.view-all-list::-webkit-scrollbar {
  width: 4px;
}

.view-all-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.view-all-item {
  display: flex;
  align-items: center;
  gap: 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 14px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.view-all-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.view-all-item.active {
  background: #ffffff;
  border-color: #ffffff;
  color: #111111;
}

.view-all-item.active .item-name {
  color: #111111;
}

.item-thumb {
  width: 80px;
  height: 54px;
  border-radius: 8px;
  overflow: hidden;
  background: #222222;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.btn-close-view-all {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 30px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.3s;
}

.btn-close-view-all:hover {
  background: #ffffff;
  color: #111111;
  border-color: #ffffff;
}

.btn-close-view-all svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .gallery-arrow {
    width: 44px;
    height: 44px;
  }
  
  .prev-arrow {
    left: 15px;
  }
  
  .next-arrow {
    right: 15px;
  }

  /* --- Mobile Models Page Info Card & Controls --- */
  .model-info-card {
    position: fixed !important;
    bottom: 56px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 92% !important;
    max-width: 440px !important;
    padding: 12px 14px !important;
    margin-bottom: 0 !important;
    max-height: 250px !important; /* Allows full visibility of headline + Detaylar & Teklif Al buttons */
    border-radius: 16px !important;
    background: rgba(12, 12, 12, 0.8) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    z-index: 30 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
  }

  .model-info-card.expanded {
    max-height: 440px !important;
    overflow-y: auto !important;
    background: rgba(8, 8, 8, 0.94) !important;
  }

  .card-inner-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
  }

  .card-left {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    padding-right: 0 !important;
    padding-bottom: 4px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .card-brand-logo {
    font-size: 1.15rem !important;
    font-weight: 900 !important;
    letter-spacing: -0.3px !important;
    color: #ffffff !important;
  }

  .card-right {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
  }

  .card-tagline-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: 2px !important;
    padding-bottom: 2px !important;
  }

  .card-sub-title-left,
  .card-sub-title-right {
    font-size: 0.62rem !important;
    letter-spacing: 0.8px !important;
  }

  .card-headline {
    font-size: 0.82rem !important;
    line-height: 1.35 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 !important;
  }

  .card-actions-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
    margin-top: 4px !important;
    align-items: center !important;
    width: 100% !important;
  }

  .btn-learn-more {
    flex: 1 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 7px 10px !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
  }

  .btn-model-link {
    flex: 1 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 7px 10px !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    color: #000000 !important;
    text-decoration: none !important;
    border: 1px solid #ffffff !important;
  }

  .card-details-table td {
    padding: 6px 2px !important;
    font-size: 0.76rem !important;
  }

  .slider-control-bar {
    padding: 0 10px !important;
    height: 38px !important;
    bottom: 12px !important;
    gap: 8px !important;
  }

  .control-btn-view-all {
    font-size: 0.65rem !important;
    gap: 4px !important;
  }

  .control-btn-view-all svg {
    width: 10px !important;
    height: 10px !important;
  }

  .control-active-model-name {
    font-size: 0.68rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    letter-spacing: 0.5px !important;
  }

  .control-right-group {
    gap: 8px !important;
  }

  .control-slide-counter {
    font-size: 0.65rem !important;
  }

  .control-arrow {
    width: 24px !important;
    height: 24px !important;
  }

  .control-arrow svg {
    width: 12px !important;
    height: 12px !important;
  }
}

/* ========================================================
   İLETİŞİM SAYFASI STİLLERİ (Minimalist, Brutalist & Sharp)
   ======================================================== */

.contact-body {
  font-family: 'Space Grotesk', sans-serif;
  background-color: #f5f5f7;
  color: #111111;
}

.contact-section {
  padding: 180px 80px 120px;
  background-color: #ffffff;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* Grid Separator Lines for GSAP Draw animation */
.contact-line-v {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1.5px;
  background-color: rgba(17, 17, 17, 0.15);
  transform-origin: top center;
  transform: scaleY(0); /* Animated via GSAP */
}

.contact-line-h {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1.5px;
  background-color: rgba(17, 17, 17, 0.15);
  transform-origin: left center;
  transform: scaleX(0); /* Animated via GSAP */
}

/* Left Column: Huge Minimal Text */
.contact-info-col {
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-huge-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -3px;
  text-transform: uppercase;
  margin-bottom: 50px;
  color: #111111;
  /* Animation handled by gsap.from */
}

.contact-huge-title span {
  display: block;
  font-weight: 300;
  color: #888888;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: auto;
}

.contact-detail-item {
  /* Animation handled by gsap.from */
}

.contact-detail-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #888888;
  margin-bottom: 10px;
}

.contact-detail-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #111111;
  text-decoration: none;
  line-height: 1.2;
}

.contact-detail-value a {
  color: #111111;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.contact-detail-value a:hover {
  border-color: #111111;
}

/* Right Column: Form Layout */
.contact-form-col {
  padding-left: 40px;
  display: flex;
  flex-direction: column;
}

.contact-form-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 50px;
  /* Animation handled by gsap.from */
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  /* Animation handled by gsap.from */
}

.contact-form-group label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #888888;
}

.contact-input,
.contact-textarea,
.contact-select {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #111111;
  padding: 12px 0;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(17, 17, 17, 0.2);
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s ease;
  width: 100%;
}

.contact-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.contact-input:focus,
.contact-textarea:focus,
.contact-select:focus {
  border-color: #111111;
}

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

/* Custom dropdown arrow for select */
.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '↓';
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #111111;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.contact-submit-btn {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  background-color: #111111;
  border: 1.5px solid #111111;
  border-radius: 0;
  padding: 20px 40px;
  margin-top: 20px;
  cursor: pointer;
  align-self: flex-start;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.contact-submit-btn:hover {
  background-color: transparent;
  color: #111111;
}

/* Responsive styles */
@media (max-width: 991px) {
  .contact-section {
    padding: 140px 40px 80px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .contact-line-v {
    display: none;
  }
  
  .contact-info-col {
    padding-right: 0;
  }
  
  .contact-form-col {
    padding-left: 0;
  }
  
  .contact-huge-title {
    font-size: 4rem;
  }
  
  .contact-detail-value {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 120px 20px 60px;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .contact-huge-title {
    font-size: 3rem;
  }
}

/* ========================================================
   S.S.S. (FAQ) SAYFASI STİLLERİ (Minimalist, Brutalist & Sharp)
   ======================================================== */

.faq-body {
  font-family: 'Space Grotesk', sans-serif;
  background-color: #f5f5f7;
  color: #111111;
}

.faq-section {
  padding: 180px 80px 120px;
  background-color: #ffffff;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* Grid Separator Lines for GSAP Draw animation */
.faq-line-v {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 60%;
  width: 1.5px;
  background-color: rgba(17, 17, 17, 0.15);
  transform-origin: top center;
  transform: scaleY(0); /* Animated via GSAP */
}

.faq-line-h {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1.5px;
  background-color: rgba(17, 17, 17, 0.15);
  transform-origin: left center;
  transform: scaleX(0); /* Animated via GSAP */
}

/* Left Column: FAQ Accordion & Tabs */
.faq-content-col {
  padding-right: 40px;
  display: flex;
  flex-direction: column;
}

.faq-huge-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -3px;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: #111111;
  opacity: 0;
  transform: translateY(30px);
}

.faq-huge-title span {
  display: block;
  font-weight: 300;
  color: #888888;
}

/* Category Filter Tabs */
.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(20px);
}

.faq-cat-btn {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #888888;
  background: transparent;
  border: 1.5px solid rgba(17, 17, 17, 0.15);
  border-radius: 0;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-cat-btn.active,
.faq-cat-btn:hover {
  color: #ffffff;
  background-color: #111111;
  border-color: #111111;
}

/* Accordion list */
.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1.5px solid rgba(17, 17, 17, 0.12);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(30px);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  cursor: pointer;
  user-select: none;
}

.faq-question-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #111111;
  transition: color 0.3s ease;
}

.faq-question:hover .faq-question-text {
  color: #666;
}

.faq-toggle-icon {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #111111;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg); /* Rotates '+' to 'x' */
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.7;
  color: #444444;
  padding: 0 0 28px;
}

/* Right Column: Info & Contact CTA Panel */
.faq-info-col {
  padding-left: 40px;
  display: flex;
  flex-direction: column;
}

.faq-info-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
}

.faq-info-desc {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
}

.btn-faq-contact-cta {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  background-color: #111111;
  border: 1.5px solid #111111;
  border-radius: 0;
  padding: 18px 36px;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.3s ease;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  display: inline-block;
}

.btn-faq-contact-cta:hover {
  background-color: transparent;
  color: #111111;
}

/* Embedded FAQ Section on Homepage */
.homepage-faq-section {
  padding: 120px 40px;
  background-color: #ffffff;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

.homepage-faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.homepage-faq-title {
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: #111111;
  margin-bottom: 60px;
  letter-spacing: -1.5px;
}

.homepage-faq-more {
  text-align: center;
  margin-top: 50px;
}

.btn-faq-more {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffffff;
  background-color: #111111;
  border: 2px solid #111111;
  border-radius: 30px;
  padding: 15px 35px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-faq-more:hover {
  background-color: transparent;
  color: #111111;
}

/* Responsive styles */
@media (max-width: 991px) {
  .faq-section {
    padding: 140px 40px 80px;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .faq-line-v {
    display: none;
  }
  
  .faq-content-col {
    padding-right: 0;
  }
  
  .faq-info-col {
    padding-left: 0;
  }
  
  .faq-huge-title {
    font-size: 3.8rem;
  }
}

@media (max-width: 576px) {
  .faq-section {
    padding: 120px 20px 60px;
  }
  
  .faq-huge-title {
    font-size: 2.8rem;
  }
  
  .faq-question-text {
    font-size: 1.2rem;
  }
  
  .homepage-faq-section {
    padding: 80px 20px;
  }
  
  .homepage-faq-title {
    font-size: 2.4rem;
  }
}

/* ========================================================
   COMPREHENSIVE MOBILE RESPONSIVE & HAMBURGER MENU STYLES
   ======================================================== */

/* Hamburger Button Hidden by Default on PC (> 991px) */
.mobile-toggle {
  display: none;
}

body.no-scroll {
  overflow: hidden !important;
}

@media (max-width: 991px) {
  /* Hide the top CTA button on mobile header to avoid overlap */
  .navbar .nav-actions {
    display: none !important;
  }

  .nav-container {
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 20px !important;
  }

  /* Hamburger Toggle Button */
  .mobile-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
    position: relative;
    margin-left: auto;
  }

  .mobile-toggle span {
    width: 100%;
    height: 2px;
    background-color: #111111;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
    display: block;
  }

  .navbar-pill .mobile-toggle span {
    background-color: #ffffff;
  }

  /* Hamburger Active Animation (X transform) */
  .navbar-open .mobile-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #ffffff !important;
  }

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

  .navbar-open .mobile-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #ffffff !important;
  }



  /* Mobile Navbar Pill container adjustments */
  .navbar-pill .nav-container {
    max-width: 90%;
    padding: 8px 20px !important;
  }
}

/* ========================================================
   MOBILE RESPONSIVE FINE-TUNING (Hero, Fog, Sections)
   All styles within @media queries — desktop unchanged
   ======================================================== */

/* ===== TABLET: 991px ===== */
@media (max-width: 991px) {

  /* --- Hero Container --- */
  .hero-container {
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile browsers */
  }

  /* --- Hero Text Overlay --- */
  .hero-text-overlay {
    top: 16% !important;
    padding: 0 20px !important;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-text-overlay h1 {
    font-size: 2.8rem !important;
    letter-spacing: -1px !important;
    line-height: 1.15 !important;
    margin-bottom: 10px !important;
    text-align: center;
  }

  .hero-text-overlay p {
    font-size: 1.05rem !important;
    line-height: 1.4 !important;
    max-width: 340px !important;
    margin: 0 auto !important;
    text-align: center;
  }

  /* --- SVG Main Text --- */
  .main-text {
    font-size: 135px;
  }

  /* --- Fog Layers --- */
  .fog {
    width: 140vw;
    left: -20vw;
  }

  .fog-back {
    width: 100vw !important;
    height: 100vh !important;
    left: 0 !important;
    top: 0 !important;
    bottom: auto !important;
    object-fit: cover !important;
    opacity: 0.7;
  }

  .fog-front {
    bottom: -20%;
    opacity: 0.75;
  }

  /* --- Cloud Transition (Kalabalık & Doğal Geçiş) --- */
  .cloud-transition {
    height: 180vh;
  }

  /* Mobile GPU Memory Optimization for Cloud Transition to prevent iOS Safari VRAM crash */
  .transition-cloud.w2,
  .transition-cloud.w4,
  .transition-cloud.w5,
  .transition-cloud.w7,
  .transition-cloud.w8,
  .transition-cloud.w10,
  .transition-cloud.w11,
  .transition-cloud.w13,
  .transition-cloud.w14,
  .transition-cloud.w16,
  .transition-cloud.w17,
  .transition-cloud.w18,
  .transition-cloud.p2,
  .transition-cloud.p3 {
    display: none !important;
  }

  .transition-cloud {
    position: absolute;
    height: auto;
    pointer-events: none;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  
  .transition-cloud.w1  { top: -15vh; left: -110vw; width: 320vw; opacity: 0.98; transform: scale(1.1) rotate(-3deg); }
  .transition-cloud.w2  { top: -8vh;  left: -50vw;  width: 290vw; opacity: 0.95; transform: scale(1.3) rotate(4deg); }
  .transition-cloud.w3  { top: -2vh;  left: -90vw;  width: 340vw; opacity: 1.0;  transform: scale(1.0) rotate(-2deg); }
  .transition-cloud.w4  { top: 5vh;   left: -35vw;  width: 310vw; opacity: 0.95; transform: scale(1.25) rotate(2deg); }
  .transition-cloud.w5  { top: 11vh;  left: -100vw; width: 330vw; opacity: 0.98; transform: scale(1.15) rotate(-4deg); }
  .transition-cloud.w6  { top: 17vh;  left: -45vw;  width: 295vw; opacity: 0.92; transform: scale(1.35) rotate(3deg); }
  .transition-cloud.w7  { top: 23vh;  left: -105vw; width: 350vw; opacity: 1.0;  transform: scale(1.1) rotate(-1deg); }
  .transition-cloud.w8  { top: 29vh;  left: -40vw;  width: 300vw; opacity: 0.96; transform: scale(1.2) rotate(2deg); }
  .transition-cloud.w9  { top: 35vh;  left: -95vw;  width: 320vw; opacity: 0.98; transform: scale(1.05) rotate(-3deg); }
  .transition-cloud.w10 { top: 41vh;  left: -55vw;  width: 285vw; opacity: 0.94; transform: scale(1.3) rotate(4deg); }
  .transition-cloud.w11 { top: 47vh;  left: -110vw; width: 340vw; opacity: 1.0;  transform: scale(1.15) rotate(-2deg); }
  .transition-cloud.w12 { top: 53vh;  left: -35vw;  width: 310vw; opacity: 0.97; transform: scale(1.25) rotate(1deg); }
  .transition-cloud.w13 { top: 59vh;  left: -100vw; width: 325vw; opacity: 0.99; transform: scale(1.1) rotate(-4deg); }
  .transition-cloud.w14 { top: 65vh;  left: -45vw;  width: 290vw; opacity: 0.95; transform: scale(1.35) rotate(3deg); }
  .transition-cloud.w15 { top: 71vh;  left: -105vw; width: 345vw; opacity: 1.0;  transform: scale(1.2) rotate(-1deg); }
  .transition-cloud.w16 { top: 77vh;  left: -40vw;  width: 300vw; opacity: 0.96; transform: scale(1.15) rotate(2deg); }
  .transition-cloud.w17 { top: 83vh;  left: -95vw;  width: 330vw; opacity: 0.98; transform: scale(1.25) rotate(-2deg); }
  .transition-cloud.w18 { top: 89vh;  left: -50vw;  width: 310vw; opacity: 1.0;  transform: scale(1.1) rotate(3deg); }
  .cloud-base { top: 85vh; height: 160vh; }

  /* --- Mobile Hamburger Button & Beautiful Menu Overlay --- */
  .navbar .nav-actions { display: none !important; }
  
  .nav-container { 
    justify-content: space-between !important; 
    align-items: center !important; 
    padding: 10px 10px 10px 20px !important; 
  }

  /* --- Sky Background Scale (Devasa Görsel) --- */
  .sky-background {
    width: 250vw !important;
    height: 250vh !important;
    left: -75vw !important;
    top: -50vh !important;
    transform: scale(2.5) !important;
    transform-origin: center top !important;
  }

  /* --- Mobile Hamburger Toggle Button (Clean 3 Lines) --- */
  .mobile-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    width: 26px !important; 
    height: 18px !important;
    background: transparent !important; 
    border: none !important; 
    cursor: pointer !important;
    z-index: 100000 !important; 
    padding: 0 !important; 
    position: relative !important;
    margin-left: auto !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }

  .mobile-toggle span { 
    width: 100% !important; 
    height: 2.2px !important; 
    background-color: #111111 !important; 
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important; 
    transform-origin: center !important; 
    display: block !important; 
    border-radius: 2px !important;
  }

  .navbar-pill .mobile-toggle span { 
    background-color: #ffffff !important; 
  }

  .navbar-open .mobile-toggle span:nth-child(1) { 
    transform: translateY(8px) rotate(45deg) !important; 
    background-color: #ffffff !important; 
  }

  .navbar-open .mobile-toggle span:nth-child(2) { 
    opacity: 0 !important; 
  }

  .navbar-open .mobile-toggle span:nth-child(3) { 
    transform: translateY(-8px) rotate(-45deg) !important; 
    background-color: #ffffff !important; 
  }

  /* --- Mobile Fullscreen Editorial Overlay (Image 2 match) --- */
  .nav-menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: #09090b !important; /* Solid black/dark obsidian */
    display: none;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: stretch !important;
    padding: 35px 24px 30px !important;
    box-sizing: border-box !important;
    z-index: 999999 !important;
    overflow-y: auto !important;
  }

  .nav-menu.menu-open {
    display: flex !important;
  }

  .mobile-close-btn {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    background: transparent !important;
    border: none !important;
    color: #a1a1aa !important;
    font-size: 1.8rem !important;
    cursor: pointer !important;
    padding: 5px 10px !important;
    line-height: 1 !important;
    transition: color 0.2s ease !important;
  }

  .mobile-close-btn:hover {
    color: #ffffff !important;
  }

  .mobile-menu-header {
    text-align: center !important;
    margin-top: 15px !important;
    margin-bottom: 20px !important;
  }

  .mobile-menu-brand {
    font-family: 'Outfit', sans-serif !important;
    font-size: 2.6rem !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    letter-spacing: -1.5px !important;
  }

  .mobile-menu-brand span {
    font-weight: 400 !important;
    color: #ffffff !important;
  }

  .mobile-menu-links {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }

  .mobile-menu-links .nav-item {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 15px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    transition: color 0.2s ease, padding-left 0.2s ease !important;
  }

  .mobile-menu-links .nav-item:hover {
    color: #3b82f6 !important;
    padding-left: 6px !important;
  }

  .mobile-menu-links .nav-item .item-plus {
    font-size: 1.1rem !important;
    color: #a1a1aa !important;
    font-weight: 400 !important;
  }

  .mobile-menu-footer {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px 20px !important;
    margin-top: 30px !important;
    padding-top: 20px !important;
  }

  .mobile-menu-footer .footer-col {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  .mobile-menu-footer .footer-col a {
    font-family: 'Outfit', sans-serif !important;
    font-size: 0.88rem !important;
    font-weight: 500 !important;
    color: #a1a1aa !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
  }

  .mobile-menu-footer .footer-col a:hover {
    color: #ffffff !important;
  }
  
  .navbar-pill .nav-container { 
    max-width: 92%; padding: 8px 15px !important; 
  }
  
  .navbar-pill .nav-container { 
    max-width: 90%; padding: 8px 20px !important; 
  }
}

/* ===== SMALL TABLET / LARGE PHONE: 768px ===== */
@media (max-width: 768px) {

  /* --- Hero Text Overlay --- */
  .hero-text-overlay {
    top: 16% !important;
  }

  .hero-text-overlay h1 {
    font-size: 2rem !important;
    margin-bottom: 8px !important;
  }

  .hero-text-overlay p {
    font-size: 0.95rem !important;
    max-width: 300px !important;
  }

  /* --- SVG Main Text --- */
  .main-text {
    font-size: 100px;
  }

  /* --- Fog Layers --- */
  .fog-back {
    width: 100vw !important;
    height: 100vh !important;
    left: 0 !important;
    top: 0 !important;
    bottom: auto !important;
    object-fit: cover !important;
    opacity: 0.6;
  }

  .fog-front {
    bottom: -15%;
    opacity: 0.65;
  }

  /* --- Quality Statement Overlay --- */
  .quality-statement-overlay {
    width: 96%;
    padding: 0 10px;
  }

  .q-title {
    font-size: 2rem !important;
    letter-spacing: -1px;
    margin-bottom: 14px;
  }

  .q-desc {
    font-size: 0.95rem !important;
    line-height: 1.5;
    margin-bottom: 22px;
  }

  .btn-quality-cta {
    padding: 11px 26px;
    font-size: 0.9rem;
  }

  /* --- Models Section --- */
  .models-title {
    font-size: 2.5rem;
    letter-spacing: -1px;
  }

  .model-stack-card {
    width: 95%;
  }

  .stack-card-img {
    height: 200px;
  }

  .stack-card-info {
    padding: 20px 16px;
  }

  .stack-model-name {
    font-size: 1.3rem;
  }

  .stack-price {
    font-size: 1.3rem;
  }

  /* --- Blog Section --- */
  .blog-section {
    padding: 60px 15px;
  }

  .blog-header-left h2 {
    font-size: 2.2rem;
    letter-spacing: -0.5px;
  }

  .blog-header-right p {
    font-size: 0.95rem;
  }

  .btn-visit-blog {
    font-size: 0.85rem;
  }

  .blog-row {
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
    padding: 25px 0;
    border-radius: 16px;
    overflow: hidden;
  }

  .blog-row-left {
    order: 2;
    padding: 18px 15px;
  }

  .blog-row-right {
    order: 1;
  }

  .blog-row-img-container {
    border-radius: 16px 16px 0 0;
    height: 200px;
  }

  .blog-row-left h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    line-height: 1.35;
  }

  .blog-row-left p {
    font-size: 0.85rem;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .blog-row-date {
    font-size: 0.75rem;
  }

  .btn-blog-row-read {
    font-size: 0.85rem;
  }

  /* --- Testimonials Section --- */
  .testimonials-section {
    padding: 60px 15px;
  }

  .testimonials-header-left h2 {
    font-size: 2.2rem;
    letter-spacing: -0.5px;
  }

  .testimonials-header-right p {
    font-size: 0.95rem;
  }

  .testimonial-quote {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  .testimonial-content-wrapper {
    padding: 25px 18px;
    border-radius: 16px;
    min-height: 260px;
  }

  .testimonial-quote-icon {
    font-size: 4rem;
  }

  .testimonial-author-avatar {
    width: 38px;
    height: 38px;
    font-size: 0.75rem;
  }

  .testimonial-author-name {
    font-size: 0.88rem;
  }

  .testimonial-author-title {
    font-size: 0.75rem;
  }

  /* --- Branding Section --- */
  .branding-section {
    padding: 60px 15px;
  }

  .branding-card {
    border-radius: 24px;
    padding: 24px;
  }

  .branding-card-header h2 {
    font-size: 1.9rem;
  }

  .branding-card-desc p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  /* --- FAQ Section --- */
  .homepage-faq-title {
    font-size: 2.2rem;
  }

  .faq-question-text {
    font-size: 1rem;
  }

  /* --- Features Grid --- */
  .features-title {
    font-size: 2.2rem;
    margin-bottom: 28px;
  }

  .feature-card {
    padding: 25px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    margin-bottom: 18px;
  }

  .feature-icon svg {
    width: 24px;
    height: 24px;
  }

  .feature-card h3 {
    font-size: 1.35rem;
  }

  .feature-card p {
    font-size: 0.95rem;
  }

  /* --- Footer --- */
  .site-footer {
    padding: 50px 15px 35px;
  }

  .footer-logo {
    font-size: 2rem;
  }

  .footer-menu-item {
    font-size: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 18px;
    text-align: center;
    align-items: center;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* ===== PHONE: 576px ===== */
@media (max-width: 576px) {

  /* --- Hero Typography & Sizing --- */
  .hero-text-overlay {
    top: 16% !important;
    padding: 0 15px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .hero-text-overlay h1 {
    font-size: 1.8rem !important;
    letter-spacing: -0.5px !important;
    text-align: center;
  }

  .hero-text-overlay p {
    font-size: 0.85rem !important;
    max-width: 260px !important;
    line-height: 1.45 !important;
    text-align: center;
  }

  /* --- SVG Main Text --- */
  .main-text {
    font-size: 70px;
  }

  /* --- Fog Layers --- */
  .fog {
    width: 160vw;
    left: -30vw;
  }

  .fog-back {
    width: 100vw !important;
    height: 100vh !important;
    left: 0 !important;
    top: 0 !important;
    bottom: auto !important;
    object-fit: cover !important;
    opacity: 0.5;
  }

  .fog-front {
    bottom: -10%;
    opacity: 0.55;
  }

  /* --- Cloud Transition --- */
  .cloud-transition {
    height: 300vh;
  }

  .transition-cloud {
    width: 180vw;
    left: -40vw;
  }

  /* --- Quality Statement Overlay --- */
  .quality-statement-overlay {
    width: 98%;
    padding: 0 8px;
  }

  .q-title {
    font-size: 1.65rem !important;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    line-height: 1.25;
  }

  .q-desc {
    font-size: 0.85rem !important;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .btn-quality-cta {
    padding: 10px 22px;
    font-size: 0.85rem;
  }

  /* --- Models Section --- */
  .models-title {
    font-size: 1.85rem !important;
    letter-spacing: -1px;
    margin-bottom: 16px;
  }

  .stack-card-img {
    height: 180px;
  }

  .stack-card-info {
    padding: 16px 14px;
  }

  .stack-model-name {
    font-size: 1.15rem;
  }

  .stack-price {
    font-size: 1.15rem;
  }

  .stack-price span {
    font-size: 0.75rem;
  }

  .stack-specs-list li {
    font-size: 0.82rem;
    padding: 6px 10px;
  }

  .btn-stack-details,
  .btn-stack-quote {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  /* --- Blog Section --- */
  .blog-section {
    padding: 50px 12px;
  }

  .blog-header-left h2 {
    font-size: 1.8rem;
  }

  .blog-header-right p {
    font-size: 0.85rem;
  }

  .blog-row {
    padding: 18px 0;
  }

  .blog-row-img-container {
    height: 170px;
  }

  .blog-row-left {
    padding: 15px 12px;
  }

  .blog-row-left h3 {
    font-size: 1.05rem;
  }

  .blog-row-left p {
    font-size: 0.8rem;
  }

  /* --- Testimonials Section --- */
  .testimonials-section {
    padding: 50px 12px;
  }

  .testimonials-header-left h2 {
    font-size: 1.8rem;
  }

  .testimonials-header-right p {
    font-size: 0.85rem;
  }

  .testimonial-quote {
    font-size: 1rem;
    line-height: 1.55;
  }

  .testimonial-content-wrapper {
    padding: 20px 14px;
    min-height: 240px;
  }

  .testimonial-dot {
    width: 32px;
    height: 32px;
    min-width: 40px;
    min-height: 40px;
    font-size: 0.7rem;
  }

  .testimonial-quote-icon {
    font-size: 3rem;
  }

  /* --- Branding Section --- */
  .branding-section {
    padding: 40px 16px;
  }

  .branding-card {
    display: flex !important;
    flex-direction: column !important;
    padding: 24px 20px !important;
    border-radius: 24px !important;
    gap: 20px !important;
    min-height: auto !important;
  }

  .branding-card-left {
    width: 100% !important;
    padding: 0 !important;
  }

  .branding-logo-centered-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 150px !important;
    height: auto !important;
    padding: 24px 16px !important;
    border-radius: 18px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .brand-logo-large {
    max-width: 75% !important;
    max-height: 100px !important;
    width: auto !important;
    height: auto !important;
    margin: 0 auto !important;
  }

  .branding-card-right {
    width: 100% !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
  }

  .branding-card-header h2 {
    font-size: 1.7rem !important;
    line-height: 1.25 !important;
  }

  .branding-card-footer {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    margin-top: 6px !important;
  }

  .branding-card-desc p {
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.75) !important;
  }

  .branding-arrow-btn {
    width: 44px !important;
    height: 44px !important;
    flex-shrink: 0 !important;
  }

  /* --- FAQ Section --- */
  .homepage-faq-section {
    padding: 50px 12px;
  }

  .homepage-faq-title {
    font-size: 1.9rem;
    margin-bottom: 22px;
  }

  .faq-question {
    padding: 15px 12px;
  }

  .faq-question-text {
    font-size: 0.92rem;
  }

  .faq-answer-inner {
    font-size: 0.88rem;
    padding: 12px 12px;
    line-height: 1.55;
  }

  /* --- Features --- */
  .content-section {
    padding: 50px 12px;
  }

  .features-title {
    font-size: 1.85rem;
    margin-bottom: 22px;
  }

  .feature-card {
    padding: 22px;
    border-radius: 16px;
  }

  .feature-card h3 {
    font-size: 1.2rem;
  }

  .feature-card p {
    font-size: 0.88rem;
  }

  /* --- Fresh & Ultra-Compact Mobile Footer (Fits Viewport Perfectly) --- */
  .site-footer {
    position: sticky !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 1 !important;
    min-height: auto !important;
    padding: 70px 16px 16px !important;
    background: #050505 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .footer-container {
    gap: 16px !important;
  }

  .footer-top {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }

  .footer-brand-info {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  .footer-logo {
    font-size: 1.35rem !important;
    font-weight: 900 !important;
    letter-spacing: -0.5px !important;
    margin-bottom: 6px !important;
  }

  .footer-desc-text {
    font-size: 0.78rem !important;
    line-height: 1.45 !important;
    color: rgba(255, 255, 255, 0.65) !important;
    margin-bottom: 10px !important;
    max-width: 100% !important;
  }

  .footer-socials {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px 8px !important;
  }

  .footer-social-link {
    font-size: 0.72rem !important;
    padding: 4px 10px !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
  }

  .footer-links-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
  }

  .footer-main-menu {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px 14px !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .footer-menu-item {
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    letter-spacing: -0.2px !important;
  }

  .footer-sub-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px 12px !important;
  }

  .footer-sub-col {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
  }

  .sub-col-title {
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: #555555 !important;
    margin-bottom: 2px !important;
  }

  .footer-sub-link {
    font-size: 0.76rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none !important;
  }

  .footer-bottom {
    margin-top: 4px !important;
    padding-top: 12px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    align-items: center !important;
    text-align: center !important;
  }

  .footer-copyright {
    font-size: 0.65rem !important;
    color: rgba(255, 255, 255, 0.45) !important;
    letter-spacing: 0.3px !important;
  }

  .footer-bottom-links {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 6px 12px !important;
  }

  .footer-bottom-link {
    font-size: 0.68rem !important;
    color: rgba(255, 255, 255, 0.55) !important;
    text-decoration: none !important;
  }
}

/* ==========================================
   INSTA-STYLE SKELETON SHIMMER PRELOADER
   ========================================== */
#homebox-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #0b0b0e;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s ease;
}

#homebox-preloader.preloader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.preloader-brand-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: #ffffff;
}

.preloader-brand-logo span {
  color: #a0a0a0;
  font-weight: 300;
}

.preloader-spinner-grid {
  display: grid;
  grid-template-columns: repeat(2, 14px);
  grid-template-rows: repeat(2, 14px);
  gap: 6px;
}

.preloader-spinner-grid div {
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.3));
  border-radius: 4px;
  animation: preloaderSquarePulse 1.2s infinite ease-in-out;
}

.preloader-spinner-grid div:nth-child(1) { animation-delay: 0s; }
.preloader-spinner-grid div:nth-child(2) { animation-delay: 0.2s; }
.preloader-spinner-grid div:nth-child(3) { animation-delay: 0.4s; }
.preloader-spinner-grid div:nth-child(4) { animation-delay: 0.6s; }

@keyframes preloaderSquarePulse {
  0%, 100% { opacity: 0.25; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.1); filter: drop-shadow(0 0 8px rgba(255,255,255,0.6)); }
}

.preloader-shimmer-card {
  width: 300px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}

.shimmer-element {
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.03) 75%);
  background-size: 200% 100%;
  animation: shimmerSweep 1.5s infinite linear;
  border-radius: 8px;
}

@keyframes shimmerSweep {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.shimmer-header { height: 14px; width: 45%; }
.shimmer-banner { height: 130px; width: 100%; border-radius: 14px; }
.shimmer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.shimmer-grid-box { height: 50px; border-radius: 10px; }

/* --- High Contrast Modern Blog & Detail Styles --- */
.blog-body, body.blog-body {
  background-color: #ffffff !important;
  min-height: 100vh;
  padding-top: 140px;
  font-family: 'Space Grotesk', sans-serif !important;
  color: #111111 !important;
}

.blog-detail-body, body.blog-detail-body {
  background-color: #ffffff !important;
  min-height: 100vh;
  padding-top: 140px;
  font-family: 'Space Grotesk', sans-serif !important;
  color: #111111 !important;
}

.blog-page-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 80px 120px;
  box-sizing: border-box;
}

.blog-page-header {
  text-align: center;
  margin-bottom: 60px;
}

.blog-page-header h1 {
  font-size: 5rem;
  font-weight: 900;
  color: #111111 !important;
  letter-spacing: -3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 0.95;
  font-family: 'Space Grotesk', sans-serif;
}

.blog-page-header p {
  font-size: 1.3rem;
  color: #555555 !important;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Search & Filter Controls */
.filter-controls {
  background: #ffffff;
  border: 1.5px solid #111111;
  padding: 35px;
  border-radius: 0;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.search-bar {
  position: relative;
  width: 100%;
}

.search-input {
  width: 100%;
  padding: 18px 20px 18px 55px;
  border-radius: 0;
  border: 1.5px solid #111111;
  background: #ffffff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  color: #111111;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  background: #ffffff;
  border-color: #111111;
  box-shadow: 4px 4px 0px #111111;
}

.search-bar .search-icon {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  color: #111111;
  pointer-events: none;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.category-btn {
  background: transparent;
  border: 1.5px solid rgba(17, 17, 17, 0.15);
  padding: 10px 22px;
  border-radius: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: #888888;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: 'Space Grotesk', sans-serif;
}

.category-btn:hover {
  color: #111111;
  border-color: #111111;
}

.category-btn.active {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.blog-card {
  background-color: #ffffff;
  border: 1.5px solid #111111;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.blog-card:hover {
  transform: translate(-6px, -6px);
  box-shadow: 8px 8px 0px #111111;
}

.blog-card-img {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-bottom: 1.5px solid #111111;
}

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

.blog-card:hover .blog-card-img img {
  transform: scale(1.03);
}

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #111111;
  color: #ffffff;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
  border-radius: 0;
}

.blog-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-date {
  font-size: 0.85rem;
  color: #888888;
  margin-bottom: 12px;
  font-weight: 500;
}

.blog-card-content h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #111111;
  line-height: 1.35;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
  font-family: 'Space Grotesk', sans-serif;
}

.blog-card-content p {
  font-size: 1.05rem;
  color: #555555;
  line-height: 1.65;
  margin-bottom: 30px;
  flex-grow: 1;
}

.btn-blog-read {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #111111;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
  margin-top: auto;
}

.blog-card:hover .btn-blog-read {
  color: #666666;
}

/* No Results State */
.no-results {
  display: none;
  text-align: center;
  padding: 60px 20px;
  font-size: 1.25rem;
  color: #555555;
  background: #ffffff;
  border: 1.5px dashed #111111;
  border-radius: 0;
}

/* Back to Home Button */
.back-home-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111111;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 40px;
  background: #ffffff;
  padding: 12px 24px;
  border-radius: 0;
  border: 1.5px solid #111111;
  box-sizing: border-box;
}

.back-home-nav:hover {
  transform: translate(-3px, -3px);
  box-shadow: 4px 4px 0px #111111;
}

/* Blog Detail Page Specific Styling */
.blog-detail-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px 120px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  box-sizing: border-box;
}

.back-blog-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111111;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  align-self: flex-start;
  background: #ffffff;
  padding: 12px 24px;
  border-radius: 0;
  border: 1.5px solid #111111;
}

.back-blog-nav:hover {
  transform: translate(-3px, -3px);
  box-shadow: 4px 4px 0px #111111;
}

/* Article Wrapper */
.article-card {
  background: #ffffff;
  border: 1.5px solid #111111;
  border-radius: 0;
  overflow: hidden;
  padding: 50px;
  box-shadow: none;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.article-category {
  background: #111111;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.article-date {
  font-size: 0.85rem;
  color: #888888;
  font-weight: 500;
}

.article-card h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  color: #111111;
  letter-spacing: -2px;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-family: 'Space Grotesk', sans-serif;
}

.article-hero-image {
  width: 100%;
  height: 500px;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 40px;
  border: 1.5px solid #111111;
  box-sizing: border-box;
}

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

/* Rich Text Content */
.article-content {
  font-size: 1.2rem;
  line-height: 1.75;
  color: #333333;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.article-content p {
  margin-bottom: 10px;
}

.article-content h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #111111;
  margin-top: 30px;
  margin-bottom: 15px;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  font-family: 'Space Grotesk', sans-serif;
}

.article-content blockquote {
  border-left: 4px solid #111111;
  padding: 20px 25px;
  font-style: italic;
  font-size: 1.3rem;
  color: #444444;
  margin: 25px 0;
  background: #f9f9f9;
  border-radius: 0;
}

.article-content ul {
  margin-left: 20px;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.article-content li {
  list-style-type: square;
}

/* Layout responsive adjustments */
@media (max-width: 991px) {
  .blog-page-container {
    padding: 40px;
  }
  .blog-page-header h1 {
    font-size: 3.8rem;
  }
  .blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}

@media (max-width: 768px) {
  .blog-detail-body {
    padding-top: 100px;
  }
  .article-card {
    padding: 25px;
  }
  .article-card h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  .article-hero-image {
    height: 320px;
    margin-bottom: 25px;
  }
  .article-content {
    font-size: 1.05rem;
  }
}

@media (max-width: 576px) {
  .blog-page-container {
    padding: 30px 20px;
  }
  .blog-page-header h1 {
    font-size: 2.8rem;
  }
  .filter-controls {
    padding: 20px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
/* End of stylesheet */

/* ==========================================
   LEGAL MODAL STYLES (KVKK / Gizlilik / Kullanım Koşulları)
   ========================================== */
.legal-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999999;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  padding: 20px;
  box-sizing: border-box;
}

.legal-modal-overlay.legal-modal-active {
  display: flex;
  opacity: 1;
}

.legal-modal-container {
  background: #ffffff;
  border-radius: 20px;
  width: 100%;
  max-width: 720px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  transform: translateY(30px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.legal-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 32px 20px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}

.legal-modal-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.5px;
  margin: 0;
}

.legal-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f5f5f5;
  color: #666;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  line-height: 1;
}

.legal-modal-close:hover {
  background: #e8e8e8;
  color: #111;
  transform: rotate(90deg);
}

.legal-modal-body {
  padding: 28px 32px 36px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1;
}

.legal-modal-body h1,
.legal-modal-body h2,
.legal-modal-body h3,
.legal-modal-body h4 {
  font-family: 'Outfit', sans-serif;
  color: #111;
  margin-top: 24px;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.legal-modal-body h1 { font-size: 1.4rem; font-weight: 800; }
.legal-modal-body h2 { font-size: 1.2rem; font-weight: 700; }
.legal-modal-body h3 { font-size: 1.1rem; font-weight: 600; }

.legal-modal-body p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 14px;
}

.legal-modal-body ul,
.legal-modal-body ol {
  padding-left: 20px;
  margin-bottom: 14px;
}

.legal-modal-body li {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 6px;
}

.legal-modal-body a {
  color: #3b82f6;
  text-decoration: underline;
}

.legal-modal-body strong {
  color: #222;
  font-weight: 700;
}

/* Scrollbar styling for legal modal */
.legal-modal-body::-webkit-scrollbar {
  width: 6px;
}

.legal-modal-body::-webkit-scrollbar-track {
  background: transparent;
}

.legal-modal-body::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 3px;
}

.legal-modal-body::-webkit-scrollbar-thumb:hover {
  background: #bbb;
}

/* Mobile responsive for legal modal */
@media (max-width: 768px) {
  .legal-modal-overlay {
    padding: 10px;
    align-items: flex-end;
  }

  .legal-modal-container {
    max-height: 90vh;
    border-radius: 20px 20px 0 0;
    max-width: 100%;
  }

  .legal-modal-header {
    padding: 22px 20px 16px;
  }

  .legal-modal-header h2 {
    font-size: 1.25rem;
  }

  .legal-modal-body {
    padding: 20px 20px 30px;
  }

  .legal-modal-body p {
    font-size: 0.9rem;
  }
}

/* ==========================================
   FULLSCREEN LIGHTBOX IMAGE VIEWER (MODELS PAGE)
   ========================================== */
.model-lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 999999;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 20px;
  box-sizing: border-box;
}

.model-lightbox-overlay.lightbox-active {
  display: flex;
  opacity: 1;
}

.lightbox-close-btn {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000001;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.lightbox-close-btn svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
  transition: transform 0.25s ease;
}

.lightbox-close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.08);
}

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

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000001;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.lightbox-arrow svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

.lightbox-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev-btn {
  left: 30px;
}

.lightbox-next-btn {
  right: 30px;
}

.lightbox-content-wrapper {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000000;
  pointer-events: auto;
}

.lightbox-content-wrapper img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-meta {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
}

.lightbox-model-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
}

.lightbox-counter {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .lightbox-close-btn {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
  .lightbox-close-btn svg { width: 20px; height: 20px; }
  
  .lightbox-arrow {
    width: 44px;
    height: 44px;
  }
  .lightbox-prev-btn { left: 10px; }
  .lightbox-next-btn { right: 10px; }
  .lightbox-arrow svg { width: 22px; height: 22px; }
  
  .lightbox-content-wrapper img {
    max-width: 95vw;
    max-height: 75vh;
  }
}

/* ==========================================
   FLOATING WHATSAPP BUTTON WIDGET & FOOTER OVERRIDES
   ========================================== */
.models-page-body .floating-whatsapp-btn,
.page-template-page-modellerimiz .floating-whatsapp-btn,
.models-page-body .site-footer,
.page-template-page-modellerimiz .site-footer {
  display: none !important;
}

.floating-whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999990;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.4);
  animation: wa-pulse 2.2s infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  white-space: nowrap;
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  pointer-events: none;
}

.floating-whatsapp-btn:hover {
  transform: translateY(-4px) scale(1.05);
}

.floating-whatsapp-btn:hover .whatsapp-icon-wrapper {
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .floating-whatsapp-btn {
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-icon-wrapper {
    width: 50px;
    height: 50px;
  }
  .whatsapp-svg {
    width: 26px;
    height: 26px;
  }
  .whatsapp-tooltip {
    display: none;
  }
}
