/* Genel Stiller */
:root {
    --primary-color: #FFCC00;
    --secondary-color: #333333;
    --accent-color: #F7B731;
    --light-color: #f4f4f4;
    --dark-color: #222;
    --max-width: 1200px;
    --transition: all 0.3s ease;
    --success-color: #28a745;
    --error-color: #dc3545;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    padding-top: 70px; /* Header'a yer açmak için */
    position: relative;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}

.section-header p {
    color: #777;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: #fff;
}

.btn-secondary:hover {
    background-color: #444;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

section:not(.hero) {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    padding: 15px 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 70px; /* Sabit bir yükseklik tanımlaması */
}

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

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.logo span {
    color: var(--primary-color);
}

/* Navbar - Masaüstü Varsayılan Stil */
.navbar {
    display: block;
}

.nav-list {
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin: 0 15px;
    list-style: none;
}

.nav-list li:last-child {
    margin-right: 0;
}

.nav-list a {
    font-weight: 600;
    transition: var(--transition);
    padding: 10px 0;
    position: relative;
    text-decoration: none;
    color: var(--secondary-color);
    display: inline-block;
}

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

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

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/hero-bg.jpg') no-repeat center center/cover;
    height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 70px; /* Ama içeriğin header'dan sonra başlamasını sağlamak için */
    margin-top: -70px; /* Header'ın kapladığı alanı geri kazanmak için */
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Services Section */
.services {
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--dark-color);
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Prices Section */
.prices {
    background-color: #f5f5f5;
    padding: 80px 0; /* Standart padding */
}

.price-table {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    position: relative;
    z-index: 1; /* Header'dan düşük */
}

.price-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.price-row.header {
    background-color: var(--primary-color);
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 1; /* Ana header'dan düşük */
}

.price-col {
    padding: 10px;
}

.price-note {
    margin-top: 20px;
    text-align: center;
    color: #777;
    font-size: 0.9rem;
}

/* About Section */
.about {
    background-color: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat .text {
    color: #666;
    font-size: 0.9rem;
}

/* Reservation Section */
.reservation {
    background-color: #f5f5f5;
}

.reservation-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

input,
select,
textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

textarea {
    height: 120px;
    resize: none;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Contact Section */
.contact {
    background-color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

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

.contact-item .icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.contact-item a {
    color: #666;
    transition: var(--transition);
}

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

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-links h3,
.footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

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

.footer-links ul li a {
    color: #ddd;
    transition: var(--transition);
}

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

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #ddd;
}

/* Scroll Top Button */
.scroll-top {
    display: none; /* Stil silmek yerine display:none yaparak tamamen kaldırıyorum */
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    opacity: 1;
    visibility: visible;
    z-index: 999;
}

/* WhatsApp butonu diyalog balonu */
.whatsapp-btn::after {
    content: "Tıkla Taksi Çağır";
    position: absolute;
    top: -45px;
    left: -120px;
    right: auto;
    background-color: #fff;
    color: #333;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

/* Diyalog balonu için ok işareti */
.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: -15px;
    left: auto;
    right: auto;
    margin-left: -80px;
    width: 15px;
    height: 15px;
    background-color: #fff;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    transform: rotate(45deg);
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.02);
    z-index: 1;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* WhatsApp butonunun etrafındaki dalgalanma animasyonu */
.whatsapp-btn .pulse {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    opacity: 0.4;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Mobil için WhatsApp butonu düzenlemesi */
@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .reservation-form {
        padding: 20px;
    }

    .scroll-top {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.7rem;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn .pulse {
        width: 50px;
        height: 50px;
    }
    
    /* Mobil için diyalog balonu konumu */
    .whatsapp-btn::after {
        top: -40px;
        left: -90px;
        right: auto;
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .whatsapp-btn::before {
        top: -12px;
        right: auto;
        left: auto;
        margin-left: -60px;
        width: 12px;
        height: 12px;
    }

    /* Fiyat tablosu ince ayarlar */
    .price-table {
        font-size: 0.95rem;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    }
    
    .price-row {
        padding: 10px 5px;
    }
    
    .price-col {
        padding: 6px 8px;
        min-height: 24px;
    }
    
    .price-col::before {
        font-size: 0.85rem;
        top: 6px;
    }
    
    .price-col:first-child {
        font-size: 1rem;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
        margin-bottom: 8px;
    }
    
    .price-col:last-child {
        padding-top: 10px;
        border-top: 1px solid #eee;
        margin-top: 8px;
        text-align: right;
        padding-right: 8px;
    }
    
    .prices .section-header h2 {
        font-size: 1.6rem;
    }
}

/* Alert Styles */
.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
}

.alert.success {
    background-color: rgba(40, 167, 69, 0.2);
    border: 1px solid var(--success-color);
    color: var(--success-color);
}

.alert.error {
    background-color: rgba(220, 53, 69, 0.2);
    border: 1px solid var(--error-color);
    color: var(--error-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        order: 2;
    }

    .about-text {
        order: 1;
    }
}

@media (max-width: 768px) {
    /* Mobil Menü Stili */
    .mobile-menu-btn {
        display: block;
        z-index: 10000; /* header'dan bile yüksek */
    }

    .navbar {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: #fff;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 30px;
        z-index: 9998; /* header'dan düşük ama diğer içeriklerden yüksek */
        display: block;
        justify-content: flex-start;
    }

    .navbar.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
    }

    .nav-list li {
        margin: 15px 0;
        width: 100%;
    }
    
    .nav-list a {
        display: block;
        width: 100%;
        padding: 10px 0;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .price-table {
        margin-bottom: 20px;
        border-radius: 10px;
        overflow: hidden;
    }
    
    .price-row {
        display: block;
        padding: 10px;
        border-bottom: 1px solid #eee;
        position: relative;
    }
    
    .price-row.header {
        display: none; /* Mobilde başlığı gizle */
    }
    
    .price-col {
        display: block;
        width: 100%;
        text-align: left;
        padding: 8px 10px;
        min-height: 30px;
        position: relative;
    }
    
    .price-col:not(:last-child) {
        margin-bottom: 5px;
        border-bottom: 1px dashed #eee;
    }
    
    /* data-label kullanarak etiketleri göster */
    .price-col::before {
        content: attr(data-label);
        position: absolute;
        top: 8px;
        right: 10px;
        width: auto;
        font-weight: 600;
        color: #666;
    }
    
    /* İlk sütun (güzergah) daha kalın görünsün */
    .price-col:first-child {
        font-weight: 600;
        color: var(--secondary-color);
        font-size: 1.05rem;
        padding-right: 10px;
    }
    
    /* Son sütun (fiyat) vurgulanmış olsun */
    .price-col:last-child {
        color: var(--primary-color);
        font-weight: 700;
        font-size: 1.1rem;
    }

    .footer-content {
        gap: 30px;
    }

    /* Fiyat tablosu - Son düzenleme */
    .price-table {
        display: block;
        background: transparent;
        box-shadow: none;
    }
    
    .price-row.header {
        display: none;
    }
    
    .price-row {
        display: block;
        margin-bottom: 15px;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        padding: 15px;
        position: relative;
    }
    
    .price-col {
        width: 100%;
        display: block;
        padding: 5px 0;
        text-align: center;
        border: none;
    }
    
    /* Güzergah stili */
    .price-col[data-label="Güzergah"] {
        font-weight: 600;
        font-size: 1.1rem;
        color: var(--secondary-color);
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    
    /* Mesafe stili */
    .price-col[data-label="Mesafe"] {
        color: #666;
        font-size: 0.9rem;
    }
    
    /* Fiyat stili */
    .price-col[data-label="Fiyat"] {
        font-weight: 700;
        font-size: 1.3rem;
        color: var(--primary-color);
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid #eee;
    }
    
    /* Etiketleri kaldır */
    .price-col::before {
        display: none;
    }
}

/* En küçük ekranlar için */
@media (max-width: 576px) {
    .price-row {
        padding: 12px;
    }
    
    .price-col[data-label="Güzergah"] {
        font-size: 1rem;
    }
    
    .price-col[data-label="Fiyat"] {
        font-size: 1.2rem;
    }
} 