/* ============================================
   GÜLAN GRUP - Kurumsal Web Sitesi
   Bootstrap 5 - Beyaz / Minimal / Premium Tema
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  /* Corporate */
  --primary: #e42f22;
  --primary-light: #f04e43;
  --primary-dark: #c22419;
  --primary-bg: rgba(228, 47, 34, 0.06);

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f7f8fa;
  --light-gray: #eef0f3;
  --medium-gray: #9ca3af;
  --dark-gray: #6b7280;
  --charcoal: #1f2937;
  --black: #111827;
  --dark-bg: #11141a;

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.10);
  --shadow-xl: 0 16px 50px rgba(0, 0, 0, 0.12);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.2s var(--ease);
  --t-smooth: 0.4s var(--ease);
  --t-slow: 0.6s var(--ease);

  /* Bootstrap Primary Override → Corporate Red */
  --bs-primary: #e42f22;
  --bs-primary-rgb: 228, 47, 34;
  --bs-link-color: #e42f22;
  --bs-link-hover-color: #c22419;
  --bs-link-color-rgb: 228, 47, 34;
  --bs-link-hover-color-rgb: 194, 36, 25;
}

.logo-fluid {
  max-width: 200px !important;
  height: auto;
}

/* Bootstrap component-level overrides */
.text-primary {
  color: var(--primary) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.border-primary {
  border-color: var(--primary) !important;
}

.btn-primary {
  --bs-btn-bg: #e42f22;
  --bs-btn-border-color: #e42f22;
  --bs-btn-hover-bg: #c22419;
  --bs-btn-hover-border-color: #c22419;
  --bs-btn-active-bg: #a81e14;
  --bs-btn-active-border-color: #a81e14;
  --bs-btn-disabled-bg: #e42f22;
  --bs-btn-disabled-border-color: #e42f22;
}

.btn-outline-primary {
  --bs-btn-color: #e42f22;
  --bs-btn-border-color: #e42f22;
  --bs-btn-hover-bg: #e42f22;
  --bs-btn-hover-border-color: #e42f22;
  --bs-btn-active-bg: #c22419;
  --bs-btn-active-border-color: #c22419;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--black);
}

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

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

/* Section Title */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--dark-gray);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

.section-header .accent-line {
  width: 48px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* --- Premium Reveal Button --- */
.btn-premium-glow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: white;
  background: linear-gradient(135deg, #E42F22 0%, #B71234 100%);
  border: none;
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 20px rgba(228, 47, 34, 0.2);
  z-index: 1;
}

.btn-premium-glow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff4d40 0%, #d91c41 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.btn-premium-glow::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg) translateY(100%);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}

.btn-premium-glow:hover {
  transform: translateY(-3px);
  color: white;
  box-shadow: 0 15px 30px rgba(228, 47, 34, 0.3);
}

.btn-premium-glow:hover::before {
  opacity: 1;
}

.btn-premium-glow:hover::after {
  transform: rotate(45deg) translateY(-100%);
}

.btn-premium-glow i,
.btn-premium-glow svg {
  transition: transform 0.3s ease;
}

.btn-premium-glow:hover i,
.btn-premium-glow:hover svg {
  transform: translateX(4px);
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--white);
  padding: 10px 0;
  font-size: 0.78rem;
}

.top-bar a,
.top-bar span {
  color: var(--dark-gray);
}

.top-bar a:hover {
  color: var(--primary);
}

.top-bar i,
.top-bar svg {
  color: var(--primary);
  margin-right: 4px;
}

.top-bar-desc {
  color: var(--medium-gray);
  font-size: 0.78rem;
}

.top-bar-sep {
  color: var(--light-gray);
  margin: 0 6px;
}

/* ============================================
   SITE HEADER (Centered Logo)
   ============================================ */
.site-header {
  background: var(--white);
  padding: 26px 0 20px;
  position: relative;
  z-index: 1060;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header-logo {
  text-align: center;
  text-decoration: none;
  display: block;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  letter-spacing: -1px;
  text-transform: lowercase;
}

.logo-sub {
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--primary);
  margin-top: 2px;
}

/* Mobile toggle */
.mobile-toggle {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 10;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 1px;
  transition: var(--t-fast);
}

.mobile-toggle:hover span {
  background: var(--primary);
}

.header-phone {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 1.2rem;
}

/* ============================================
   NAVBAR (Horizontal Menu Bar)
   ============================================ */
.navbar-main {
  background: var(--black);
  padding: 0;
  z-index: 1050;
  border-bottom: none;
  transition: var(--t-smooth);
}

.navbar-main.scrolled {
  box-shadow: var(--shadow-lg);
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 100%;
}

.nav-link-item {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 14px 22px;
  position: relative;
  transition: var(--t-fast);
  white-space: nowrap;
}

.nav-link-item:hover,
.nav-link-item.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 22px;
  right: 22px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--t-smooth);
}

.nav-link-item:hover::after,
.nav-link-item.active::after {
  transform: scaleX(1);
}

/* Mobile nav collapse */
@media (max-width: 991.98px) {
  .navbar-main .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    /* White background for mobile menu */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1040;
  }

  /* Bootstrap handles .collapsing height transition automatically */

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 10px 0;
  }

  .nav-link-item {
    padding: 15px 24px;
    color: var(--charcoal);
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-link-item:hover,
  .nav-link-item.active {
    background: rgba(228, 47, 34, 0.05);
    color: var(--primary);
  }

  .nav-link-item::after {
    display: none;
  }
}

/* ============================================
   HERO SLIDER — Swiper
   ============================================ */
.hero-section {
  position: relative;
}

.hero-swiper {
  width: 100%;
  height: 75vh;
  min-height: 480px;
  max-height: 680px;
}

.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

.hero-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
  transform: scale(1);
}

.hero-swiper .swiper-slide-active img {
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.52) 0%,
      rgba(0, 0, 0, 0.08) 50%,
      rgba(0, 0, 0, 0.38) 100%);
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0;
}

/* Tag */
.hero-tag {
  display: inline-block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 18px;
  position: relative;
  padding-left: 32px;
}

.hero-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 1px;
  background: var(--primary);
}

