/* ============================================================
   GÖKTÜRK ALP SİGORTA — Design System
   Clean Corporate | Light Theme | Bold Accents
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Palette */
  --clr-primary: #1a1a1a;
  --clr-primary-light: #2d2d2d;
  --clr-accent: #c72121;
  --clr-accent-hover: #a91b1b;
  --clr-accent-glow: rgba(199, 33, 33, 0.25);
  --clr-accent-soft: rgba(199, 33, 33, 0.08);
  --clr-gold: #ffffff;
  --clr-gold-hover: #e0e0e0;
  --clr-success: #10b981;
  --clr-surface: #ffffff;
  --clr-surface-alt: #f5f3f0;
  --clr-surface-glass: rgba(255, 255, 255, 0.85);
  --clr-border: #e0dbd6;
  --clr-border-light: #ebe6e1;
  --clr-text: #1a1a1a;
  --clr-text-secondary: #5c5c5c;
  --clr-text-light: #8c8c8c;
  --clr-text-on-dark: #e8e4e0;
  --clr-dark-bg: #141414;
  --clr-dark-card: #1e1e1e;

  /* Typography */
  --ff-heading: 'Outfit', sans-serif;
  --ff-body: 'DM Sans', sans-serif;

  /* Font Sizes */
  --fs-display: clamp(2.4rem, 4.5vw, 3.8rem);
  --fs-h1: clamp(2rem, 3.5vw, 3rem);
  --fs-h2: clamp(1.6rem, 2.5vw, 2.2rem);
  --fs-h3: clamp(1.2rem, 1.6vw, 1.5rem);
  --fs-h4: 1.15rem;
  --fs-body: 1rem;
  --fs-body-lg: 1.05rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 3.5rem;
  --space-2xl: 5rem;
  --space-3xl: 7rem;

  /* Layout */
  --container: 1200px;
  --container-narrow: 820px;
  --nav-height: 72px;

  /* Borders & Shadows */
  --radius-sm: 0;
  --radius-md: 0;
  --radius-lg: 0;
  --radius-xl: 0;
  --radius-full: 0;

  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 40px var(--clr-accent-glow);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.3s;
  --duration-slow: 0.5s;

  /* Glass (used sparingly) */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-bg-strong: rgba(255, 255, 255, 0.92);
  --glass-border: rgba(0, 0, 0, 0.08);
  --glass-blur: 20px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  color: var(--clr-text);
  background: var(--clr-surface);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration-fast) var(--ease-out);
}

ul,
ol {
  list-style: none;
}

img,
video {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.section-padding {
  padding: var(--space-3xl) 0;
}

.section-padding--sm {
  padding: var(--space-xl) 0;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-label {
  display: inline-block;
  font-family: var(--ff-heading);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--clr-accent);
  margin-bottom: var(--space-sm);
  padding: 0.35rem 1rem;
  background: var(--clr-accent-soft);
  border-left: 3px solid var(--clr-accent);
}

.section-label::before {
  display: none;
}

.section-title {
  font-size: var(--fs-h2);
  color: var(--clr-text);
  margin-bottom: var(--space-sm);
}

.section-title--light {
  color: var(--clr-surface);
}

.section-subtitle {
  font-size: var(--fs-body-lg);
  color: var(--clr-text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  font-family: var(--ff-heading);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--clr-accent);
  color: #fff;
  border: 2px solid var(--clr-accent);
}

.btn--primary:hover {
  background: transparent;
  color: var(--clr-accent);
  transform: translateY(-1px);
}

.btn--secondary {
  background: transparent;
  color: var(--clr-text);
  border: 2px solid var(--clr-border);
}

.btn--secondary:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  transform: translateY(-1px);
}

.btn--gold {
  background: var(--clr-gold);
  color: #fff;
  border: 2px solid var(--clr-gold);
}

.btn--gold:hover {
  background: transparent;
  color: var(--clr-gold);
  transform: translateY(-1px);
}

.btn--outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

