/* ==========================================================================
   ED YOL YARDIM - Modern, Ultra Hızlı CSS
   İstanbul Anadolu Yakası 7/24 Oto Çekici & Kurtarıcı
   ========================================================================== */

:root {
  --primary: #f59e0b;
  --primary-hover: #d97706;
  --primary-dark: #b45309;
  --secondary: #0f172a;
  --secondary-light: #1e293b;
  --accent: #22c55e;
  --accent-hover: #16a34a;
  --danger: #ef4444;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.15), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --transition: all 0.25s ease-in-out;
  --container-max: 1200px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

html {
  scroll-behavior: smooth;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

body {
  padding-bottom: 75px;
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* Header & Top Bar (Desktop Only) */
.topbar {
  display: none;
  background-color: var(--secondary);
  color: #e2e8f0;
  font-size: 0.875rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 992px) {
  .topbar {
    display: block;
  }
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.topbar-badge {
  background: var(--danger);
  color: #fff;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; }
}

.site-header {
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 38px;
  width: auto;
  max-width: 200px;
  display: block;
}

@media (min-width: 480px) {
  .brand-logo-img {
    height: 42px;
    max-width: 230px;
  }
}

@media (min-width: 768px) {
  .brand-logo-img {
    height: 48px;
    max-width: 260px;
  }
}

/* Hamburger Button (Mobile Only) */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--secondary);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
  flex-shrink: 0;
}

.mobile-menu-btn:hover {
  background: #ffffff;
  border-color: var(--primary);
  color: var(--primary);
}

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

/* Desktop Nav Links */
.nav-links {
  display: none;
  align-items: center;
  gap: 22px;
  flex-wrap: nowrap;
}

@media (min-width: 992px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-weight: 700;
  color: var(--secondary);
  font-size: 0.95rem;
  white-space: nowrap;
  padding: 4px 0;
  position: relative;
}

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

/* Mobile Off-Canvas / Drawer Menu */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 290px;
  max-width: 85vw;
  background: #ffffff;
  z-index: 1060;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s ease;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.mobile-drawer.active {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer-header {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-light);
}

.mobile-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--secondary);
  cursor: pointer;
}

.mobile-drawer-nav {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  flex-grow: 1;
}

.mobile-drawer-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--secondary);
  background: transparent;
  transition: var(--transition);
}

.mobile-drawer-nav a:hover, .mobile-drawer-nav a:active {
  background: var(--bg-light);
  color: var(--primary);
}

.mobile-drawer-footer {
  padding: 16px;
  border-top: 1px solid var(--border);
  background: var(--bg-light);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Header Buttons (Desktop Only) */
.header-cta-group {
  display: none;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

@media (min-width: 992px) {
  .header-cta-group {
    display: flex;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: var(--transition);
  text-decoration: none;
  box-sizing: border-box;
  max-width: 100%;
}

.btn-sm {
  padding: 7px 12px;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 12px 20px;
  font-size: 0.96rem;
}

@media (min-width: 768px) {
  .btn {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
  .btn-lg {
    padding: 14px 28px;
    font-size: 1.05rem;
  }
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.45);
}

.btn-call {
  background: #dc2626;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.35);
}

.btn-call:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.45);
}

.btn-whatsapp {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.35);
}

.btn-whatsapp:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--border);
}

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

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, rgba(11, 17, 32, 0.93) 0%, rgba(15, 23, 42, 0.88) 50%, rgba(15, 23, 42, 0.94) 100%), url('../images/cekici-4.webp') center center / cover no-repeat;
  color: #ffffff;
  padding: 40px 0 55px;
  overflow: hidden;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 60px 0 75px;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 35px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--primary);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  max-width: 100%;
}

.hero-title {
  font-size: 1.75rem;
  line-height: 1.22;
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  word-break: break-word;
}

@media (min-width: 480px) {
  .hero-title {
    font-size: 2.1rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.75rem;
    margin-bottom: 16px;
  }
}

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

.hero-desc {
  font-size: 0.95rem;
  color: #cbd5e1;
  margin-bottom: 22px;
  max-width: 600px;
  line-height: 1.65;
}

@media (min-width: 768px) {
  .hero-desc {
    font-size: 1.05rem;
    margin-bottom: 26px;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.hero-actions .btn {
  width: 100%;
}

@media (min-width: 540px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero-actions .btn {
    width: auto;
  }
}

/* Hero Showcase Photo */
.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 3px solid rgba(255, 255, 255, 0.1);
  background: #1e293b;
  width: 100%;
}

.hero-featured-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.hero-photo-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  padding: 10px 12px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.hero-photo-tag h4 {
  font-size: 0.85rem;
  font-weight: 800;
  color: #ffffff;
}

.hero-photo-tag p {
  font-size: 0.72rem;
  color: var(--primary);
  font-weight: 700;
}

/* Trust Bar */
.trust-bar {
  background: #ffffff;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  width: 100%;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.trust-icon {
  width: 38px;
  height: 38px;
  background: rgba(245, 158, 11, 0.12);
  color: var(--primary-dark);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.trust-item h4 {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.2;
}

.trust-item p {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Section Common Styles */
.section {
  padding: 40px 0;
  width: 100%;
}

@media (min-width: 768px) {
  .section {
    padding: 70px 0;
  }
}

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

.section-subtitle {
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  display: block;
}

.section-title {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--secondary);
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  word-break: break-word;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }
}

.section-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
}

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

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

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

.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 158, 11, 0.4);
}

.service-icon-box {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 8px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.6;
  margin-bottom: 14px;
  flex-grow: 1;
}

.service-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary-dark);
}

.service-card-btn:hover {
  color: var(--secondary);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 100%;
}

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

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

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #ffffff;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  min-width: 0;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 8px 10px;
}

