/* styles.css */

:root {
  --dark: #0a2b70;
  --primary: #1e4fb7;
  --soft: #d4ddf5;
  --accent: #ffcc4d;
  --text: #102046;
  --muted: #5e6c91;
  --bg: #f4f6fb;
  font-size: 16px;
}

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

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-shell {
  position: relative;
  background-image: url('assets/hero-airport.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.hero-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 204, 77, 0.08), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(30, 79, 183, 0.06), transparent 45%);
  pointer-events: none;
  z-index: -1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* =========================
   HEADER – FROSTED GLASS
   ========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.6rem 5vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(2rem, 6vw, 4rem);
  background: rgba(5, 20, 60, 0.26);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
}

.logo-icon {
  width: 150px;
  height: auto;
}

.logo-icon img {
  width: 100%;
  height: auto;
  display: block;
}

.site-nav {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.site-header .site-nav a,
.site-header .site-nav a:visited,
.site-header .site-nav a:hover,
.site-header .site-nav a:focus,
.site-header .site-nav a:active {
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 0.9rem;
}

.header-controls {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

#languageSelect {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 0.35rem 0.75rem;
  font-weight: 600;
  font-size: 0.85rem;
  background: rgba(3, 14, 43, 0.45);
  color: #ffffff;
  appearance: none;
  cursor: pointer;
}

#languageSelect:focus {
  outline: none;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.7);
}

/* Hamburger button */

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(3, 13, 46, 0.95);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.menu-toggle span + span {
  margin-top: 0;
}

.menu-toggle--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle--open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   HERO
   ========================= */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  padding: 3.5rem 5vw 2rem;
  color: white;
}

.hero-content {
  background: rgba(7, 26, 66, 0.85);
  padding: 1.8rem;
  border-radius: 24px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  max-width: 500px;
}

.hero h1 {
  font-family: 'Croissant One', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin: 0 0 1rem;
}

.tagline {
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.6rem;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
}

.hero-highlights li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  flex-shrink: 0;
}

