/* Color Palette */
:root {
  --antrasit-siyah: #282828; /* Darker and more distinct anthracite */
  --antrasit-siyah-light: #36454F; /* Lighter anthracite - suitable for text */
  --turuncu: #FF6600; /* Vibrant orange */
  --turuncu-hover: #E65C00; /* Darker shade of orange for hover */
  --beyaz: #FFFFFF;
  --açık-gri: #F5F5F5;
  --orta-gri: #DDDDDD;
  --koyu-gri-metin: #555555;
}

/* General Style Settings */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.6;
  color: var(--antrasit-siyah-light);
  background-color: var(--açık-gri);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header Styles (not in current HTML but left as default) */
header {
  background-color: var(--antrasit-siyah);
  color: var(--beyaz);
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 5px solid var(--turuncu);
}

header .logo img {
  height: 60px;
  margin-left: 20px;
}

header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

header nav ul li {
  margin-right: 25px;
}

header nav ul li a {
  color: var(--beyaz);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

header nav ul li a:hover {
  color: var(--turuncu);
}

/* Hero Section Styles */
#hero-kusadasi,
#hero-didim {
  background-size: cover;
  color: var(--beyaz);
  text-align: center;
  padding: 100px 20px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 3px solid var(--turuncu);
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  margin-bottom: 40px;
  backdrop-filter: blur(3px);
  box-sizing: border-box;
}

#hero-kusadasi {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('resimler/kusadasi-transfer-hero.jpg') no-repeat center center/cover;
}

#hero-didim {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('resimler/didim-transfer-hero.jpg') no-repeat center center/cover;
}

#hero-kusadasi h1,
#hero-didim h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--turuncu);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  max-width: 90%;
}

#hero-kusadasi p,
#hero-didim p {
  font-size: 1.3em;
  max-width: 800px;
  margin-bottom: 30px;
  color: var(--beyaz);
}

/* Price Display Section */
.fiyat-kutu-cerceve {
  max-width: 650px;
  margin-top: 30px;
  padding: 30px;
  background-color: var(--beyaz);
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--turuncu);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.fiyat-kutu-cerceve p {
  font-size: 1.2em;
  margin-bottom: 15px;
  color: var(--antrasit-siyah-light);
}

.fiyat-deger {
  font-size: 3.5em;
  font-weight: bold;
  color: var(--turuncu);
  display: inline-block;
  margin: 0 15px;
  line-height: 1;
}

.fiyat-veya {
  font-size: 1.2em;
  font-weight: normal;
  color: var(--koyu-gri-metin);
  vertical-align: super;
  margin: 0 5px;
}

.fiyat-not {
  font-size: 0.9em;
  color: var(--koyu-gri-metin);
  margin-top: 15px;
}

/* Button Styles */
.btn-iletisim-fiyat {
  display: inline-block;
  background-color: var(--turuncu);
  color: var(--antrasit-siyah);
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 25px;
}

.btn-iletisim-fiyat:hover {
  background-color: var(--turuncu-hover);
  color: var(--beyaz);
}

/* Section Titles */
h2 {
  font-size: 2.5em;
  color: var(--antrasit-siyah);
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--turuncu);
  padding-bottom: 10px;
  display: inline-block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

h3 {
  font-size: 1.8em;
  color: var(--antrasit-siyah-light);
  margin-top: 25px;
  margin-bottom: 15px;
}

/* Service Boxes */
.hizmet-kutuları {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 25px;
  padding: 20px;
}

.hizmet-kutu {
  background-color: var(--beyaz);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 280px;
  max-width: 32%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hizmet-kutu:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hizmet-kutu ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 15px;
}

.hizmet-kutu ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
  color: var(--koyu-gri-metin);
}

.hizmet-kutu ul li::before {
  content: '✅';
  position: absolute;
  left: 0;
  color: #28a745;
}

/* Vehicle Gallery - VIP Vito Section */
#filo {
  background-color: var(--orta-gri);
  padding: 60px 0;
  text-align: center;
}

.vito-galerisi {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 0 20px;
  margin-top: 40px;
}

