/* 
   Krafttürk Ambalaj - Modern Kurumsal Web Sitesi
   UI/UX - v1.0
   Responsive & Mobile-First Design
*/

/* =========================================
   1. CSS VARIABLES & ROOT
   ========================================= */
:root {
  --white: #ffffff;
  --black: #000000;
  --primary: #ff6e42;
  --primary-dark: #e85a35;
  --primary-light: #fff5f2;

  --navy-dark: #3f3934;
  --navy-medium: #4f4841;
  --navy-light: #6b625a;
  --navy-pale: #f0efed;

  --gray-50: #fcfcfc;
  --gray-100: #f7f7f7;
  --gray-200: #f0f0f0;
  --gray-300: #e5e5e5;
  --gray-400: #d4d2cf;
  --gray-500: #a8a39d;
  --gray-600: #8a847d;
  --gray-700: #6f6962;
  --gray-800: #4a4540;
  --gray-900: #2f2b28;

  --text-primary: #7c7063;
  --text-secondary: #6f6962;
  --text-muted: #8a847d;
  --text-light: #a8a39d;
  --text-white: #ffffff;

  --bg-body: #ffffff;
  --bg-section: #f8f9fb;
  --bg-dark: #3a332c;
  --bg-darker: #2a241f;

  --border-color: #e0dedb;
  --border-light: #f0efed;

  /* Typography */
  --font-heading: "Instrument Sans", -apple-system, BlinkMacSystemFont,
    sans-serif;
  --font-body: "Instrument Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --container-max: 1400px;
  --container-padding: 32px;
  --section-padding: 120px;
  --header-height: 90px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 7px 26px 66px rgba(63, 57, 52, 0.06);
  --shadow-md: 0 60px 40px -7px rgba(63, 57, 52, 0.2);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

/* =========================================
   2. CSS RESET & BASE
   ========================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  line-height: 1.6;
  color: var(--text-secondary);
  background-color: var(--bg-body);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.35;
  margin: 0;
  color: var(--navy-dark);
}

h1 {
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  font-weight: 400;
}

h2 {
  font-size: clamp(1.625rem, 3.75vw, 2.25rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.1875rem, 2.75vw, 1.5rem);
  font-weight: 500;
}

h4 {
  font-size: 1.0625rem;
  font-weight: 500;
}

h5 {
  font-size: 1rem;
  font-weight: 500;
}

h6 {
  font-size: 0.9375rem;
  font-weight: 500;
}

p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}

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

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* =========================================
   3. UTILITY CLASSES
   ========================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section-padding {
  padding: var(--section-padding) 0;
}

.bg-light {
  background-color: var(--bg-section);
}

.bg-dark {
  background-color: var(--bg-dark);
}

.text-primary {
  color: var(--primary);
  font-weight: 600;
}

.other-title {
  font-weight: 600;
}

.text-white {
  color: var(--text-white);
}

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

/* Section Headers */
.section-header {
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--navy-dark);
}

.section-title strong {
  display: block;
  color: var(--primary);
  font-weight: 600;
}

.section-title.other strong {
  display: unset !important;
  color: var(--navy-dark) !important;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.65;
  font-weight: 400;
}

.section-header.text-center .section-desc {
  margin: 0 auto;
}

.pt-0 {
  padding-top: 0;
}

.bg-gray {
  background: var(--bg-section);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-white);
}

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

.btn-dark {
  background-color: var(--gray-900);
  color: var(--text-white);
}

.btn-dark:hover {
  background-color: var(--black);
}

.btn-white-glow {
  background-color: var(--white);
  color: var(--primary);
}

.btn-white-glow:hover {
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-outline-light {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-white);
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* =========================================
   4. HEADER & NAVIGATION
   ========================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-base);
}

.header.scrolled {
  background: var(--white);
  box-shadow: 0px 2px 40px 0px rgba(0, 0, 0, 0.05);
  padding: 10px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.logo img {
  height: 78px;
  width: auto;
  transition: height var(--transition-fast);
}

.header.scrolled .logo img {
  height: 62px;
}

/* Navigation */
.nav-menu {
  display: none;
  align-items: center;
  gap: 28px;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
    background: var(--primary);
    backdrop-filter: blur(10px);
    padding: 14px 36px 12px 36px;
    border-radius: var(--radius-full);
    border: var(--primary-dark);
    gap: 36px;
  }

  .header.scrolled .nav-menu {
    background: transparent;
    backdrop-filter: none;
    border: none;
    padding: 0;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition-fast);
  position: relative;
  letter-spacing: 0.02em;
}

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

.header.scrolled .nav-link {
  color: var(--navy-dark);
}

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

.header.scrolled .nav-link {
  font-size: 0.9375rem;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-toggle i {
  font-size: 0.625rem;
  transition: transform var(--transition-fast);
  position: relative;
  top: 0px;
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.header.scrolled .dropdown:hover .dropdown-toggle {
  color: var(--primary);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  min-width: 220px;
  white-space: nowrap;
  padding: 10px 6px 6px 6px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  border: 1px solid var(--border-color);
  z-index: 100;
}

/* Dropdown'un üst kısmına görünmez köprü alanı - mouse geçerken kapanmasın */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 40px;
  width: calc(100% + -80px);
  height: 25px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%);
}

.dropdown-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.dropdown-menu a:hover {
  background-color: var(--gray-100);
  color: var(--primary);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-icons-header {
  display: none;
  align-items: center;
  gap: 6px;
}

@media (min-width: 768px) {
  .contact-icons-header {
    display: flex;
  }
}

.contact-icons-header a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.header.scrolled .contact-icons-header a {
  background: var(--gray-100);
  color: var(--text-secondary);
}

.contact-icons-header a:hover {
  background: var(--primary);
  color: var(--white);
}

/* Tooltip */
.tooltip-btn {
  position: relative;
}

.tooltip-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--gray-900);
  color: var(--white);
  padding: 5px 10px;
  border-radius: var(--radius-md);
  font-size: 0.6875rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  pointer-events: none;
  z-index: 100;
}

