/* Reset & base */
*, *::before, *::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #1D1D1B;
  color: #f5f5f5;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #97774E;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover, a:focus {
  color: #b08c4f;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  color: #97774E;
  margin-top: 0;
  font-weight: 600;
}
p {
  margin-bottom: 1rem;
}
button, input[type="submit"] {
  cursor: pointer;
  background-color: #97774E;
  border: none;
  color: #1D1D1B;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}
button:hover, input[type="submit"]:hover,
button:focus, input[type="submit"]:focus {
  background-color: #b08c4f;
  outline: none;
}
input, select, textarea {
  width: 100%;
  padding: 0.5rem;
  border-radius: 4px;
  border: 1px solid #444;
  background-color: #2a2a27;
  color: #f5f5f5;
  font-size: 1rem;
  margin-top: 0.25rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}
input:focus, select:focus, textarea:focus {
  border-color: #97774E;
  outline: none;
  background-color: #3a3a36;
}
html {
  scroll-behavior: smooth;
}
/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem 3rem;
  background: transparent;
  border: none !important;
}
/* Sticky Nav */
nav {
  position: sticky;
  top: 0;
  background-color: #1D1D1B;
  border-bottom: 1px solid #444;
  z-index: 1000;
}
nav .nav-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
}
nav .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #97774E;
  letter-spacing: 2px;
  user-select: none;
}
nav .logo img {
  height: 40px;
  display: block;
}
nav ul.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
nav ul.nav-links li a {
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 0;
  display: inline-block;
}
nav ul.nav-links li a.active,
nav ul.nav-links li a:hover,
nav ul.nav-links li a:focus {
  color: #b08c4f;
  border-bottom: 2px solid #97774E;
  outline: none;
}
.language-switcher {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.language-switcher button.lang-btn {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0.2rem;
  cursor: pointer;
  transition: transform 0.15s;
  display: flex;
  align-items: center;
  box-shadow: none;
}
.language-switcher button.lang-btn.active,
.language-switcher button.lang-btn:hover {
  transform: scale(1.15);
  background: transparent;
}
.flag-icon {
  width: 28px;
  height: 20px;
  display: block;
  box-shadow: none;
}
/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  min-height: 450px;
  background: url('images/sideapollon.png') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(29,29,27,0.7);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  color: #f5f5f5;
}
.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #97774E;
}
.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  font-weight: 500;
}
.btn-primary {
  background-color: #97774E;
  color: #1D1D1B;
  font-weight: 700;
  padding: 0.85rem 2rem;
  font-size: 1.1rem;
  border-radius: 6px;
  border: none;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  box-shadow: 0 4px 8px rgba(151, 119, 78, 0.5);
  user-select: none;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #b08c4f;
  outline: none;
  box-shadow: 0 6px 12px rgba(176, 140, 79, 0.7);
}
/* Section Titles */
section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #97774E;
  letter-spacing: 1.5px;
}
/* Intro Text */
.intro-text {
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #ccc;
  text-align: center;
  line-height: 1.5;
}
/* Reservation Form */
form {
  background-color: #2a2a27;
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto 3rem;
  box-shadow: 0 0 15px rgba(151, 119, 78, 0.3);
}
form label {
  font-weight: 600;
  color: #97774E;
  display: block;
  margin-bottom: 0.25rem;
}
form textarea {
  resize: vertical;
  min-height: 80px;
}
/* Prices Table */
table {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 3rem;
  border-collapse: collapse;
  box-shadow: 0 0 15px rgba(151, 119, 78, 0.3);
  border-radius: 8px;
  overflow: hidden;
  background-color: #2a2a27;
}
thead {
  background-color: #97774E;
  color: #1D1D1B;
}
th, td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid #444;
  font-weight: 500;
}
tbody tr:hover {
  background-color: #3a3a36;
}
/* Vehicles Grid */
.vehicles-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  justify-content: center; /* Satırda ortala */
}

.vehicle-card {
  background: #23231f;
  border-radius: 12px;
  box-shadow: 0 2px 12px #0002;
  padding: 1.5rem;
  flex: 1 1 300px;
  min-width: 280px;
  max-width: 350px;
  color: #f5f5f5;
  text-align: center;      /* İçeriği ortala */
  display: flex;
  flex-direction: column;
  align-items: center;     /* Dikeyde ortala */
}