.vito-arac-kutusu {
  background-color: var(--beyaz);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vito-arac-kutusu:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.vito-arac-kutusu img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.vito-arac-info {
  padding: 20px;
}

.vito-arac-info h3 {
  margin-top: 0;
  color: var(--antrasit-siyah);
}

.vito-arac-info p {
  font-size: 0.95em;
  color: var(--koyu-gri-metin);
  margin-bottom: 10px;
}

/* Why Us Section */
.avantajlar {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 25px;
  padding: 20px;
  text-align: center;
}

.avantaj-item {
  background-color: var(--beyaz);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  flex: 1;
  min-width: 280px;
  max-width: 23%;
  transition: transform 0.3s ease;
}

.avantaj-item:hover {
  transform: scale(1.03);
}

.avantaj-item h3 {
  color: var(--antrasit-siyah-light);
  margin-bottom: 10px;
}

/* Additional Styles from the prompt */
.passenger-counter {
  background-color: #fff;
  transition: all 0.3s ease;
}

.passenger-counter:hover {
  border-color: var(--bs-primary) !important;
}

.btn-outline-primary {
  min-width: 32px;
  height: 32px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}


.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Masaüstünde 4 kart */
  gap: 24px;
}

@media (max-width: 991px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr); /* Tablet için 2 kart */
  }
}

@media (max-width: 575px) {
  .card-grid {
    grid-template-columns: 1fr; /* Mobil için 1 kart */
  }
}

.card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}





.card h3 {
  font-size: 1.3rem;
  color: #004b8d;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

.vertical-card {
  background-color: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.vertical-card h4 {
  font-size: 1.2rem;
  color: #004b8d;
  margin-bottom: 10px;
}

.vertical-card p {
  font-size: 1rem;
  color: #333;
  margin: 0;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
  padding-top: 0;
  opacity: 0;
  pointer-events: none;
}

.vertical-card:hover p {
  max-height: 500px;
  padding-top: 12px;
  opacity: 1;
  pointer-events: auto;
}

.section-title {
  font-size: 1.8rem;
  color: #004b8d;
  margin-bottom: 20px;
  text-align: center;
}

h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  color: #2c3e50;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 0.5em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.02em;
}

.custom-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #f7f4f4;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, color 0.3s ease;
  letter-spacing: -0.5px;
}

.custom-title .highlight-orange {
  color: #EF4923;
}

.custom-title:hover {
  transform: scale(1.03);
  color: #000000;
}

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600&display=swap');

body {
  font-family: 'Quicksand', sans-serif;
  padding: 30px;
}

.transfer-metin {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  max-width: 800px;
  margin: auto;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #333;
}

.transfer-metin strong {
  color: #e85d04;
}

.slogan-container {
  text-align: center;
  padding: 20px;
  background-color: rgba(242, 236, 236, 0.3);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(208, 36, 36, 0.1);
  margin: 20px auto;
  max-width: 800px;
}

.slogan-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5em;
  font-weight: 700;
  color: #f6f4f4;
  letter-spacing: -1px;
  line-height: 1.2;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.transfer-banner {
  background-color: #fff7ed;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.transfer-banner h1 {
  font-size: 2.4em;
  color: #d97706;
  margin-bottom: 20px;
}

.transfer-banner p {
  font-size: 1.1em;
  color: #92400e;
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto;
}

.reservation-button {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background-color: #f97316;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.reservation-button:hover {
  background-color: #ea580c;
}

/* Responsive Design - Media Queries */
@media (max-width: 992px) {
  #hero-kusadasi h1,
  #hero-didim h1 {
    font-size: 2.8em;
  }

  h2 {
    font-size: 2em;
  }

  .hizmet-kutu,
  .avantaj-item {
    max-width: 48%;
  }

  .vito-galerisi {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .vito-arac-kutusu {
    max-width: unset;
  }

  .fiyat-kutu-cerceve {
    max-width: 90%;
    padding: 25px;
  }
}