.tooltip-btn:hover::after {
  opacity: 1;
  visibility: visible;
}

/* Language Selector */
.lang-dropdown-modern {
  position: relative;
}

.lang-btn-modern {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.header.scrolled .lang-btn-modern {
  background: var(--gray-100);
  border-color: var(--gray-100);
  color: var(--text-primary);
}

.lang-btn-modern:hover {
  background: var(--white);
  color: var(--primary);
}

.lang-btn-modern i {
  font-size: 0.5625rem;
  transition: transform var(--transition-fast);
  position: relative;
  top: 1px;
}

.lang-menu-modern {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  min-width: 130px;
  padding: 5px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
  border: 1px solid var(--border-color);
  z-index: 100;
}

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

.lang-menu-modern a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.lang-menu-modern a:hover,
.lang-menu-modern a.active {
  background: var(--gray-100);
  color: var(--primary);
}

.lang-menu-modern img {
  width: 16px;
  height: auto;
  border-radius: 2px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  font-size: 1.375rem;
}

.header.scrolled .mobile-toggle {
  color: var(--text-primary);
}

@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  padding: 70px 20px 20px;
  overflow-y: auto;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu .nav-link {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
}

.mobile-menu .nav-link:hover {
  color: var(--primary);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
}

.mobile-logo img {
  height: 48px;
}

.mobile-menu-close {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  color: var(--text-primary);
}

/* Mobile Dropdown */
.mobile-dropdown {
  border-bottom: 1px solid var(--border-light);
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  font-size: 1rem;
  color: var(--text-primary);
  cursor: pointer;
}

.mobile-dropdown-toggle i {
  transition: transform var(--transition-fast);
}

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

.mobile-dropdown-menu {
  display: none;
  padding-left: 16px;
  padding-bottom: 10px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  display: block;
}

.mobile-dropdown-menu a {
  display: block;
  padding: 10px 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.mobile-dropdown-menu a:hover {
  color: var(--primary);
}

/* =========================================
   5. HERO SECTION
   ========================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Top Gradient Overlay */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  z-index: 2;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.85) 14%,
      transparent 100%);
  pointer-events: none;
}

/* Background Dots Pattern */
.hero-section .bg-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url(../img/bg-dots.png);
  background-repeat: repeat;
  pointer-events: none;
  opacity: 0.5;
}

.hero-slider {
  width: 100%;
  height: 100vh;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
  rgba(0, 0, 0, 0.6) 0%,
  rgba(0, 0, 0, 0.25) 100%);
}

.video-slide .video-bg {
  position: absolute;
  inset: 0;
}

.video-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
  rgba(0, 0, 0, 0.5) 0%,
  rgba(0, 0, 0, 0.2) 100%);
}

.bg-dots {
  position: absolute;
  inset: 0;
  background-repeat: repeat;
  opacity: 0.5;
  pointer-events: none;
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: var(--container-max);
  width: 100%;
  padding: 0 var(--container-padding);
  margin-left: auto;
  margin-right: auto;
}

.hero-content-inner {
  max-width: 640px;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 0 var(--container-padding);
  }
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  background: rgba(255, 107, 0, 0.15);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero-title strong {
  font-weight: 600;
}

.hero-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 72px;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-btns .btn-outline {
  border-radius: 0;
  padding: 8px 30px 8px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-btns .btn-outline:last-child {
  border-radius: 0;
  padding: 8px 0px 8px 22px;
  border-right: none;
}

.hero-btns .btn-outline:hover {
  color: var(--primary);
  background-color: transparent;
}

.hero-icon {
  background-color: var(--primary);
  color: var(--text-white);
  font-size: 1rem;
}


/* Swiper Navigation & Pagination */
.hero-slider .swiper-pagination {
  display: none !important;
}

.swiper-button-next,
.swiper-button-prev {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  color: var(--white);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 0.875rem;
  font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--primary);
}

.swiper-button-next {
  right: 20px;
}

.swiper-button-prev {
  left: 20px;
}

@media (max-width: 768px) {

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

/* Scroll Down Indicator */
.scroll-down {
  position: absolute;
  bottom: 36px;
  left: calc(50% - 42.5px);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  z-index: 10;
}

.mouse-icon {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}

.mouse-wheel {
  width: 3px;
  height: 7px;
  background: var(--white);
  border-radius: 2px;
  animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(7px);
  }
}

.scroll-text {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
}

/* =========================================
   6. SERVICES SECTION
   ========================================= */
.services-section {
  background: var(--bg-section);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .services-header {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }
}

.services-header-right {
  padding-left: 0;
}

@media (min-width: 768px) {
  .services-header-right {
    padding-left: 28px;
    border-left: 3px solid var(--primary);
  }
}

.section-subtitle {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 10px;
}

/* Scalable Services Grid */
.scalable-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .scalable-services {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Scalable Services 6 - 3x2 Grid */
.scalable-services-6 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 576px) {
  .scalable-services-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .scalable-services-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.scalable-services-6 .scalable-card {
  height: 100%;
}

.scalable-services-6 .scalable-card:hover {
  z-index: 10;
  border-color: transparent;
  -webkit-transform: translateY(-20px) !important;
  -ms-transform: translateY(-20px) !important;
  transform: translateY(-20px) scale(1.04) !important;
  box-shadow: rgba(63, 57, 52, 0.2) 0 60px 40px -7px;
}

.scalable-services-6 .scalable-card:hover .service-num {
  color: var(--primary);
}

.scalable-services-6 .scalable-card.active:hover {
  transform: translateY(-20px) scale(1.04) !important;
}

.scalable-services-6 .scalable-card.active:hover .service-num {
  color: rgba(255, 255, 255, 0.35);
}

/* Eşit yükseklik için link wrapper */
.scalable-card-link {
  display: flex;
  height: 100%;
}

.scalable-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  box-shadow: 7px 26px 66px rgba(63, 57, 52, 0.01);
  padding: 28px;
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.scalable-card.active {
  background: var(--primary);
  border-color: var(--primary);
}

/* Scalable Card Link Wrapper */
.scalable-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.scalable-card-link:hover .scalable-card {
  border-color: transparent;
  -webkit-transform: translateY(-20px) !important;
  -ms-transform: translateY(-20px) !important;
  transform: translateY(-20px) scale(1.04) !important;
  box-shadow: rgba(63, 57, 52, 0.2) 0 60px 40px -7px;
}

.scalable-card-link:hover .service-num {
  color: var(--primary);
}

.scalable-card.active .service-num {
  color: rgba(255, 255, 255, 0.35);
}

.scalable-card.active .service-title,
.scalable-card.active .service-text,
.scalable-card.active .service-link {
  color: var(--white);
}

.scalable-card.active .card-bg-icon {
  color: rgba(255, 255, 255, 0.1);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.service-num {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 107, 0, 0.15);
  line-height: 1;
  font-family: "Inter", sans-serif;
  transition: all var(--transition-base);
}

.service-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy-dark);
}

