/* ========================================
   BERZA OTOMOTİV — Corporate Website
   Color: Silver + Dark Navy
   ======================================== */

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

:root {
  /* Navy palette (now used for Light Backgrounds) */
  --navy-950: #ffffff;
  --navy-900: #f8fafc;
  --navy-800: #f1f5f9;
  --navy-700: #e2e8f0;
  --navy-600: #cbd5e1;
  /* Silver palette (now used for Dark Text) */
  --silver-50: #0f172a;
  --silver-100: #1e293b;
  --silver-200: #334155;
  --silver-300: #475569;
  --silver-400: #64748b;
  /* Accent */
  --accent: #2563eb;
  --accent-light: #3b82f6;
  --accent-glow: rgba(37, 99, 235, 0.15);
  --accent-subtle: rgba(37, 99, 235, 0.08);
  /* Gold (founder) */
  --gold: #b48600;
  --gold-light: #c9a84c;
  --gold-glow: rgba(180, 134, 0, 0.15);
  /* Misc */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(15, 23, 42, 0.08);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 16px;
  --radius-sm: 10px;
  /* Theme specific */
  --nav-bg: rgba(255, 255, 255, 0.95);
  --input-bg: rgba(255, 255, 255, 0.6);
  --hero-gold-center: #fffbed;
}

[data-theme="dark"] {
  --navy-950: #050d1a;
  --navy-900: #0a1628;
  --navy-800: #111d35;
  --navy-700: #182a4a;
  --navy-600: #1e3a5f;
  --silver-50: #f8f9fb;
  --silver-100: #f0f2f5;
  --silver-200: #c0c5cf;
  --silver-300: #8a92a1;
  --silver-400: #5c6478;
  --accent: #3b82f6;
  --accent-light: #60a5fa;
  --accent-glow: rgba(59, 130, 246, 0.25);
  --accent-subtle: rgba(59, 130, 246, 0.08);
  --gold: #c9a84c;
  --gold-light: #e0c872;
  --gold-glow: rgba(201, 168, 76, 0.2);
  --glass-bg: rgba(17, 29, 53, 0.6);
  --glass-border: rgba(192, 197, 207, 0.08);
  --nav-bg: rgba(10, 22, 40, 0.92);
  --input-bg: rgba(5, 13, 26, 0.6);
  --hero-gold-center: #1a1508;
}

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

body {
  font-family:
    "Outfit",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--navy-950);
  color: var(--silver-100);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.25;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) {
  transition-delay: 0.1s;
}
.reveal:nth-child(3) {
  transition-delay: 0.2s;
}
.reveal:nth-child(4) {
  transition-delay: 0.3s;
}
.reveal:nth-child(5) {
  transition-delay: 0.35s;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  transition: all var(--transition);
}
.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  line-height: 1;
}
.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  background: transparent;
  transition: all var(--transition);
}
.logo-img-footer {
  height: 64px;
  width: auto;
  object-fit: contain;
  background: transparent;
  margin-bottom: 24px;
  display: block;
  transition: all var(--transition);
}
.logo-img:hover,
.logo-img-footer:hover {
  transform: scale(1.03);
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 8px;
  color: var(--silver-200);
  transition: all var(--transition);
  position: relative;
}
.nav-links a:hover {
  color: var(--silver-50);
  background: var(--accent-subtle);
}
.nav-cta {
  background: var(--accent) !important;
  color: white !important;
  padding: 10px 24px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--accent-light) !important;
  box-shadow: 0 4px 20px var(--accent-glow);
}