/* ============================================================
   NAVBAR — Transparent on top, white on scroll
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--duration-normal) var(--ease-out);
}

.navbar.scrolled {
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar__logo-icon {
  width: 40px;
  height: 40px;
  background: var(--clr-accent);
  color: #fff;
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.02em;
}

.navbar__logo-text {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
}

.navbar.scrolled .navbar__logo-text {
  color: #fff;
}

.navbar__logo-text span {
  font-weight: 400;
  opacity: 0.7;
}

.navbar__logo-img {
  height: 44px;
  width: auto;
}

.navbar__brand-text {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.2;
}

.navbar__brand-text span {
  font-weight: 400;
  opacity: 0.7;
}

.navbar.scrolled .navbar__brand-text {
  color: #fff;
}

.navbar.scrolled .navbar__brand-text span {
  opacity: 0.6;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__link {
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--duration-fast);
}

.navbar.scrolled .navbar__link {
  color: rgba(255, 255, 255, 0.9);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-accent);
  transition: width var(--duration-normal) var(--ease-out);
}

.navbar__link:hover,
.navbar__link.active {
  color: #fff;
}

.navbar.scrolled .navbar__link:hover,
.navbar.scrolled .navbar__link.active {
  color: var(--clr-accent);
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

.navbar__cta {
  margin-left: 1rem;
}

/* Mobile Toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 0;
  transition: all var(--duration-fast) var(--ease-out);
}

.navbar.scrolled .navbar__toggle span {
  background: #fff;
}

/* ============================================================
   HERO — Light themed, centered, editorial style
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-2xl);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(20, 20, 20, 0.85) 0%,
      rgba(20, 20, 20, 0.6) 50%,
      rgba(199, 33, 33, 0.3) 100%);
  z-index: 1;
}

.hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 2;
}

.hero__orb {
  display: none;
}

.hero__two-col {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-xl);
}

.hero__content {
  position: relative;
  z-index: 5;
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--clr-accent);
  padding: 0.4rem 1.2rem;
  font-family: var(--ff-heading);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-md);
}

.hero__title {
  font-size: var(--fs-display);
  color: #fff;
  font-weight: 800;
  margin-bottom: var(--space-md);
  line-height: 1.08;
}

.hero__title span {
  color: var(--clr-accent);
  -webkit-text-fill-color: var(--clr-accent);
}

.hero__desc {
  font-size: var(--fs-body-lg);
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto var(--space-lg);
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

/* Hero Stats */
.hero__stats {
  position: relative;
  z-index: 5;
  display: flex;
  gap: 0;
  margin-top: var(--space-2xl);
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat {
  padding: var(--space-md) var(--space-lg);
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat:last-child {
  border-right: none;
}

.hero__stat-num {
  font-family: var(--ff-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--clr-accent);
}

.hero__stat-label {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}

/* Hero Quick Quote Form */
.hero-form {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--clr-accent);
  padding: var(--space-lg) var(--space-xl);
  max-width: 520px;
  width: 100%;
  text-align: left;
}

.hero-form__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h4);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.hero-form__desc {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: var(--space-md);
}

.hero-form .form-input,
.hero-form .form-select {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.hero-form .form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.hero-form .form-input:focus,
.hero-form .form-select:focus {
  border-color: var(--clr-accent);
  background: rgba(255, 255, 255, 0.12);
}

.hero-form .form-select option {
  background: var(--clr-dark-bg);
  color: #fff;
}

.hero-form__note {
  font-size: 0.7rem;
  color: var(--clr-text-light);
  margin-top: var(--space-sm);
  text-align: center;
}

/* ============================================================
   TOP BAR — Contact info strip
   ============================================================ */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--clr-dark-bg);
  padding: 0.5rem 0;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar__left {
  display: flex;
  gap: 1.5rem;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--duration-fast);
}

.topbar__item:hover {
  color: var(--clr-accent);
}

.topbar__right {
  display: flex;
  gap: 0.75rem;
}

.topbar__social {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--duration-fast);
}

.topbar__social:hover {
  color: var(--clr-accent);
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
}

/* ============================================================
   STATS STRIP — Accent band below hero
   ============================================================ */
.stats-strip {
  background: var(--clr-accent);
  padding: 0;
}

.stats-strip .hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  background: none;
  border: none;
}