.service-text {
  z-index: 1;
  position: relative;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy-dark);
  transition: gap var(--transition-fast);
}

.service-link:hover {
  gap: 9px;
  color: var(--primary-dark);
}

.card-bg-icon {
  position: absolute;
  bottom: -16px;
  right: -16px;
  font-size: 6rem;
  color: var(--gray-100);
  pointer-events: none;
  transition: color var(--transition-base);
}

.scalable-card:hover .card-bg-icon {
  color: var(--primary-light);
}

/* =========================================
   7. ABOUT SECTION
   ========================================= */
.about-section-v2 {
  background: var(--bg-section);
}

.about-v2-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-v2-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}

.about-v2-content .section-tag {
  margin-bottom: 14px;
}

.about-v2-title {
  font-size: clamp(1.625rem, 3.25vw, 2.25rem);
  font-weight: 400;
  margin-bottom: 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.about-v2-title strong {
  color: var(--primary);
  font-weight: 600;
}

.about-v2-content p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 12px;
  margin-bottom: 8px;
}

.about-v2-content p:first-of-type {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 28px;
  font-weight: 400;
}

.about-v2-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
  margin-bottom: 36px;
}

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

@media (min-width: 768px) {
  .stat-item {
    text-align: left;
  }
}

.stat-number {
  display: block;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.about-v2-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.video-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.video-link:hover {
  color: var(--primary);
}

.video-link:hover .play-circle-small {
  background: var(--primary-dark);
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(255, 110, 66, 0.35);
}

.fancybox__html5video {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.play-circle-small {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  transition: all var(--transition-fast);
}

/* About Visual - Bütüncül Grid Yapısı */
.about-v2-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 460px;
}

.visual-main,
.visual-secondary,
.visual-tertiary {
  cursor: pointer;
  transition: all var(--transition-base);
}

.visual-main:hover,
.visual-secondary:hover,
.visual-tertiary:hover {
  transform: translateY(0px) scale(1) !important;
  border: transparent;
  box-shadow: 7px 26px 66px rgba(63, 57, 52, 0.01);
  z-index: 1;
}

.visual-main {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
  border-radius: var(--radius-xl);
  overflow: hidden;
  -webkit-transform: translateY(-12px) !important;
  -ms-transform: translateY(-12px) !important;
  transform: translateY(-12px) scale(1) !important;
  box-shadow: rgba(63, 57, 52, 0.3) 0 60px 40px -7px;
}

.visual-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-secondary {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  -webkit-transform: translateY(-12px) !important;
  -ms-transform: translateY(-12px) !important;
  transform: translateY(-12px) scale(1) !important;
  box-shadow: rgba(63, 57, 52, 0.3) 0 60px 40px -7px;
}

.visual-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-tertiary {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  -webkit-transform: translateY(-12px) !important;
  -ms-transform: translateY(-12px) !important;
  transform: translateY(-12px) scale(1) !important;
  box-shadow: rgba(63, 57, 52, 0.3) 0 60px 40px -7px;
  position: relative;
}

.visual-tertiary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-badge {
  position: absolute;
  top: 16px;
  left: -45px;
  background: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
  animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.visual-badge i {
  color: var(--primary);
  font-size: 1rem;
}

.visual-badge span {
  font-size: 0.75rem;
  line-height: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .about-v2-visual {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    height: auto;
    gap: 10px;
  }

  .visual-main {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    height: 220px;
  }

  .visual-secondary,
  .visual-tertiary {
    height: 150px;
  }
}

/* Brand Integration */
.brand-integration-v2 {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
  position: relative;
}

/* Sol ve sağ fade efekti */
.brand-integration-v2::before,
.brand-integration-v2::after {
  content: "";
  position: absolute;
  top: 40px;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.brand-integration-v2::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-section), transparent);
}

.brand-integration-v2::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-section), transparent);
}

.brand-label {
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all var(--transition-base);
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  box-shadow: 2px 10px 30px rgba(63, 57, 52, 0.03);
}

.brand-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  -webkit-transform: translateY(-12px) !important;
  -ms-transform: translateY(-12px) !important;
  transform: translateY(-12px) scale(1.04) !important;
  border: transparent;
  box-shadow: rgba(63, 57, 52, 0.15) 0 40px 30px -5px;
}

.brand-logo img {
  padding: 12px;
  max-height: 100%;
  max-width: 200px;
  object-fit: contain;
}

/* Brand Marquee (Swiper) */
.brand-marquee {
  overflow: hidden;
  padding: 20px 0 60px 0;
}

.brand-marquee .swiper-wrapper {
  transition-timing-function: linear !important;
  -webkit-transition-timing-function: linear !important;
}

/* =========================================
   8. SOLUTIONS SECTION
   ========================================= */
.solutions-section {
  background: var(--bg-body);
}

.bg-light-pattern {
  position: relative;
  isolation: isolate;
  background-color: var(--bg-section);
  background-image: radial-gradient(var(--gray-400) 1px, transparent 1px);
  background-size: 20px 20px;
  overflow: hidden;
}