/* Theme Toggle */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--silver-200);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 50%;
  transition: all var(--transition);
  margin-right: 12px;
}
.theme-toggle:hover {
  color: var(--accent-light);
  background: var(--accent-subtle);
}
.theme-toggle svg {
  width: 22px;
  height: 22px;
}
.theme-toggle .sun-icon {
  display: none;
}
.theme-toggle .moon-icon {
  display: block;
}
[data-theme="dark"] .theme-toggle .sun-icon {
  display: block;
}
[data-theme="dark"] .theme-toggle .moon-icon {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--silver-100);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span {
  background: #ffffff !important;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #050d1a; /* Always dark navy */
}
#particleCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.6;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 12s ease-out;
  z-index: 0;
  pointer-events: none;
}
.hero-slide.active::after {
  transform: scale(1.1);
}
.hero-slide:nth-child(1)::after {
  background-image: url("assets/img/slide-1.jpg");
}
.hero-slide:nth-child(2)::after {
  background-image: url("assets/img/atil-stok-slide.png");
}
.hero-slide:nth-child(3)::after {
  background-image: url("assets/img/stok-dengesi.jpg");
}
.hero-slide:nth-child(4)::after {
  background-image: url("assets/img/slide-3.jpg");
}
.hero-slide-content {
  position: relative;
  z-index: 10;
  padding: 60px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-left: 4px solid var(--accent);
  border-radius: 0 20px 20px 0;
  max-width: 800px;
  margin-left: 8%;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1) 0.4s;
}
.hero-slide.active .hero-slide-content {
  opacity: 1;
  transform: translateY(0);
}
.hero-slide.align-left {
  justify-content: flex-start;
}
.hero-slide.align-right {
  justify-content: flex-end;
}
.hero-slide.align-right .hero-slide-content {
  margin-right: 10%;
  margin-left: 0;
  border-left: none;
  border-right: 4px solid var(--accent);
  border-radius: 20px 0 0 20px;
}
.hero-content {
  position: static;
  width: 100%;
  height: 100%;
}

.hero-slider-nav {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 12px;
  z-index: 20;
}
.slider-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(5px);
}
.slider-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
}
.slider-arrow svg {
  width: 24px;
  height: 24px;
}

.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--silver-400);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  opacity: 0.5;
}
.slider-dot.active {
  background: var(--accent);
  opacity: 1;
  transform: scale(1.3);
}

.hero-badge {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #3b82f6; /* Consistent blue */
  border: 1px solid rgba(59, 130, 246, 0.4);
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 32px;
  background: rgba(59, 130, 246, 0.1);
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-highlight {
  color: #2563eb; /* Stronger/Darker blue */
  position: relative;
}
.hero-highlight::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, transparent);
  border-radius: 2px;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-slide.align-left .hero-actions {
  justify-content: flex-start;
}
.hero-slide.align-right .hero-actions {
  justify-content: flex-end;
}
.hero-actions .btn-outline {
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
}
.hero-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
}

/* Buttons */
.btn {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: white;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--silver-100);
  border: 1px solid var(--silver-400);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-light);
  background: var(--accent-subtle);
}
.btn-full {
  width: 100%;
  justify-content: center;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ========================================
   SECTIONS (shared)
   ======================================== */
.section {
  padding: 120px 0;
  position: relative;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 16px;
}
.tag-gold {
  color: var(--gold) !important;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--silver-50);
  margin-bottom: 16px;
}
.text-accent {
  color: var(--accent-light);
}
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
  margin: 0 auto;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--silver-300);
  max-width: 600px;
  margin: 20px auto 0;
}

/* Alternating bg */
.section-about {
  background: var(--navy-950);
}
.section-services {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
}
.section-products {
  background: var(--navy-950);
}
.section-brands {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
}
.section-founder {
  background: var(--navy-950);
  border-top: 1px solid var(--gold-glow);
  border-bottom: 1px solid var(--gold-glow);
}
.section-mv {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
}
.section-contact {
  background: var(--navy-950);
}

/* ========================================
   ABOUT
   ======================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text p {
  font-size: 1.05rem;
  color: var(--silver-200);
  margin-bottom: 20px;
  line-height: 1.8;
}
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.highlight-item:hover {
  border-color: rgba(59, 130, 246, 0.2);
  background: rgba(59, 130, 246, 0.05);
  transform: translateX(6px);
}
.highlight-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--accent-subtle);
  color: var(--accent-light);
}
.highlight-icon svg {
  width: 20px;
  height: 20px;
}
.highlight-item span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--silver-100);
}

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.stat-card:hover::before {
  opacity: 1;
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.15);
  box-shadow: 0 8px 40px rgba(59, 130, 246, 0.08);
}
.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent-light);
  display: inline;
}
.stat-plus {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--accent);
  display: inline;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--silver-300);
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ========================================
   SERVICES
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 40px var(--accent-glow);
}
.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    var(--accent-subtle),
    rgba(59, 130, 246, 0.12)
  );
  color: var(--accent-light);
  margin-bottom: 20px;
}
.service-icon svg {
  width: 26px;
  height: 26px;
}
.service-number {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(59, 130, 246, 0.06);
  line-height: 1;
}
.service-card h3 {
  font-size: 1.3rem;
  color: var(--silver-50);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.95rem;
  color: var(--silver-300);
  line-height: 1.7;
}
.service-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin-top: 24px;
  border-radius: 2px;
  transition: width var(--transition);
}
.service-card:hover .service-line {
  width: 80px;
}

/* ========================================
   PRODUCTS
   ======================================== */