.ghost {
  margin-top: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  background: transparent;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* =========================
   BOOKING CARD
   ========================= */

.booking-card {
  background: rgba(245, 247, 252, 0.92);
  color: var(--text);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 30px 60px rgba(10, 30, 80, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
}

.booking-card__header h2 {
  margin: 0.2rem 0 1.2rem;
}

/* -- Mode Toggles (Single vs Subscription) -- */
.booking-mode-toggles {
  display: flex;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 99px;
  padding: 4px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(15, 57, 139, 0.15);
}

.mode-btn {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.6rem 1rem;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.mode-btn.active {
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* -- Form Sections Logic -- */
.form-section {
  display: none;
  animation: fadeIn 0.3s ease;
}

.form-section.active {
  display: block;
}

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

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

/* Utility: span full row in grid */
.form-grid .grid-full {
  grid-column: 1 / -1;
}

/* Base booking fields: force 2 columns on desktop for clean alignment */
.form-grid--base {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 560px) {
  .form-grid--base {
    grid-template-columns: 1fr;
  }
}

/* Span columns */
.form-grid label.full-width {
  grid-column: 1 / -1;
}

label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select {
  padding: 0.75rem;
  border-radius: 14px;
  border: 1px solid rgba(15, 57, 139, 0.2);
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
}

.phone-input{
  display:flex;
  align-items:center;
  gap:0.6rem;
}

#phoneCountry{
  width: 7.25rem;
  flex: 0 0 auto;
}

#phoneNumber{
  flex: 1 1 auto;
  min-width: 0;
}

input:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(30, 79, 183, 0.25);
}

/* -- Terminal Date Time Inputs (Single Use) -- */
.terminal-datetime > span {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.terminal-datetime input[type="datetime-local"] {
  padding: 0.75rem;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 400;
  font-family: inherit;
  letter-spacing: normal;
  font-variant-numeric: tabular-nums;
}

/* Chrome/Safari datetime styling */
.terminal-datetime input[type="datetime-local"]::-webkit-datetime-edit,
.terminal-datetime input[type="datetime-local"]::-webkit-datetime-edit-text,
.terminal-datetime input[type="datetime-local"]::-webkit-datetime-edit-month-field,
.terminal-datetime input[type="datetime-local"]::-webkit-datetime-edit-day-field,
.terminal-datetime input[type="datetime-local"]::-webkit-datetime-edit-year-field,
.terminal-datetime input[type="datetime-local"]::-webkit-datetime-edit-hour-field,
.terminal-datetime input[type="datetime-local"]::-webkit-datetime-edit-minute-field {
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 400;
}

/* -- Vehicle Adder (Subscription Mode) -- */
.vehicle-adder-wrapper {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(30, 79, 183, 0.1);
}

.vehicle-adder-wrapper--inline {
  margin-top: 0.25rem;
  padding-top: 0;
  border-top: 0;
}

.adder-title {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.vehicle-adder-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.vehicle-adder-row select {
  flex: 2;
}

.vehicle-adder-row input {
  flex: 1;
  min-width: 60px;
}

.btn-add {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: none;
  background: var(--primary);
  color: white;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.btn-add:hover {
  background: var(--dark);
}

/* Added List */
.added-vehicles-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vehicle-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.6);
  padding: 0.6rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(15, 57, 139, 0.1);
  font-size: 0.9rem;
}

.vehicle-item span {
  font-weight: 500;
}

.btn-remove {
  background: transparent;
  border: none;
  color: #b3261e;
  font-weight: bold;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  font-size: 1.1rem;
}

.empty-list-msg {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  text-align: center;
  margin: 0.5rem 0;
}

/* -- Price Estimate -- */
.price-estimate-box {
  background: rgba(255, 204, 77, 0.15);
  border: 1px solid rgba(255, 204, 77, 0.4);
  padding: 1rem;
  border-radius: 12px;
  margin-top: 1.25rem;
  text-align: right;
  color: var(--dark);
}

.price-estimate-box span {
  font-size: 0.9rem;
  margin-right: 0.5rem;
}

.price-estimate-box strong {
  font-size: 1.2rem;
  color: var(--primary);
}

/* CTA */

.cta {
  border: none;
  background: linear-gradient(120deg, var(--dark), var(--primary));
  color: white;
  padding: 0.9rem 1.75rem;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1.25rem;
  width: 100%;
}

.cta:hover {
  filter: brightness(1.04);
}

.small {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.75rem;
  text-align: center;
}

/* SECTION HEADINGS */

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: baseline;
  padding: 0 5vw;
}

.section-heading--center {
  justify-content: center;
  text-align: center;
  margin-bottom: 3rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.section-lede {
  max-width: 700px;
  color: var(--muted);
  margin: 0.75rem auto 0;
}

/* =========================
   SERVICES
   ========================= */

.services {
  padding: 4rem 0 3rem;
  background: #f4f6fb;
}

.services__grid {
  padding: 2rem 5vw 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

/* Service card */

.service-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 1.4rem 1.4rem 1.6rem;
  box-shadow: 0 20px 40px rgba(15, 57, 139, 0.08);
  border: 1px solid rgba(15, 57, 139, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.22s ease-out, box-shadow 0.22s ease-out;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(15, 57, 139, 0.16);
}

/* Görsel alanı + hover zoom */
.service-visual {
  position: relative;
  border-radius: 18px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: linear-gradient(145deg, #f0f2fb, #d5dcf0);
  box-shadow: 0 16px 30px rgba(15, 57, 139, 0.16);
  height: 200px;
}

.service-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.28s ease-out;
}

.service-card:hover .service-visual img {
  transform: scale(1.03);
}

.service-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.service-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* LOCATION */

.location {
  padding: 4rem 0 4.5rem;
  background: #ffffff;
}

.map-wrapper {
  padding: 2rem 5vw 0;
  display: flex;
  justify-content: center;
}

.map-frame {
  width: min(1100px, 100%);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(15, 57, 139, 0.06);
  aspect-ratio: 21 / 9;
}

.map-frame iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  .map-frame {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 600px) {
  .map-frame {
    aspect-ratio: 4 / 3;
  }
}

/* CONTACT */

.contact {
  padding: 4rem 5vw 4.5rem;
  background: #f5f7fc;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  padding-top: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: white;
  border-radius: 20px;
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  box-shadow: 0 12px 30px rgba(15, 57, 139, 0.08);
  text-align: center;
}

.contact-card .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  display: block;
  margin-bottom: 0.5rem;
}

.contact-card a {
  color: var(--dark);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
}

/* =========================
   NEW RICH FOOTER
   ========================= */

.site-footer {
  background-color: #030f2b;
  color: #e0e0e0;
  position: relative;
  font-size: 0.95rem;
}

.footer-top-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  width: 100%;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 5vw;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

/* Footer Brand */
.brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  width: 140px;
  margin-bottom: 1.2rem;
}

.footer-desc {
  color: #aab2bd;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 300px;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a { 
  display: flex; 
  align-items: center; 
  justify-content: center;
  width: 36px; 
  height: 36px; 
  border-radius: 50%; 
  background: rgba(255,255,255,0.1); 
  color: white; 
  transition: 0.2s; 
  font-size: 0.8rem; 
  font-weight: bold;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--accent);
  color: var(--dark);
}

