/* ==========================================================================
   MOTO PRAKTIKER - DESIGN SYSTEM & MASTER STYLESHEET
   Awwwards & High-End Automotive Workshop Tier
   Brand: Moto Praktiker | Güvenli Sürüş, Doğru Bakım
   ========================================================================== */

/* --- Google Fonts Import: Inter (Clean, Simple, Highly Legible) --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Brand Core Colors */
  --brand-orange: #FF5E1E;
  --brand-orange-light: #FF7033;
  --brand-orange-glow: rgba(255, 94, 30, 0.18);
  --brand-orange-subtle: rgba(255, 94, 30, 0.08);
  --brand-orange-border: rgba(255, 94, 30, 0.22);

  /* Vibrant Accent Colors (Sade & Renkli) */
  --brand-cyan: #00C2FF;
  --brand-cyan-glow: rgba(0, 194, 255, 0.18);
  --brand-cyan-subtle: rgba(0, 194, 255, 0.08);
  --brand-cyan-border: rgba(0, 194, 255, 0.24);

  --brand-green: #10B981;
  --brand-green-glow: rgba(16, 185, 129, 0.18);
  --brand-green-subtle: rgba(16, 185, 129, 0.08);
  --brand-green-border: rgba(16, 185, 129, 0.24);

  --brand-purple: #A855F7;
  --brand-purple-glow: rgba(168, 85, 247, 0.18);
  --brand-purple-subtle: rgba(168, 85, 247, 0.08);
  --brand-purple-border: rgba(168, 85, 247, 0.24);

  --brand-amber: #F59E0B;
  --brand-amber-glow: rgba(245, 158, 11, 0.18);
  --brand-amber-subtle: rgba(245, 158, 11, 0.08);
  --brand-amber-border: rgba(245, 158, 11, 0.24);

  --brand-blue: #3B82F6;
  --brand-blue-glow: rgba(59, 130, 246, 0.18);
  --brand-blue-subtle: rgba(59, 130, 246, 0.08);
  --brand-blue-border: rgba(59, 130, 246, 0.24);

  /* Neutrals & Surfaces - Clean & Deep */
  --bg-deep: #0B0E14;
  --bg-surface: #11151D;
  --bg-surface-elevated: #171D27;
  --bg-card: rgba(17, 21, 29, 0.78);
  --bg-card-hover: rgba(23, 29, 39, 0.9);
  --bg-glass: rgba(14, 18, 25, 0.88);

  /* Borders & Dividers - Refined & Crisp */
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-medium: rgba(255, 255, 255, 0.12);
  --border-highlight: rgba(255, 255, 255, 0.18);
  --border-glow: rgba(255, 94, 30, 0.28);

  /* Typography Colors */
  --text-primary: #F3F4F6;
  --text-secondary: #9CA3AF;
  --text-muted: #6B7280;
  --text-inverse: #0B0E14;

  /* Accents & Status */
  --color-success: #10B981;
  --color-success-glow: rgba(16, 185, 129, 0.15);
  --color-warning: #F59E0B;
  --color-danger: #EF4444;

  /* Typography Scales - Clean, Simple, Modern Inter Stack */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif;
  --font-mono: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout & Spacing */
  --container-max: 1240px;
  --header-height: 76px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-full: 9999px;

  /* Shadows - Understated & Elegant (No Exaggerated Neon) */
  --shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-elevated: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-orange: 0 4px 16px rgba(255, 94, 30, 0.18);
  --shadow-glow: none;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.22s ease;
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Global Reset & Base Setup --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 8%, rgba(255, 94, 30, 0.06) 0%, transparent 35%),
    radial-gradient(circle at 85% 25%, rgba(0, 194, 255, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 10% 55%, rgba(16, 185, 129, 0.04) 0%, transparent 35%),
    radial-gradient(circle at 88% 75%, rgba(168, 85, 247, 0.04) 0%, transparent 40%);
  background-attachment: fixed;
}

/* Technical Grid Pattern Overlay - Clean, removed for simplicity */
body::before {
  display: none;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

/* Selection */
::selection {
  background: var(--brand-orange);
  color: #FFFFFF;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-surface-elevated);
  border-radius: var(--radius-full);
  border: 2px solid var(--bg-deep);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand-orange);
}

