/* 
* Taksi Hizmeti - Modern CSS
* Şık ve profesyonel bir taksi uygulaması için özel stil dosyası
*/

/* Genel Stiller */
:root {
    --primary-color: #f91013;
    --primary-dark: #d10d10;
    --secondary-color: #333333;
    --text-color: #444444;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --accent-color: #ff6b6c;
    --accent-light: #ffb8b8;
    --border-radius: 8px;
    --box-shadow: 0 10px 30px rgba(249, 16, 19, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background-color: #fcfcfc;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--secondary-color);
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn {
    padding: 12px 24px;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(249, 16, 19, 0.3);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 16, 19, 0.4);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 16, 19, 0.3);
}

/* Navbar Stiller */
.navbar {
    padding: 20px 0;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.98) !important;
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
}

.navbar-brand span.text-primary {
    position: relative;
}

.navbar-brand span.text-primary::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 10px;
}

.nav-link {
    font-weight: 600;
    padding: 8px 16px !important;
    color: var(--secondary-color) !important;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

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

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

/* Üst Bilgi Çubuğu */
.top-bar {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* Mobil görünümde top-bar düzenlemeleri */
@media (max-width: 767.98px) {
    .top-bar .col-md-6 {
        text-align: center;
        margin-bottom: 5px;
    }
    
    .top-bar .col-md-6.text-end {
        text-align: center !important;
    }
    
    .top-bar small {
        display: inline-block;
        margin: 2px 5px;
    }
}

/* Hero Bölümü */
.hero-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background-color: rgba(249, 16, 19, 0.1);
    border-radius: 50%;
    z-index: -1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(249, 16, 19, 0.05);
    border-radius: 50%;
    z-index: -1;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-section p.lead {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
}

.hero-image-container {
    position: relative;
    z-index: 1;
    overflow: hidden;
    max-width: 90%;
    margin: 0 auto;
}

.hero-img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.hero-image-container:hover .hero-img {
    transform: scale(1.05);
}

/* Card Stiller */
.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.card-body {
    padding: 30px;
}

.card i.fa-3x {
    color: var(--primary-color);
    background-color: rgba(249, 16, 19, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: var(--transition);
}

.card:hover i.fa-3x {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: rotateY(360deg);
    transition: transform 0.8s ease;
}

.card-title {
    font-weight: 700;
    margin-bottom: 15px;
}

/* Form Stiller */
.form-control {
    height: 54px;
    border-radius: var(--border-radius);
    padding: 10px 20px;
    font-size: 1rem;
    border: 1px solid #e9ecef;
    background-color: #f8f9fa;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 204, 0, 0.25);
    background-color: #fff;
}

textarea.form-control {
    height: auto;
    min-height: 120px;
}

.form-label {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

/* Rezervasyon Formu */
.reservation-form {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    padding: 40px;
    position: relative;
    z-index: 1;
}

.reservation-form::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    background-color: rgba(255, 204, 0, 0.1);
    border-radius: 50%;
    z-index: -1;
}

.reservation-form h3 {
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.reservation-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 10px;
}

/* Hizmet Kartları */
.service-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-card .card-body {
    padding: 25px;
    background-color: #ffffff;
    position: relative;
    z-index: 2;
}

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

.card-divider {
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    margin-bottom: 15px;
    border-radius: 5px;
}

.service-card .card-text {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-card .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
    margin-top: 10px;
}

/* Fiyat Tablosu */
.price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.price-table th, .price-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.price-table th {
    background-color: var(--primary-color);
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table tr:hover td {
    background-color: rgba(249, 16, 19, 0.03);
}

.price-amount {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Footer Stiller */
footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 80px 0 30px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color) 0%, var(--primary-dark) 100%);
}

footer h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 10px;
}

footer p, footer li {
    color: rgba(255, 255, 255, 0.7);
}

footer a {
    color: rgba(255, 255, 255, 0.7) !important;
    transition: var(--transition);
}

footer a:hover {
    color: var(--primary-color) !important;
    text-decoration: none;
}

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

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color) !important;
    transform: translateY(-5px);
}

footer hr {
    background-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0;
}