.products-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.product-card {
  flex: 1 1 200px;
  max-width: 260px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.product-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--accent-subtle),
    rgba(59, 130, 246, 0.15)
  );
  color: var(--accent-light);
  margin: 0 auto 20px;
  transition: all var(--transition);
}
.product-card:hover .product-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: white;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.product-icon svg {
  width: 26px;
  height: 26px;
}
.product-card h3 {
  font-size: 1.05rem;
  color: var(--silver-50);
  margin-bottom: 8px;
}
.product-card p {
  font-size: 0.82rem;
  color: var(--silver-300);
  line-height: 1.5;
}
.products-note {
  text-align: center;
  color: var(--silver-400);
  font-size: 0.9rem;
  margin-top: 40px;
  font-style: italic;
}

/* ========================================
   BRANDS
   ======================================== */
.brands-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.brand-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 32px 20px;
  text-align: center;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}
.brand-item:hover {
  border-color: rgba(59, 130, 246, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.brand-name {
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--silver-200);
  transition: color var(--transition);
}
.brand-item:hover .brand-name {
  color: var(--accent-light);
}

/* ========================================
   FOUNDER
   ======================================== */
.founder-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--gold-glow);
  border-radius: var(--radius);
  padding: 60px 48px;
  backdrop-filter: blur(10px);
}
.founder-quote-mark {
  position: absolute;
  top: -10px;
  left: 32px;
  font-family: "Cormorant Garamond", serif;
  font-size: 8rem;
  line-height: 1;
  color: var(--gold-glow);
  pointer-events: none;
}
.founder-content {
  position: relative;
  z-index: 1;
}
.founder-quote p {
  font-size: 1.05rem;
  color: var(--silver-200);
  line-height: 1.9;
  margin-bottom: 16px;
  font-style: italic;
}
.founder-quote strong {
  color: var(--gold-light);
  font-weight: 600;
}
.founder-signature {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gold-glow);
}
.founder-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  color: var(--gold-light);
  font-weight: 600;
}
.founder-title {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  color: var(--silver-400);
  margin-top: 4px;
  letter-spacing: 1px;
}

/* ========================================
   MISSION & VISION
   ======================================== */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.mv-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 48px 36px;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}
.mv-card:hover {
  border-color: rgba(59, 130, 246, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.mv-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--accent-subtle);
  color: var(--accent-light);
  margin-bottom: 20px;
}
.mv-icon svg {
  width: 24px;
  height: 24px;
}
.mv-card h3 {
  font-size: 1.4rem;
  color: var(--silver-50);
  margin-bottom: 16px;
}
.mv-card p {
  font-size: 0.95rem;
  color: var(--silver-300);
  line-height: 1.8;
  margin-bottom: 12px;
}

