/* Genel Stiller */
body {
    font-family: 'Source Sans Pro', sans-serif;
    padding-top: 60px;
}

/* Hero Section with Slider */
.hero {
    position: relative;
    padding: 0;
    height: 830px;
    margin-top: -60px; /* Görseli headerın hemen altına yaklaştır */
}

.swiper {
    width: 100%;
    height: 830px;
    margin-top: 0;
}

.swiper-slide {
    background-size: cover;
    background-position: center center;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
}

.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.31);
}

.swiper-slide .container {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0;
}

.swiper-slide .container .row {
    min-height: 600px;
    align-items: center;
    margin: 0;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--taxi-yellow) !important;
    background: rgba(0, 0, 0, 0.5);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.7) !important;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--taxi-yellow) !important;
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/* Logo styles */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img.brand-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Hizmetler */
.card {
    transition: transform 0.3s;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-5px);
}

/* İletişim */
.contact-info a {
    color: inherit;
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--taxi-yellow);
}
/* 768px ve altı (mobil) */
@media (max-width: 768px) {
  /* Swiper 6+ */
  .swiper .swiper-button-prev,
  .swiper .swiper-button-next {
    display: none !important;
  }

  /* Eski sürüm (swiper-container kullanan projeler) */
  .swiper-container .swiper-button-prev,
  .swiper-container .swiper-button-next {
    display: none !important;
  }
}
/* Sabit Arama ve WhatsApp Butonları */
.floating-call {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 1000;
}