.bg-light-pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top,
      #f8f9fb 0%,
      rgba(248, 249, 251, 0.85) 20%,
      rgba(248, 249, 251, 0.5) 35%,
      rgba(248, 249, 251, 0) 55%);
  pointer-events: none;
}

.bg-light-pattern.is-reverse::after {
  transform: rotate(180deg);
}

.custom-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.custom-row.align-end {
  align-items: flex-end;
}

.col-half {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 12px;
}

@media (min-width: 768px) {
  .col-half {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.pl-desktop {
  padding-left: 0;
  margin-top: 14px;
}

@media (min-width: 768px) {
  .pl-desktop {
    padding-left: 28px;
    margin-top: 0;
  }
}

.border-left-primary {
  border-left: none;
  padding-top: 14px;
  border-top: 3px solid var(--primary);
}

@media (min-width: 768px) {
  .border-left-primary {
    border-left: 3px solid var(--primary);
    border-top: none;
    padding-top: 0;
  }
}

.mb-5 {
  margin-bottom: 50px;
}

.mb-0 {
  margin-bottom: 0;
}

/* Grid 4 Column */
.grid-4-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

@media (min-width: 576px) {
  .grid-4-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4-col {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Eşit yükseklik için grid item */
.grid-item {
  display: flex;
}

/* Solution Card Enhanced */
.solution-card-enhanced {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  border: 1px solid var(--gray-200);
  box-shadow: 7px 26px 66px rgba(63, 57, 52, 0.01);
}

.solution-card-enhanced:hover {
  border-color: transparent;
  -webkit-transform: translateY(-12px) !important;
  -ms-transform: translateY(-12px) !important;
  transform: translateY(-12px) !important;
  box-shadow: rgba(63, 57, 52, 0.2) 0 60px 40px -7px;
}

/* Hover overlay efekti - sağ alt köşeden icon çıkan */
.hover-overlay {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 15px 0 0 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 5;
}

.hover-overlay::after {
  content: "\e0c1";
  /* Phosphor arrow-right icon */
  font-family: "Phosphor";
  font-size: 1.25rem;
  color: var(--white);
  opacity: 0;
  transform: translate(-5px, 5px);
  transition: all 0.3s ease 0.1s;
}

.solution-card-enhanced:hover .hover-overlay {
  bottom: -30px;
  right: -30px;
}

.solution-card-enhanced:hover .hover-overlay::after {
  opacity: 1;
  transform: translate(0, 0);
}

.solution-card-enhanced.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}

.solution-card-enhanced.active:hover {
  border-color: transparent;
  -webkit-transform: translateY(-12px) !important;
  -ms-transform: translateY(-12px) !important;
  transform: translateY(-12px) !important;
  box-shadow: rgba(63, 57, 52, 0.2) 0 60px 40px -7px;
}

.sol-icon-box {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: var(--radius-lg);
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 18px;
  transition: all var(--transition-base);
}

.solution-card-enhanced:hover .sol-icon-box {
  background: var(--primary);
  color: var(--white);
}

.sol-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--navy-dark);
}

.sol-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  transition: gap var(--transition-fast);
}

.read-more:hover {
  gap: 9px;
  color: var(--primary-dark);
}

/* =========================================
   9. REFERENCES SECTION
   ========================================= */
.references-section {
  background: var(--bg-body);
  padding-top: 120px;
}

.section-header-flex {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .section-header-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.slider-nav-buttons {
  display: flex;
  gap: 6px;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(241, 245, 249, 0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
  background: var(--primary);
  color: var(--white);
}

/* Reference Slider */
.references-section .container {
  max-width: 100%;
  padding: 0;
}

.references-section .section-header-flex {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  margin-bottom: 50px;
}

.full-width-slider {
  overflow: visible;
  margin-left: calc((100vw - var(--container-max)) / 2 + 25px);
  margin-right: 0;
  margin-bottom: 120px;
}

@media (max-width: 1440px) {
  .full-width-slider {
    margin-left: var(--container-padding);
  }
}

.ref-slide {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: 7px 26px 66px rgba(63, 57, 52, 0.01);
  transition: all var(--transition-base);
}

.ref-slide:hover {
  border-color: transparent;
  transform: translateY(-3px);
  -webkit-transform: translateY(-12px) !important;
  -ms-transform: translateY(-12px) !important;
  transform: translateY(-12px) !important;
  box-shadow: rgba(63, 57, 52, 0.2) 0 60px 40px -7px;
}

.ref-slide a {
  display: flex;
  flex-direction: column;
}

.ref-slide .ref-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.ref-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: all var(--transition-base);
  filter: brightness(1.15) contrast(0.95);
}

.ref-slide:hover img {
  transform: scale(1.05);
}

.ref-info {
  padding: 24px 20px;
  background: var(--white);
}

.ref-title {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--navy-dark);
  margin-bottom: 0px;
}

.ref-cat {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 400;
  text-transform: capitalize;
}

.fancybox-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.fancybox__caption {
  text-transform: capitalize;
}

/* =========================================
   10. NEWS SECTION
   ========================================= */
.news-section-modern {
  background: var(--bg-section);
  margin-top: -222px;
  padding-top: 215px;
  padding-bottom: 170px;
}

.news-section-detail {
  padding: var(--section-padding) 0;
  margin-bottom: 1rem;
  position: relative;
}

.news-dpage .news-card-modern {
  margin-bottom: 20px;
}

.news-desktop-grid {
  display: none;
}

@media (min-width: 992px) {
  .news-desktop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.news-card-modern {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: 7px 26px 66px rgba(63, 57, 52, 0.01);
  transition: all var(--transition-base);
}

.news-card-modern:hover {
  border-color: transparent;
  transform: translateY(-3px);
  -webkit-transform: translateY(-12px) !important;
  -ms-transform: translateY(-12px) !important;
  transform: translateY(-12px) !important;
  box-shadow: rgba(63, 57, 52, 0.2) 0 60px 40px -7px;
}

.news-thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.news-thumb-link {
  display: block;
}

.news-thumb-link:hover .news-thumb img {
  transform: scale(1.08);
}

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

.news-card-modern:hover .news-thumb img {
  transform: scale(1.05);
}

.news-date-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: var(--white);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  text-align: center;
}