.gallery-overlay span {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.78rem;
}

/* Regions Section */
.regions-section {
  background: #ffffff;
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  width: 100%;
}

@media (min-width: 640px) {
  .regions-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

@media (min-width: 992px) {
  .regions-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}

.region-item {
  background: var(--bg-light);
  padding: 10px 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--secondary);
  font-size: 0.84rem;
  transition: var(--transition);
  min-width: 0;
  word-break: break-word;
}

.region-item:hover {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  color: var(--primary-dark);
}

.region-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.region-notice {
  margin-top: 20px;
  padding: 12px 14px;
  background: #fef3c7;
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  color: #92400e;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.5;
}

/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
}

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

.why-card {
  background: #ffffff;
  padding: 22px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--shadow-sm);
  min-width: 0;
}

.why-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.15);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.4rem;
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 8px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

/* Dedicated Contact Section */
.contact-section {
  background: #ffffff;
  border-top: 1px solid var(--border);
  width: 100%;
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: start;
  width: 100%;
}

@media (min-width: 992px) {
  .contact-layout-grid {
    grid-template-columns: 1fr 1.15fr;
    gap: 35px;
  }
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.contact-box {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  width: 100%;
}

@media (min-width: 480px) {
  .contact-box {
    padding: 22px;
  }
}

.contact-box h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 8px;
}

.contact-box p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.contact-btn-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.contact-btn-group .btn {
  width: 100%;
}

.contact-detail-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  min-width: 0;
  width: 100%;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.12);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-detail-card h4 {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
}

.contact-detail-card p, .contact-detail-card a {
  font-size: 0.94rem;
  color: var(--secondary);
  font-weight: 800;
  word-break: break-word;
}

.contact-form-container {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  box-shadow: var(--shadow-lg);
  width: 100%;
}

@media (min-width: 480px) {
  .contact-form-container {
    padding: 26px 22px;
  }
}

.contact-form-container h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 6px;
}

.contact-form-container p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

/* Forms & Controls */
.form-group {
  margin-bottom: 12px;
  width: 100%;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 4px;
  color: var(--secondary-light);
}

.form-control, .form-select, .form-textarea {
  width: 100%;
  max-width: 100%;
  padding: 10px 12px;
  font-size: 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  outline: none;
  transition: var(--transition);
  background: #ffffff;
  color: var(--text-main);
  font-family: inherit;
  box-sizing: border-box;
}

.form-control:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.form-textarea {
  resize: vertical;
  min-height: 75px;
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
  cursor: pointer;
  margin-top: 12px;
  margin-bottom: 16px;
  line-height: 1.45;
  width: 100%;
}

.form-checkbox-label input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.form-checkbox-label a {
  color: var(--primary-dark);
  text-decoration: underline;
  font-weight: 600;
}

/* Callout Banner */
.callout-banner {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: var(--radius-lg);
  padding: 28px 16px;
  color: #ffffff;
  text-align: center;
  box-shadow: var(--shadow-xl);
  margin-top: 30px;
  width: 100%;
}

@media (min-width: 768px) {
  .callout-banner {
    padding: 38px 24px;
    margin-top: 40px;
  }
}

.callout-banner h2 {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 10px;
  word-break: break-word;
}

@media (min-width: 768px) {
  .callout-banner h2 {
    font-size: 1.75rem;
    margin-bottom: 12px;
  }
}

.callout-banner p {
  font-size: 0.92rem;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto 18px;
}

.callout-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.callout-actions .btn {
  width: 100%;
}

@media (min-width: 480px) {
  .callout-actions {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
  }
  .callout-actions .btn {
    width: auto;
  }
}

/* Footer */
.site-footer {
  background: #090e17;
  color: #94a3b8;
  padding: 40px 0 20px;
  font-size: 0.88rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  margin-bottom: 30px;
  width: 100%;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1.1fr;
    gap: 35px;
    margin-bottom: 35px;
  }
}

.footer-brand p {
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 14px;
}

.footer-heading {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 14px;
}

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

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

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #cbd5e1;
  word-break: break-word;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: center;
  font-size: 0.82rem;
  width: 100%;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    text-align: left;
    padding-top: 24px;
    gap: 12px;
  }
}

.agency-credit a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.agency-credit a:hover {
  text-decoration: underline;
}

/* Mobile Sticky Action Bar */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  background: #ffffff;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
  padding: 8px 10px;
  gap: 8px;
  margin: 0;
}

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

.mobile-sticky-bar .btn {
  flex: 1 1 0;
  min-width: 0;
  padding: 10px 4px;
  font-size: 0.85rem;
  font-weight: 800;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  white-space: nowrap;
}

.mobile-sticky-bar .btn svg {
  flex-shrink: 0;
}

/* Modals */
.legal-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
}

.legal-modal.active {
  display: flex;
}

.modal-content {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 750px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  animation: modalFade 0.25s ease-out;
  box-sizing: border-box;
}

@keyframes modalFade {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.modal-header h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--secondary);
}

.modal-close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
}

.modal-body {
  padding: 18px 20px;
  overflow-y: auto;
  font-size: 0.88rem;
  color: var(--secondary-light);
  line-height: 1.7;
}

.modal-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 14px 0 6px;
}

.modal-body p {
  margin-bottom: 10px;
}

.modal-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 75px;
  left: 12px;
  right: 12px;
  max-width: 420px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  z-index: 990;
  display: none;
  font-size: 0.84rem;
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .cookie-banner {
    bottom: 20px;
    left: 20px;
    right: auto;
  }
}

.cookie-banner.active {
  display: block;
}

.cookie-content {
  margin-bottom: 10px;
  color: var(--text-main);
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}