/* ========================================
   CONTACT
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--accent-subtle);
  color: var(--accent-light);
}
.contact-icon svg {
  width: 20px;
  height: 20px;
}
.contact-item h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--silver-100);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.contact-item p {
  font-size: 0.9rem;
  color: var(--silver-300);
  line-height: 1.6;
}
.contact-item a {
  color: var(--silver-200);
  transition: color var(--transition);
}
.contact-item a:hover {
  color: var(--accent-light);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 40px;
  backdrop-filter: blur(10px);
}
.form-group {
  margin-bottom: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  padding: 14px 18px;
  background: var(--input-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--silver-100);
  outline: none;
  transition: all var(--transition);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--silver-400);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--navy-900);
  border-top: 1px solid var(--glass-border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-about .footer-logo {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}
.footer-about .footer-logo img {
  margin-left: 0;
  margin-right: auto;
}
.footer-about p {
  font-size: 0.9rem;
  color: var(--silver-400);
  line-height: 1.7;
}
.footer-links h4,
.footer-contact h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--silver-100);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links ul {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 0.9rem;
  color: var(--silver-400);
  transition: all var(--transition);
}
.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 6px;
}
.footer-contact p {
  font-size: 0.9rem;
  color: var(--silver-400);
  margin-bottom: 8px;
  line-height: 1.6;
}
.footer-contact a {
  color: var(--silver-400);
}
.footer-contact a:hover {
  color: var(--accent-light);
}
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--silver-400);
  letter-spacing: 0.5px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .brands-track {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .logo-img {
    height: 36px !important;
  }
  .lang-toggle {
    margin-left: auto;
    margin-right: 12px;
  }
  .theme-toggle {
    margin-right: 12px;
  }
  .hamburger {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 22, 40, 0.99);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 0;
    margin: 0;
    transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    z-index: 999;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links li {
    width: 100%;
    list-style: none;
    text-align: center;
  }
  .nav-links a {
    display: block;
    font-size: 1.4rem;
    font-weight: 500;
    padding: 20px 0;
    width: 100%;
    color: #ffffff !important;
    letter-spacing: 1px;
    border: none !important;
    transition: all 0.3s ease;
  }
  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    color: var(--accent-light) !important;
    padding-left: 10px;
  }
  .nav-cta {
    margin-top: 30px;
    width: 80% !important;
    margin-left: auto;
    margin-right: auto;
    background: var(--accent) !important;
    color: white !important;
    border-radius: 50px !important;
    font-size: 1.1rem !important;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .brands-track {
    grid-template-columns: repeat(2, 1fr);
  }
  .mv-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }

  .founder-wrapper {
    padding: 40px 28px;
  }
  .founder-quote-mark {
    font-size: 5rem;
    left: 16px;
  }

  .section {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 30px !important;
  }
  .brands-track {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
  .contact-form-wrapper {
    padding: 24px;
  }
}

/* ========================================
   MULTI-PAGE COMPONENTS
   ======================================== */

/* ---- Active Nav Link ---- */
.nav-links a.active {
  color: var(--accent-light) !important;
}

/* ---- Page Hero (Sub-pages) ---- */
.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    var(--navy-950) 0%,
    var(--navy-800) 50%,
    var(--navy-700) 100%
  );
  text-align: center;
}
.page-hero .hero-overlay {
  display: none;
}
.page-hero-gold {
  background: linear-gradient(
    160deg,
    var(--navy-950) 0%,
    var(--hero-gold-center) 50%,
    var(--navy-800) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 3;
  padding: 100px 24px 60px;
}
.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--silver-50);
  margin-bottom: 16px;
}
.page-hero-desc {
  font-size: 1.1rem;
  color: var(--silver-300);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

/* ---- Navigation Cards (Landing) ---- */
.nav-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.nav-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}
.nav-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 40px var(--accent-glow);
}
.nav-card-cta {
  border-color: rgba(59, 130, 246, 0.15);
  background: rgba(59, 130, 246, 0.04);
}
.nav-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    var(--accent-subtle),
    rgba(59, 130, 246, 0.12)
  );
  color: var(--accent-light);
  margin-bottom: 20px;
}
.nav-card-icon svg {
  width: 26px;
  height: 26px;
}
.nav-card h3 {
  font-size: 1.2rem;
  color: var(--silver-50);
  margin-bottom: 8px;
}
.nav-card p {
  font-size: 0.9rem;
  color: var(--silver-300);
  line-height: 1.6;
  flex: 1;
}
.nav-card-arrow {
  font-size: 1.3rem;
  color: var(--accent);
  margin-top: 16px;
  display: block;
  transition: transform var(--transition);
}
.nav-card:hover .nav-card-arrow {
  transform: translateX(6px);
  color: var(--accent-light);
}

/* ---- Service Detail (Alternating Layout) ---- */
.section-service-detail {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-detail-grid.reverse {
  direction: rtl;
}
.service-detail-grid.reverse > * {
  direction: ltr;
}
.service-detail-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(59, 130, 246, 0.1);
  line-height: 1;
  margin-bottom: 8px;
}
.service-detail-content h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.service-detail-content > p {
  color: var(--silver-300);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-about {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--silver-200);
}
.service-features svg {
  color: var(--accent-light);
  flex-shrink: 0;
}
.service-visual-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  min-height: 300px;
}
.service-large-icon {
  width: 120px;
  height: 120px;
  color: var(--accent-light);
  opacity: 0.3;
}