/* --- Container & Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 1;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-orange);
  background: var(--brand-orange-subtle);
  border: 1px solid var(--brand-orange-border);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.section-tag-cyan {
  color: var(--brand-cyan);
  background: var(--brand-cyan-subtle);
  border-color: var(--brand-cyan-border);
}

.section-tag-green {
  color: var(--brand-green);
  background: var(--brand-green-subtle);
  border-color: var(--brand-green-border);
}

.section-tag-purple {
  color: var(--brand-purple);
  background: var(--brand-purple-subtle);
  border-color: var(--brand-purple-border);
}

.section-tag-amber {
  color: var(--brand-amber);
  background: var(--brand-amber-subtle);
  border-color: var(--brand-amber-border);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-title span.highlight {
  color: var(--brand-orange);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: initial;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Buttons & Interactive Elements --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand-orange);
  color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(255, 94, 30, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 94, 30, 0.35);
  background: #FF6E30;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--bg-surface-elevated);
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-highlight);
  transform: translateY(-1px);
  color: #FFFFFF;
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: var(--radius-md);
}

/* --- Glass Card Utility --- */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  position: relative;
}

.glass-card:hover {
  border-color: var(--border-medium);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-subtle);
}

/* ==========================================================================
   NAVIGATION BAR (HEADER)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(8, 10, 14, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  height: 72px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

/* Brand Logo (Guaranteed Single Line) */
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-icon-wrapper {
  width: 40px;
  height: 40px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition-fast);
}

.brand-logo:hover .brand-icon-wrapper {
  border-color: var(--brand-orange);
}

.brand-logo svg {
  width: 22px;
  height: 22px;
  fill: var(--brand-orange);
}

.brand-logo-img {
  height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.03);
}

.brand-title,
.brand-text-title {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.22rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text-subtitle {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Nav Container & Menu (Guaranteed Single Line) */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  margin: 0 16px;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  list-style: none;
  flex-wrap: nowrap;
  white-space: nowrap;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: #FFFFFF;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-orange);
  border-radius: 2px;
  transition: width var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  white-space: nowrap;
}

.live-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: #34D399;
}

.live-status-pill.closed {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.2);
  color: #F87171;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.4);
}

.live-status-pill.closed .status-dot {
  background: #EF4444;
  box-shadow: 0 0 6px rgba(239, 68, 68, 0.4);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 30px);
  padding-bottom: 70px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 94, 30, 0.08);
  border: 1px solid var(--brand-orange-border);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.hero-badge-pill .gear-icon {
  color: var(--brand-orange);
}

.hero-badge-pill span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-primary);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 750;
  line-height: 1.16;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.hero-title .gradient-text {
  color: var(--brand-orange);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: initial;
  display: block;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

/* Feature Quick Strip */
.hero-features-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}

.hero-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.hero-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--brand-orange-subtle);
  border: 1px solid var(--brand-orange-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-feature-text h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.hero-feature-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Hero Media Showcase */
.hero-media-wrapper {
  position: relative;
  z-index: 2;
}

.hero-main-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  background: var(--bg-surface);
}

.hero-main-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

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

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 10, 14, 0.95) 0%, rgba(8, 10, 14, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.hero-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.hero-card-tag {
  background: var(--brand-orange);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
}

/* Floating Glass Badges */
.floating-stat-badge {
  position: absolute;
  bottom: -15px;
  left: -15px;
  background: rgba(17, 21, 29, 0.94);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-elevated);
  z-index: 3;
}

.floating-stat-badge .stat-icon {
  width: 40px;
  height: 40px;
  background: var(--brand-orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.1rem;
}

.floating-stat-badge .stat-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
}

.floating-stat-badge .stat-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.floating-equipment-badge {
  position: absolute;
  top: 25px;
  right: -15px;
  background: rgba(17, 21, 29, 0.94);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-elevated);
  z-index: 3;
}

.floating-equipment-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-orange);
}

.floating-equipment-badge span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ==========================================================================
   THE 4 PILLARS (CORE SERVICES)
   ========================================================================== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pillar-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-highlight);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-subtle);
}