/* Footer Columns */
.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  padding-bottom: 0.3rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-col ul li a {
  color: #ccc;
  transition: 0.2s;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

/* Contact Specifics */
.contact-col li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #ccc;
}

.contact-col .icon {
  font-size: 1.2rem;
  color: var(--primary);
}

.highlight-link {
  color: white !important;
  font-weight: 600;
}

/* Footer Bottom Bar */
.footer-bottom {
  background-color: #01081a;
  padding: 1.5rem 5vw;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: #6c7a89;
  font-size: 0.85rem;
}

.payment-icons {
  display: flex;
  gap: 0.5rem;
}

.payment-icons span {
  background: rgba(255,255,255,0.1);
  padding: 4px 8px;
  border-radius: 4px;
  color: white;
  font-size: 0.75rem;
}

/* Footer Floating Buttons */
.footer-fab {
  position: fixed;
  bottom: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  transition: 0.3s;
}

.footer-fab:hover {
  transform: translateY(-3px);
  background: var(--accent);
  color: var(--dark);
}

.footer-fab svg {
  width: 24px;
  height: 24px;
}

.footer-fab--settings {
  left: 2rem;
}

.footer-fab--top {
  right: 2rem;
}

/* =========================
   COOKIE BANNER (BOTTOM BAR)
   ========================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
  z-index: 1000;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.cookie-banner.hidden {
  transform: translateY(100%);
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text-area {
  flex: 1;
  min-width: 300px;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-text-area p {
  margin: 0 0 0.5rem 0;
}

.cookie-link {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
}

.btn-cookie-outline {
  border: 1px solid var(--dark);
  background: transparent;
  color: var(--dark);
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s;
}

.btn-cookie-outline:hover {
  background: #f0f2f5;
}

.btn-cookie-solid {
  border: 1px solid var(--dark);
  background: var(--dark);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s;
}

.btn-cookie-solid:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* Expanded Settings Panel */
.cookie-settings-panel {
  background: #f9f9f9;
  padding: 2rem 5vw;
  border-top: 1px solid #eee;
  display: block;
  max-height: 60vh;
  overflow-y: auto;
}

.cookie-settings-panel.hidden {
  display: none;
}

.cookie-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-option {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #eee;
}

.option-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: var(--dark);
}

.cookie-option small {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}

.cookie-save-row {
  text-align: right;
  max-width: 1200px;
  margin: 1.5rem auto 0;
}

/* Switch Styles */
.switch-wrapper {
  position: relative;
  width: 40px;
  height: 22px;
}

.switch-wrapper input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.switch:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .switch {
  background-color: var(--primary);
}

input:disabled + .switch {
  background-color: #99aadd;
  opacity: 0.5;
  cursor: not-allowed;
}

input:checked + .switch:before {
  transform: translateX(18px);
}

/* =========================
   LEGAL PAGES
   ========================= */

.legal-page .site-header {
  background: #030d2e;
}

.legal-content {
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem 5vw;
}