.vehicle-card img {
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.vehicle-content {
  padding: 1rem 1.25rem 1.5rem;
  flex-grow: 1;
  color: #ccc;
}
.vehicle-content h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #97774E;
}
/* Services List */
.services-list {
  max-width: 700px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
  color: #ccc;
  font-weight: 500;
  line-height: 1.5;
}
.services-list ul {
  list-style: none;
  padding-left: 0;
}
.services-list ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.services-list ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #97774E;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
}
/* Contact Page */
.contact-info {
  max-width: 700px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
  color: #ccc;
  font-weight: 500;
  line-height: 1.5;
}
.contact-info p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.contact-info a.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #97774E;
  color: #1D1D1B;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  user-select: none;
  transition: background-color 0.3s ease;
}
.contact-info a.phone-link:hover,
.contact-info a.phone-link:focus {
  background-color: #b08c4f;
  outline: none;
}
.contact-info a.phone-link svg {
  width: 20px;
  height: 20px;
  fill: #1D1D1B;
}
/* Google Maps */
.map-container {
  max-width: 700px;
  margin: 0 auto 3rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(151, 119, 78, 0.3);
  height: 350px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/* Language Switcher */
.language-switcher {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-left: 1rem;
}

.language-switcher button {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0.2rem;
  cursor: pointer;
  transition: transform 0.15s;
  display: flex;
  align-items: center;
  box-shadow: none;
}

.language-switcher button.active,
.language-switcher button:hover {
  transform: scale(1.15);
  background: transparent;
}

.flag-icon {
  width: 28px;
  height: 20px;
  display: block;
  box-shadow: none;
}
/* Services Cards */
.services-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.service-card {
  border: 1.5px solid #97774e33; /* Sitenizin temasıyla uyumlu hafif bir çizgi */
  background: #23231f;
  border-radius: 14px;
  box-shadow: 0 2px 16px #0003;
  color: #f5f5f5;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  max-width: 320px;
  min-width: 260px;
  flex: 1 1 260px;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px #97774e55;
  border-color: #97774E;
}

.service-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
  color: #97774E;
  text-shadow: 0 2px 8px #0005;
}

.service-card h3 {
  color: #97774E;
  margin-bottom: 0.7rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.service-card p {
  color: #ccc;
  font-size: 1.05rem;
  line-height: 1.5;
}
/* Services Section */
section#services {
  padding: 3rem 0;
  background-color: #1D1D1B;
}

section#services h2 {
  margin-bottom: 2rem;
  font-size: 2.5rem;
  text-align: center;
  color: #97774E;
  position: relative;
}

section#services h2::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, transparent, #97774E, transparent);
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.service-card {
  border: 1.5px solid #97774e33; /* Sitenizin temasıyla uyumlu hafif bir çizgi */
  background: #23231f;
  border-radius: 14px;
  box-shadow: 0 2px 16px #0003;
  color: #f5f5f5;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px #97774e55;
  border-color: #97774E;
}

.service-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
  color: #97774E;
  text-shadow: 0 2px 8px #0005;
}

.service-card h3 {
  color: #97774E;
  margin-bottom: 0.7rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.service-card p {
  color: #ccc;
  font-size: 1.05rem;
  line-height: 1.5;
}
/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2000;
  background: #008a329d;
  border-radius: 50%;
  box-shadow: 0 4px 16px #0004;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.whatsapp-float:hover {
  box-shadow: 0 8px 32px #25d36688;
  transform: scale(1.08);
}
.whatsapp-float img {
  width: 36px;
  height: 36px;
  display: block;
}
/* Reservation Wrapper */
.reservation-wrapper {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem auto;
  background: transparent;
}

.reservation-form {
  flex: 2;
  background: #23231f;
  padding: 2rem;
  border-radius: 12px;
  color: #f5f5f5;
  box-shadow: 0 2px 16px #0003;
}

.reservation-form h3 {
  color: #97774E;
  margin-top: 1.5rem;
  margin-bottom: 0.7rem;
  font-size: 1.5rem;
  text-align: center;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-row input,
.reservation-form textarea {
  flex: 1;
  padding: 0.7rem;
  border-radius: 6px;
  border: 1px solid #444;
  background: #1d1d1b;
  color: #f5f5f5;
}

.phone-group {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.phone-group .flag {
  background: #eee;
  color: #23231f;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 0.95rem;
}

.reservation-summary {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 16px #0002;
  color: #23231f;
  min-width: 320px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.vehicle-info {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.vehicle-info img {
  width: 90px;
  border-radius: 8px;
}

.transfer-info {
  font-size: 1rem;
  margin: 1rem 0;
  color: #444;
}

.total-amount {
  background: #d32f2f;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 1rem 0;
  font-size: 1.3rem;
  font-weight: bold;
}

.contact-box {
  background: #f5f5f5;
  color: #23231f;
  border-radius: 8px;
  text-align: center;
  padding: 1rem 0.5rem;
  font-size: 1.1rem;
}

.contact-box a {
  color: #d32f2f;
  font-weight: bold;
  text-decoration: none;
}
/* Responsive */
@media (max-width: 768px) {
  nav ul {
    gap: 1rem;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  form {
    padding: 1.5rem 1rem;
  }
  .vehicles-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

form,
table,
.service-card {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

section {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

#contact .container,
#about .container {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}