/* Title */
.hero-content h1 {
  font-family: var(--font-display);
  font-size: 4.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}

/* Subtitle */
.hero-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  max-width: 480px;
}

/* Slide Counter (bottom-left) */
.hero-counter {
  position: absolute;
  bottom: 36px;
  left: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: calc((100% - 1320px) / 2);
  font-family: var(--font-display);
}

.hero-counter-current {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
}

.hero-counter-sep {
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.hero-counter-total {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Nav Arrows (bottom-right) */
.hero-nav {
  position: absolute;
  bottom: 32px;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: calc((100% - 1320px) / 2);
}

.hero-nav button {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--t-smooth);
  backdrop-filter: blur(4px);
}

.hero-nav button:first-child {
  width: 44px;
  height: 44px;
  font-size: 0.75rem;
}

.hero-nav button:last-child {
  width: 52px;
  height: 52px;
  font-size: 0.85rem;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.hero-nav button:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
  transform: scale(1.08);
}

/* Scroll Down Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.hero-scroll-hint span {
  display: block;
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  position: relative;
}

.hero-scroll-hint span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 7px;
  background: var(--white);
  border-radius: 2px;
  animation: scrollBounce 1.8s infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 0.3;
    transform: translateX(-50%) translateY(8px);
  }
}


@media (max-width: 1399.98px) {
  .hero-counter {
    padding-left: calc((100% - 1140px) / 2);
  }

  .hero-nav {
    padding-right: calc((100% - 1140px) / 2);
  }
}

@media (max-width: 1199.98px) {
  .hero-counter {
    padding-left: calc((100% - 960px) / 2);
  }

  .hero-nav {
    padding-right: calc((100% - 960px) / 2);
  }

  .hero-content h1 {
    font-size: 3.2rem;
  }
}

@media (max-width: 991.98px) {
  .hero-counter {
    padding-left: calc((100% - 720px) / 2);
  }

  .hero-nav {
    padding-right: calc((100% - 720px) / 2);
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section .carousel-item {
    height: 60vh;
    min-height: 360px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    letter-spacing: -1px;
  }

  .hero-content p {
    font-size: 0.85rem;
  }

  .hero-counter {
    padding-left: 20px;
  }

  .hero-nav {
    padding-right: 20px;
  }

  .hero-nav button {
    width: 44px;
    height: 44px;
    font-size: 0.78rem;
  }

  .hero-scroll-hint {
    display: none;
  }
}

/* Premium Homepage Trade-In Banner */
.tradein-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
  color: white;
  padding: 0;
  margin-top: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tradein-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 70%;
  height: 200%;
  background: radial-gradient(circle, rgba(228, 47, 34, 0.15) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.tradein-banner-content {
  padding: 3.5rem 3rem;
  z-index: 3;
  position: relative;
}

.tradein-banner-tag {
  background: rgba(228, 47, 34, 0.1);
  color: var(--primary);
  padding: 0.5rem 1.2rem;
  border-radius: 3rem;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  margin-bottom: 2rem;
  border: 1px solid rgba(228, 47, 34, 0.2);
  backdrop-filter: blur(4px);
}

.tradein-banner-tag i,
.tradein-banner-tag svg {
  margin-right: 8px;
}

.tradein-banner h2 {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.tradein-banner h2 span {
  display: block;
  background: linear-gradient(to right, #ffffff, #94a3b8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tradein-banner h2 em {
  font-style: normal;
  color: var(--primary);
  background: linear-gradient(to right, #ff4d4d, #c22419);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tradein-banner p {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.5;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.tradein-features {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.tradein-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #94a3b8;
}

.tradein-feature i,
.tradein-feature svg {
  color: var(--primary);
  font-size: 1.2rem;
}

.tradein-image-container {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 48%;
  z-index: 2;
  overflow: hidden;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.tradein-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-in-out;
}

.tradein-banner:hover .tradein-image {
  transform: scale(1.1);
}

.tradein-banner .btn-premium-glow {
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  border-radius: 4rem;
}

@media (max-width: 1199px) {
  .tradein-banner h2 {
    font-size: 2.8rem;
  }
}

@media (max-width: 991px) {
  .tradein-image-container {
    display: none;
  }

  .tradein-banner-content {
    padding: 4rem 2rem;
    text-align: center;
  }

  .tradein-banner p {
    margin-left: auto;
    margin-right: auto;
  }

  .tradein-features {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
}


@media (max-width: 575.98px) {
  .hero-section .carousel-item {
    height: 50vh;
    min-height: 280px;
  }

  .hero-content h1 {
    font-size: 1.7rem;
  }

  .hero-tag {
    font-size: 0.65rem;
    letter-spacing: 2px;
    padding-left: 24px;
  }

  .hero-tag::before {
    width: 16px;
  }
}

/* ============================================
   BRANDS SHOWCASE v2 (Grid Cards)
   ============================================ */
.brands-section {
  padding: 100px 0;
  background: var(--white);
}

/* --- Split Header --- */
.brands-header {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.brands-count {
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 800;
  color: var(--off-white);
  line-height: 1;
  letter-spacing: -4px;
  -webkit-text-stroke: 1.5px var(--light-gray);
}

.brands-header-right .hero-tag {
  color: var(--medium-gray);
  margin-bottom: 10px;
}

.brands-header-right .hero-tag::before {
  background: var(--primary);
}

.brands-header-right h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.brands-header-right p {
  color: var(--medium-gray);
  font-size: 0.95rem;
  max-width: 480px;
  line-height: 1.6;
}

/* --- Expandable Accordion Cards (Premium) --- */
.brands-grid {
  display: flex;
  gap: 4px;
  height: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.brand-card {
  position: relative;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  cursor: none;
  transition: flex 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Inactive cards: links not clickable */
.brand-card .brand-card-link,
.brand-card .brand-card-badge {
  pointer-events: none;
}

.brand-card.active .brand-card-link {
  pointer-events: auto;
  cursor: pointer !important;
}

.brand-card.active .brand-card-badge {
  pointer-events: auto;
}

/* Custom Cursor */
.brand-cursor {
  position: fixed;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.4);
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s ease;
  backdrop-filter: blur(10px);
}

.brand-cursor.visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.brand-cursor.clicking {
  transform: translate(-50%, -50%) scale(0.65);
  background: rgba(255, 255, 255, 0.18);
}

.brand-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.brand-card:hover::after {
  opacity: 1;
}

.brand-card.active {
  flex: 10;
}

/* Background Image with Ken Burns */
.brand-card-bg {
  position: absolute;
  inset: -10px;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
  filter: brightness(0.6) saturate(0.7);
}

.brand-card.active .brand-card-bg {
  filter: brightness(0.85) saturate(1.1);
  animation: kenBurns 12s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.08) translate(-1%, -1%);
  }
}

.brand-card:hover .brand-card-bg {
  transform: scale(1.08);
  filter: brightness(0.7) saturate(0.9);
}

/* Overlay — frosted glass on inactive, cinematic gradient on active */
.brand-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.75) 100%);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 14px;
  backdrop-filter: blur(1px);
}

.brand-card.active .brand-card-overlay {
  background: linear-gradient(180deg,
      transparent 30%,
      rgba(0, 0, 0, 0.55) 70%,
      rgba(0, 0, 0, 0.75) 100%);
  padding: 36px 32px;
  backdrop-filter: none;
}

/* Glowing effect on active card */
.brand-card.active {
  z-index: 2;
  animation: outerGlow 2.5s ease-in-out infinite alternate;
}

@keyframes outerGlow {
  0% {
    box-shadow: 0 0 20px rgba(228, 47, 34, 0.2), 0 0 50px rgba(228, 47, 34, 0.08);
  }

  100% {
    box-shadow: 0 0 35px rgba(228, 47, 34, 0.35), 0 0 80px rgba(228, 47, 34, 0.15);
  }
}

/* Inner glow on ::before */
.brand-card.active::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  animation: innerGlow 2.5s ease-in-out infinite alternate;
}

@keyframes innerGlow {
  0% {
    box-shadow: inset 0 0 50px rgba(228, 47, 34, 0.1);
  }

  100% {
    box-shadow: inset 0 0 80px rgba(228, 47, 34, 0.2);
  }
}

/* Border radius on first & last cards */
.brand-card:first-child {
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

.brand-card:last-child {
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
}

.brand-card:first-child::before {
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

.brand-card:last-child::before {
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
}

/* Label — vertical on inactive, horizontal on active with slide-up */
.brand-card-label {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  writing-mode: vertical-lr;
  white-space: nowrap;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

.brand-card.active .brand-card-label {
  writing-mode: horizontal-tb;
  transform: none;
  position: relative;
  bottom: auto;
  left: auto;
  font-size: 2rem;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Subtitle with slide-up animation */
.brand-card-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.3px;
}

.brand-card.active .brand-card-sub {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

/* CTA Link with premium styling */
.brand-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: fit-content;
  text-decoration: none;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

/* Shine sweep on CTA */
.brand-card-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.brand-card-link:hover::before {
  left: 100%;
}

.brand-card-link:hover {
  background: var(--white);
  color: var(--charcoal);
  transform: translateY(0) scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.brand-card.active .brand-card-link {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.brand-card-link i,
.brand-card-link svg {
  transition: transform 0.3s ease;
}

.brand-card-link:hover i,
.brand-card-link:hover svg {
  transform: translateX(4px);
}

/* Badge with pulse */
.brand-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(228, 47, 34, 0.9);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(-10px) scale(0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 5;
}

.brand-card.active .brand-card-badge {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.1s;
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(228, 47, 34, 0.3);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(228, 47, 34, 0);
  }
}

/* Mobile brands */
@media (max-width: 991.98px) {
  .brands-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .brands-count {
    font-size: 5rem;
  }

  .brands-grid {
    flex-direction: column;
    height: auto;
    gap: 4px;
  }

  .brand-card {
    height: 80px;
    transition: height 0.5s var(--ease), flex 0.5s var(--ease);
    flex: none;
    border-radius: var(--radius-lg) !important;
  }

  .brand-card::before {
    border-radius: var(--radius-lg) !important;
  }

  .brand-card.active {
    height: 300px;
    flex: none;
  }

  .brand-card-label {
    writing-mode: horizontal-tb;
    transform: none;
    position: absolute;
    bottom: auto;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 20px;
  }

  .brand-card.active .brand-card-label {
    position: relative;
    top: auto;
    transform: none;
    padding-left: 0;
  }
}

@media (max-width: 575.98px) {
  .brands-count {
    font-size: 3.5rem;
  }

  .brands-header-right h2 {
    font-size: 1.8rem;
  }
}


/* ============================================
   OPPORTUNITY / QUICKLINKS
   ============================================ */
.quicklinks-section {
  padding: 80px 0;
  background: var(--white);
}

.quicklink-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 260px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--t-smooth);
  border: 1px solid var(--light-gray);
}

.quicklink-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.quicklink-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--t-slow);
}

.quicklink-card:hover img {
  transform: scale(1.06);
}

.quicklink-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.quicklink-overlay h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.quicklink-overlay p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.quicklink-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--t-smooth);
}

.quicklink-card:hover .quicklink-arrow {
  background: var(--primary);
  transform: rotate(-45deg);
}

/* ============================================
   CAMPAIGNS
   ============================================ */
.campaigns-section {
  padding: 80px 0;
  background: var(--off-white);
}

.campaign-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--light-gray);
  transition: var(--t-smooth);
  height: 100%;
}