.stats-strip .hero__stat {
  padding: var(--space-md) var(--space-lg);
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-strip .hero__stat:last-child {
  border-right: none;
}

.stats-strip .hero__stat-num {
  font-size: 1.8rem;
  color: #fff;
}

.stats-strip .hero__stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .stats-strip .hero__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-strip .hero__stat {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}

@media (max-width: 480px) {
  .stats-strip .hero__stats {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   QUICK QUOTE — Split layout: info + form
   ============================================================ */
.quick-quote {
  background: var(--clr-surface-alt);
}

.quick-quote__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.quick-quote__info .section-subtitle {
  margin-bottom: var(--space-md);
}

.quick-quote__features {
  list-style: none;
  padding: 0;
  margin-top: var(--space-md);
}

.quick-quote__features li {
  font-size: var(--fs-small);
  color: var(--clr-text-secondary);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--clr-border-light);
}

.quick-quote .hero-form {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-left: 4px solid var(--clr-accent);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  max-width: 100%;
}

.quick-quote .hero-form__title {
  color: var(--clr-text);
}

.quick-quote .hero-form__desc {
  color: var(--clr-text-secondary);
}

.quick-quote .hero-form .form-input,
.quick-quote .hero-form .form-select {
  background: var(--clr-surface);
  border-color: var(--clr-border-light);
  color: var(--clr-text);
}

.quick-quote .hero-form .form-input::placeholder {
  color: var(--clr-text-light);
}

.quick-quote .hero-form__note {
  color: var(--clr-text-light);
}

@media (max-width: 768px) {
  .quick-quote__wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

/* ============================================================
   ABOUT PREVIEW — Image + content grid
   ============================================================ */
.about-preview {
  background: var(--clr-surface);
}

.about-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-preview__image {
  position: relative;
}

.about-preview__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.about-preview__accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--clr-accent);
  z-index: -1;
}

.about-preview__text {
  font-size: var(--fs-body);
  color: var(--clr-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.about-preview__points {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.about-preview__point {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.about-preview__point-icon {
  width: 40px;
  min-width: 40px;
  height: 40px;
  background: var(--clr-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-preview__point strong {
  display: block;
  font-family: var(--ff-heading);
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.15rem;
}

.about-preview__point p {
  font-size: var(--fs-small);
  color: var(--clr-text-secondary);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .about-preview__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-preview__accent {
    display: none;
  }

  .about-preview__image img {
    height: 280px;
  }
}

/* ============================================================
   PRODUCTS — Clean cards on light bg
   ============================================================ */
.products {
  background: var(--clr-surface);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.product-card {
  position: relative;
  background: var(--clr-surface);
  padding: var(--space-lg);
  border: 1px solid var(--clr-border-light);
  transition: all var(--duration-normal) var(--ease-out);
  overflow: hidden;
}

.product-card::before {
  display: none;
}

.product-card:hover {
  border-color: var(--clr-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.product-card__icon {
  width: 48px;
  height: 48px;
  background: var(--clr-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--space-md);
  transition: all var(--duration-normal) var(--ease-out);
}

.product-card:hover .product-card__icon {
  background: var(--clr-accent);
  transform: none;
}

.product-card:hover .product-card__icon svg {
  color: #fff;
  stroke: #fff;
}

.product-card__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: var(--space-xs);
}

.product-card__desc {
  font-size: var(--fs-small);
  color: var(--clr-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.product-card__link {
  font-family: var(--ff-heading);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--clr-accent);
  letter-spacing: 0.03em;
}

.product-card__link:hover {
  color: var(--clr-accent-hover);
}

/* ============================================================
   WHY US — minimal horizontal cards on dark bg
   ============================================================ */
.why-us {
  background: var(--clr-dark-bg);
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.why-card {
  background: var(--clr-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-lg);
  transition: all var(--duration-normal) var(--ease-out);
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.why-card:hover {
  border-color: var(--clr-accent);
  background: rgba(199, 33, 33, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(199, 33, 33, 0.1);
}

.why-card__icon {
  width: 48px;
  min-width: 48px;
  height: 48px;
  background: rgba(199, 33, 33, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.why-card__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--clr-surface);
  margin-bottom: 0.3rem;
}

.why-card__desc {
  font-size: var(--fs-small);
  color: var(--clr-text-light);
  line-height: 1.7;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--clr-accent);
  position: relative;
  overflow: hidden;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.cta-banner__text h2 {
  font-size: var(--fs-h2);
  color: #fff;
  margin-bottom: var(--space-xs);
}

.cta-banner__text p {
  font-size: var(--fs-body-lg);
  color: rgba(255, 255, 255, 0.85);
}

.cta-banner .btn--secondary {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.cta-banner .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

/* ============================================================
   FOOTER — Dark, clean, 3-column
   ============================================================ */
.footer {
  background: var(--clr-dark-bg);
  border-top: 3px solid var(--clr-accent);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-xl);
}

.footer__brand-desc {
  font-size: var(--fs-small);
  color: var(--clr-text-light);
  line-height: 1.8;
  margin-top: var(--space-sm);
  max-width: 320px;
}

.footer__heading {
  font-family: var(--ff-heading);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--clr-surface);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-md);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--clr-accent);
  display: inline-block;
}

.footer__link {
  display: block;
  font-size: var(--fs-small);
  color: var(--clr-text-light);
  padding: 0.3rem 0;
  transition: color var(--duration-fast), padding-left var(--duration-fast) var(--ease-out);
}

.footer__link:hover {
  color: var(--clr-accent);
  padding-left: 0.5rem;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--fs-small);
  color: var(--clr-text-light);
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.footer__contact-icon {
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  color: var(--clr-accent);
  margin-top: 2px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--space-md) 0;
  margin-top: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copy {
  font-size: var(--fs-xs);
  color: var(--clr-text-light);
}

.footer__designer {
  white-space: nowrap;
}

.footer__designer a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration-fast) var(--ease-out);
}

.footer__designer a:hover {
  color: var(--clr-accent);
  text-decoration: underline;
}

.footer__socials {
  display: flex;
  gap: 0.75rem;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-small);
  color: var(--clr-text-light);
  transition: all var(--duration-fast) var(--ease-out);
}

.footer__social-link:hover {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   PAGE HEADER (Inner Pages)
   ============================================================ */
.page-header {
  padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-2xl);
  background: var(--clr-dark-bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(199, 33, 33, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199, 33, 33, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

.page-header__title {
  font-size: var(--fs-h1);
  color: var(--clr-surface);
  position: relative;
  z-index: 2;
}

.page-header__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-small);
  color: var(--clr-text-light);
  margin-top: var(--space-sm);
  position: relative;
  z-index: 2;
}

.page-header__breadcrumb a {
  color: var(--clr-accent);
}

.page-header__breadcrumb a:hover {
  text-decoration: underline;
}

/* ---------- Cards Shared ---------- */
.glass-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  padding: var(--space-lg);
}

/* ---------- Forms ---------- */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-family: var(--ff-heading);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 0.4rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--clr-border-light);
  border-radius: 0;
  background: var(--clr-surface);
  color: var(--clr-text);
  font-size: var(--fs-body);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(199, 33, 33, 0.08);
}

.form-input::placeholder {
  color: var(--clr-text-light);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

/* ---------- Urun List ---------- */
.urun-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.urun-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  transition: all var(--duration-normal) var(--ease-out);
}

.urun-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-accent);
}

.urun-item__icon {
  width: 80px;
  height: 80px;
  background: rgba(199, 33, 33, 0.05);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.urun-item__icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--clr-accent);
}

.urun-item__content {
  display: flex;
  flex-direction: column;
}

.urun-item__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: var(--space-sm);
}

.urun-item__desc {
  font-size: var(--fs-body);
  color: var(--clr-text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.urun-item__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md) 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.urun-item__features li {
  position: relative;
  padding-left: 1.5rem;
  font-size: var(--fs-small);
  color: var(--clr-text);
  font-weight: 500;
}

.urun-item__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clr-accent);
  font-weight: 800;
}