/* ---- Brand Detail Cards ---- */
.brand-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.brand-detail-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}
.brand-detail-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.brand-detail-header {
  margin-bottom: 16px;
}
.brand-detail-name {
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent-light);
}
.brand-detail-card > p {
  font-size: 0.9rem;
  color: var(--silver-300);
  line-height: 1.7;
  margin-bottom: 16px;
}
.brand-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.brand-detail-tags span {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--accent-subtle);
  color: var(--accent-light);
  border: 1px solid rgba(59, 130, 246, 0.15);
}

/* ---- Value Cards ---- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}
.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.value-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(59, 130, 246, 0.12);
  margin-bottom: 8px;
}
.value-card h3 {
  font-size: 1.15rem;
  color: var(--silver-50);
  margin-bottom: 12px;
}
.value-card p {
  font-size: 0.88rem;
  color: var(--silver-300);
  line-height: 1.6;
}

/* ---- Founder Page Layout ---- */
.founder-page-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.founder-page-message {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--gold-glow);
  border-radius: var(--radius);
  padding: 60px 48px;
  backdrop-filter: blur(10px);
}
.founder-info-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  margin-bottom: 24px;
}
.founder-info-card h3 {
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.founder-role {
  font-size: 0.85rem;
  color: var(--silver-400);
  letter-spacing: 1px;
}
.founder-divider {
  width: 40px;
  height: 2px;
  background: var(--gold-glow);
  margin: 16px auto;
}
.founder-bio {
  font-size: 0.9rem;
  color: var(--silver-300);
  line-height: 1.7;
}
.founder-principles {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  backdrop-filter: blur(10px);
}
.founder-principles h4 {
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver-200);
  margin-bottom: 20px;
}
.principle-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--glass-border);
}
.principle-item:last-child {
  border-bottom: none;
}
.principle-icon {
  color: var(--gold);
  flex-shrink: 0;
}
.principle-item span {
  font-size: 0.9rem;
  color: var(--silver-200);
}

/* ---- Highlight Descriptions ---- */
.highlight-desc {
  font-size: 0.85rem;
  color: var(--silver-400);
  margin-top: 4px;
  line-height: 1.5;
}

/* ---- CTA Box ---- */
.section-cta {
  padding: 80px 0;
}
.cta-box {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    var(--accent-glow) 0%,
    transparent 70%
  );
  opacity: 0.3;
}
.cta-box h2 {
  font-size: 1.8rem;
  color: var(--silver-50);
  margin-bottom: 12px;
  position: relative;
}
.cta-box p {
  color: var(--silver-300);
  margin-bottom: 28px;
  position: relative;
}
.cta-box .btn {
  position: relative;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ---- Map ---- */
.section-map {
  padding-top: 0;
}
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

/* ---- Intro Section ---- */
.section-intro {
  background: var(--navy-950);
  padding-bottom: 120px;
}

/* ========================================
   MULTI-PAGE RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .nav-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-cards-grid {
    grid-template-columns: 1fr;
  }
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service-detail-grid.reverse {
    direction: ltr;
  }
  .brand-detail-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .founder-page-grid {
    grid-template-columns: 1fr;
  }
  .founder-page-message {
    padding: 40px 28px;
  }
  .page-hero {
    min-height: 35vh;
  }
  .cta-box {
    padding: 40px 24px;
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
  .page-hero-title {
    font-size: 1.8rem;
  }
}

/* ========================================
   WHATSAPP BUTTON
   ======================================== */

/* ========================================
   SCROLL TO TOP
   ======================================== */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9998;
  width: 42px;
  height: 42px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition);
  box-shadow: 0 4px 16px var(--accent-glow);
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-to-top:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--accent-glow);
}
.scroll-to-top svg {
  width: 20px;
  height: 20px;
}

/* ========================================
   GOOGLE MAPS EMBED
   ======================================== */
