* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
}

header {
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 90px;  /* Yükseklik 90px yapıldı */
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;  /* Nav'ı header'ın tüm yüksekliğine yay */
    padding: 1rem;
}

.logo {
    height: 50px; /* Logo yüksekliğini sabit tutalım */
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    height: 100%;
}

nav ul li {
    display: flex;
    align-items: center;
    height: 100%;
}

nav ul li a {
    color: #000000;
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    height: 100%;
    transition: color 0.3s ease;
}

nav ul .reservation {
    margin-left: 15px;
    height: 100%;
    display: flex;
    align-items: center;
}

.reservation-button {
    background: #ffc107;
    color: #000000 !important;
    padding: 12px 25px !important;
    border-radius: 25px;
    font-weight: bold;
    border: 2px solid #ffc107;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    height: auto;
    white-space: nowrap; /* Metni tek satırda tutar */
}

.reservation-button i {
    font-size: 16px;
}

.reservation-button:hover {
    background: #000000;
    color: #ffffff !important;
    border-color: #000000;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero {
    background-image: url('../img/taxi-main.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    position: relative;
    padding-top: 90px; /* header yüksekliği kadar padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

/* Opsiyonel: Resmi biraz karartmak için overlay ekleyebiliriz */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Karartma miktarını buradan ayarlayabilirsiniz */
    z-index: 1;
}

/* Hero içeriğinin overlay'in üstünde görünmesi için */
.hero h1,
.hero p,
.hero .whatsapp-button {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.whatsapp-button {
    background: #25d366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 2rem;
    font-weight: bold;
    transition: background 0.3s;
}

.whatsapp-button:hover {
    background: #128C7E;
}

.services {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    background: #e5e5e5;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    min-height: 150px; /* Sabit minimum yükseklik */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.service-item h3 {
    margin-bottom: 10px;
    color: #333;
    text-align: center;
}

.service-item p {
    color: #666;
    margin: 0;
    text-align: center;
}

footer {
    background: #000000;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-section h3 {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: bold;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffc107;
    padding-left: 5px;
}

.footer-section ul li a i {
    margin-right: 8px;
    color: #ffc107;
}

.footer-section ul li i {
    margin-right: 8px;
    color: #ffc107;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    nav {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin-top: 1rem;
        flex-direction: column;
    }
    
    nav ul li {
        margin: 0.5rem 0;
    }
    
    nav ul .reservation {
        margin: 10px 0;
    }
    
    .reservation-button {
        display: inline-block;
        width: 200px;
        text-align: center;
    }
}

html {
    scroll-behavior: smooth;
}

.about {
    padding: 6rem 2rem 4rem;
    background: #f9f9f9;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: #e5e5e5;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq {
    padding: 4rem 2rem;
}

.faq-content {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: #e5e5e5;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-size: 2.5rem;
}

nav ul li a:hover {
    color: #ffc107;
}

/* District Details Page Styles */
.district-details {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.district-details .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: 65px;
}

.district-details h1 {
    color: #000;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
}

.district-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.district-info {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.district-info h2 {
    color: #000;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.district-info p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 30px;
}

.features, .landmarks, .pricing {
    margin-bottom: 30px;
}

.features h3, .landmarks h3, .pricing h3 {
    color: #000;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.features ul, .landmarks ul {
    list-style: none;
    padding: 0;
}

.features li, .landmarks li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.features li:last-child, .landmarks li:last-child {
    border-bottom: none;
}

.pricing p {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 5px;
    color: #444;
}

.contact-box {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 20px;
}

.contact-box h3 {
    color: #000;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.contact-box p {
    color: #444;
    margin-bottom: 20px;
}

.read-more-btn {
    display: inline-block;
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px;
    transition: background 0.3s;
}

.read-more-btn:hover {
    background: #0056b3;
}

.two-column-list {
    column-count: 2;
    column-gap: 20px;
    list-style-position: inside;
}

/* Link stilleri */
a {
    color: black;
    text-decoration: none;
}

a:visited {
    color: black;
}

a:hover {
    color: black;
    text-decoration: none;
}

/* Özel butonlar için mevcut stilleri koruyalım */
.whatsapp-button,
.reservation-button {
    color: #fff;
}

.whatsapp-button:hover,
.reservation-button:hover {
    color: #fff;
}

/* Dil seçici stilleri - önceki basit hali */
.language-selector {
    margin-left: 15px;
    display: flex;
    align-items: center;
    height: 100%;
}

.language-selector a {
    text-decoration: none;
    padding: 0.5rem 1rem;
    color: #000000;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.language-selector a:hover {
    color: #ffc107;
}

.language-selector a.active {
    color: #ffc107;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    header {
        height: auto;
        padding: 1rem 0;
    }

    nav {
        flex-direction: column;
        text-align: center;
        padding: 1rem 1.5rem; /* Yanlarda biraz daha boşluk */
    }

    .logo img {
        height: 50px;
        margin-bottom: 1rem;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
    }

    nav ul li {
        margin: 0.5rem 0;
        height: auto;
    }

    nav ul .reservation {
        margin: 0.5rem 0;
    }

    .reservation-button {
        width: 100%;
        justify-content: center;
        margin: 0.5rem 0;
    }

    .language-selector {
        margin: 0.5rem 0;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .service-grid,
    .features {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section ul li a {
        justify-content: center;
    }

    .footer-logo {
        margin: 0 auto 1.5rem;
    }

    .district-content {
        grid-template-columns: 1fr;
    }

    .contact-box {
        position: static;
        margin-top: 2rem;
    }

    .two-column-list {
        column-count: 1;
    }

    .nav-menu .reservation {
        margin: 1rem 0;
    }

    .reservation-button {
        padding: 15px 30px !important;
        justify-content: center;
        width: auto;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .section h2 {
        font-size: 1.8rem;
    }

    .whatsapp-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }
}

/* Tablet için ek düzenlemeler */
@media (min-width: 769px) and (max-width: 1024px) {
    .service-grid,
    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .district-content {
        gap: 20px;
    }
}

.about-content .hero-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    padding: 0 20px;
}

.about-content .hero-image {
    max-width: 45%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.footer-section p {
    margin-bottom: 20px;
} 

/* Mobil cihazlar için responsive tasarım */
@media (max-width: 768px) {
    .about-content .hero-images {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content .hero-image {
        max-width: 90%;
        margin-bottom: 20px;
    }
}

/* Nav menü temel stilleri */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Hamburger menü butonu */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    align-items: center;
    gap: 8px;
}

.menu-text {
    font-size: 16px;
    font-weight: 500;
    display: none;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background: #333;
    margin: 6px 0; /* Orta çizgi için margin ekledik */
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0; /* Sol hizalama için */
    width: 25px; /* Ana çizgi ile aynı genişlik */
    height: 2px;
    background: #333;
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

/* Hamburger menü açık durumunda */
.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Mobil menü düzenlemeleri */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .menu-text {
        display: block;
    }

    /* Çarpı durumunda metni gizle */
    .nav-toggle.active .menu-text {
        display: none;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 2rem;
        z-index: 999;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.3s forwards;
    }

    .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu li:nth-child(5) { animation-delay: 0.5s; }
    .nav-menu li:nth-child(6) { animation-delay: 0.6s; }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Dil seçimi ve rezervasyon butonu düzenlemeleri */
    .language, .reservation {
        width: auto;
        text-align: center;
    }

    .language-selector {
        margin: 1rem 0;
    }

    .reservation-button {
        margin: 1rem 0;
        padding: 1rem 2rem;
    }

    /* Hamburger menü animasyonu */
    .nav-toggle.active .hamburger {
        background: transparent;
    }

    .nav-toggle.active .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle.active .hamburger::after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Çarpı butonu için yeni stil */
.nav-toggle.active {
    position: fixed;
    top: 1rem;
    right: 1.5rem;
    z-index: 1001;
}

/* Çarpı işareti animasyonu */
.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before,
.nav-toggle.active .hamburger::after {
    background: #333; /* Çarpı rengi */
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}