/* CSS SIFIRLAMA (RESET) VE TEMEL AYARLAR */
:root {
  /* Renk Paleti - HSL ve Hex */
  --primary: #028090;       /* Okyanus Mavisi */
  --primary-rgb: 2, 128, 144;
  --secondary: #00a896;     /* Deniz Turkuazı */
  --accent: #e9c46a;        /* Kum Sarısı / Güneş Altını */
  --accent-dark: #f4a261;   /* Turuncu Vurgu */
  --dark: #122430;          /* Koyu Lacivert */
  --darker: #0b151d;        /* Neredeyse Siyah */
  --light: #f4f7f8;         /* Yumuşak Beyaz */
  --white: #ffffff;
  --gray: #6c757d;
  --gray-light: #e9ecef;
  
  /* Tipografi & Grid */
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-radius;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

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

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

/* BUTONLAR */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--secondary);
  box-shadow: 0 8px 20px rgba(2, 128, 144, 0.3);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25d366;
  color: var(--white);
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  border-color: #20ba5a;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

/* TOP BAR (Üst Bilgi Çubuğu) */
.top-bar {
  background-color: var(--darker);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  gap: 20px;
}

.top-info i {
  color: var(--accent);
}

.top-social a {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

.top-social a:hover {
  color: var(--accent);
}

/* HEADER (Navigasyon Alanı) */
.main-header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  padding: 15px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-bold {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1px;
  line-height: 1;
}

.logo-sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  gap: 25px;
}

.nav-link {
  font-weight: 500;
  color: var(--dark);
  position: relative;
  padding: 5px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--dark);
  border-radius: 3px;
  transition: var(--transition);
}

/* HERO SECTION */
.hero-section {
  position: relative;
  height: 85vh;
  min-height: 550px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
  transform: scale(1.02);
  transition: transform 10s ease;
}

.hero-section:hover .hero-bg {
  transform: scale(1.05);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding-bottom: 50px;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 15px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  animation: fadeInUp 1.2s ease-out;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  animation: fadeInUp 1.4s ease-out;
}

.features-badges {
  display: flex;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap;
  animation: fadeInUp 1.6s ease-out;
}

.features-badges .badge {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.features-badges .badge i {
  color: var(--accent);
}

/* HERO WAVE */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.hero-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}

.hero-wave .shape-fill {
  fill: var(--white);
}

/* SECTION GENEL STİLLERİ */
.section {
  padding: 90px 0;
}

.bg-light {
  background-color: var(--light);
}

.section-header {
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 10px;
}

.section-tag.center {
  text-align: center;
}

.color-accent {
  color: var(--accent) !important;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 15px;
}

.text-center {
  text-align: center;
}

.section-subtitle {
  color: var(--gray);
  font-size: 1.1rem;
}

/* GRID YAPISI */
.grid {
  display: grid;
  gap: 30px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* HAKKIMIZDA BÖLÜMÜ */
.hakkimizda-image-wrapper {
  position: relative;
  padding-right: 20px;
  padding-bottom: 20px;
}

.hakkimizda-image-wrapper img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.experience-card {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--secondary);
  color: var(--white);
  padding: 20px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
  text-align: center;
  animation: float 4s ease-in-out infinite;
}

.exp-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
}

.exp-text {
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 5px;
}

.about-text-content {
  font-size: 1.05rem;
  color: #4a5568;
  margin-bottom: 30px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-feature-item {
  display: flex;
  gap: 15px;
}

.feature-icon {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-top: 3px;
}

.about-feature-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.about-feature-item p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ROTALARIMIZ BÖLÜMÜ */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.route-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.route-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.route-image-wrapper {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.route-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.route-card:hover .route-image-wrapper img {
  transform: scale(1.08);
}

.route-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.route-content {
  padding: 25px;
}

.route-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.route-desc {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.route-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--gray-light);
  padding-top: 15px;
}

.route-action-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.route-action-link:hover {
  color: var(--secondary);
}

/* FOTO GALERİ BÖLÜMÜ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  height: 200px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: var(--transition);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(18, 36, 48, 0.9), rgba(18, 36, 48, 0.2));
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-caption {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  transform: translateY(10px);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.03);
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* YORUMLAR BÖLÜMÜ */
.yorumlar-section {
  position: relative;
  overflow: hidden;
}

.text-white {
  color: var(--white);
}

.text-gray {
  color: #a0aec0;
}

.reviews-slider-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
}

.reviews-slider {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  gap: 30px;
}

.review-card {
  min-width: 100%;
  background-color: var(--darker);
  border-radius: var(--border-radius);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.review-stars {
  color: var(--accent);
  font-size: 1.1rem;
}

.review-text {
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
}

.review-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  margin-top: 10px;
}

.author-name {
  font-weight: 700;
  font-family: var(--font-display);
}