.map-container {
  margin-top: 48px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.map-container iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
  filter: saturate(0.9);
}
[data-theme="dark"] .map-container iframe {
  filter: invert(0.9) hue-rotate(180deg) saturate(0.8);
}

/* ========================================
   PRELOADER
   ======================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--navy-950);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  background: white;
  padding: 12px 24px;
  border-radius: 8px;
  animation: preloaderPulse 1.2s ease-in-out infinite;
}
.preloader-bar {
  width: 120px;
  height: 2px;
  background: var(--navy-700);
  margin-top: 32px;
  border-radius: 2px;
  overflow: hidden;
}
.preloader-bar::after {
  content: "";
  display: block;
  width: 40%;
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  animation: preloaderSlide 1s ease-in-out infinite;
}
@keyframes preloaderPulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}
@keyframes preloaderSlide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(400%);
  }
}


/* End of Hero Styles */

/* ========================================
   HERO MOBILE ADAPTATION
   ======================================== */
@media (max-width: 900px) {
  .hero-overlay {
    display: none;
  }
  .hero {
    background: var(--navy-950) !important;
    align-items: flex-start !important;
    padding-top: 70px;
    height: auto !important;
    min-height: 100vh;
  }
  #particleCanvas {
    opacity: 0.2;
  }
  .hero-slider {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 100vh;
    z-index: 3;
  }
  .hero-slide {
    position: absolute;
    inset: 0;
    padding: 30px 20px 40px;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: center;
    gap: 30px;
    text-align: center !important;
    height: 100%;
  }
  .hero-slide::after {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    height: 250px !important;
    min-height: 250px;
    margin-top: 30px;
    border-radius: 12px;
    order: 2;
    top: auto;
    left: auto;
    transform: none !important;
    opacity: 1 !important;
    z-index: 1;
    background-size: cover;
  }
  .hero-slide.active::after {
    transform: none !important;
  }
  .hero-slide-content {
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    backdrop-filter: none !important;
    border: none !important;
    transform: none !important;
    opacity: 0;
    transition: opacity 0.5s ease;
    order: 1;
    z-index: 10;
  }
  .hero-slide.active .hero-slide-content {
    opacity: 1;
    transform: none !important;
  }
  .hero-title {
    font-size: 1.8rem !important;
    margin-bottom: 12px;
    color: var(--silver-50) !important;
  }
  .hero-subtitle {
    font-size: 1rem !important;
    margin-bottom: 24px;
    color: var(--silver-300) !important;
  }
  .hero-actions {
    justify-content: center !important;
    gap: 10px;
    width: 100%;
  }
  .hero-actions .btn {
    padding: 12px 18px !important;
    font-size: 0.85rem !important;
    flex: 1;
    max-width: 160px;
  }
  .hero-actions .btn-outline {
    color: var(--silver-100) !important;
    border-color: var(--silver-400) !important;
  }
  .hero-slider-nav {
    position: absolute;
    bottom: -190px;
    left: 0;
    right: 0;
    width: 100vh; /* Fixed width reference */
    width: 100vw;
    margin-left: -20px; /* Offset content padding */
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    transform: none;
    z-index: 20;
    pointer-events: none;
  }
  .slider-arrow {
    pointer-events: auto;
    width: 44px;
    height: 44px;
    background: rgba(10, 22, 40, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
  }
}


/* ========================================
   LANGUAGE TOGGLE
   ======================================== */
.lang-toggle {
  background: var(--accent-subtle);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 4px;
  display: flex;
  gap: 2px;
  margin-right: 8px;
}
.lang-btn {
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--silver-300);
  transition: all var(--transition);
}
.lang-btn.active {
  background: var(--accent);
  color: #fff;
}
.lang-btn:hover:not(.active) {
  color: var(--silver-50);
}

/* ========================================
   FORM ALERTS & VALIDATION
   ======================================== */
.form-alert {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 16px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
  animation: formAlertSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.form-alert-success {
  background: rgba(5, 150, 105, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
}
.form-alert-error {
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}
@keyframes formAlertSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form input invalid state */
.contact-form input:invalid:not(:placeholder-shown),
.contact-form textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(239, 68, 68, 0.5);
}
.contact-form input:valid:not(:placeholder-shown),
.contact-form textarea:valid:not(:placeholder-shown) {
  border-color: rgba(16, 185, 129, 0.3);
}