.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.floating-call .btn,
.floating-whatsapp .btn {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Slider Ayarları */
@media (max-width: 768px) {
    .hero {
        height: 600px;
    }
    
    .swiper {
        height: 600px;
    }
    
    .swiper-slide .container .row {
        min-height: 600px;
    }
    
    .swiper-slide h1 {
        font-size: 1.8rem !important;
        margin-bottom: 0.8rem;
    }
    
    .swiper-slide .lead {
        font-size: 1rem !important;
        margin-bottom: 1.2rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 30%;
        margin-bottom: 0.8rem;
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
    
    .cta-buttons .btn:last-child {
        margin-left: 0 !important;
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 500px;
    }
    
    .swiper {
        height: 500px;
    }
    
    .swiper-slide .container .row {
        min-height: 500px;
    }
    
    .swiper-slide h1 {
        font-size: 1.5rem !important;
    }
    
    .swiper-slide .lead {
        font-size: 0.9rem !important;
    }
    
    .cta-buttons .btn {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
}

/* Tablet için responsive ayarlar */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        height: 550px;
    }
    
    .swiper {
        height: 550px;
    }
    
    .swiper-slide .container .row {
        min-height: 550px;
    }
    
    .swiper-slide h1 {
        font-size: 2.2rem !important;
    }
    
    .swiper-slide .lead {
        font-size: 1.1rem !important;
    }
}

/* Genel responsive düzenlemeler */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem !important;
        margin-left: 10px;
        margin-bottom: 30px;
    }
    
    .card {
        margin-bottom: 20px;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .card-text {
        font-size: 0.95rem;
    }
    
    .contact-info {
        margin-bottom: 30px;
        padding: 20px;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .contact-info p {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .contact-info i {
        font-size: 20px;
        width: 35px;
        height: 35px;
    }
    
    .map-container {
        height: 400px;
    }
    
    .map-container iframe {
        height: 400px;
    }
    
    .floating-buttons .btn {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }
    
    .floating-call {
        bottom: 80px;
        right: 15px;
    }
    
    .floating-whatsapp {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-contact {
        bottom: 145px;
        right: 15px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.6rem !important;
        margin-left: 8px;
        margin-bottom: 25px;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .card-text {
        font-size: 0.9rem;
    }
    
    .contact-info {
        padding: 15px;
    }
    
    .contact-info h3 {
        font-size: 1.3rem;
    }
    
    .contact-info p {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .map-container {
        height: 350px;
    }
    
    .map-container iframe {
        height: 350px;
    }
    
    .floating-buttons .btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .floating-call {
        bottom: 75px;
        right: 12px;
    }
    
    .floating-whatsapp {
        bottom: 12px;
        right: 12px;
    }
    
    .floating-contact {
        bottom: 138px;
        right: 12px;
    }
}

/* Navbar responsive düzenlemeler */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .navbar-nav .nav-link {
        font-size: 14px !important;
        padding: 10px 15px;
        text-align: center;
    }
    
    .navbar-collapse {
        background: rgba(255, 107, 53, 0.95);
        border-radius: 8px;
        margin-top: 10px;
        padding: 15px;
    }
}

/* Hakkımızda bölümü responsive */
@media (max-width: 768px) {
    #hakkimizda {
        padding: 40px 0;
    }
    
    #hakkimizda h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    #hakkimizda .lead {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    #hakkimizda p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    #hakkimizda ul li {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .about-image {
        margin-top: 20px;
    }
}

/* Footer responsive */
@media (max-width: 768px) {
    footer {
        padding: 20px 0;
        text-align: center;
    }
    
    footer .col-md-6 {
        margin-bottom: 10px;
    }
    
    footer p {
        font-size: 0.9rem;
    }
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card, .hero h1, .hero p {
    animation: fadeIn 1s ease-out;
}

/* SEO için ek stiller */
.navbar-brand {
    font-weight: bold;
}

h1, h2, h3 {
    color: #333;
}

section {
    padding: 60px 0;
}

/* Erişilebilirlik için focus stilleri */
a:focus, button:focus {
    outline: 3px solid var(--taxi-yellow);
    outline-offset: 2px;
}

/* Slider içeriği için yeni stiller */
.swiper-slide h1,
.swiper-slide .lead {
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.swiper-slide h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.swiper-slide .lead {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .swiper-slide h1 {
        font-size: 2rem;
    }
    
    .swiper-slide .lead {
        font-size: 1.1rem;
    }
}

/* Renk değişkenleri */
:root {
    --taxi-yellow: #e9521e;
    --taxi-yellow-dark: #c94616;
    --lokma-gold: #FFB347;
    --lokma-orange: #FF7F50;
    --lokma-warm: #FF6B35;
}

/* Hizmet kartları ikon rengi */
.card-body i {
    color: var(--taxi-yellow) !important;
}

/* Buton renkleri */
.btn-primary {
    background-color: var(--taxi-yellow);
    border-color: var(--taxi-yellow);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 138, 61, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--taxi-yellow-dark);
    border-color: var(--taxi-yellow-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 138, 61, 0.4);
}

/* Floating call button rengi */
.floating-call .btn {
    background-color: var(--taxi-yellow);
    border-color: var(--taxi-yellow);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 138, 61, 0.4);
}

.floating-call .btn:hover {
    background-color: var(--taxi-yellow-dark);
    border-color: var(--taxi-yellow-dark);
    transform: scale(1.1);
}

/* Başlık gölgeleri için genel stil */
.section-title {
    text-align: left !important;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
    margin-left: 15px;
    font-size: 2.2rem;
    font-weight: 600 !important;
    color: #333;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--taxi-yellow), var(--lokma-gold));
    box-shadow: 0 2px 8px rgba(255, 138, 61, 0.4);
}

/* Modern İletişim Bölümü */
.contact-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
    color: #333;
    margin-bottom: 25px;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.contact-info p:hover {
    transform: translateX(10px);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info i {
    font-size: 24px;
    margin-right: 15px;
    color: var(--taxi-yellow);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 138, 61, 0.1), rgba(255, 179, 71, 0.1));
    border: 2px solid rgba(255, 138, 61, 0.2);
}

.contact-info a {
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: var(--taxi-yellow);
    text-decoration: none;
}

/* Harita Container */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    border-radius: 12px;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .contact-section {
        padding: 20px;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
    
    .contact-info p {
        padding: 10px;
    }
    
    .contact-info i {
        font-size: 20px;
        width: 35px;
        height: 35px;
    }
}

/* Başlık gölge efektini güçlendirme */
#hizmetler .section-title,
#iletisim .section-title {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
}

/* İletişim bölümündeki butonu güncelleyelim */
.contact-info .btn-light {
    background: white;
    color: var(--taxi-yellow);
    margin-top: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid var(--taxi-yellow);
}

.contact-info .btn-light:hover {
    background: var(--taxi-yellow);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 138, 61, 0.4);
}