@media (max-width: 768px) {
  h1 { /* Applies to general h1 */
    font-size: 2.5rem;
  }

  .container h1 { /* More specific selector if needed */
    font-size: 2rem !important;
  }

  .custom-title {
    font-size: 2.2rem;
  }

  .slogan-text {
    font-size: 1.8em;
  }

  header {
    flex-direction: column;
    text-align: center;
  }

  header .logo {
    margin-bottom: 15px;
    margin-left: 0;
  }

  header nav ul {
    flex-direction: column;
  }

  header nav ul li {
    margin: 5px 0;
  }

  #hero-kusadasi,
  #hero-didim {
    padding: 40px 15px;
    min-height: unset;
    height: auto;
    border-radius: 10px;
  }

  #hero-kusadasi h1,
  #hero-didim h1 {
    font-size: 1.8em;
    margin-bottom: 10px;
    max-width: 100%;
  }

  #hero-kusadasi p,
  #hero-didim p {
    font-size: 0.95em;
    margin-bottom: 15px;
    max-width: 100%;
  }

  h2 {
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  h3 {
    font-size: 1.3em;
  }

  .hizmet-kutu,
  .avantaj-item,
  .vito-arac-kutusu {
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
  }

  .vito-galerisi {
    grid-template-columns: 1fr;
  }

  .fiyat-kutu-cerceve {
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 15px;
    max-width: 100%;
  }

  .fiyat-kutu-cerceve p {
    font-size: 1em;
    margin-bottom: 8px;
  }

  .fiyat-deger {
    font-size: 2.2em;
    margin: 0 10px;
  }

  .fiyat-veya {
    font-size: 1em;
    display: block;
    margin-top: 5px;
    margin-bottom: 5px;
    vertical-align: unset;
  }

  .fiyat-not {
    font-size: 0.8em;
    margin-top: 10px;
  }

  .btn-iletisim-fiyat {
    padding: 10px 20px;
    margin-top: 15px;
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .slogan-text {
    font-size: 1.4em;
  }

  .slogan-container {
    padding: 15px;
  }

  #hero-kusadasi,
  #hero-didim {
    padding: 30px 10px;
  }

  #hero-kusadasi h1,
  #hero-didim h1 {
    font-size: 1.5em;
  }

  #hero-kusadasi p,
  #hero-didim p {
    font-size: 0.85em;
  }

  .fiyat-kutu-cerceve {
    padding: 10px 15px;
  }

  .fiyat-deger {
    font-size: 1.8em;
  }

  .fiyat-veya {
    font-size: 0.9em;
  }

  .fiyat-not {
    font-size: 0.7em;
  }

  .btn-iletisim-fiyat {
    padding: 8px 18px;
    font-size: 0.8em;
  }

  h2 {
    font-size: 1.4em;
  }

  h3 {
    font-size: 1.2em;
  }
.top-highlight-bar {
        background: linear-gradient(90deg, #d4fcd4, #aef2ae);
        color: #1b5e20;
        padding: 12px 24px;
        text-align: center;
        font-size: 1.15em;
        font-weight: 600;
        border-radius: 6px;
        margin-bottom: 20px;
    }

    .flexible-banner {
        background-color: #fff9c4;
        color: #444;
        padding: 18px 28px;
        text-align: center;
        font-size: 1.2em;
        font-weight: 600;
        position: relative;
        margin-bottom: 30px;
        border-radius: 10px;
        box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    }

    .flexible-banner button {
        position: absolute;
        top: 10px;
        right: 15px;
        background: none;
        border: none;
        font-size: 1.6em;
        cursor: pointer;
        color: #888;
        transition: color 0.3s;
    }

    .flexible-banner button:hover {
        color: #d32f2f;
    }

  .transfer-section {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    margin: 0 auto;
  }

  .transfer-section p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.6;
    text-align: left;
  }

  .transfer-section ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
  }

  .transfer-section li {
    background-color: #fff;
    padding: 12px 16px;
    margin-bottom: 12px;
    border-left: 5px solid #0073e6;
    border-radius: 6px;
    transition: background 0.3s ease;
    text-align: left; /* 🔧 METNİ SOLA HİZALADIK */
  }

  .transfer-section li:hover {
    background-color: #eef6ff;
  }

  .transfer-section a {
    text-decoration: none;
    color: #0073e6;
    font-weight: bold;
  }

  .transfer-section a:hover {
    text-decoration: underline;
  }