.news-date-badge .day {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1;
}

.news-date-badge .month {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 3px;
}

.news-date-badge .year {
  display: block;
  font-size: 0.625rem;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 2px;
}

.news-body {
  padding: 22px 22px 72px 22px;
  position: relative;
}

.news-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.5;
  width: 100%;
  display: -webkit-box !important;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-title a {
  color: var(--navy-dark);
  transition: color var(--transition-fast);
}

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

.news-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Desktop News Card - Hover'da İncele butonu */
@media (min-width: 992px) {
  .news-desktop-grid .news-card-modern {
    position: relative;
    overflow: hidden;
  }

  .news-desktop-grid .news-read-more {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    transform: translateY(100%);
    transition: all var(--transition-fast);
  }

  .news-desktop-grid .news-read-more:hover {
    color: var(--white);
    gap: 12px;
    transition: all var(--transition-fast);
  }

  .news-desktop-grid .news-card-modern:hover .news-read-more {
    transform: translateY(0);
  }
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  transition: gap var(--transition-fast);
}

.news-read-more:hover {
  gap: 9px;
  color: var(--primary-dark);
}

/* News Mobile Slider */
.news-mobile-slider {
  display: block;
  padding-bottom: 40px;
}


.news-mobile-slider {
  overflow: visible;
}

@media (min-width: 992px) {
  .news-mobile-slider {
    display: none;
  }

}

.news-pagination {
  bottom: 0 !important;
  margin-top: 30px;
  position: relative;
}

.swiper-pagination-bullet {
  background: var(--primary-dark);
}

.swiper-pagination-bullet-active {
  background: var(--primary-dark);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 12px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 12px));
}

.h-100 {
  height: 100%;
}

/* =========================================
   11. FOOTER
   ========================================= */
.footer-modern {
  background: var(--bg-dark);
  color: var(--text-white);
  margin-top: 0px;
  position: relative;
}

/* Footer CTA */
.footer-cta-wrapper {
  position: relative;
  top: -50px;
  margin-bottom: -25px;
  z-index: 10;
}

.footer-cta-card {
  background: var(--primary);
  border-radius: var(--radius-2xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* CTA Decorative Elements */
.footer-cta-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.15) 0%,
      transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatSlow 8s ease-in-out infinite;
}

.footer-cta-card::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatSlow 6s ease-in-out infinite reverse;
}

/* Dekoratif şekiller */
.cta-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.cta-shape-1 {
  top: 20px;
  right: 15%;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: floatSlow 5s ease-in-out infinite;
}

.cta-shape-2 {
  bottom: 30px;
  left: 20%;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transform: rotate(45deg);
  animation: rotateSlow 10s linear infinite;
}

.cta-shape-3 {
  top: 50%;
  right: 30%;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: pulseSlow 3s ease-in-out infinite;
}

.cta-dots {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px,
      transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 0;
}

@keyframes floatSlow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes rotateSlow {
  from {
    transform: rotate(45deg);
  }

  to {
    transform: rotate(405deg);
  }
}

@keyframes pulseSlow {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.15;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.3;
  }
}

.cta-content-left,
.cta-content-right {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .footer-cta-card {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 48px 56px;
  }
}

.cta-heading {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  color: #ffe8e2;
  line-height: 1.35;
  margin-bottom: 10px;
}

.cta-heading strong {
  color: var(--white);
}

.cta-subtext {
  font-size: 1rem;
  color: #ffe8e2;
  max-width: 440px;
  line-height: 1.6;
  font-weight: 400;
}

.cta-content-right {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

@media (min-width: 768px) {
  .cta-content-right {
    justify-content: flex-end;
  }
}

/* Footer Main */
.footer-main {
  padding: 70px 0 50px;
  position: relative;
}

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

@media (min-width: 768px) and (max-width: 1076px) {
  .cta-content-right .btn {
    width: 180px;
  }
}

@media (min-width: 576px) {
  .footer-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-grid-modern {
    grid-template-columns: 1.6fr 0.8fr 0.8fr 1.3fr;
    gap: 48px;
  }
}

/* Footer Brand Column */
.footer-col-brand {
  grid-column: 1 / -1;
}

@media (min-width: 992px) {
  .footer-col-brand {
    grid-column: auto;
  }
}

.footer-logo {
  height: 70px;
  opacity: 0.95;
  margin-bottom: 20px;
  transition: opacity var(--transition-fast);
}

.footer-logo:hover {
  opacity: 1;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 300px;
  font-weight: 500;
}

.social-links-modern {
  display: flex;
  gap: 10px;
}

.social-btn-mod {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  transition: all var(--transition-base);
}

.social-btn-mod:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 110, 66, 0.3);
}

/* Footer Links */
.footer-col-links {
  /* Default styling */
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 400;
}

.footer-nav a::before {
  content: "";
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width var(--transition-fast);
  margin-right: 0;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-nav a:hover::before {
  width: 12px;
  margin-right: 8px;
}

/* Footer Contact */
.footer-col-contact {
  /* Default styling */
}

.footer-tabs-modern {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.04);
  padding: 4px;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
}

.tab-btn-mod {
  flex: 1;
  padding: 8px 12px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.tab-btn-mod.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(255, 110, 66, 0.25);
}

.tab-btn-mod:hover:not(.active) {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.tab-content-mod {
  display: none;
}

.tab-content-mod.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.contact-list-mod {
  list-style: none;
}

.contact-list-mod li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  transition: color var(--transition-fast);
}

.contact-list-mod li:hover {
  color: rgba(255, 255, 255, 0.85);
}