.campaign-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.campaign-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--light-gray);
}

.campaign-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--t-slow);
}

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

.campaign-card-body {
  padding: 22px;
}

.campaign-badge {
  display: inline-block;
  background: var(--primary-bg);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.campaign-card-body h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}

.campaign-card-body p {
  color: var(--dark-gray);
  font-size: 0.87rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Placeholder */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--light-gray);
  color: var(--medium-gray);
  font-size: 0.8rem;
}

.img-placeholder i,
.img-placeholder svg {
  font-size: 2.2rem;
  margin-bottom: 6px;
  opacity: 0.4;
}

/* ============================================
   SERVICES
   ============================================ */
.services-section {
  padding: 80px 0;
  background: var(--white);
}

.service-card {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 36px 26px;
  text-align: center;
  transition: var(--t-smooth);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--t-smooth);
}

.service-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 68px;
  height: 68px;
  background: var(--primary-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--t-smooth);
}

.service-icon i,
.service-icon svg {
  font-size: 1.6rem;
  color: var(--primary);
  transition: var(--t-smooth);
}

.service-card:hover .service-icon {
  background: var(--primary);
}

.service-card:hover .service-icon i,
.service-card:hover .service-icon svg {
  color: var(--white);
}

.service-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.service-card p {
  color: var(--dark-gray);
  font-size: 0.87rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-section {
  padding: 80px 0;
  background: var(--off-white);
}

/* Premium Gallery Grid (Cinema Style) */
.pg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}