.urun-item__cta-card {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--clr-surface-alt);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  border: 1px solid var(--clr-border-light);
}

.urun-item__cta-card p {
  margin: 0;
  font-weight: 600;
  font-size: var(--fs-small);
}

@media (max-width: 768px) {
  .urun-item {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .urun-item__icon {
    width: 60px;
    height: 60px;
  }

  .urun-item__features {
    grid-template-columns: 1fr;
  }

  .urun-item__cta-card {
    flex-direction: column;
    text-align: center;
  }
}

/* Button Dark */
.btn--dark {
  background: var(--clr-text);
  color: var(--clr-text-on-dark);
}

.btn--dark:hover {
  background: var(--clr-accent);
  color: #fff;
}

/* About Intro */
.about-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

/* ---------- Blog Cards ---------- */
.blog-card {
  overflow: hidden;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  transition: all var(--duration-normal) var(--ease-out);
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-accent);
}

.blog-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card__body {
  padding: var(--space-md);
}

.blog-card__tag {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--clr-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.blog-card__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--clr-text);
  margin: var(--space-xs) 0;
  line-height: 1.3;
}

.blog-card__excerpt {
  font-size: var(--fs-small);
  color: var(--clr-text-secondary);
  line-height: 1.7;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: var(--space-sm);
  font-size: var(--fs-xs);
  color: var(--clr-text-light);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-out), transform var(--duration-slow) var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger>* {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--duration-normal) var(--ease-out), transform var(--duration-normal) var(--ease-out);
}