<style>

  /* Renk Paleti */
:root {
    --antrasit-siyah: #282828;
    --antrasit-siyah-light: #36454F;
    --turuncu: #FF6600;
    --turuncu-hover: #E65C00;
    --beyaz: #FFFFFF;
    --açık-gri: #F5F5F5;
    --orta-gri: #DDDDDD;
    --koyu-gri-metin: #555555;
}

/* Genel Stil Ayarları */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    color: var(--antrasit-siyah-light);
    background-color: var(--açık-gri);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Stilleri (Mevcut HTML'de yok ama varsayılan olarak bırakıyorum) */
header {
    background-color: var(--antrasit-siyah);
    color: var(--beyaz);
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 5px solid var(--turuncu);
}

header .logo img {
    height: 60px;
    margin-left: 20px;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin-right: 25px;
}

header nav ul li a {
    color: var(--beyaz);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: var(--turuncu);
}

/* Hero Section Stilleri - Çeşme'ye Özel */




















/* Fiyat gösterim bölümü */
.fiyat-kutu-cerceve {
    max-width: 650px;
    margin-top: 30px;
    padding: 30px; /* Büyük ekranlar için varsayılan dolgu */
    background-color: var(--beyaz);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--turuncu);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box; /* Padding ve border'ın genişliğe dahil olmasını sağlar */
}

.fiyat-kutu-cerceve p {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: var(--antrasit-siyah-light);
}

.fiyat-deger {
    font-size: 3.5em;
    font-weight: bold;
    color: var(--turuncu);
    display: inline-block;
    margin: 0 15px;
    line-height: 1;
}

.fiyat-veya {
    font-size: 1.2em;
    font-weight: normal;
    color: var(--koyu-gri-metin);
    vertical-align: super;
    margin: 0 5px;
}

.fiyat-not {
    font-size: 0.9em;
    color: var(--koyu-gri-metin);
    margin-top: 15px;
}

/* Buton Stilleri */
.btn-iletisim-fiyat {
    display: inline-block;
    background-color: var(--turuncu);
    color: var(--antrasit-siyah);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 25px;
}

.btn-iletisim-fiyat:hover {
    background-color: var(--turuncu-hover);
    color: var(--beyaz);
}

/* Section Başlıkları */
h2 {
    font-size: 2.5em;
    color: var(--antrasit-siyah);
    text-align: center;
    margin-top: 60px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--turuncu);
    padding-bottom: 10px;
    display: inline-block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

h3 {
    font-size: 1.8em;
    color: var(--antrasit-siyah-light);
    margin-top: 25px;
    margin-bottom: 15px;
}

/* Hizmet Kutuları */
.hizmet-kutuları {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 25px;
    padding: 20px;
}

.hizmet-kutu {
    background-color: var(--beyaz);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 280px;
    max-width: 32%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hizmet-kutu:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hizmet-kutu ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 15px;
}

.hizmet-kutu ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    color: var(--koyu-gri-metin);
}

.hizmet-kutu ul li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #28a745;
}

/* Araç Galerisi - VIP Vito Bölümü */
#filo {
    background-color: var(--orta-gri);
    padding: 60px 0;
    text-align: center;
}

.vito-galerisi {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 0 20px;
    margin-top: 40px;
}