/* Advanced hover dimension effect */
.pg-grid:has(.pg-item:hover) .pg-item:not(:hover) {
  filter: brightness(0.5) grayscale(40%);
  transform: scale(0.98);
}

.pg-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  background: #000;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateZ(0);
}

.pg-large {
  grid-column: span 2;
  grid-row: span 2;
}

.pg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
}

.pg-item:hover img {
  transform: scale(1.05);
  opacity: 0.75;
}

/* Cinematic Dark Gradient Reveal */
.pg-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 34px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 35%, transparent 60%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.pg-large .pg-overlay {
  padding: 40px;
}

.pg-item:hover .pg-overlay {
  opacity: 1;
}

.pg-content {
  width: 100%;
}

.pg-category {
  display: block;
  font-size: 0.75rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.1s;
}

.pg-title {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0;
  margin: 0 0 16px 0;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.15s;
}

.pg-large .pg-title {
  font-size: 2.4rem;
  font-weight: 300;
}

.pg-line {
  height: 1px;
  width: 0;
  background: #fff;
  opacity: 0.3;
  transition: width 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
}

.pg-item:hover .pg-category,
.pg-item:hover .pg-title {
  opacity: 1;
  transform: translateY(0);
}

.pg-item:hover .pg-line {
  width: 60px;
}

/* Responsive */
@media (max-width: 991.98px) {
  .pg-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
  }

  .pg-large {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 575.98px) {
  .pg-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .pg-large {
    grid-column: span 1;
  }
}

/* ============================================
   BLOG
   ============================================ */
.blog-section {
  padding: 100px 0;
  background: var(--white);
}


.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card — full-image overlay style */
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.blog-card-inner {
  position: relative;
  display: block;
  height: 420px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
}

.blog-card-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Overlay */
.blog-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      transparent 25%,
      rgba(0, 0, 0, 0.2) 50%,
      rgba(0, 0, 0, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  z-index: 2;
  transition: background 0.4s ease;
}

.blog-card:hover .blog-card-overlay {
  background: linear-gradient(180deg,
      transparent 15%,
      rgba(0, 0, 0, 0.3) 45%,
      rgba(0, 0, 0, 0.9) 100%);
}

/* Category pill */
.blog-category {
  align-self: flex-start;
  background: var(--primary);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Content at bottom */
.blog-card-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-meta span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 400;
}

.blog-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin: 0;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-card-content h3 {
  color: rgba(255, 255, 255, 1);
}

/* Read More */
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-read-more {
  opacity: 1;
  transform: translateY(0);
}

.blog-read-more i,
.blog-read-more svg {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-read-more i,
.blog-card:hover .blog-read-more svg {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991.98px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-card-inner {
    height: 360px;
  }
}

@media (max-width: 575.98px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-inner {
    height: 320px;
  }

  .blog-card-content h3 {
    font-size: 1.1rem;
  }
}

/* ============================================
   CTA / CONTACT
   ============================================ */
.cta-section {
  padding: 80px 0;
  background: var(--white);
}

.cta-card {
  background: var(--black);
  border-radius: var(--radius-xl);
  padding: 56px;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(228, 47, 34, 0.12), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.cta-card h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-card>.row>.col-lg-5>p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  margin-bottom: 28px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: rgba(228, 47, 34, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon i,
.contact-info-icon svg {
  color: var(--primary);
  font-size: 0.9rem;
}

.contact-info-item .label {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
}

.contact-info-item a,
.contact-info-item span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  display: block;
}

.contact-info-item a:hover {
  color: var(--primary-light);
}

.contact-form .form-control {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 13px 16px;
  font-size: 0.92rem;
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contact-form .form-control:focus {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(228, 47, 34, 0.15);
  color: var(--white);
}

.contact-form textarea.form-control {
  height: 110px;
  resize: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  padding: 56px 0 0;
}

.footer-top {
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  display: inline-block;
}

.footer-brand span {
  color: var(--primary);
}

.footer-desc {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.87rem;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 320px;
}

.footer h6 {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}

.footer h6::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--primary);
}

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

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.87rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 3px;
}

.footer-links a i,
.footer-links a svg {
  font-size: 0.6rem;
  color: var(--primary);
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.87rem;
}

