/* ====== Eğitim Taksi - Modern Taxi Website Styles ====== */

/* Root Variables */
:root {
  --primary-color: #ffd700;
  --secondary-color: #1a1a1a;
  --accent-color: #ff6b35;
  --text-dark: #2c3e50;
  --text-light: #ecf0f1;
  --bg-light: #f8f9fa;
  --bg-dark: #1a1a1a;
  --gradient-primary: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
  --transition: all 0.3s ease;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: #fff;
}

header {
  margin: 0;
  padding: 0;
}

/* ====== Hero Section ====== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
              url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=1920') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(26,26,26,0.8));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  color: var(--primary-color);
}

.hero-subtitle {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 300;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: 15px 40px;
  font-size: 1.1rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  font-size: 2rem;
  color: var(--primary-color);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-20px); }
  60% { transform: translateX(-50%) translateY(-10px); }
}

/* Animations */
.animate-fade-in {
  animation: fadeIn 1s ease-in;
}

.animate-fade-in-delay {
  animation: fadeIn 1s ease-in 0.3s backwards;
}

.animate-fade-in-delay-2 {
  animation: fadeIn 1s ease-in 0.6s backwards;
}

.animate-fade-in-delay-3 {
  animation: fadeIn 1s ease-in 0.9s backwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ====== Features Section ====== */
.features-section {
    padding: 40px 0 80px 0;
    background-color: var(--bg-light);
}

.feature-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

.feature-content h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

    .feature-list li {
        padding: 8px 0;
        color: #555;
        font-size: 0.9rem;
    }

        .feature-list li i {
            color: #28a745;
            margin-right: 10px;
        }

.feature-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 15px;
    flex-grow: 1;
}

/* Responsive: 4 columns on larger screens, stack on smaller */
@media (min-width: 992px) {
    .features-section .row {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .features-section .col-md-3 {
        flex: 0 0 24%;
        max-width: 24%;
    }
}



/* ====== Section Headers ====== */
.section-header {
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
}

/* ====== Services Section ====== */
.services-section {
  padding: 80px 0;
  background: #f8f9fa; /* Light gray background to make it visible */
}

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-card .service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--secondary-color);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.service-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
}

.service-card .service-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.service-card .service-features li {
  padding: 8px 0;
  color: #555;
  font-size: 0.95rem;
}

.service-card .service-features li i {
  color: #28a745;
  margin-right: 10px;
}

.service-card .btn {
  margin-top: auto;
}

/* ====== Services Preview ====== */
.services-preview {
  padding: 80px 0;
  background: white;
}

.service-preview-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  background: white;
  height: 100%;
}

.service-preview-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-image {
  height: 250px;
  background-size: cover;
  background-position: center;
}

.service-content {
  padding: 30px;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.service-content h3 i {
  color: var(--accent-color);
  margin-right: 10px;
}

.service-content p {
  color: #666;
  margin-bottom: 20px;
}

/* Responsive: 3 columns on larger screens, stack on smaller */
@media (min-width: 768px) {
  .services-preview .row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .services-preview .col-md-4 {
    flex: 0 0 32%;
    max-width: 32%;
  }
}

/* ====== Stats Section ====== */
.stats-section {
  padding: 40px 0;
  background: var(--gradient-dark);
  color: white;
}

.stat-item {
  padding: 15px;
  text-align: center;
}

.stat-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-light);
  opacity: 0.9;
}

/* ====== Quick Booking Section ====== */
.quick-booking-section {
  padding: 35px 0;
  background: var(--gradient-primary);
}

.quick-booking-card {
  text-align: center;
  color: var(--secondary-color);
}

.quick-booking-card h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.quick-booking-card p {
  font-size: 1rem;
  margin-bottom: 20px;
}