.legal-content h1 {
  color: var(--dark);
  font-family: 'Croissant One', serif;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.legal-content h2 {
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.legal-content p, 
.legal-content li {
  color: #444;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    padding-top: 3.5rem;
  }
  .booking-card {
    padding: 1.6rem;
  }
}

/* Standardize field titles */
.booking-form label > span {
  font-size: 0.9rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  /* Mobile Nav */
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #030d2e;
    flex-direction: column;
    padding: 1.5rem;
    clip-path: circle(0% at 100% 0);
    transition: 0.4s ease-in-out;
  }

  .site-nav--open {
    clip-path: circle(150% at 100% 0);
  }

  .menu-toggle {
    display: flex;
  }

  /* Mobile Services Grid */
  .services__grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Mobile Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-col h4 {
    margin-left: auto;
    margin-right: auto;
  }

  .brand-col {
    align-items: center;
  }

  .social-links {
    justify-content: center;
  }

  .contact-col li {
    justify-content: center;
  }
  
  /* Mobile Cookie Banner */
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  
  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-actions button {
    width: 100%;
  }
  
  /* Raise Fab over banner */
  .footer-fab {
    bottom: 5.5rem;
  }
}

@media (max-width: 600px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
  
  .footer-fab {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  .logo-icon {
    width: 120px;
  }
  
  #languageSelect {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }
}

/* --- Abonelik Alanları (Yanyana Düzen) --- */
.sub-grid-row {
  display: grid;
  grid-template-columns: 1fr 1fr; /* İki eşit kolon */
  gap: 1rem; /* Arada boşluk bırak */
  margin-top: 0.5rem;
}

/* HTML'de 'hidden' varsa kesinlikle gizle */
#subInlineFields[hidden] {
  display: none !important;
}

/* Mobil görünüm (Telefonlar için alt alta indir) */
@media (max-width: 560px) {
  .sub-grid-row {
    grid-template-columns: 1fr; /* Mobilde tek kolon olsun */
  }
}

/* Abonelik Alanları (Yanyana Düzen) */
.sub-grid-row {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Yanyana iki eşit parça */
  gap: 1rem; /* Arada boşluk */
  margin-top: 0.5rem;
}

/* HTML'de 'hidden' varsa kesinlikle gizle */
#subInlineFields[hidden] {
  display: none !important;
}

/* Mobil görünüm (Telefonlarda alt alta indir) */
@media (max-width: 600px) {
  .sub-grid-row {
    grid-template-columns: 1fr; /* Tek kolon */
  }
}

/* Tarih ve Abonelik alanlarının üstüne boşluk ekler */
.form-section {
  margin-top: 1.5rem; /* Bu değeri artırıp azaltarak arayı açabilirsin (örn: 24px) */
}

/* --- MOBİL İÇİN DÜZELTİLMİŞ GÖRÜNÜM (MASAÜSTÜ GİBİ) --- */
@media (max-width: 768px) {
  
  /* 1. Arka Plan Resmi: Mobilde senin yüklediğin resmi kullan */
  .hero-shell {
    background-image: url('assets/hero-mobile.jpg') !important;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    /* Resmin üzerini hafifçe karart ki beyaz kutu patlamasın */
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.2); 
  }

  /* 2. Rezervasyon Formu: BEYAZ KUTU (Masaüstüyle aynı stil) */
  .booking-card {
    background: rgba(255, 255, 255, 0.96) !important; /* Beyaz zemin */
    color: #102046 !important; /* Yazılar koyu lacivert */
    border: 1px solid #ffffff !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25) !important; /* Gölge ekle */
    padding: 1.5rem !important;
    margin-top: 1rem;
    border-radius: 20px !important;
  }

  /* 3. Form içindeki yazıların rengini zorla koyu yap */
  .booking-card h2, 
  .booking-card label span,
  .booking-card .eyebrow,
  .booking-card .price-estimate-box {
    color: #102046 !important;
    text-shadow: none !important;
  }

  /* 4. Input ve Select kutuları: Net beyaz ve belirgin çerçeve */
  .booking-card input, 
  .booking-card select {
    background-color: #ffffff !important;
    border: 1px solid #c5cbe0 !important;
    color: #333333 !important;
  }

  /* 5. Üstteki "La Dama Parking" yazısı (Logo altı) okunması için koyu zemin */
  .hero-content {
    background: rgba(3, 13, 46, 0.90) !important; /* Koyu lacivert zemin */
    color: #ffffff !important; /* Beyaz yazı */
    backdrop-filter: blur(4px); /* Hafif buzlu cam */
    border: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 1.5rem;
  }
}