.footer-contact li i,
.footer-contact li svg {
  color: var(--primary);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: var(--t-smooth);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-middle {
  padding: 24px 0;
  text-align: center;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px 16px;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 4px 0;
}

.footer-legal-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.footer-legal-links a:hover::after {
  transform: scaleX(1);
}

.footer-legal-links .separator {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.7rem;
  margin: 0 4px;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.82rem;
  margin-bottom: 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary-custom {
  background: var(--primary);
  color: var(--white);
  border: none;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: var(--t-smooth);
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(228, 47, 34, 0.3);
}

.btn-outline-primary-custom {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: var(--t-smooth);
}

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

.btn-white {
  background: var(--white);
  color: var(--black);
  border: none;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: var(--t-smooth);
}

.btn-white:hover {
  background: var(--light-gray);
  color: var(--black);
}

/* ============================================
   WHATSAPP FAB
   ============================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
  z-index: 9999;
  transition: var(--t-smooth);
  animation: wp-pulse 2s infinite;
}

.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-3px);
  color: white;
}

@keyframes wp-pulse {

  0%,
  100% {
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
  }

  50% {
    box-shadow: 0 4px 28px rgba(37, 211, 102, 0.55);
  }
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 42px;
  height: 42px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: var(--t-smooth);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1199.98px) {
  .hero-section .carousel-item {
    height: 440px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .logo-text {
    font-size: 2.2rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section .carousel-item {
    height: 300px;
  }

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

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.88rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 4px 12px;
    margin-bottom: 10px;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }

  .cta-card {
    padding: 30px 20px;
  }

  .cta-card h2 {
    font-size: 1.5rem;
  }

  .gallery-item {
    height: 170px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 34px;
    height: 34px;
    margin: 0 6px;
  }

  .logo-text {
    font-size: 1.8rem;
  }

  .logo-sub {
    font-size: 0.65rem;
    letter-spacing: 5px;
  }

  .brands-section {
    padding: 80px 0 50px;
  }

  .quicklinks-section,
  .campaigns-section,
  .services-section,
  .gallery-section,
  .cta-section {
    padding: 50px 0;
  }

  .carousel-indicators {
    margin-bottom: 50px;
  }
}

@media (max-width: 575.98px) {
  .hero-section .carousel-item {
    height: 240px;
  }

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

  .hero-content h1 {
    font-size: 1.2rem;
  }

  .hero-content p {
    font-size: 0.8rem;
  }

  .hero-badge {
    display: none;
  }

  .carousel-indicators {
    margin-bottom: 44px;
  }
}

/* ============================================
   2. EL ARAÇLAR (LISTING PAGE)
   ============================================ */

/* Page Header */
.page-header {
  background: transparent;
  position: relative;
  overflow: hidden;
  margin-top: 76px;
  margin-bottom: 76px;
  /* Offset for fixed navbar */
  text-align: center;
}

.page-header h1 {
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 4rem;
  margin-bottom: 16px;
  letter-spacing: -2px;
  position: relative;
  z-index: 2;
}

.page-header .breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
  position: relative;
  z-index: 2;
  justify-content: center;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  color: var(--medium-gray);
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  transition: color 0.3s ease;
}

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

.page-header .breadcrumb-item.active {
  color: var(--charcoal);
  font-weight: 800;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
  color: var(--primary);
  content: "•";
  font-size: 1.2rem;
  line-height: 1;
  vertical-align: middle;
}

/* Ultra-Premium Filter Sidebar */
.filter-sidebar {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
}

.filter-header h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.filter-header .btn-outline-secondary {
  border: none;
  background: var(--light-gray);
  color: var(--text-dark);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  transition: all 0.3s ease;
}

.filter-header .btn-outline-secondary:hover {
  background: var(--dark-bg);
  color: var(--white);
}

.filter-label {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: block;
}

.filter-group .form-control,
.filter-group .form-select {
  border: none;
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.01);
}

.filter-group .form-control:focus,
.filter-group .form-select:focus {
  background: #fff;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05), inset 0 2px 4px rgba(0, 0, 0, 0.01);
}

.filter-group .form-check {
  margin-bottom: 10px;
}

.filter-group .form-check-input {
  cursor: pointer;
  border-color: #ddd;
  margin-top: 0.25rem;
}

.filter-group .form-check-input:checked {
  background-color: var(--dark-bg);
  border-color: var(--dark-bg);
}

.filter-group .form-check-label {
  font-size: 0.95rem;
  color: var(--text-dark);
  cursor: pointer;
  font-weight: 500;
}

/* Listing Header */
.listing-header {
  background: transparent;
  padding: 0 0 24px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.listing-header select {
  font-weight: 600;
  color: var(--text-dark);
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: var(--white);
  padding: 8px 16px 8px 16px;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

/* ============================================
   ULTRA-PREMIUM CAR CARD
/* ============================================
/* ============================================
   AVANT-GARDE CAR CARD (MODERN FLOAT)
   ============================================ */
.car-card-modern {
  background: transparent;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: var(--radius-lg);
  padding: 8px;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.car-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

/* Image Wrapper */
.ccm-image-wrap {
  position: relative;
  width: 100%;
  height: 190px;
  border-radius: calc(var(--radius-lg) - 4px);
  overflow: hidden;
  background: var(--light-gray);
  margin-bottom: 16px;
}

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

.car-card-modern:hover .ccm-img {
  transform: scale(1.04);
}

.ccm-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 60%, rgba(0, 0, 0, 0.05) 100%);
  pointer-events: none;
  opacity: 0.8;
  transition: opacity 0.5s ease;
}

.car-card-modern:hover .ccm-overlay {
  opacity: 0.3;
}

/* Top Bar (Badges & Actions) */
.ccm-top-bar {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
}

.ccm-badge-primary {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(228, 47, 34, 0.3);
}

.ccm-fav-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.ccm-fav-btn:hover {
  background: var(--white);
  color: var(--primary);
  transform: scale(1.1);
}

/* Content Area */
.ccm-content {
  padding: 0 4px 8px 4px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ccm-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 12px;
}

/* Title constraints for 3-column layout */
.ccm-header-row>div:first-child {
  flex: 1;
  min-width: 0;
}

.ccm-brand {
  display: block;
  font-family: var(--font-primary);
  font-size: 0.65rem;
  color: var(--medium-gray);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 600;
}

.ccm-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ccm-title a {
  color: var(--charcoal);
  text-decoration: none;
  background-image: linear-gradient(var(--primary), var(--primary));
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size 0.4s ease;
  padding-bottom: 2px;
}

.car-card-modern:hover .ccm-title a {
  background-size: 100% 2px;
}

/* Price Box Constraints */
.ccm-price-box {
  flex-shrink: 0;
  text-align: right;
  background: var(--off-white);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.ccm-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
  white-space: nowrap;
}

/* Stats Row */
.ccm-specs-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  margin-top: auto;
}

.ccm-spec-item {
  text-align: center;
  flex: 1;
  padding: 0 4px;
}