/* Sayfa Başlık Alanı */
.page-header {
    background-color: #f8f9fa;
    padding: 80px 0;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 204, 0, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 204, 0, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.page-header h1 {
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #999;
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.5s ease forwards;
}

/* Responsive Ayarlamalar */
@media (max-width: 992px) {
    .navbar-collapse {
        background-color: #fff;
        padding: 20px;
        border-radius: var(--border-radius);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-image-container {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 60px 0;
        margin-bottom: 60px;
    }
}

@media (max-width: 576px) {
    .btn {
        padding: 10px 20px;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-section p.lead {
        font-size: 1rem;
    }
    
    .reservation-form {
        padding: 30px 20px;
    }
}

/* Fiyatlandırma Bölümü Stilleri */
.pricing-section {
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.heading-line {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 20px auto;
    border-radius: 5px;
}

/* Standart Taksi Ücretleri Kartları */
.price-item {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

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

.price-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 28px;
    background-color: rgba(255, 204, 0, 0.15);
    color: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.price-item:hover .price-icon {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: rotateY(360deg);
    transition: transform 0.8s ease;
}

.price-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.price-item .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Popüler Güzergahlar Tablosu */
.route-pricing-table {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.route-item {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: var(--transition);
}

.route-item:last-child {
    border-bottom: none;
}

.route-item:hover {
    background-color: rgba(255, 204, 0, 0.05);
}

.route-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.route-from-to {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.route-from, .route-to {
    font-weight: 600;
}

.route-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Özel Hizmet Fiyatları Kartları */
.special-service-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.special-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.service-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: rgba(249, 16, 19, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.special-service-card:hover .service-icon {
    background-color: var(--primary-color);
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.special-service-card:hover .service-icon i {
    color: #ffffff;
}

.special-service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-price {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.service-price span {
    font-weight: 700;
    color: var(--primary-color);
}

/* Değerlerimiz Bölümü Stilleri */
.values-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.value-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.value-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 28px;
    text-align: center;
    background-color: rgba(255, 204, 0, 0.15);
    color: var(--primary-color);
    border-radius: 50%;
    margin-bottom: 20px;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: rotateY(360deg);
    transition: transform 0.8s ease;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Neden Bizi Tercih Etmelisiniz Bölümü */
.why-choose-us-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.feature-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

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

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 24px;
    text-align: center;
    background-color: rgba(255, 204, 0, 0.15);
    color: var(--primary-color);
    border-radius: 50%;
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: rotateY(360deg);
    transition: transform 0.8s ease;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Sayılarla Biz Bölümü */
.taxi-counter {
    background-color: var(--secondary-color);
    padding: 60px 0;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.taxi-counter::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 204, 0, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.taxi-counter::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 204, 0, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.counter-item {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
    display: block;
}

.counter-text {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
}

/* Ekran görüntüsündeki gibi düzenleme için */
@media (min-width: 768px) {
    .service-card img {
        height: 280px;
    }
}

@media (min-width: 992px) {
    .service-card img {
        height: 320px;
    }
}

@media (min-width: 1200px) {
    .service-card img {
        height: 350px;
    }
}

/* About Sayfası Resim Stili */
.about-image {
    max-width: 90%;
    transition: var(--transition);
}

/* İletişim Sayfası Stilleri */
.contact-hero {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 24px;
}

.hover-card {
    transition: var(--transition);
}

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

.map-container {
    position: relative;
    min-height: 450px;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.social-media-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.social-link i {
    margin-right: 10px;
    font-size: 18px;
}

.social-link.facebook {
    background-color: #3b5998;
}

.social-link.twitter {
    background-color: #1da1f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.whatsapp {
    background-color: #25d366;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.form-floating > .form-control,
.form-floating > .form-select {
    height: calc(3.5rem + 2px);
    padding: 1rem 0.75rem;
}

.form-floating > textarea.form-control {
    height: auto;
}

.form-floating > label {
    padding: 1rem 0.75rem;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: rgba(255, 204, 0, 0.1);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 204, 0, 0.25);
}

@media (max-width: 767.98px) {
    .social-media-links {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        min-height: 350px;
    }
    
    .contact-hero {
        padding: 50px 0;
    }
}

/* Rezervasyon Sayfası Stilleri */
.reservation-hero {
    background-color: #f8f9fa;
    padding: 80px 0;
}

/* Yeni Rezervasyon Formu Stilleri */
.reservation-form-card {
    overflow: hidden;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.reservation-form-card .card-header {
    background-color: var(--primary-color) !important;
    color: var(--secondary-color) !important;
    border: none;
}

.icon-circle-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.form-section {
    position: relative;
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    padding: 15px;
    transition: var(--transition);
}

.form-section:hover {
    background-color: #f5f5f5;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-section-title {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

@media (max-width: 991.98px) {
    .form-section {
        margin-bottom: 20px;
    }
}

.reservation-form .form-section-title {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.reservation-form .form-section {
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.reservation-form .form-section:hover {
    background-color: #f5f5f5;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 204, 0, 0.25);
}

.modal-content {
    border: none;
    border-radius: var(--border-radius);
}

.modal-header {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.modal-body h6 {
    color: var(--secondary-color);
    margin-top: 15px;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .reservation-hero {
        padding: 50px 0;
    }
    
    .reservation-form .form-section {
        padding: 15px;
    }
}

/* Rezervasyon Başarılı Sayfası Stilleri */
.success-icon {
    animation: success-pulse 2s infinite;
}

@keyframes success-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.detail-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.detail-label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.detail-value {
    color: var(--text-color);
}

.next-steps .list-group-item {
    padding: 10px 0;
}

.badge.bg-warning {
    background-color: var(--primary-color) !important;
}

@media (min-width: 768px) {
    .detail-item {
        flex-direction: row;
        align-items: center;
    }
    
    .detail-label {
        margin-bottom: 0;
        margin-right: 10px;
        min-width: 140px;
    }
} 