.pillar-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--brand-orange-subtle);
  border: 1px solid var(--brand-orange-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  margin-bottom: 20px;
  transition: all var(--transition-fast);
}

.pillar-card:hover .pillar-icon-box {
  background: rgba(255, 94, 30, 0.16);
}

.pillar-number {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0.6;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.pillar-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

.pillar-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
  margin-bottom: 20px;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.pillar-item svg {
  color: var(--brand-orange);
  flex-shrink: 0;
}

.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-orange);
  transition: gap var(--transition-fast);
}

.pillar-link:hover {
  gap: 8px;
  color: var(--brand-orange-light);
}

/* --- Thematic Colors for Pillars (Sade & Canlı Renkler) --- */
/* Pillar 1: Orange (Bakım) */
.pillar-card.pillar-orange {
  border-top: 2px solid rgba(255, 94, 30, 0.45);
}
.pillar-card.pillar-orange:hover {
  border-color: var(--brand-orange);
  box-shadow: 0 14px 36px rgba(255, 94, 30, 0.14);
}
.pillar-card.pillar-orange .pillar-number {
  color: var(--brand-orange);
  opacity: 0.9;
}
.pillar-card.pillar-orange .pillar-icon-box {
  background: var(--brand-orange-subtle);
  border-color: var(--brand-orange-border);
  color: var(--brand-orange);
}
.pillar-card.pillar-orange .pillar-item svg {
  color: var(--brand-orange);
}
.pillar-card.pillar-orange .pillar-link {
  color: var(--brand-orange);
}

/* Pillar 2: Cyan (Onarım) */
.pillar-card.pillar-cyan {
  border-top: 2px solid rgba(0, 194, 255, 0.45);
}
.pillar-card.pillar-cyan:hover {
  border-color: var(--brand-cyan);
  box-shadow: 0 14px 36px rgba(0, 194, 255, 0.14);
}
.pillar-card.pillar-cyan .pillar-number {
  color: var(--brand-cyan);
  opacity: 0.9;
}
.pillar-card.pillar-cyan .pillar-icon-box {
  background: var(--brand-cyan-subtle);
  border-color: var(--brand-cyan-border);
  color: var(--brand-cyan);
}
.pillar-card.pillar-cyan .pillar-item svg {
  color: var(--brand-cyan);
}
.pillar-card.pillar-cyan .pillar-link {
  color: var(--brand-cyan);
}

/* Pillar 3: Green (Lastik & Balans) */
.pillar-card.pillar-green {
  border-top: 2px solid rgba(16, 185, 129, 0.45);
}
.pillar-card.pillar-green:hover {
  border-color: var(--brand-green);
  box-shadow: 0 14px 36px rgba(16, 185, 129, 0.14);
}
.pillar-card.pillar-green .pillar-number {
  color: var(--brand-green);
  opacity: 0.9;
}
.pillar-card.pillar-green .pillar-icon-box {
  background: var(--brand-green-subtle);
  border-color: var(--brand-green-border);
  color: var(--brand-green);
}
.pillar-card.pillar-green .pillar-item svg {
  color: var(--brand-green);
}
.pillar-card.pillar-green .pillar-link {
  color: var(--brand-green);
}

/* Pillar 4: Purple (Yedek Parça) */
.pillar-card.pillar-purple {
  border-top: 2px solid rgba(168, 85, 247, 0.45);
}
.pillar-card.pillar-purple:hover {
  border-color: var(--brand-purple);
  box-shadow: 0 14px 36px rgba(168, 85, 247, 0.14);
}
.pillar-card.pillar-purple .pillar-number {
  color: var(--brand-purple);
  opacity: 0.9;
}
.pillar-card.pillar-purple .pillar-icon-box {
  background: var(--brand-purple-subtle);
  border-color: var(--brand-purple-border);
  color: var(--brand-purple);
}
.pillar-card.pillar-purple .pillar-item svg {
  color: var(--brand-purple);
}
.pillar-card.pillar-purple .pillar-link {
  color: var(--brand-purple);
}