.ccm-spec-val {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 2px;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.ccm-spec-lbl {
  font-family: var(--font-primary);
  font-size: 0.6rem;
  color: var(--medium-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.ccm-spec-divider {
  width: 1px;
  height: 20px;
  background: rgba(0, 0, 0, 0.06);
}

/* Pagination Customization */
.pagination {
  gap: 8px;
}

.pagination .page-link {
  color: var(--text-dark);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: var(--white);
  border-radius: 50% !important;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.pagination .page-item.active .page-link,
.pagination .page-link:hover:not(.disabled) {
  background: var(--dark-bg);
  color: var(--white);
  border-color: var(--dark-bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.pagination .page-item.disabled .page-link {
  opacity: 0.4;
  background: var(--light-gray);
  box-shadow: none;
}

/* ============================================
   CAR DETAIL PAGE (BOLD DESIGN)
   ============================================ */

.detail-gallery-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-item-full {
  display: block;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-item-full img {
  height: 480px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  opacity: 0;
  transition: all 0.4s ease;
  gap: 10px;
  z-index: 2;
}

.gallery-item-full:hover img {
  transform: scale(1.02);
}

.gallery-item-full:hover .gallery-overlay {
  opacity: 1;
}

.detail-nav-next,
.detail-nav-prev {
  color: var(--white);
  background: rgba(0, 0, 0, 0.45);
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 50%;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-nav-next:after,
.detail-nav-prev:after {
  display: none;
}

.detail-nav-next i,
.detail-nav-prev i,
.detail-nav-next svg,
.detail-nav-prev svg {
  font-size: 1rem;
  line-height: 1;
}

.detail-nav-next:hover,
.detail-nav-prev:hover {
  background: var(--primary);
  transform: scale(1.1);
}

.detailThumbSwiper {
  width: 100%;
  height: 100px;
  padding: 10px 0;
  box-sizing: border-box;
}

.thumb-slide {
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  height: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

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

.thumb-slide.swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid var(--primary);
}

/* Sidebar Info Blocks */
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.detail-brand-badge {
  color: var(--medium-gray);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.detail-bold-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 0;
}

.detail-price-huge {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -2px;
  line-height: 1;
}

.detail-price-huge span {
  font-size: 1.8rem;
  font-weight: 700;
}

.info-card-header {
  background: var(--dark-bg);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 16px 20px;
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.bold-spec-list .list-group-item {
  padding: 14px 20px;
  font-size: 0.95rem;
  border-color: rgba(0, 0, 0, 0.04);
}

.consultant-avatar {
  width: 48px;
  height: 48px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--medium-gray);
}

/* Custom Bold Tabs */
.custom-bold-tabs {
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
  padding-bottom: 0;
}

.custom-bold-tabs .nav-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--medium-gray);
  padding: 12px 24px;
  border-radius: 0;
  background: transparent;
  position: relative;
  border: none;
  transition: all 0.3s ease;
}

.custom-bold-tabs .nav-link:hover {
  color: var(--charcoal);
}

.custom-bold-tabs .nav-link.active {
  color: var(--primary);
  background: transparent;
}

.custom-bold-tabs .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

.tab-body-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.02);
  min-height: 300px;
}

.expert-skeleton {
  padding: 40px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 2px dashed rgba(0, 0, 0, 0.1);
}

/* ============================================
   SVG CAR APPRAISAL DIAGRAM
   ============================================ */

.expert-map-svg-wrap {
  width: 100%;
  max-width: 320px;
}

.expert-car-svg {
  width: 100%;
  height: auto;
}

/* Part fill colors by damage type */
.svg-part {
  stroke: #cbd5e1;
  stroke-width: 1.5;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.svg-part:hover {
  opacity: 0.75;
  stroke-width: 2.5;
  stroke: #1e293b;
}

.svg-orijinal {
  fill: #e2e8f0;
}

.svg-boya {
  fill: #3b82f6;
}

.svg-lokal {
  fill: #f97316;
}

.svg-degisen {
  fill: #ef4444;
}

.svg-cizik {
  fill: #facc15;
}

.svg-ezik {
  fill: #facc15;
}

.svg-vuruk {
  fill: #dc2626;
}

.svg-plastik {
  fill: #d4d4d8;
}

/* Glass (windshields, lights) */
.svg-glass {
  fill: #bfdbfe;
  stroke: #93c5fd;
  stroke-width: 1;
  opacity: 0.7;
}

/* Tires */
.svg-tire {
  fill: #334155;
  stroke: #1e293b;
  stroke-width: 1;
}

/* Text labels on parts */
.svg-text {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  fill: #ffffff;
  text-anchor: middle;
  dominant-baseline: central;
  pointer-events: none;
}

/* Legend Items */
.expert-legend-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
}

.legend-color {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.color-orijinal {
  background: #e2e8f0;
}

.color-boya {
  background: #3b82f6;
}

.color-lokal {
  background: #f97316;
}

.color-degisen {
  background: #ef4444;
}

.color-cizik {
  background: #facc15;
}

.color-plastik {
  background: #d4d4d8;
}

.fs-sm {
  font-size: 0.85rem;
}

.letter-spacing-1 {
  letter-spacing: 1px;
}

/* ============================================
   LEAD GENERATION PAGES
   ============================================ */

/* --- Hero --- */
.lead-hero {
  position: relative;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
}

.lead-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
  pointer-events: none;
}

.lead-hero h1,
.lead-hero h2,
.lead-hero h3,
.lead-hero p {
  color: white !important;
}

.lead-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lead-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
}

.lead-hero-title span {
  color: var(--primary);
}

.lead-hero-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 520px;
}

/* --- Stat Cards (Trust Badges) --- */
.lead-stat-card {
  background: white;
  padding: 36px 24px;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.02);
  z-index: 1;
}

.lead-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(228, 47, 34, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
}

.lead-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(228, 47, 34, 0.1);
  border-color: rgba(228, 47, 34, 0.2);
}

.lead-stat-card:hover::before {
  opacity: 1;
}

.lead-stat-card i,
.lead-stat-card svg {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), #b31b14);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 6px rgba(228, 47, 34, 0.3));
}

.lead-stat-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--charcoal);
  letter-spacing: -0.5px;
}

.lead-stat-card p {
  color: var(--dark-gray);
  margin-bottom: 0;
  font-size: 0.95rem;
  font-weight: 500;
}