.contact-info .btn-light i {
    font-size: 20px;
    color: var(--taxi-yellow);
    margin: 0;
    width: auto;
    height: auto;
    background: none;
}

.contact-info .btn-light:hover i {
    color: white;
}

/* Navbar ve Footer için kurumsal turuncu stiller */
.navbar {
    background: transparent !important;
}

/* Yeni header: cam efekti, gölge ve scroll davranışı */
.site-header {
    background: rgba(0, 0, 0, 0.55) !important; /* Normal durumda da koyu ve okunaklı */
    backdrop-filter: saturate(140%) blur(8px);
    -webkit-backdrop-filter: saturate(140%) blur(8px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.22);
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.site-header.scrolled {
    background: rgba(0,0,0,0.72) !important; /* Scroll'da biraz daha yoğun */
    box-shadow: 0 14px 36px rgba(0,0,0,0.32);
}

.site-header .navbar-brand,
.site-header .nav-link {
    color: #fff !important;
}

.header-cta .btn-primary { background: var(--taxi-yellow); border-color: var(--taxi-yellow); color: #000; }
.header-cta .btn-primary:hover { background: var(--taxi-yellow-dark); border-color: var(--taxi-yellow-dark); }
.header-cta .btn-success { box-shadow: none; }

@media (max-width: 991px) {
    .site-header .navbar-collapse { background: rgba(0,0,0,0.65); border-radius: 10px; padding: 10px; margin-top: 8px; }
}

.navbar-brand, 
.nav-link {
    color: #fff !important;
    /*text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);*/
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

footer {
    background: linear-gradient(135deg, var(--taxi-yellow), var(--lokma-gold)) !important;
    box-shadow: 0 -4px 20px rgba(255, 138, 61, 0.3);
}

footer p {
    color: #fff !important;
    margin-bottom: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

footer a {
    color: #fff !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

footer i {
    font-size: 1.5rem;
}

/* bg-dark sınıfını override et */
.bg-dark {
    background: linear-gradient(135deg, var(--taxi-yellow), #ff8447) !important;
}

.taxi-footer {
    background: linear-gradient(135deg, var(--taxi-yellow), var(--lokma-gold)) !important;
    color: #fff !important;
}

.taxi-footer a {
    color: #fff !important;
    text-decoration: none;
}

.taxi-footer a:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

.taxi-footer i {
    font-size: 1.5rem;
}

/* text-center sınıfını kaldır */
#hizmetler h2,
#iletisim h2 {
    text-align: left !important;
    font-weight: 600 !important;
}

/* Navbar menü başlıkları için stil */
.navbar-nav .nav-link {
    font-size: 16px !important;
    color: #fff !important;
    font-weight: 500 !important;
    padding: 8px 15px;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-2px) !important;
}

/* İletişim bilgileri ikonları için kurumsal turuncu renk */
.contact-info i {
    font-size: 24px;
    margin-right: 15px;
    color: var(--taxi-yellow);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 138, 61, 0.1), rgba(255, 179, 71, 0.1));
    border: 2px solid rgba(255, 138, 61, 0.2);
}

.contact-info a:hover {
    color: var(--taxi-yellow);
    text-decoration: none;
}

/* Swiper navigation butonları için kurumsal turuncu renk */
.swiper-button-next,
.swiper-button-prev {
    color: var(--taxi-yellow) !important;
    background: rgba(0, 0, 0, 0.6);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid var(--taxi-yellow);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--taxi-yellow);
    color: #000 !important;
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(255, 138, 61, 0.6);
}

/* Swiper pagination için kurumsal turuncu renk */
.swiper-pagination-bullet-active {
    background: var(--taxi-yellow) !important;
    opacity: 1;
    width: 30px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(255, 138, 61, 0.6);
}

/* Hizmet kartları için hover efektleri */
.card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(255, 138, 61, 0.2);
    border-top: 3px solid var(--taxi-yellow);
}

.card-body i {
    transition: all 0.3s ease;
}

.card:hover .card-body i {
    transform: scale(1.1);
    color: var(--lokma-gold) !important;
}

/* Başlıklar için font ayarı */
h1, h2, h3, .navbar-brand {
    font-family: 'Source Sans Pro', sans-serif;
}