/* ==========================================================================
   REAL WORKSHOP GALLERY (ATÖLYE & EKİPMAN)
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  background: var(--bg-surface);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth), filter var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.08);
}

.gallery-item:hover {
  border-color: var(--brand-orange-border);
  box-shadow: var(--shadow-orange);
}

/* Layout Variations */
.gallery-item-featured {
  grid-column: span 7;
  height: 420px;
}

.gallery-item-secondary {
  grid-column: span 5;
  height: 420px;
}

.gallery-item-small {
  grid-column: span 4;
  height: 320px;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 10, 14, 0.95) 0%, rgba(8, 10, 14, 0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: all var(--transition-normal);
}

.gallery-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand-orange);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.gallery-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.gallery-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.45;
  opacity: 0.85;
}

.gallery-zoom-hint {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(14, 18, 24, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition-normal);
}

.gallery-item:hover .gallery-zoom-hint {
  opacity: 1;
  transform: scale(1);
  background: var(--brand-orange);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5, 7, 10, 0.95);
  backdrop-filter: blur(24px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

.lightbox-content {
  max-width: 1000px;
  width: 100%;
  max-height: 85vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img-wrapper {
  max-height: 70vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.9);
}

.lightbox-img-wrapper img {
  max-height: 70vh;
  width: auto;
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 20px;
  text-align: center;
  max-width: 600px;
}

.lightbox-caption h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.lightbox-caption p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-medium);
  color: #FFFFFF;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--brand-orange);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(14, 18, 24, 0.85);
  border: 1px solid var(--border-medium);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-nav:hover {
  background: var(--brand-orange);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ==========================================================================
   INTERACTIVE SERVICE COST & TIME ESTIMATOR
   ========================================================================== */
.estimator-wrapper {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-elevated);
}

.estimator-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
}

.step-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--brand-orange);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

/* Moto Type Selector */
.moto-type-pills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  margin-bottom: 36px;
}

.moto-type-btn {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.moto-type-btn svg {
  width: 32px;
  height: 32px;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.moto-type-btn span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.moto-type-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-medium);
}

.moto-type-btn.active {
  background: rgba(255, 94, 30, 0.1);
  border-color: var(--brand-orange);
}

.moto-type-btn.active svg {
  color: var(--brand-orange);
}

.moto-type-btn.active span {
  color: #FFFFFF;
}

/* Service Checkboxes */
.services-checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-check-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
}

.service-check-item:hover {
  background: var(--bg-surface-elevated);
  border-color: var(--border-medium);
}

.service-check-item.selected {
  background: rgba(255, 94, 30, 0.08);
  border-color: var(--brand-orange-border);
}

.service-info-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.custom-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 2px solid var(--border-medium);
  background: var(--bg-surface-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.service-check-item.selected .custom-checkbox {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: #FFFFFF;
}

.service-text h5 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.service-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.service-meta-right {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
}

.service-duration-badge {
  font-size: 0.75rem;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 9px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

/* Colorful Service Badge Tags */
.service-badge-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
}

.tag-orange {
  background: rgba(255, 94, 30, 0.12);
  color: #FF7033;
  border: 1px solid rgba(255, 94, 30, 0.28);
}

.tag-cyan {
  background: rgba(0, 194, 255, 0.12);
  color: #00C2FF;
  border: 1px solid rgba(0, 194, 255, 0.28);
}

.tag-green {
  background: rgba(16, 185, 129, 0.12);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.28);
}

.tag-purple {
  background: rgba(168, 85, 247, 0.12);
  color: #C084FC;
  border: 1px solid rgba(168, 85, 247, 0.28);
}

.tag-blue {
  background: rgba(59, 130, 246, 0.12);
  color: #60A5FA;
  border: 1px solid rgba(59, 130, 246, 0.28);
}

.tag-amber {
  background: rgba(245, 158, 11, 0.12);
  color: #FBBF24;
  border: 1px solid rgba(245, 158, 11, 0.28);
}

/* Estimator Live Summary Card */
.estimator-summary-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.summary-header {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.summary-header h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.summary-header p {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.summary-selected-services {
  min-height: 120px;
  margin-bottom: 20px;
}

.summary-service-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 9px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.service-title-text {
  font-weight: 500;
  color: var(--text-primary);
}

.service-dur-tag {
  background: rgba(0, 194, 255, 0.12);
  color: #00C2FF;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 194, 255, 0.25);
  white-space: nowrap;
}

.summary-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-muted);
  padding: 24px 10px;
  font-size: 0.85rem;
  gap: 8px;
}