/* --- Feature Cards (Services Grid) --- */
.lead-feature-card {
  background: white;
  padding: 40px 32px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.lead-feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lead-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.lead-feature-card:hover::after {
  transform: scaleX(1);
}

.lead-feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(228, 47, 34, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s;
}

.lead-feature-card:hover .lead-feature-icon {
  background: var(--primary);
  transform: rotate(-5deg) scale(1.05);
}

.lead-feature-icon i,
.lead-feature-icon svg {
  font-size: 1.6rem;
  color: var(--primary);
  transition: color 0.4s;
}

.lead-feature-card:hover .lead-feature-icon i,
.lead-feature-card:hover .lead-feature-icon svg {
  color: white;
}

.lead-feature-card h5 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--charcoal);
  letter-spacing: -0.3px;
}

.lead-feature-card p {
  color: var(--dark-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* --- Premium Logo Cards --- */
.sv-logo-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px 20px 30px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Subtle accent line on hover */
.sv-logo-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: var(--primary);
  transition: width 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sv-logo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(228, 47, 34, 0.08);
  /* Subtle red shadow */
  border-color: rgba(228, 47, 34, 0.1);
}

.sv-logo-card:hover::after {
  width: 100%;
}

.sv-logo-wrapper {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  width: 100%;
}

.sv-logo-wrapper img {
  max-width: 140px;
  max-height: 80px;
  object-fit: contain;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  filter: grayscale(100%) opacity(0.6);
  /* Grayscale and faded by default */
}

.sv-logo-card:hover .sv-logo-wrapper img {
  transform: scale(1.15);
  filter: grayscale(0%) opacity(1);
  /* Reveal full red color on hover */
}

.sv-logo-content {
  text-align: center;
  width: 100%;
}

.sv-logo-content h5 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 6px;
  color: var(--charcoal);
  letter-spacing: -0.2px;
  transition: color 0.3s;
}

.sv-logo-card:hover .sv-logo-content h5 {
  color: var(--primary);
}

.sv-logo-content span {
  display: inline-block;
  color: var(--medium-gray);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.3s;
}

.sv-logo-card:hover .sv-logo-content span {
  color: var(--charcoal);
}

/* --- Premium Split-Pane Form --- */
.sv-premium-form-wrapper {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.sv-form-info-pane {
  background: var(--charcoal);
  color: white;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
}

.sv-form-info-pane h4 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: white;
}

.sv-form-info-pane p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.sv-form-info-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 2;
}

.sv-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.sv-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(228, 47, 34, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sv-info-icon i,
.sv-info-icon svg {
  color: var(--primary);
  font-size: 1.2rem;
}

.sv-info-item strong {
  display: block;
  font-size: 1.05rem;
  color: white;
  margin-bottom: 4px;
}

.sv-info-item span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.sv-form-decorative {
  position: absolute;
  bottom: -40px;
  right: -20px;
  z-index: 1;
  opacity: 0.03;
}

.sv-form-decorative i,
.sv-form-decorative svg {
  font-size: 16rem;
  color: white;
}

.sv-form-input-pane {
  padding: 50px;
  background: white;
}

.form-section-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--light-gray);
}

.sv-input-group {
  position: relative;
}

.sv-input {
  width: 100%;
  padding: 16px 20px;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-md);
  outline: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sv-input:focus {
  background: white;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(228, 47, 34, 0.1);
}

.sv-label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dark-gray);
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
  background: transparent;
  padding: 0 4px;
}

textarea.sv-input+.sv-label {
  top: 24px;
}

input.sv-input:focus+.sv-label,
input.sv-input:not(:placeholder-shown)+.sv-label,
textarea.sv-input:focus+.sv-label,
textarea.sv-input:not(:placeholder-shown)+.sv-label {
  top: 0;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  background: white;
}

select.sv-input:focus+.sv-label,
select.sv-input:valid+.sv-label {
  top: 0;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  background: white;
}

.sv-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 30px;
  font-size: 1.1rem;
  transition: all 0.3s var(--ease);
}

.sv-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(228, 47, 34, 0.2);
}

.sv-submit-btn i,
.sv-submit-btn svg {
  transition: transform 0.3s var(--ease);
}

.sv-submit-btn:hover i,
.sv-submit-btn:hover svg {
  transform: translateX(6px);
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
  .sv-form-input-pane {
    padding: 30px 24px;
  }
}

@media (max-width: 575.98px) {
  .lead-hero {
    min-height: 320px;
    padding: 60px 0 40px;
    text-align: center;
  }

  .lead-hero-desc {
    max-width: 100%;
  }

  .lead-stat-card h3 {
    font-size: 1.4rem;
  }
}

/* ============================================
   SERVICE PAGE - WOW SECTIONS (KAPORTA, BAKIM, KAMPANYA)
   ============================================ */

/* --- Showcase Sections (Boya/Kaporta & Bakım) --- */
.sv-showcase {
  padding: 80px 0;
  background: white;
}

.sv-showcase-alt {
  background: var(--off-white);
}

.sv-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(228, 47, 34, 0.08);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.sv-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 20px;
}

.sv-title span {
  color: var(--primary);
}

.sv-desc {
  font-size: 1.05rem;
  color: var(--dark-gray);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Showcase Media Area (Video/Image Overlay) */
.sv-showcase-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.sv-showcase-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.sv-showcase-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.sv-showcase-play i,
.sv-showcase-play svg {
  font-size: 2rem;
  color: var(--primary);
  margin-left: 4px;
  /* Optical center */
}

.sv-showcase-media:hover .sv-showcase-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--primary);
}

.sv-showcase-media:hover .sv-showcase-play i,
.sv-showcase-media:hover .sv-showcase-play svg {
  color: white;
}

/* Checklist Details */
.sv-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.sv-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.sv-check-item i,
.sv-check-item svg {
  color: var(--primary);
  font-size: 1.4rem;
  margin-top: 2px;
}

.sv-check-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.sv-check-item span {
  display: block;
  font-size: 0.85rem;
  color: var(--dark-gray);
}

/* --- Process Section 4-Steps (Redesigned) --- */
.sv-process-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--off-white) 0%, white 100%);
  position: relative;
  overflow: hidden;
}

.sv-process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
}

.sv-process-step {
  background: white;
  padding: 40px 30px;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  text-align: center;
  position: relative;
  z-index: 1;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sv-process-step:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(228, 47, 34, 0.15);
}