/* Slider başlıkları için font */
.swiper-slide h1 {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
}

.swiper-slide .lead {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
}

/* Menü linkleri için font */
.navbar-nav .nav-link {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 500;
}

/* Hizmet kartları için font */
.card-title {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
}

.card-text {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
}

/* İletişim bölüm için font */
.contact-info {
    font-family: 'Source Sans Pro', sans-serif;
}

/* Footer için font */
footer {
    font-family: 'Source Sans Pro', sans-serif;
}

/* Menü Kartları */
.menu-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 138, 61, 0.15);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--taxi-yellow), var(--lokma-gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.menu-card:hover::before {
    transform: scaleX(1);
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255, 138, 61, 0.25);
    border-color: var(--taxi-yellow);
}

.menu-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--taxi-yellow), var(--lokma-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.menu-card:hover .menu-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 138, 61, 0.4);
}

.menu-icon i {
    font-size: 2.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.menu-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Source Sans Pro', sans-serif;
}

.menu-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Source Sans Pro', sans-serif;
}

.menu-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(135deg, rgba(255, 138, 61, 0.1), rgba(255, 179, 71, 0.1));
    color: var(--taxi-yellow);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 138, 61, 0.2);
    transition: all 0.3s ease;
}

.menu-card:hover .feature-tag {
    background: var(--taxi-yellow);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 138, 61, 0.3);
}

/* Menü bölümü için özel başlık stili */
#menu .section-title {
    text-align: center !important;
    margin-bottom: 50px;
}

#menu .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Responsive menü kartları */
@media (max-width: 768px) {
    .menu-card {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .menu-icon {
        width: 70px;
        height: 70px;
    }
    
    .menu-icon i {
        font-size: 2rem;
    }
    
    .menu-title {
        font-size: 1.3rem;
    }
    
    .menu-description {
        font-size: 0.9rem;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}

@media (max-width: 576px) {
    .menu-card {
        padding: 20px;
    }
    
    .menu-icon {
        width: 60px;
        height: 60px;
    }
    
    .menu-icon i {
        font-size: 1.8rem;
    }
    
    .menu-title {
        font-size: 1.2rem;
    }
    
    .menu-description {
        font-size: 0.85rem;
    }
}

/* Müşteri Yorumları */
.review-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(255, 138, 61, 0.15);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--taxi-yellow), var(--lokma-gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.review-card:hover::before {
    transform: scaleX(1);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 138, 61, 0.25);
    border-color: var(--taxi-yellow);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.customer-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--taxi-yellow), var(--lokma-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.customer-avatar i {
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.customer-info {
    flex: 1;
}

.customer-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    font-family: 'Source Sans Pro', sans-serif;
}

.star-rating {
    display: flex;
    gap: 2px;
}

.star-rating i {
    color: #FFD700;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.review-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    font-family: 'Source Sans Pro', sans-serif;
}

.review-date {
    color: #888;
    font-size: 0.85rem;
    text-align: right;
    font-weight: 500;
}

/* Yorumlar bölümü iin özel başlık stili */
#yorumlar .section-title {
    text-align: center !important;
    margin-bottom: 50px;
}

#yorumlar .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Responsive yorum kartlar */
@media (max-width: 768px) {
    .review-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .customer-avatar {
        width: 50px;
        height: 50px;
    }
    
    .customer-avatar i {
        font-size: 1.3rem;
    }
    
    .customer-name {
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 0.9rem;
    }
    
    .star-rating i {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .review-card {
        padding: 18px;
    }
    
    .customer-avatar {
        width: 45px;
        height: 45px;
    }
    
    .customer-avatar i {
        font-size: 1.2rem;
    }
    
    .customer-name {
        font-size: 0.95rem;
    }
    
    .review-text {
        font-size: 0.85rem;
    }
    
    .review-date {
        font-size: 0.8rem;
    }
}

/* Referanslar Bölümü */
.stats-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 138, 61, 0.15);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--taxi-yellow), var(--lokma-gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stats-card:hover::before {
    transform: scaleX(1);
}

.stats-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255, 138, 61, 0.25);
    border-color: var(--taxi-yellow);
}

.stats-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--taxi-yellow), var(--lokma-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.stats-card:hover .stats-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 138, 61, 0.4);
}

