/* Global Styles */
:root {
    --primary-color: #ffc107;
    --primary-dark: #e0a800;
    --secondary-color: #343a40;
    --whatsapp-color: #25D366;
    --call-color: #007bff;
    --light-gray: #f8f9fa;
    --border-radius: 8px;
    --box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

body {
    padding-top: 110px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Üst İletişim Çubuğu */
.top-contact-bar {
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
}

.contact-buttons {
    display: flex;
    gap: 10px;
}

.btn-call {
    background-color: var(--call-color);
    color: white;
    border-radius: 50px;
    padding: 5px 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-call:hover {
    background-color: #0056b3;
    color: white;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--whatsapp-color);
    color: white;
    border-radius: 50px;
    padding: 5px 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    top: 41px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
}

.taxi-brand {
    color: var(--primary-color);
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
    margin-bottom: 50px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 700px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

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

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-hero-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary {
    background-color: var(--whatsapp-color);
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Content Cards */
.content-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.content-card h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.content-card h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

/* Features */
.features {
    margin-top: 2rem;
}

.feature-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Contact Card */
.contact-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-card h3 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

/* Araç Bilgi Kartı */
.vehicle-info {
    margin-bottom: 30px;
}

.license-plate {
    display: inline-block;
    background-color: white;
    border: 3px solid #000;
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

/* Map Container */
.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-top: 1rem;
    box-shadow: var(--box-shadow);
}

.map-container iframe {
    display: block;
    width: 100%;
    transition: opacity 0.5s ease;
    opacity: 0.7;
}

.map-container iframe:hover {
    opacity: 1;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-success {
    background-color: var(--whatsapp-color);
    border-color: var(--whatsapp-color);
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

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

.footer h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    body {
        padding-top: 106px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 146px;
    }
    
    .top-contact-bar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .navbar {
        top: 77px;
    }
    
    .hero {
        height: 60vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-card {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 146px;
    }
    
    .hero {
        height: 50vh;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}