.contact-list-mod li i {
  color: var(--primary);
  font-size: 1.125rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-list-mod li a {
  color: inherit;
  transition: color var(--transition-fast);
}

.contact-list-mod li a:hover {
  color: var(--primary);
}

.mb-4 {
  margin-bottom: 20px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer Bottom */
.footer-bottom-modern {
  position: relative;
  padding: 48px 0 48px 0;
}

.footer-bottom-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 1200px;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
}

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

@media (min-width: 992px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
  }
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-bottom-right {
  flex-shrink: 0;
}

.footer-bottom-right:hover .img-kodes {
  opacity: 0.5;
  transition: opacity var(--transition-base);
}

.copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
  line-height: 1.6;
  max-width: 700px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

@media (min-width: 992px) {
  .footer-legal {
    justify-content: flex-start;
  }
}

.footer-legal a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-fast);
  font-weight: 400;
  position: relative;
}

.footer-legal a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--white);
}

.footer-legal a:hover::after {
  width: 100%;
}

/* =========================================
   12. ADDITIONAL UTILITIES
   ========================================= */

/* Swiper Fixes */
.swiper-slide {
  height: auto;
}

.align-items-center {
  align-items: center;
}

/* Animation Classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* Print Styles */
@media print {

  .header,
  .footer-modern,
  .hero-section {
    display: none;
  }
}

/* =========================================
   13. RESPONSIVE MOBILE STYLES
   ========================================= */

/* Extra Small Devices (phones, 576px and down) */
@media (max-width: 575.98px) {
  :root {
    --container-padding: 16px;
    --section-padding: 48px;
  }

  h1 {
    font-size: 1.5rem;
    font-weight: 400;
  }

  h2 {
    font-size: 1.25rem;
    font-weight: 400;
  }

  h3 {
    font-size: 1rem;
    font-weight: 500;
  }

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

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

  .hero-desc {
    font-size: 0.875rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .about-v2-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .footer-cta-card {
    padding: 24px 20px;
  }

  .cta-heading {
    font-size: 1.125rem;
  }

  .footer-grid-modern {
    gap: 28px;
  }

  .footer-tabs-modern {
    flex-wrap: wrap;
  }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  :root {
    --section-padding: 56px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .about-v2-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-content {
    max-width: 540px;
  }

  .about-v2-visual {
    height: 380px;
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .footer-grid-modern {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  }
}

/* Mobile Menu Enhancements */
@media (max-width: 1023px) {
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    z-index: 9999;
    padding: 24px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu.active {
    display: flex;
    flex-direction: column;
    animation: slideIn 0.3s ease;
  }

  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateX(-100%);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .mobile-menu .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-light);
  }

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

  .mobile-menu-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-primary);
    background: var(--gray-100);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
  }

  .mobile-menu-close:hover {
    background: var(--primary);
    color: var(--white);
  }

  /* Mobile Menu Contact Info */
  .mobile-menu-footer {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
  }

  .mobile-contact-btns {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
  }

  .mobile-contact-btns a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition-fast);
  }

  .mobile-contact-btns a:hover {
    background: var(--primary);
    color: var(--white);
  }

  .mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
  }

  .mobile-social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: 1.25rem;
    transition: all var(--transition-fast);
  }

  .mobile-social-links a:hover {
    background: var(--primary);
    color: var(--white);
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .dropdown:hover .dropdown-menu {
    opacity: 0;
    visibility: hidden;
  }

  .dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
  }

  .btn:hover {
    transform: none;
  }

  .scalable-card:hover,
  .solution-card-enhanced:hover,
  .news-card-modern:hover {
    transform: none;
  }
}

/* Safe Area for Notched Devices */
@supports (padding: max(0px)) {
  .header {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }

  .mobile-menu {
    padding-left: max(24px, env(safe-area-inset-left));
    padding-right: max(24px, env(safe-area-inset-right));
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --primary: #e55d00;
    --text-muted: #525252;
  }

  .btn-outline,
  .btn-outline-light {
    border-width: 2px;
  }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
  /* Uncomment below to enable dark mode
    :root {
        --bg-body: #0f0f0f;
        --bg-section: #171717;
        --text-primary: #ffffff;
        --text-secondary: #a3a3a3;
        --border-color: #262626;
    }
    */
}

/* =========================================
   SCROLL REVEAL ANIMATIONS
   ========================================= */

/* Başlangıç durumu - görünmez */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Görünür durumu */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Farklı animasyon tipleri */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Gecikme sınıfları */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* =========================================
   HERO ENTRANCE ANIMATIONS
   ========================================= */