.stats-icon i {
    font-size: 2.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--taxi-yellow);
    margin-bottom: 10px;
    font-family: 'Source Sans Pro', sans-serif;
    text-shadow: 0 2px 4px rgba(255, 138, 61, 0.2);
}

.stats-label {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    font-family: 'Source Sans Pro', sans-serif;
}

/* Referans Kartları */
.reference-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 138, 61, 0.15);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.reference-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--taxi-yellow), var(--lokma-gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.reference-card:hover::before {
    transform: scaleX(1);
}

.reference-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 138, 61, 0.25);
    border-color: var(--taxi-yellow);
}

.reference-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--taxi-yellow), var(--lokma-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.reference-card:hover .reference-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 138, 61, 0.4);
}

.reference-icon i {
    font-size: 2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.reference-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Source Sans Pro', sans-serif;
}

.reference-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: 'Source Sans Pro', sans-serif;
}

/* Referanslar bölümü için özel balık stili */
#referanslar .section-title {
    text-align: center !important;
    margin-bottom: 50px;
}

#referanslar .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Hakkımızda bölümü gncellemeleri */
#hakkimizda h4 {
    color: var(--taxi-yellow);
    font-weight: 700;
    font-family: 'Source Sans Pro', sans-serif;
}

#hakkimizda ul li {
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: #555;
    font-family: 'Source Sans Pro', sans-serif;
}

#hakkimizda ul li i {
    color: var(--taxi-yellow);
    margin-right: 10px;
}

/* Responsive referans kartları */
@media (max-width: 768px) {
    .stats-card {
        padding: 25px 15px;
        margin-bottom: 20px;
    }
    
    .stats-icon {
        width: 70px;
        height: 70px;
    }
    
    .stats-icon i {
        font-size: 2rem;
    }
    
    .stats-number {
        font-size: 2.2rem;
    }
    
    .stats-label {
        font-size: 0.9rem;
    }
    
    .reference-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .reference-icon {
        width: 60px;
        height: 60px;
    }
    
    .reference-icon i {
        font-size: 1.8rem;
    }
    
    .reference-card h4 {
        font-size: 1.2rem;
    }
    
    .reference-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .stats-card {
        padding: 20px 15px;
    }
    
    .stats-icon {
        width: 60px;
        height: 60px;
    }
    
    .stats-icon i {
        font-size: 1.8rem;
    }
    
    .stats-number {
        font-size: 2rem;
    }
    
    .stats-label {
        font-size: 0.85rem;
    }
    
    .reference-card {
        padding: 18px;
    }
    
    .reference-icon {
        width: 55px;
        height: 55px;
    }
    
    .reference-icon i {
        font-size: 1.6rem;
    }
    
    .reference-card h4 {
        font-size: 1.1rem;
    }
    
    .reference-card p {
        font-size: 0.85rem;
    }
}

/* Loading Spinner ve Daha Fazla Yorum Butonu */
#load-more-reviews {
    background: linear-gradient(135deg, var(--taxi-yellow), var(--lokma-gold));
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 138, 61, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

#load-more-reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

#load-more-reviews:hover::before {
    left: 100%;
}

#load-more-reviews:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 138, 61, 0.4);
}

#load-more-reviews:active {
    transform: translateY(-1px);
}

#load-more-reviews:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

#load-more-reviews:disabled:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(255, 138, 61, 0.3);
}

/* Loading Spinner Stilleri */
#loading-spinner {
    animation: fadeIn 0.5s ease-in;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.25rem;
    color: var(--taxi-yellow) !important;
}

.spinner-border.text-primary {
    border-color: var(--taxi-yellow) !important;
    border-right-color: transparent !important;
}

/* Loading animasyonu */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Yorum kartlar için giri animasyonu */
.review-card {
    animation: slideInUp 0.6s ease-out;
}

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

/* Daha Fazla Yorum butonu için responsive ayarlar */
@media (max-width: 768px) {
    #load-more-reviews {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .spinner-border {
        width: 2.5rem;
        height: 2.5rem;
    }
}

@media (max-width: 576px) {
    #load-more-reviews {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 300px;
    }
    
    .spinner-border {
        width: 2rem;
        height: 2rem;
    }
}