.summary-totals {
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 20px;
  border: 1px solid var(--border-subtle);
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.total-row:last-child {
  margin-bottom: 0;
  padding-top: 8px;
  border-top: 1px solid var(--border-subtle);
}

.total-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.total-value {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.total-value.highlight {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--brand-orange);
  font-weight: 700;
}

/* ==========================================================================
   WORKSHOP STANDARDS ("NEDEN MOTO PRAKTIKER?")
   ========================================================================== */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.standard-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  transition: all var(--transition-normal);
  position: relative;
}

.standard-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-subtle);
}

.standard-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all var(--transition-fast);
}

.standard-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.standard-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Color-Coded Standard Card Accents (Sade & Canlı) */
.standard-card.std-emerald {
  border-top: 2px solid rgba(16, 185, 129, 0.4);
}
.standard-card.std-emerald:hover {
  border-color: var(--brand-green);
  box-shadow: 0 10px 28px rgba(16, 185, 129, 0.12);
}
.standard-card.std-emerald .standard-icon-circle {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.28);
  color: #10B981;
}

.standard-card.std-amber {
  border-top: 2px solid rgba(245, 158, 11, 0.4);
}
.standard-card.std-amber:hover {
  border-color: var(--brand-amber);
  box-shadow: 0 10px 28px rgba(245, 158, 11, 0.12);
}
.standard-card.std-amber .standard-icon-circle {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.28);
  color: #F59E0B;
}

.standard-card.std-cyan {
  border-top: 2px solid rgba(0, 194, 255, 0.4);
}
.standard-card.std-cyan:hover {
  border-color: var(--brand-cyan);
  box-shadow: 0 10px 28px rgba(0, 194, 255, 0.12);
}
.standard-card.std-cyan .standard-icon-circle {
  background: rgba(0, 194, 255, 0.12);
  border: 1px solid rgba(0, 194, 255, 0.28);
  color: #00C2FF;
}

.standard-card.std-purple {
  border-top: 2px solid rgba(168, 85, 247, 0.4);
}
.standard-card.std-purple:hover {
  border-color: var(--brand-purple);
  box-shadow: 0 10px 28px rgba(168, 85, 247, 0.12);
}
.standard-card.std-purple .standard-icon-circle {
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.28);
  color: #A855F7;
}

.standard-card.std-blue {
  border-top: 2px solid rgba(59, 130, 246, 0.4);
}
.standard-card.std-blue:hover {
  border-color: var(--brand-blue);
  box-shadow: 0 10px 28px rgba(59, 130, 246, 0.12);
}
.standard-card.std-blue .standard-icon-circle {
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.28);
  color: #3B82F6;
}

.standard-card.std-orange {
  border-top: 2px solid rgba(255, 94, 30, 0.4);
}
.standard-card.std-orange:hover {
  border-color: var(--brand-orange);
  box-shadow: 0 10px 28px rgba(255, 94, 30, 0.12);
}
.standard-card.std-orange .standard-icon-circle {
  background: rgba(255, 94, 30, 0.12);
  border: 1px solid rgba(255, 94, 30, 0.28);
  color: #FF5E1E;
}

/* ==========================================================================
   SUPPORTED BRANDS
   ========================================================================== */
.brands-section {
  padding: 48px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(14, 18, 24, 0.3);
}

.brands-header {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.brands-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
}

.brand-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.brand-badge:hover {
  color: #FFFFFF;
  border-color: var(--brand-orange-border);
  background: rgba(255, 94, 30, 0.08);
  transform: translateY(-1px);
}