/* Connecting Arrow */
@media (min-width: 768px) {
  .sv-process-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -18px;
    /* Perfectly centers the 12px box in the 24px gap */
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
    transform: translateY(-50%) rotate(45deg);
    opacity: 0.4;
    transition: all 0.3s ease;
    z-index: 0;
  }

  .sv-process-step:hover::after {
    opacity: 0.8;
  }

  .col-md-3:last-child .sv-process-step::after {
    display: none;
  }
}

.sv-process-num {
  width: 80px;
  height: 80px;
  background: white;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  border-radius: 50%;
  margin: 0 auto 24px;
  box-shadow: 0 10px 20px rgba(228, 47, 34, 0.1);
  border: 2px solid rgba(228, 47, 34, 0.1);
  transition: all 0.4s var(--ease);
  position: relative;
}

.sv-process-step:hover .sv-process-num {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(228, 47, 34, 0.3);
  border-color: var(--primary);
}

.sv-process-step h5 {
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.sv-process-step p {
  color: var(--dark-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* --- Campaign Cards --- */
.sv-campaign-card {
  background: white;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.sv-campaign-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(228, 47, 34, 0.3);
}

.sv-campaign-featured {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(228, 47, 34, 0.1);
}

.sv-campaign-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.sv-campaign-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(228, 47, 34, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.3s var(--ease);
}

.sv-campaign-card:hover .sv-campaign-icon {
  background: var(--primary);
}

.sv-campaign-icon i,
.sv-campaign-icon svg {
  font-size: 1.8rem;
  color: var(--primary);
  transition: color 0.3s;
}

.sv-campaign-card:hover .sv-campaign-icon i,
.sv-campaign-card:hover .sv-campaign-icon svg {
  color: white;
}

.sv-campaign-card h5 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.sv-campaign-card p {
  color: var(--dark-gray);
  font-size: 0.9rem;
  line-height: 1.6;
  flex-grow: 1;
}

.sv-campaign-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 24px 0;
  padding: 20px 0;
  border-top: 1px dashed var(--light-gray);
  border-bottom: 1px dashed var(--light-gray);
}

.sv-campaign-price del {
  color: var(--medium-gray);
  font-size: 1rem;
}

.sv-campaign-price strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--primary);
  line-height: 1;
}

/* --- SEO Content & Highlights --- */
.sv-highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sv-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--light-gray);
  transition: all 0.3s var(--ease);
}

.sv-highlight:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.sv-highlight i,
.sv-highlight svg {
  color: var(--primary);
  font-size: 1.2rem;
}

.sv-highlight span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
}

.sv-seo-content article h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--charcoal);
  margin: 0 0 12px;
}

.sv-seo-content article p {
  color: var(--dark-gray);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* --- FAQ Accordion --- */
.sv-accordion .accordion-item {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  overflow: hidden;
}

.sv-accordion .accordion-button {
  font-weight: 600;
  color: var(--charcoal);
  padding: 20px 24px;
  box-shadow: none !important;
  background: white;
}

.sv-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: rgba(228, 47, 34, 0.03);
}

.sv-accordion .accordion-button::after {
  filter: grayscale(1);
  transition: all 0.3s;
}

.sv-accordion .accordion-button:not(.collapsed)::after {
  filter: none;
}

.sv-accordion .accordion-body {
  color: var(--dark-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 0 24px 24px;
  background: rgba(228, 47, 34, 0.03);
}

/* Responsive adjustments for Wow sections */
@media (max-width: 991.98px) {
  .sv-title {
    font-size: 2rem;
  }

  .sv-checklist {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .sv-showcase {
    padding: 50px 0;
  }

  .sv-process-section {
    padding: 50px 0 30px;
  }

  .sv-highlight-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CORPORATE / LEGAL CONTENT STYLES
   ============================================ */
.corporate-section {
  padding: 80px 0;
  background: var(--white);
}

.corporate-content {
  max-width: 900px;
  margin: 0 auto;
  color: var(--charcoal);
  line-height: 1.8;
}

.corporate-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: var(--black);
  position: relative;
  padding-bottom: 15px;
}

.corporate-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary);
}

.corporate-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.corporate-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  opacity: 0.9;
}

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

.corporate-content li {
  margin-bottom: 0.8rem;
  position: relative;
}

.corporate-content ul li::marker {
  color: var(--primary);
  font-size: 1.2rem;
}

.corporate-content .document-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0;
  margin-bottom: 4rem;
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: none;
  background: none;
}

.corporate-content .meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.corporate-content .meta-item i,
.corporate-content .meta-item svg {
  color: var(--primary);
  opacity: 0.8;
  font-size: 0.85rem;
}

.corporate-content .meta-sep {
  width: 1px;
  height: 12px;
  background: #e2e8f0;
}

.corporate-content blockquote {
  padding: 10px 0 10px 40px;
  background: transparent;
  border-left: 2px solid var(--primary);
  border-radius: 0;
  margin: 5rem 0;
  position: relative;
}

.corporate-content blockquote p {
  margin-bottom: 0;
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--black);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.01em;
}

.corporate-content blockquote::before {
  display: none;
}



@media (max-width: 768px) {
  .corporate-section {
    padding: 50px 0;
  }

  .corporate-content h2 {
    font-size: 1.7rem;
  }

  /* İkinci El Detay - Mobil Başlık Boyutları */
  .page-header h1 {
    font-size: 1.5rem;
  }

  .detail-bold-title {
    font-size: 1.4rem;
  }

  .detail-price-huge {
    font-size: 2rem;
  }

  .detail-price-huge span {
    font-size: 1.2rem;
  }

  /* Mobilde sticky kapat */
  .sticky-lg-top {
    position: static !important;
  }
}

/* ============================================
   INTERNATIONAL TELEPHONE INPUT CUSTOM STYLES
   ============================================ */
.iti {
  width: 100% !important;
  display: block !important;
}

.iti__flag-container {
  z-index: 5;
}

.sv-input-group:has(.iti) .sv-label,
.brand-input-group:has(.iti) .brand-label,
.premium-input-group:has(.iti) .premium-label {
  top: 0 !important;
  font-size: 0.8rem !important;
  color: var(--primary) !important;
  font-weight: 600 !important;
  background: white !important;
  z-index: 10;
}