.review-date {
  font-size: 0.85rem;
  color: var(--gray);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.slider-btn {
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

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

/* İLETİŞİM BÖLÜMÜ */
.iletisim-desc {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-icon {
  background-color: rgba(2, 128, 144, 0.1);
  color: var(--primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-text h3 {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 500;
  margin-bottom: 5px;
}

.contact-link {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
}

.contact-link:hover {
  color: var(--primary);
}

.map-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 450px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
}

/* FOOTER */
.bg-darker {
  background-color: var(--darker);
}

.main-footer {
  padding: 70px 0 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand h2 {
  margin-bottom: 15px;
}

.footer-brand p {
  color: #a0aec0;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  font-size: 1.1rem;
  color: var(--white);
}

.social-icons a:hover {
  background-color: var(--primary);
  color: var(--white);
}

.footer-links h3, .footer-contact h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-family: var(--font-display);
  position: relative;
  padding-bottom: 8px;
}

.footer-links h3::after, .footer-contact h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links ul {
  list-style: none;
}

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

.footer-links ul li a {
  color: #a0aec0;
  font-size: 0.95rem;
}

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

.footer-contact p {
  color: #a0aec0;
  font-size: 0.95rem;
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact p i {
  margin-top: 4px;
}

.text-accent {
  color: var(--accent) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 25px;
  font-size: 0.85rem;
  color: var(--gray);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.admin-login-link {
  color: var(--gray);
}

.admin-login-link:hover {
  color: var(--white);
}

/* YÜZEN İLETİŞİM / REZERVASYON BUTONU (FLOAT MENU) */
.floating-contact-menu {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.floating-trigger {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(2, 128, 144, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
}

.floating-trigger:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(2, 128, 144, 0.5);
}

.floating-trigger .close-icon {
  display: none;
}

/* Aktif (Menü Açık) Durumu */
.floating-contact-menu.open .floating-trigger {
  background: var(--dark);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.floating-contact-menu.open .floating-trigger .main-icon {
  display: none;
}

.floating-contact-menu.open .floating-trigger .close-icon {
  display: block;
}

/* Animasyonlu Halka (Pulse) */
.pulse-ring {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--secondary);
  animation: pulse 2s infinite;
  z-index: -1;
}

/* Seçenekler Paneli */
.floating-options {
  position: absolute;
  bottom: 80px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  pointer-events: none;
}

.floating-contact-menu.open .floating-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border-radius: 50px;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}

.floating-option:hover {
  transform: scale(1.05);
}

.wa-option {
  background-color: #25d366;
}

.wa-option:hover {
  background-color: #20ba5a;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.call-option {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.call-option:hover {
  box-shadow: 0 8px 20px rgba(2, 128, 144, 0.4);
}

.floating-option i {
  font-size: 1.25rem;
}

.option-text {
  font-size: 0.85rem;
  border-radius: 4px;
}

/* FOTO GALERİ LIGHTBOX MODAL */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(11, 21, 29, 0.95);
  backdrop-filter: blur(8px);
}

.lightbox-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 800px;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  animation: zoom 0.3s ease;
}

.lightbox-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 800px;
  text-align: center;
  color: var(--white);
  padding: 15px 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.lightbox-close {
  position: absolute;
  top: 40px;
  right: 50px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: var(--accent);
}

/* YÜKLENİYOR İKONU */
.loading {
  text-align: center;
  font-size: 1.1rem;
  color: var(--gray);
  padding: 40px;
  width: 100%;
}

/* ANİMASYONLAR */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
    box-shadow: 0 0 0 0 rgba(0, 168, 150, 0.5);
  }
  70% {
    transform: scale(1.1);
    opacity: 0;
    box-shadow: 0 0 0 15px rgba(0, 168, 150, 0);
  }
  100% {
    transform: scale(0.95);
    opacity: 0;
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

/* RESPONSIVE TASARIM (MOBİL UYUMLULUK) */
@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  .grid-2 {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .hakkimizda-image-wrapper {
    padding-right: 0;
    padding-bottom: 0;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .top-info {
    display: none; /* Mobilde sadece iletişim bilgileri gizlenir */
  }
  .top-bar-content {
    justify-content: center; /* Sadece sosyal/dil seçenekleri ortalanır */
  }
  
  .main-header {
    padding: 10px 0;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 65px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 65px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    gap: 20px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
  }
  
  .nav-menu.open {
    left: 0;
  }
  
  .nav-cta-btn {
    display: none; /* Header araması mobilde kaybolur, yerine floating butonu gelir */
  }
  
  .hero-section {
    height: auto;
    padding: 120px 0 80px 0;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 1.05rem;
  }
  
  .floating-contact-menu {
    bottom: 20px;
    right: 20px;
  }
  
  .floating-trigger {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }
  
  .lightbox-content {
    width: 95%;
  }
  
  .lightbox-close {
    top: 20px;
    right: 30px;
  }
}

/* Dinamik Harita Düzenlemesi */
#dynamic-map {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius);
  z-index: 1; /* Diğer elementlerin altında kalmaması için */
}