/* ==========================================================================
   GOOGLE REVIEWS & TESTIMONIALS
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

.review-stars {
  display: flex;
  gap: 4px;
  color: #F59E0B;
  margin-bottom: 14px;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  font-style: normal;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #FFFFFF;
  font-size: 0.88rem;
}

.author-info h5 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
}

.author-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item.active {
  border-color: var(--brand-orange-border);
  background: var(--bg-card-hover);
}

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

.faq-question h4 {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-primary);
}

.faq-toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-surface-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
  background: var(--brand-orange);
  color: #FFFFFF;
}

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

.faq-answer-inner {
  padding: 0 26px 24px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 4px;
  padding-top: 16px;
}

/* ==========================================================================
   CONTACT, LOCATION & HOURS
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.contact-info-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon-box {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--brand-orange-subtle);
  border: 1px solid var(--brand-orange-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  flex-shrink: 0;
}

.contact-detail-item h5 {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.contact-detail-item p, .contact-detail-item a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-detail-item a:hover {
  color: var(--brand-orange);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  font-size: 0.88rem;
}

.hours-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-table td {
  padding: 8px 0;
  color: var(--text-secondary);
}

.hours-table td:last-child {
  text-align: right;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-primary);
}

/* Map Card */
.contact-map-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

.contact-map-iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(110%);
}

.map-card-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(17, 21, 29, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow-elevated);
}

.map-overlay-text h5 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
}

.map-overlay-text p {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   APPOINTMENT MODAL
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2100;
  background: rgba(5, 7, 10, 0.85);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

.modal-dialog {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  transform: translateY(15px);
  transition: transform var(--transition-normal);
}

.modal-backdrop.active .modal-dialog {
  transform: translateY(0);
}

.modal-header {
  padding: 22px 26px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
}

.modal-close-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--brand-orange);
  color: #FFFFFF;
}

.modal-body {
  padding: 24px 26px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 2px rgba(255, 94, 30, 0.15);
}

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

/* Modal Confirmation Banner */
.modal-confirm-banner {
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #25D366;
  font-size: 0.82rem;
  margin-top: 10px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #07090D;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 24px;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand-info p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 16px 0 20px;
}

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

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.footer-social-btn:hover {
  background: var(--brand-orange);
  color: #FFFFFF;
  border-color: var(--brand-orange);
  transform: translateY(-1px);
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 18px;
  position: relative;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--brand-orange);
  transform: translateX(4px);
}

.footer-contact-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-contact-items li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-items svg {
  color: var(--brand-orange);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   MOBILE STICKY ACTION BAR
   ========================================================================== */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 13, 18, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-medium);
  padding: 10px 16px;
  z-index: 1500;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.7);
}

.mobile-action-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.mobile-bar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 4px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.72rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.mobile-bar-btn svg {
  width: 20px;
  height: 20px;
}

.mobile-bar-btn.primary {
  background: var(--brand-orange);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  font-weight: 700;
}

.mobile-bar-btn.whatsapp {
  color: #25D366;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: rgba(14, 18, 24, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-medium);
  border-left: 4px solid var(--brand-orange);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: #FFFFFF;
  font-size: 0.9rem;
  box-shadow: var(--shadow-elevated);
  transform: translateX(120%);
  transition: transform var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 12px;
}

.toast.show {
  transform: translateX(0);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .nav-container {
    margin: 0 10px;
  }
  .nav-menu {
    gap: 16px;
  }
  .nav-link {
    font-size: 0.84rem;
  }
  .brand-title {
    font-size: 1.1rem;
  }
  .header-actions {
    gap: 8px;
  }
  .live-status-pill {
    padding: 4px 8px;
    font-size: 0.72rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-media-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .estimator-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .standards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  .section {
    padding: 70px 0;
  }
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: rgba(10, 13, 18, 0.98);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-medium);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-normal);
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .live-status-pill span:not(.status-dot) {
    display: none;
  }
  .live-status-pill {
    padding: 8px;
  }
  .header-actions .btn {
    display: none;
  }
  .hero-features-strip {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .floating-stat-badge {
    position: static;
    margin-top: 20px;
    width: 100%;
  }
  .floating-equipment-badge {
    top: 15px;
    right: 15px;
  }
  .gallery-item-featured,
  .gallery-item-secondary,
  .gallery-item-small {
    grid-column: span 12;
    height: 280px;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .standards-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .mobile-action-bar {
    display: block;
  }
  body {
    padding-bottom: 70px;
  }
  .estimator-wrapper {
    padding: 24px;
  }
}