.reveal-stagger.visible>*:nth-child(1) {
  transition-delay: 0.05s;
}

.reveal-stagger.visible>*:nth-child(2) {
  transition-delay: 0.1s;
}

.reveal-stagger.visible>*:nth-child(3) {
  transition-delay: 0.15s;
}

.reveal-stagger.visible>*:nth-child(4) {
  transition-delay: 0.2s;
}

.reveal-stagger.visible>*:nth-child(5) {
  transition-delay: 0.25s;
}

.reveal-stagger.visible>*:nth-child(6) {
  transition-delay: 0.3s;
}

.reveal-stagger.visible>* {
  opacity: 1;
  transform: translateY(0);
}

.smooth-fade-enter {
  animation: smoothFadeIn 0.5s var(--ease-out) forwards;
}

@keyframes smoothFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.smooth-fade-exit {
  animation: smoothFadeOut 0.3s var(--ease-out) forwards;
}

@keyframes smoothFadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 68px;
    --space-3xl: 4rem;
    --space-2xl: 3rem;
    --space-xl: 2.5rem;
    --fs-display: 2.2rem;
    --fs-h1: 1.8rem;
    --fs-h2: 1.5rem;
  }

  /* Reinforce with ID selector */
  #navLinks.navbar__links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #141414 !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--duration-normal) var(--ease-out);
    padding: 2rem;
    z-index: 10001;
    overflow-y: auto;
    /* Allow scrolling if content is too tall */
  }

  #navLinks.navbar__links.open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all;
  }

  /* Ensure toggle button is visible against dark menu */
  .navbar__links.open~.navbar__toggle span {
    background: #fff;
  }

  .navbar__link {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 600;
  }

  .navbar__cta {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }

  .navbar__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .navbar__toggle {
    display: flex;
    position: relative;
    z-index: 10005;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 2rem);
    padding-bottom: 4rem;
    align-items: flex-start;
  }

  .hero__two-col {
    flex-direction: column;
    gap: var(--space-xl);
  }

  .hero-form {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
  }

  .hero__content {
    text-align: center;
    max-width: 100%;
  }

  .hero__desc {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__stats {
    justify-content: center;
    gap: 0;
    margin-top: var(--space-xl);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .products__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .why-us__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }

  .cta-banner__text h2 {
    font-size: var(--fs-h3);
  }

  .cta-banner .btn {
    width: 100%;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .page-header {
    padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-xl);
  }

  .page-header__title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero__stats {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .footer__socials {
    justify-content: center;
  }
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--clr-dark-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader__logo {
  height: 60px;
  width: auto;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader__bar {
  width: 160px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.preloader__bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-gold));
  animation: preloaderSlide 1.2s ease-in-out infinite;
}

@keyframes preloaderPulse {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes preloaderSlide {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(400%);
  }
}



/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.55);
  animation: none;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@keyframes whatsappPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
}

/* ---------- Cookie Consent ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99990;
  background: rgba(20, 20, 20, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner.hide {
  transform: translateY(100%);
}

.cookie-banner__text {
  font-size: var(--fs-small);
  color: var(--clr-text-on-dark);
  max-width: 600px;
  line-height: 1.6;
}

.cookie-banner__text a {
  color: var(--clr-accent);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.6rem 1.5rem;
  font-family: var(--ff-heading);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  border: none;
}

.cookie-btn--accept {
  background: var(--clr-accent);
  color: #fff;
}

.cookie-btn--accept:hover {
  background: var(--clr-accent-hover);
  transform: translateY(-1px);
}

.cookie-btn--reject {
  background: transparent;
  color: var(--clr-text-light);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-btn--reject:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
    padding: var(--space-md);
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
}

/* ---------- Micro-Animations ---------- */
.product-card {
  transition: all var(--duration-normal) var(--ease-out), box-shadow 0.4s;
}