.vito-arac-kutusu {
    background-color: var(--beyaz);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vito-arac-kutusu:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.vito-arac-kutusu img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.vito-arac-info {
    padding: 20px;
}

.vito-arac-info h3 {
    margin-top: 0;
    color: var(--antrasit-siyah);
}

.vito-arac-info p {
    font-size: 0.95em;
    color: var(--koyu-gri-metin);
    margin-bottom: 10px;
}

/* Neden Biz Bölümü */
.avantajlar {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 25px;
    padding: 20px;
    text-align: center;
}

.avantaj-item {
    background-color: var(--beyaz);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 280px;
    max-width: 23%;
    transition: transform 0.3s ease;
}

.avantaj-item:hover {
    transform: scale(1.03);
}

.avantaj-item h3 {
    color: var(--antrasit-siyah-light);
    margin-bottom: 10px;
}


/* Responsive Tasarım - Medya Sorguları */
@media (max-width: 992px) {
    #hero-cesme h1 { /* Gümüldür yerine Çeşme */
        font-size: 2.8em;
    }
    h2 {
        font-size: 2em;
    }
    .hizmet-kutu, .avantaj-item {
        max-width: 48%;
    }
    .vito-galerisi {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    .vito-arac-kutusu {
        max-width: unset;
    }
    .fiyat-kutu-cerceve {
        max-width: 90%;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    header .logo {
        margin-bottom: 15px;
        margin-left: 0;
    }
    header nav ul {
        flex-direction: column;
    }
    header nav ul li {
        margin: 5px 0;
    }
    #hero-cesme { /* Gümüldür yerine Çeşme */
        padding: 40px 15px;
        min-height: unset;
        height: auto;
        border-radius: 10px;
    }
    #hero-cesme h1 { /* Gümüldür yerine Çeşme */
        font-size: 1.7em;
        margin-bottom: 8px;
        max-width: 100%;
    }
    #hero-cesme p { /* Gümüldür yerine Çeşme */
        font-size: 0.95em;
        margin-bottom: 12px;
        max-width: 100%;
    }
    h2 {
        font-size: 1.6em;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    h3 {
        font-size: 1.3em;
    }
    .hizmet-kutu, .avantaj-item, .vito-arac-kutusu {
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
    .vito-galerisi {
        grid-template-columns: 1fr;
    }
    .fiyat-kutu-cerceve {
        padding: 10px 15px;
        border-radius: 8px;
        margin-top: 15px;
        max-width: 100%;
    }
    .fiyat-kutu-cerceve p {
        font-size: 0.9em;
        margin-bottom: 5px;
    }
    .fiyat-deger {
        font-size: 1.8em;
        margin: 0 8px;
    }
    .fiyat-veya {
        font-size: 0.9em;
        display: inline-block;
        vertical-align: middle;
        margin: 0 3px;
    }
    .fiyat-not {
        font-size: 0.75em;
        margin-top: 5px;
    }
    .btn-iletisim-fiyat {
        padding: 8px 18px;
        margin-top: 12px;
        font-size: 0.85em;
    }
}

@media (max-width: 480px) {
    /* Çok küçük telefonlar için ek düzenlemeler */
    #hero-cesme { /* Gümüldür yerine Çeşme */
        padding: 30px 10px;
    }
    #hero-cesme h1 { /* Gümüldür yerine Çeşme */
        font-size: 1.5em;
    }
    #hero-cesme p { /* Gümüldür yerine Çeşme */
        font-size: 0.85em;
    }
    .fiyat-kutu-cerceve {
        padding: 8px 10px;
    }
    .fiyat-deger {
        font-size: 1.6em;
    }
    .fiyat-veya {
        font-size: 0.8em;
    }
    .fiyat-not {
        font-size: 0.7em;
    }
}






/* Genel içerik kapsayıcısı */
.content-container {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Giriş bölümü stili */
.intro-section p {
    font-size: 1.5rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

/* Detay bölümü stili */
.detail-section p {
    font-size: 1rem;
    margin-bottom: 15px;
    text-align: justify;
}

/* Kalın metin vurgusu */
strong {
    color: #b30000; /* Vurgulu anahtar kelimeler için daha belirgin bir renk */
    font-weight: 600;
}


.transparent-box {
  background-color: rgba(255, 255, 255, 0.3); /* Beyazın %60 şeffaf versiyonu */
  padding: 20px;
  border-radius: 12px;
  backdrop-filter: blur(5px); /* Cam efekti gibi hoş bir bulanıklık */
  color: #f2e7e7; /* Kontrast için koyu yazı */
  max-width: 800px;
  margin: 0 auto;
}

</style>


  







}