/* ====== Booking Pages ====== */
.booking-form-section { padding: 80px 0; background: var(--bg-light); }
.booking-form-card { background: white; padding: 40px; border-radius: 15px; box-shadow: var(--shadow-md); }
.booking-form-header { text-align: center; margin-bottom: 40px; }
.booking-form-header i { font-size: 3rem; color: var(--primary-color); }
.booking-form-header h2 { margin: 20px 0 10px; }
.form-actions { margin-top: 30px; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.booking-info-box { background: #e3f2fd; padding: 25px; border-radius: 10px; margin-top: 30px; border-left: 4px solid #2196f3; }
.booking-info-box h4 { color: #1976d2; margin-bottom: 15px; }
.booking-info-box ul { margin: 0; padding-left: 20px; }
.booking-info-box li { margin-bottom: 10px; color: #555; }
.booking-sidebar { position: sticky; top: 20px; }
.sidebar-card { background: white; padding: 30px; border-radius: 15px; box-shadow: var(--shadow-md); margin-bottom: 20px; }
.sidebar-card h3 { font-size: 1.3rem; margin-bottom: 20px; color: var(--text-dark); }
.contact-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #eee; }
.contact-item:last-child { border-bottom: none; }
.contact-item i { font-size: 1.5rem; color: var(--accent-color); }
.contact-item strong { display: block; margin-bottom: 5px; }
.contact-item a { color: var(--text-dark); text-decoration: none; }
.contact-item a:hover { color: var(--accent-color); }
.why-list { list-style: none; padding: 0; }
.why-list li { padding: 8px 0; }
.why-list li i { color: #28a745; margin-right: 10px; }

/* Quick Booking Section'daki Siyah Hemen Ara Butonu */
.call-button-dark {
  display: inline-block !important;
  padding: 15px 40px !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  background: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.call-button-dark:hover {
  background: #1a1a1a !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5) !important;
}

.call-button-dark i {
  color: inherit !important;
}

/* ====== Müşteri Yorumları Bölümü ====== */
.testimonials-section {
  padding: 50px 0; /* Üst-alt boşluk */
  background: var(--bg-light); /* Açık arka plan rengi */
  overflow: hidden; /* Taşan içeriği gizle */
}

.testimonials-scroll-container {
  overflow-x: scroll; /* Yatay kaydırma aktif */
  overflow-y: hidden; /* Dikey kaydırma kapalı */
  margin-top: 30px; /* Üstten boşluk */
  padding: 10px 0; /* Üst-alt iç boşluk */
  cursor: grab; /* El ikonu (açık) */
  scrollbar-width: none; /* Firefox - scroll bar'i gizle */
  -ms-overflow-style: none; /* IE ve Edge - scroll bar'i gizle */
}

.testimonials-scroll-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera - scroll bar'i gizle */
}

.testimonials-scroll-container:active {
  cursor: grabbing; /* Tıklıyken el ikonu (kapalı) */
}

.testimonials-scroll-content {
  display: flex; /* Kartları yan yana diz */
  gap: 20px; /* Kartlar arası boşluk */
  padding: 0 10px; /* Sağ-sol iç boşluk */
  /* Not: CSS animasyon yok, JavaScript kullanıyoruz */
}

.testimonial-card {
  background: white; /* Beyaz arka plan */
  padding: 15px; /* İç boşluk */
  border-radius: 10px; /* Köşeleri yuvarla */
  box-shadow: var(--shadow-md); /* Gölge efekti */
  min-width: 280px; /* Minimum genişlik */
  max-width: 280px; /* Maksimum genişlik */
  transition: var(--transition); /* Geçiş animasyonu */
  flex-shrink: 0; /* Küçülmeyi engelle */
}

.testimonial-card:hover {
  transform: translateY(-5px); /* Hover'da 5px yukarı kaldır */
  box-shadow: var(--shadow-lg); /* Daha büyük gölge */
}

.testimonial-stars {
  color: var(--primary-color); /* Sarı renk (yıldızlar) */
  font-size: 0.9rem; /* Yazı boyutu */
  margin-bottom: 8px; /* Alttan boşluk */
}

.testimonial-text {
  font-style: italic; /* İtalik yazı */
  color: #666; /* Gri renk */
  margin-bottom: 12px; /* Alttan boşluk */
  line-height: 1.5; /* Satır yüksekliği */
  font-size: 0.85rem; /* Küçük yazı boyutu */
}

.testimonial-author strong {
  color: var(--text-dark); /* Koyu metin rengi */
  font-size: 0.95rem; /* Yazı boyutu */
}

.testimonial-author span {
  display: block; /* Alt satıra geç */
  color: #999; /* Açık gri renk */
  font-size: 0.8rem; /* Daha küçük yazı */
}

/* ====== Page Header ====== */
.page-header {
  background: var(--gradient-dark);
  color: white;
  padding: 120px 0 80px 0;
  text-align: center;
  display: flex;
  align-items: flex-end;
  min-height: 350px;
}

.page-header .container {
  padding-bottom: 40px;
}

.page-header h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1.3rem;
  opacity: 0.9;
}

/* ====== Buttons ====== */
.btn-primary {
  background: var(--gradient-primary);
  border: none;
  color: var(--secondary-color);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, #ffaa00 0%, #ffd700 100%);
  color: var(--secondary-color);
}

.btn-outline-light {
  border: 2px solid white;
  color: white;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-outline-light:hover {
  background: white;
  color: var(--secondary-color);
  transform: translateY(-2px);
}

/* ====== Forms ====== */
.form-control, .form-select {
  padding: 12px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  transition: var(--transition);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

.form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-label i {
  color: var(--accent-color);
  margin-right: 5px;
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .hero-subtitle { font-size: 1.3rem; }
  .hero-description { font-size: 1rem; }
  .section-title { font-size: 2rem; }
  .stat-number { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }
}

/* Additional spacing and utilities */
.g-4 { gap: 1.5rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.text-center { text-align: center; }

/* ====== Service Detail Pages ====== */
.service-detail-section { padding: 80px 0; }
.service-detail-card { margin-bottom: 60px; background: white; border-radius: 15px; padding: 40px; box-shadow: var(--shadow-md); }
.service-detail-image { height: 400px; background-size: cover; background-position: center; border-radius: 15px; }
.service-detail-content { padding: 20px; }
.service-icon-large { width: 100px; height: 100px; background: var(--gradient-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--secondary-color); margin-bottom: 20px; }
.service-features { list-style: none; padding: 0; margin: 30px 0; }
.service-features li { padding: 10px 0; font-size: 1.1rem; }
.service-features li i { color: #28a745; margin-right: 10px; }
.services-cta { padding: 80px 0; background: var(--gradient-dark); color: white; text-align: center; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

/* ====== Confirmation Page ====== */
.confirmation-section { padding: 100px 0; background: var(--bg-light); }
.confirmation-card { background: white; padding: 60px 40px; border-radius: 15px; box-shadow: var(--shadow-md); text-align: center; }
.confirmation-icon { font-size: 5rem; color: #28a745; margin-bottom: 20px; }
.confirmation-card h1 { color: var(--text-dark); margin-bottom: 15px; }
.confirmation-details { margin: 30px 0; padding: 30px; background: var(--bg-light); border-radius: 10px; }
.confirmation-details p { margin-bottom: 15px; font-size: 1.1rem; }
.confirmation-actions { margin-top: 30px; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.contact-help { margin-top: 30px; padding-top: 30px; border-top: 2px solid #eee; }
.help-link { color: var(--accent-color); font-size: 1.3rem; font-weight: 600; text-decoration: none; }

/* ====== About Page ====== */
.about-story-section { padding: 80px 0 40px 0; }
.about-image { margin-bottom: 30px; }
.about-content { padding: 20px; }
.mission-vision-section { padding: 80px 0; background: var(--bg-light); }
.mission-vision-section .row { display: flex !important; flex-wrap: wrap !important; }
.mission-vision-section .col-md-6 { flex: 0 0 50% !important; max-width: 50% !important; }
@media (max-width: 767px) {
  .mission-vision-section .col-md-6 { flex: 0 0 100% !important; max-width: 100% !important; }
}
.mv-card { background: white; padding: 40px; border-radius: 15px; box-shadow: var(--shadow-md); height: 100%; text-align: center; }
.mv-icon { width: 80px; height: 80px; background: var(--gradient-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; margin: 0 auto 20px; color: var(--secondary-color); }
.values-section { padding: 80px 0; }
.values-section .row { display: flex; flex-wrap: nowrap; justify-content: space-between; }
.values-section .col-md-3 { flex: 0 0 24%; max-width: 24%; }
@media (max-width: 991px) {
  .values-section .row { flex-wrap: wrap; }
  .values-section .col-md-3 { flex: 0 0 48%; max-width: 48%; margin-bottom: 20px; }
}
@media (max-width: 576px) {
  .values-section .col-md-3 { flex: 0 0 100%; max-width: 100%; }
}
.value-card { 
  text-align: center; 
  padding: 30px 20px; 
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}
.value-card i { 
  font-size: 3rem; 
  color: var(--accent-color); 
  margin-bottom: 15px; 
  display: block;
}
.value-card h4 { 
  margin-bottom: 10px; 
  font-size: 1.1rem;
  font-weight: 600;
}
.value-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}
.team-section { padding: 80px 0; background: var(--bg-light); }
.team-card { background: white; border-radius: 15px; overflow: hidden; box-shadow: var(--shadow-md); transition: var(--transition); }
.team-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.team-image { height: 300px; overflow: hidden; }
.team-image img { width: 100%; height: 100%; object-fit: cover; }
.team-info { padding: 25px; text-align: center; }
.team-role { color: var(--accent-color); font-weight: 600; margin-bottom: 10px; }
.about-cta { padding: 50px 0; background: var(--gradient-primary); text-align: center; color: var(--secondary-color); }

/* ====== Contact Page ====== */
.contact-section { padding: 80px 0; background: var(--bg-light); }
.contact-form-card { background: white; padding: 40px; border-radius: 15px; box-shadow: var(--shadow-md); }
.contact-form-header { text-align: center; margin-bottom: 40px; }
.contact-form-header i { font-size: 3rem; color: var(--primary-color); }
.contact-form-header h2 { margin: 20px 0 10px; }
.form-actions { margin-top: 30px; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.map-wrapper { height: 100%; }
.map-wrapper h3 { font-size: 1.5rem; margin-bottom: 20px; }
.map-wrapper .map-container iframe { height: 400px; }
@media (max-width: 991px) {
  .contact-section .col-lg-7,
  .contact-section .col-lg-5 { flex: 0 0 100%; max-width: 100%; }
}
.map-section { padding: 80px 0; }
.map-container { border-radius: 15px; overflow: hidden; box-shadow: var(--shadow-md); }
.contact-cta { padding: 80px 0; background: var(--gradient-dark); color: white; text-align: center; }

/* ====== Footer / Alt Bölüm ====== */
/* Footer ana container - Koyu arka plan */
.footer-section { 
  background: var(--bg-dark); /* Koyu siyah arka plan */
  color: var(--text-light); /* Açık yazı rengi */
}

/* Footer üst kısım - Linklerin bulunduğu alan */
.footer-top { 
  padding: 60px 0 30px; /* Üst-alt boşluk */
}

/* Footer kolonlarını her zaman yan yana tut - RESPONSIVE FIX */
.footer-top .row {
  display: flex; /* Flex layout kullan */
  flex-wrap: nowrap; /* Alt satıra geçme, hep yan yana kal */
  gap: 20px; /* Kolonlar arası boşluk */
}

/* Her kolon eşit genişlikte olsun */
.footer-top .col-lg-3 {
  flex: 1; /* Eşit genişlik paylaş */
  min-width: 0; /* Taşmayı engelle */
}

/* Tablet ve küçük ekranlarda da yan yana kalsın */
@media (max-width: 991px) {
  .footer-top .row {
    flex-wrap: wrap; /* Çok küçük ekranlarda alt satıra geçebilir */
  }
  
  .footer-top .col-lg-3 {
    flex: 0 0 50%; /* Tablette 2'şer yan yana */
    max-width: 50%;
  }
}

/* Mobil ekranlarda alt alta geç */
@media (max-width: 576px) {
  .footer-top .row {
    flex-wrap: wrap; /* Alt satıra geç */
  }
  
  .footer-top .col-lg-3 {
    flex: 0 0 100%; /* Mobilde tam genişlik */
    max-width: 100%;
  }
}

/* Footer widget başlıkları */
.footer-widget h3 { 
  color: var(--primary-color); /* Sarı renk - Ana başlık */
  font-size: 1.5rem; /* Büyük yazı boyutu */
  margin-bottom: 20px; /* Alttan boşluk */
}

.footer-widget h4 { 
  color: white; /* Beyaz renk - Alt başlıklar */
  font-size: 1.2rem; /* Orta yazı boyutu */
  margin-bottom: 20px; /* Alttan boşluk */
}

/* Footer paragraf metinleri */
.footer-widget p { 
  color: #bbb; /* Açık gri renk */
  line-height: 1.8; /* Satır aralığı */
}

/* Sosyal medya ikonları container'i */
.footer-social { 
  display: flex; /* İkonları yan yana diz */
  gap: 10px; /* İkonlar arası boşluk */
  margin-top: 20px; /* Üstten boşluk */
}

/* Sosyal medya ikon butonları */
.footer-social a { 
  width: 40px; /* Genişlik */
  height: 40px; /* Yükseklik */
  border-radius: 50%; /* Yuvarlak yap */
  background: rgba(255,215,0,0.1); /* Şeffaf sarı arka plan */
  color: var(--primary-color); /* Sarı ikon rengi */
  display: flex; /* Ortala */
  align-items: center; /* Dikey ortala */
  justify-content: center; /* Yatay ortala */
  transition: var(--transition); /* Geçiş animasyonu */
}

/* Sosyal medya ikon hover efekti */
.footer-social a:hover { 
  background: var(--primary-color); /* Sarı arka plan */
  color: var(--secondary-color); /* Siyah ikon */
  transform: translateY(-3px); /* 3px yukarı kaldır */
}

/* Footer link listeleri */
.footer-links { 
  list-style: none; /* Nokta işaretlerini kaldır */
  padding: 0; /* İç boşluk yok */
}

.footer-links li { 
  margin-bottom: 10px; /* Her link arası boşluk */
}

/* Footer linkleri */
.footer-links a { 
  color: #bbb; /* Açık gri renk */
  text-decoration: none; /* Alt çizgi yok */
  transition: var(--transition); /* Geçiş animasyonu */
}

/* Footer link hover efekti */
.footer-links a:hover { 
  color: var(--primary-color); /* Sarıya dönüş */
  padding-left: 5px; /* Sağa kayma efekti */
}

/* İletişim bilgileri listesi */
.footer-contact { 
  list-style: none; /* Nokta işaretlerini kaldır */
  padding: 0; /* İç boşluk yok */
}

.footer-contact li { 
  margin-bottom: 15px; /* Her bilgi arası boşluk */
  display: flex; /* Yan yana diz */
  gap: 10px; /* İkon ve metin arası boşluk */
  align-items: flex-start; /* Üstten hizala */
  color: #bbb; /* Açık gri renk */
}

/* İletişim ikonları */
.footer-contact i { 
  color: var(--primary-color); /* Sarı renk */
  margin-top: 3px; /* Üsten hafif boşluk */
}

/* İletişim linkleri */
.footer-contact a { 
  color: #bbb; /* Açık gri renk */
  text-decoration: none; /* Alt çizgi yok */
}

.footer-contact a:hover { 
  color: var(--primary-color); /* Hover'da sarı */
}

/* Footer alt kısım - Telif hakkı alanı */
.footer-bottom { 
  background: rgba(0,0,0,0.3); /* Şeffaf siyah arka plan */
  padding: 20px 0; /* Üst-alt boşluk */
  border-top: 1px solid rgba(255,255,255,0.1); /* Üst kenarda ince beyaz çizgi */
}

.footer-bottom p { 
  margin: 0; /* Margin yok */
  color: #bbb; /* Açık gri renk */
}

/* ====== Navigation ====== */
.navbar-dark { 
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%) !important; 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1030;
  transition: var(--transition);
  border-radius: 50px;
  max-width: 1200px;
  width: calc(100% - 40px);
  padding: 15px 30px !important;
}

.navbar-brand { 
  font-size: 1.5rem; 
  font-weight: 700; 
  color: var(--primary-color) !important;
  font-family: 'Segoe UI', sans-serif;
  flex: 1;
  text-align: center;
  margin: 0 20px;
}

.navbar-brand i { 
  color: var(--primary-color);
  margin-right: 8px; 
}

.navbar-toggler {
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.navbar-toggler-icon {
  filter: brightness(0) invert(0);
}

.navbar-nav .nav-link { 
  color: rgba(255,255,255,0.85) !important; 
  padding: 10px 15px; 
  margin: 0 5px; 
  transition: var(--transition);
  font-weight: 500;
}

.navbar-nav .nav-link:hover { 
  color: var(--primary-color) !important; 
  font-weight: 600;
}

.navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
  font-weight: 600;
}

.navbar-nav .nav-link i { 
  margin-right: 5px; 
}

.navbar-nav .btn-primary { 
  padding: 8px 45px;
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  border: none;
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 30px;
  transition: var(--transition);
}

.navbar-nav .btn-primary:hover {
  background: linear-gradient(135deg, #ffaa00, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
  color: var(--secondary-color);
}

/* Quick Booking Section'daki Siyah Hemen Ara Butonu */
.call-button-dark {
  display: inline-block !important;
  padding: 15px 40px !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  background: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.call-button-dark:hover {
  background: #1a1a1a !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5) !important;
}

.call-button-dark i {
  color: inherit !important;
}

/* ====== Back to Top Button ====== */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: var(--gradient-primary); color: var(--secondary-color); border: none; border-radius: 50%; font-size: 1.3rem; cursor: pointer; display: none; z-index: 1000; box-shadow: var(--shadow-lg); transition: var(--transition); }
.back-to-top:hover { transform: translateY(-5px); }
.back-to-top.show { display: block; animation: fadeInUp 0.3s; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ====== İletişim ve Harita Bölümü ====== */
.contact-map-section {
  background-color: var(--bg-light); /* Açık gri arka plan */
  padding: 80px 0; /* Üst ve alt boşluk */
}

/* İletişim formu wrapper */
.contact-form-wrapper {
  background: white; /* Beyaz arka plan */
  padding: 40px; /* İç boşluk */
  border-radius: 15px; /* Yuvarlatılmış köşeler */
  box-shadow: var(--shadow-md); /* Gölge efekti */
  height: 100%; /* Tam yükseklik */
}

/* Form elemanları */
.contact-form-wrapper .form-label {
  font-weight: 600; /* Kalın yazı */
  color: var(--text-dark); /* Koyu renk */
  margin-bottom: 8px; /* Alt boşluk */
}

.contact-form-wrapper .form-control {
  border: 2px solid #e0e0e0; /* Kenarlık */
  border-radius: 8px; /* Yuvarlatılmış köşeler */
  padding: 12px; /* İç boşluk */
  font-size: 1rem; /* Yazı boyutu */
  transition: var(--transition); /* Geçiş efekti */
}

.contact-form-wrapper .form-control:focus {
  border-color: var(--primary-color); /* Focus durumunda sarı kenarlık */
  box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25); /* Sarı gölge */
}

/* Gönder butonu */
.contact-form-wrapper .btn-warning {
  background: var(--gradient-primary); /* Sarı gradient */
  border: none; /* Kenarlık yok */
  color: var(--secondary-color); /* Siyah yazı */
  font-weight: 600; /* Kalın yazı */
  padding: 15px; /* İç boşluk */
  border-radius: 8px; /* Yuvarlatılmış köşeler */
  transition: var(--transition); /* Geçiş efekti */
}

.contact-form-wrapper .btn-warning:hover {
  background: linear-gradient(135deg, #ffaa00, #ffd700); /* Hover'da ters gradient */
  transform: translateY(-2px); /* Yukarı hareket */
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4); /* Gölge */
}

/* Harita wrapper */
.map-wrapper {
  height: 100%; /* Tam yükseklik */
}

/* Harita container */
.map-container {
  border-radius: 15px; /* Yuvarlatılmış köşeler */
  overflow: hidden; /* Taşan içeriği gizle */
  box-shadow: var(--shadow-md); /* Gölge efekti */
  margin-bottom: 20px; /* Alt boşluk */
}

.map-container iframe {
  display: block; /* Block element */
  width: 100%; /* Tam genişlik */
}

/* İletişim bilgi kutuları */
.info-box {
  background: white; /* Beyaz arka plan */
  padding: 20px; /* İç boşluk */
  border-radius: 10px; /* Yuvarlatılmış köşeler */
  text-align: center; /* Ortala */
  box-shadow: var(--shadow-sm); /* Hafif gölge */
  transition: var(--transition); /* Geçiş efekti */
}

.info-box:hover {
  transform: translateY(-5px); /* Hover'da yukarı hareket */
  box-shadow: var(--shadow-md); /* Daha belirgin gölge */
}

.info-box i {
  font-size: 2rem; /* İkon boyutu */
  display: block; /* Block element */
}

.info-box h6 {
  font-weight: 600; /* Kalın yazı */
  color: var(--text-dark); /* Koyu renk */
  margin: 10px 0 5px; /* Boşluklar */
}

.info-box p {
  color: #666; /* Gri yazı */
  font-size: 0.95rem; /* Yazı boyutu */
}

/* Creative Card - Yaratıcı içerik kartı */
.creative-card {
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
  color: #1a1a1a;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  font-size: 0.9rem;
  max-height: 300px; /* Yüksekliği sınırla */
  overflow: hidden; /* Taşan içeriği gizle */
}

.creative-header {
  margin-bottom: 10px;
}

.creative-header h3 {
  font-weight: 700;
  margin: 0;
  color: #1a1a1a;
  font-size: 1.2rem;
}

.creative-content {
  flex: 1;
  overflow-y: auto; /* Dikey kaydırma ekle */
  max-height: 200px; /* İçerik yüksekliğini sınırla */
}

.feature-highlight {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.feature-highlight:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.feature-icon {
  font-size: 1.3rem;
  margin-right: 10px;
  color: #1a1a1a;
}

.feature-text h4 {
  margin: 0 0 2px 0;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 0.95rem;
}

.feature-text p {
  margin: 0;
  color: #333;
  font-size: 0.8rem;
}

/* Contact Info Wrapper */
.contact-info-wrapper {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: var(--shadow-md);
}

.contact-info-wrapper h3 {
  margin-top: 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
  color: var(--text-dark);
  font-size: 1.3rem;
}

/* Responsive - Mobil cihazlarda form ve harita üst üste */
@media (max-width: 991px) {
  .contact-form-wrapper {
    margin-bottom: 30px; /* Formun altına boşluk */
  }
}

/* Custom Black Button - Siyah buton için */
.custom-black-button {
  background-color: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
}

.custom-black-button:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
}

.custom-black-button:focus {
  background-color: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25) !important;
}

/* Contact Info Cards - Yan yana görünüm */
@media (min-width: 992px) {
  .contact-section .row.g-3 {
    display: flex;
    flex-wrap: wrap;
  }
  
  .contact-section .col-lg-12 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