.product-card:hover .product-card__icon svg {
  stroke: #fff;
}

.why-card {
  transition: all var(--duration-normal) var(--ease-out), box-shadow 0.4s;
}

.blog-card {
  transition: all var(--duration-normal) var(--ease-out), box-shadow 0.4s;
}

.blog-card:hover .blog-card__tag {
  color: var(--clr-gold);
}

.product-card__link::after {
  content: '→';
  display: inline-block;
  transition: transform 0.3s var(--ease-out);
  margin-left: 0.3rem;
}

.product-card:hover .product-card__link::after {
  transform: translateX(4px);
}

.footer__link {
  position: relative;
}

.footer__link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--clr-accent);
  transition: width 0.3s var(--ease-out);
}

.footer__link:hover::before {
  width: 100%;
}

/* ---------- Parallax ---------- */
.hero__bg img {
  transition: transform 0.1s linear;
  will-change: transform;
}

/* ---------- User Select Protection ---------- */
body.protected {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* ============================================================
   MOBILE APP EXPERIENCE
   ============================================================ */
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  .hero-form {
    display: none !important;
  }

  .navbar__toggle {
    display: none !important;
  }

  body {
    padding-bottom: 90px;
  }

  .whatsapp-float {
    bottom: 100px;
    right: 20px;
    width: 48px;
    height: 48px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  .cookie-banner {
    bottom: 80px;
  }

  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: rgba(20, 20, 20, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 100001;
    justify-content: space-around;
    align-items: center;
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  }

  .mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--clr-text-light);
    font-size: 10px;
    font-family: var(--ff-body);
    font-weight: 500;
    width: 100%;
    height: 100%;
    transition: all 0.2s var(--ease-out);
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
  }

  .mobile-nav-item svg {
    width: 22px;
    height: 22px;
    stroke-width: 2px;
    transition: all 0.2s;
  }

  .mobile-nav-item.active,
  .mobile-nav-item:active {
    color: var(--clr-surface);
  }

  .mobile-nav-item.active svg,
  .mobile-nav-item:active svg {
    stroke: var(--clr-accent);
    fill: rgba(199, 33, 33, 0.15);
  }

  /* Central CTA Button (Teklif Al) */
  .mobile-nav-item--cta {
    position: relative;
    top: -24px;
    color: var(--clr-accent);
    overflow: visible;
  }

  .mobile-nav-item--cta .mobile-nav-cta-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    background: var(--clr-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(199, 33, 33, 0.4);
    border: 4px solid var(--clr-dark-bg);
    animation: pulse-cta 2s infinite;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    aspect-ratio: 1;
    /* Ensure perfect circle */
  }

  .mobile-nav-item--cta svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    fill: none !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  }

  @keyframes pulse-cta {
    0% {
      box-shadow: 0 0 0 0 rgba(199, 33, 33, 0.7);
    }

    70% {
      box-shadow: 0 0 0 10px rgba(199, 33, 33, 0);
    }

    100% {
      box-shadow: 0 0 0 0 rgba(199, 33, 33, 0);
    }
  }

  .mobile-nav-item--cta span {
    margin-top: 6px;
    font-weight: 700;
    color: var(--clr-accent);
  }

  .mobile-nav-item--cta:active .mobile-nav-cta-icon {
    transform: scale(0.95);
  }
}

/* ============================================================
   PREMIUM QUOTE SELECTION (TEXT-ONLY)
   ============================================================ */
.insurance-selector {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.ins-btn {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--clr-text-secondary);
  padding: 1.25rem 1rem;
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 100%;
}

.ins-btn:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  background: rgba(212, 162, 76, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.ins-btn.active {
  background: var(--clr-gold);
  color: var(--clr-dark-bg);
  border-color: var(--clr-gold);
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(212, 162, 76, 0.3);
  transform: translateY(-2px);
}

.ins-btn.active:hover {
  background: var(--clr-gold-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 162, 76, 0.4);
}

@media (max-width: 768px) {
  .insurance-selector {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .ins-btn {
    padding: 1rem;
    font-size: 0.85rem;
  }
}

/* Utility */
.no-scroll {
  overflow: hidden;
}