/* Header - yukarıdan aşağı giriş */
.header {
  animation: slideDownHeader 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideDownHeader {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero içerik animasyonları */
.hero-content .hero-tag {
  opacity: 0;
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.hero-content .hero-title {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.hero-content .hero-desc {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
}

.hero-content .hero-btns {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll butonu - alttan yukarı giriş */
.scroll-down {
  opacity: 0;
  animation: slideUpScroll 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
}

@keyframes slideUpScroll {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero slider okları animasyonu - scroll butonu ile aynı anda */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
  opacity: 0;
  animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
  transition: all var(--transition-base);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* =========================================
   WHATSAPP FLOAT BUTTON
   ========================================= */
/* WhatsApp Float Wrapper */
.whatsapp-float-wrapper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 999;
}

.whatsapp-hours-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateX(20px);
  transition: all var(--transition-base);
  pointer-events: none;
}

.whatsapp-float-wrapper:hover .whatsapp-hours-badge {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-hours-badge i {
  font-size: 18px;
  color: var(--primary);
}

.whatsapp-hours-badge .hours-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.whatsapp-hours-badge .hours-text span {
  font-size: 0.75rem;
  color: var(--text-secondary);
  white-space: nowrap;
  line-height: 1.3;
}

.whatsapp-float {
  position: relative;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  color: #fff;
}

/* =========================================
   KVKK COOKIE NOTICE
   ========================================= */
.kvkk-notice {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: auto;
  max-width: 500px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 998;
  border: 1px solid var(--border-color);
}

.kvkk-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.kvkk-header i {
  font-size: 1.5rem;
  color: var(--primary);
}

.kvkk-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin: 0;
}

.kvkk-text {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.kvkk-text a {
  color: var(--navy-dark);
  text-decoration: underline;
}

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

.kvkk-accept {
  background: var(--primary);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  width: 100%;
  transition: all var(--transition-fast);
}

.kvkk-accept:hover {
  background: var(--primary-dark);
}

.kvkk-notice.hidden {
  display: none;
}

@media (max-width: 768px) {
  .kvkk-notice {
    left: 24px;
    right: 24px;
    bottom: 90px;
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-float-wrapper {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-hours-badge {
    display: none;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

/* =========================================
   MOBILE & RESPONSIVE FIXES
   ========================================= */

/* Mobile Menu Header Fix */
@media (max-width: 1023px) {
  .mobile-menu {
    padding: 24px !important;
  }

  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border-light);
  }

  .mobile-logo img {
    height: 48px;
  }

  .mobile-menu nav {
    flex: 1;
    overflow-y: auto;
  }

  /* Mobile Dropdown */
  .mobile-dropdown {
    border-bottom: 1px solid var(--border-light);
  }

  .mobile-dropdown-toggle {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    border-bottom: none !important;
  }

  .mobile-dropdown-toggle i {
    transition: transform var(--transition-fast);
  }

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

  .mobile-dropdown-menu {
    display: none;
    padding-left: 16px;
    padding-bottom: 10px;
  }

  .mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
  }

  .mobile-dropdown-menu a {
    display: block;
    padding: 12px 0;
    font-size: 0.875rem;
    color: var(--text-muted);
    border-bottom: none;
  }

  .mobile-dropdown-menu a:hover {
    color: var(--primary);
  }
}

/* Hero Section Mobile */
@media (max-width: 767.98px) {
  .hero-section {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-tag {
    font-size: 0.6875rem;
    padding: 6px 12px;
  }

  .hero-title {
    font-size: 1.625rem;
    line-height: 1.25;
  }

  .hero-desc {
    font-size: 0.875rem;
    line-height: 1.6;
  }

  .hero-btns {
    flex-direction: column;
    gap: 12px;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
    border: none;
    padding-right: 0;
  }
}

/* About Section Mobile */
@media (max-width: 1023.98px) {
  .about-v2-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  .about-v2-visual {
    height: 320px !important;
    order: -1;
  }
}

@media (max-width: 991.98px) {
  .about-v2-stats {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .about-v2-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 575.98px) {
  .about-v2-visual {
    height: 280px !important;
  }

  .about-v2-stats {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .stat-item {
    text-align: center !important;
  }

  .about-v2-actions {
    flex-direction: column;
  }
}

/* Services Section Mobile */
@media (max-width: 767.98px) {
  .scalable-services {
    grid-template-columns: 1fr !important;
  }

  .scalable-card {
    padding: 24px 20px;
  }

  .service-num {
    font-size: 2.5rem;
  }

  .service-title {
    font-size: 1rem;
  }
}

/* Solutions Section Mobile */
@media (max-width: 575.98px) {
  .grid-4-col {
    grid-template-columns: 1fr !important;
  }

  .solution-card-enhanced {
    padding: 24px 20px;
  }
}

/* References Section Mobile */
@media (max-width: 767.98px) {
  .ref-slide {
    border-radius: var(--radius-lg);
  }

  .ref-info {
    padding: 14px 16px;
  }

  .ref-title {
    font-size: 0.875rem;
  }

  .ref-cat {
    font-size: 0.75rem;
  }
}

/* News Section Mobile */
@media (max-width: 991.98px) {
  .news-desktop-grid {
    display: none !important;
  }

  .news-mobile-slider {
    display: block !important;
    padding-bottom: 100px;
  }

  .news-section-modern {
    padding-bottom: 0px;
  }

  .page-news-slider {
    padding-bottom: 0 !important;
  }
}

@media (max-width: 575.98px) {
  .news-card-modern {
    border-radius: var(--radius-lg);
  }

  .news-body {
    padding: 16px;
  }

  .news-title a {
    font-size: 0.9375rem;
  }
}

/* Footer Mobile */
@media (max-width: 991.98px) {
  .footer-grid-modern {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  .footer-col-brand {
    text-align: center;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .social-links-modern {
    justify-content: center;
  }

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

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

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

  .footer-nav a::before {
    display: none;
  }

  .footer-desc {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .footer-cta-card {
    padding: 28px 20px !important;
  }

  .cta-heading {
    font-size: 1.125rem;
  }

  .cta-subtext {
    font-size: 0.875rem;
  }

  .cta-content-right {
    flex-direction: column;
    width: 100%;
  }

  .cta-content-right .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-main {
    padding: 30px 0 20px;
    position: relative;
  }

  .footer-bottom-modern {
    padding: 38px 0 38px 0;
  }

  .footer-heading,
  .footer-col-links {
    display: none;
  }

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

  .footer-bottom-left {
    align-items: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .copyright {
    text-align: center;
  }
}

/* WhatsApp & KVKK Mobile */
@media (max-width: 575.98px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    right: 16px;
    bottom: 16px;
  }

  .kvkk-notice {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
    width: auto;
  }
}

/* Custom Row Mobile */
@media (max-width: 767.98px) {
  .custom-row {
    flex-direction: column !important;
    gap: 16px;
  }

  .col-half {
    width: 100% !important;
  }

  .pl-desktop {
    padding-left: 0 !important;
  }

  .border-left-primary {
    border-left: none !important;
    padding-left: 0 !important;
  }

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

  .section-desc {
    font-size: 0.9375rem;
  }
}

/* Header Mobile */
@media (max-width: 1023px) {
  .nav-menu {
    display: none !important;
  }

  .mobile-toggle {
    display: flex !important;
  }

  .header-inner {
    padding: 12px 0;
  }

  .logo img {
    height: 52px !important;
  }
}

/* Contact Icons Mobile */
@media (max-width: 575.98px) {
  .contact-icons-header {
    display: none !important;
  }
}

/* Section Padding Mobile */
@media (max-width: 575.98px) {
  .section-padding {
    padding: 48px 0;
  }
}

/* Visual Badge Mobile */
@media (max-width: 767.98px) {
  .visual-badge {
    padding: 6px 12px;
    font-size: 0.6875rem;
  }

  .visual-badge i {
    font-size: 0.875rem;
  }

  .header.scrolled {
    padding: 0px 0;
  }
}

/* =========================================
   MOBILE RESPONSIVE FIXES (768px altı)
   Masaüstü görünümü etkilemez
   ========================================= */

/* Hero Slider Butonları - Mobil Düzenleme */
@media (max-width: 767.98px) {
  .hero-btns {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
  }

  .hero-btns .btn {
    width: auto;
    flex: 0 0 auto;
    padding: 10px 16px;
    font-size: 0.8125rem;
    border: none !important;
  }

  .hero-btns .btn-outline {
    border-radius: var(--radius-md) !important;
    padding: 10px 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.3) !important;
  }

  .hero-btns .btn-outline:last-child {
    padding: 10px 16px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.3) !important;
  }

  .hero-btns .hero-icon {
    display: none;
  }

  .hero-desc {
    margin-bottom: 32px;
  }
}

/* Hakkında Bölümü Fotoğrafları - Mobil Düzenleme */
@media (max-width: 767.98px) {
  .about-v2-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    height: auto;
  }

  .visual-main {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    height: 200px;
    transform: none !important;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    box-shadow: none;
  }

  .visual-secondary {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    height: 140px;
    transform: none !important;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    box-shadow: none;
  }

  .visual-tertiary {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    height: 140px;
    transform: none !important;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    box-shadow: none;
  }

  .visual-badge {
    left: 12px;
    top: 12px;
    padding: 8px 14px;
    font-size: 0.625rem;
  }

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

  .hero-content {
    text-align: center;
  }

  .hero-content-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    text-align: center;
  }

  .hero-desc {
    text-align: center;
  }

  .hero-btns {
    justify-content: center;
  }
}

/* Section Arası Boşluklar - Mobil Düzenleme */
@media (max-width: 767.98px) {
  :root {
    --section-padding: 56px;
  }

  .section-padding {
    padding: 56px 0;
  }

  .about-section-v2 {
    padding: 40px 0 0;
  }

  .services-section.section-padding {
    padding: 56px 0;
  }

  .solutions-section.section-padding {
    padding: 0 0 56px 0;
  }

  .references-section.section-padding {
    padding: 56px 0;
  }

  .news-section-modern.section-padding {
    padding: 56px 0 0;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .custom-row.mb-5 {
    margin-bottom: 32px !important;
  }

  /* About section içerik düzeni */
  .about-v2-content .section-tag {
    margin-bottom: 10px;
  }

  .about-v2-title {
    margin-bottom: 14px;
  }

  .about-v2-content p:first-of-type {
    margin-bottom: 20px;
  }

  .about-v2-stats {
    margin-top: 28px;
    margin-bottom: 28px;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr) !important;
  }

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

  .about-v2-content {
    margin-top: 48px;
  }

  .about-v2-actions {
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 16px;
  }

  .video-link {
    margin: 0 auto;
  }

  /* Brand integration mobil düzeni */
  .brand-integration-v2 {
    margin-top: 40px;
    padding-top: 32px;
  }

  .brand-marquee {
    padding: 16px 0 70px 0;
  }

  .news-section-modern {
    margin-top: -196px;
    padding-top: 130px;
  }

  .references-section {
    padding-top: 56px;
  }

}

/* Küçük Mobil Cihazlar (575px altı) */
@media (max-width: 575.98px) {
  :root {
    --section-padding: 48px;
    --container-padding: 20px;
  }

  .section-padding {
    padding: 48px 0;
  }

  .services-section.section-padding {
    padding: 48px 0;
  }

  .references-section.section-padding {
    padding: 48px 0;
  }

  .news-section-modern.section-padding {
    padding: 48px 0 0;
  }

  .section-header {
    margin-bottom: 28px;
  }

  .custom-row.mb-5 {
    margin-bottom: 28px !important;
  }

  /* Hero butonları küçük ekran */
  .hero-btns {
    gap: 8px;
  }

  .hero-btns .btn-outline {
    padding: 9px 14px !important;
    font-size: 0.75rem;
  }

  /* About fotoğrafları küçük ekran */
  .about-v2-visual {
    gap: 10px;
  }

  .visual-main {
    height: 180px;
  }

  .visual-secondary,
  .visual-tertiary {
    height: 120px;
  }

  /* Stats mobil düzeni - YAN YANA */
  .about-v2-stats {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px;
  }

  .stat-item {
    text-align: center;
    padding: 0;
    border-bottom: none;
  }

  .stat-number {
    font-size: 1.25rem;
  }

  .stat-label {
    font-size: 0.6875rem;
  }

  /* Actions mobil düzeni */
  .about-v2-actions {
    flex-direction: column;
    gap: 12px;
  }

  .about-v2-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .video-link {
    justify-content: center;
  }
}

#news,
#references {
  overflow: hidden;
}

/* Working Hours Styles */
.working-hours {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.working-hours span {
  font-size: 0.875rem;
}

.contact-list-mod li .working-hours span {
  display: block;
}

/* =========================================
   PAGE HERO - Ana sayfa slider gibi
   ========================================= */

.page-hero {
  position: relative;
  padding-top: 80px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.page-hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 14%, transparent 100%);
  pointer-events: none;
}

/* Overlay - Ana sayfadaki slider gibi */
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

/* Dots - Ana sayfadaki slider gibi */
.page-hero-dots {
  position: absolute;
  inset: 0;
  background-image: url(../img/bg-dots.png);
  background-repeat: repeat;
  opacity: 0.5;
  pointer-events: none;
  z-index: 2;
}

.page-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--white);
}

.page-hero-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-breadcrumb a:hover {
  color: var(--primary);
}

.page-breadcrumb i {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.page-breadcrumb span {
  color: var(--primary);
}

.page-breadcrumb span.separator {
  color: var(--text-white) !important;
}

@media (max-width: 1024px) {
  .page-hero {
    height: 280px;
  }

}

@media (max-width: 768px) {
  .page-hero {
    min-height: 250px;
  }

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

}