/* ============================================================
   CONTENT.CSS - TÜM İÇ SAYFALAR İÇİN (PAYLAŞIMLI, TRANSFER, TAXI VB.)
   Ortak sınıflar en üstte, sayfaya özel stiller ayrı bloklarda.
   ============================================================ */

/* --- ORTAK SINIFLAR (Shared & Transfer için) --- */
.badge {
    display: inline-block;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 800;
    border-radius: 6px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}
.yellow-badge { background: var(--yellow); color: var(--pure-black); }
.black-badge { background: var(--pure-black); color: var(--yellow); border: 1px solid #333; }
.highlight-yellow { color: var(--yellow); }

.step-indicator {
    display: flex;
    align-items: center;
    gap: 10px; /* Mobilde taşmayı önlemek için biraz azaltıldı */
    background: #1A1A1A;
    padding: 12px 20px; /* Mobil uyum için padding azaltıldı */
    border-radius: 12px;
    border: 1px solid #333;
    flex-wrap: wrap; /* Mobilde alt satıra geçsin */
}
.step {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-weight: 600;
    font-size: 13px; /* Mobilde okunabilirlik için hafif küçültüldü */
    white-space: nowrap;
}
.step .material-icons-outlined { font-size: 16px; }
.step.completed { color: #FFF; }
.step.active { color: var(--yellow); }
.step-line { width: 20px; height: 2px; background: #333; flex-shrink: 0; }

/* Form Elemanları */
.locked-input { background-color: var(--card-border) !important; color: var(--text-muted) !important; cursor: not-allowed; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.text-white { color: #FFF !important; font-weight: 700; }
.text-yellow { color: var(--yellow) !important; font-weight: 800; font-size: 22px; }
.text-muted { color: #666 !important; }

/* Ödeme Butonu */
.btn-checkout {
    width: 100%;
    padding: 18px 20px;
    background: #222;
    color: #666;
    border: 1px solid #333;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 800;
    cursor: not-allowed;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn-checkout.active-btn {
    background: var(--yellow);
    color: #000;
    border-color: var(--yellow);
    cursor: pointer;
}
.btn-checkout.active-btn:hover { background: #E5BB10; }

/* Özet Kutusu */
.checkout-summary {
    background: #0A0A0A;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    border-left: 4px solid var(--yellow);
}
.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #AAA;
    margin-bottom: 12px;
}
.summary-row.total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #333;
    font-size: 18px;
    color: #FFF;
}

/* Modern Input (Ortak) */
.input-modern {
    display: flex;
    align-items: center;
    background: #0A0A0A;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}
.input-modern:focus-within { border-color: var(--yellow); }
.input-modern .material-icons-outlined { color: #666; margin-right: 15px; }
.input-modern input,
.input-modern select,
.input-modern textarea {
    background: transparent;
    border: none;
    color: #FFF;
    width: 100%;
    font-size: 15px;
    outline: none;
    font-family: inherit;
}
.input-modern select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23666'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 25px;
}
.input-modern select option { background: #1A1A1A; color: #FFF; }


/* =================================================================
   PAYLAŞIMLI YOLCULUK SAYFASI (SHARED RIDES)
   ================================================================= */
.shared-page-wrapper {
    background: #0D0D0D;
    min-height: 100vh;
    padding: 60px 0 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden; /* Mobil taşmayı engeller */
}

.shared-header-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    border-bottom: 1px solid #333;
    padding-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.title-area { flex: 1; min-width: 250px; }
.title-area h1 { font-size: clamp(28px, 5vw, 40px); font-weight: 800; color: #FFF; margin: 15px 0; }
.title-area p { color: #AAA; font-size: 16px; max-width: 500px; }

.shared-booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.step-title-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.step-number {
    background: var(--yellow);
    color: var(--pure-black);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}
.step-title-box h3 { color: #FFF; font-size: 20px; font-weight: 700; margin: 0; }

/* Yolculuk Listesi */
.trips-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 5px;
}
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.trip-select-card {
    background: #151515;
    border: 2px solid #333;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-wrap: wrap;
    gap: 10px;
}
.trip-select-card:hover { border-color: #555; background: #1A1A1A; }
.trip-select-card.active {
    border-color: var(--yellow);
    background: linear-gradient(145deg, #1A1A1A, #111);
    box-shadow: 0 10px 20px rgba(252, 209, 22, 0.1);
}
.tsc-left strong { display: flex; align-items: center; gap: 8px; color: #FFF; font-size: 18px; margin-bottom: 5px; }
.tsc-left strong .material-icons-outlined { color: var(--yellow); font-size: 20px; }
.tsc-left span { display: flex; align-items: center; gap: 5px; color: #888; font-size: 13px; }
.seat-badge {
    background: rgba(255,255,255,0.05);
    color: #AAA;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid #333;
    white-space: nowrap;
}
.trip-select-card.active .seat-badge { background: var(--yellow); color: var(--pure-black); border-color: var(--yellow); }

/* Yolcu Formu */
.passenger-form-card { background: #151515; border: 1px solid #333; border-radius: 16px; padding: 30px; }

/* Araba Görseli */
.virtual-car-wrapper {
    background: #111;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    position: sticky;
    top: 100px;
}
.car-title { text-align: center; margin-bottom: 30px; }
.car-title h3 { color: #FFF; font-size: 22px; font-weight: 800; margin-bottom: 5px; }
.car-title p { color: #888; font-size: 14px; }

.premium-car-chassis {
    width: 100%;
    max-width: 320px;
    height: auto;
    min-height: 450px;
    background: #1A1A1A;
    border-radius: 60px 60px 40px 40px;
    border: 4px solid #2A2A2A;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.9), 0 30px 60px rgba(0,0,0,0.6);
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.car-windshield { height: 40px; background: linear-gradient(180deg, #050505, #111); border-radius: 20px 20px 0 0; margin: -10px -10px 15px -10px; border-bottom: 2px solid #000; }
.car-dashboard { height: 30px; background: #0A0A0A; border-radius: 10px; margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; border-top: 1px solid #222; }
.steering-wheel { width: 25px; height: 25px; border: 3px solid #444; border-radius: 50%; position: relative; }
.steering-wheel::after { content: ''; position: absolute; top: 50%; left: 0; width: 100%; height: 2px; background: #444; }
.center-screen { width: 40px; height: 15px; background: #00E5FF; border-radius: 3px; box-shadow: 0 0 8px rgba(0, 229, 255, 0.5); opacity: 0.8; }

.seat-row { display: flex; justify-content: space-between; align-items: center; width: 100%; gap: 5px; }
.luxury-seat { 
    flex: 1;
    max-width: 80px;
    height: 90px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.luxury-seat.available { background: linear-gradient(145deg, #2A2A2A, #1A1A1A); border: 2px solid #444; cursor: pointer; box-shadow: 4px 4px 10px #0a0a0a, -4px -4px 10px #2a2a2a; }
.luxury-seat.available:hover { border-color: var(--yellow); box-shadow: 0 0 20px rgba(252, 209, 22, 0.3); transform: translateY(-3px); }
.luxury-seat.available .seat-price { font-size: 13px; font-weight: 800; color: #FFF; margin-bottom: 5px; }
.luxury-seat.available .icon-seat { font-size: 32px; color: #888; transition: color 0.3s; }
.luxury-seat.available:hover .icon-seat { color: var(--yellow); }
.luxury-seat.selected { background: linear-gradient(145deg, var(--yellow), #D4AF37); border: 2px solid #FFF; transform: scale(1.05); box-shadow: 0 0 30px rgba(252, 209, 22, 0.6); }
.luxury-seat.selected .seat-price, .luxury-seat.selected .icon-seat { color: #000; }
.luxury-seat.occupied { background: #111; border: 2px solid #222; color: #555; cursor: not-allowed; box-shadow: inset 0 0 15px #000; }
.luxury-seat.occupied .material-icons-outlined { font-size: 28px; margin-bottom: 5px; }
.seat-name { font-size: 10px; font-weight: 700; text-transform: uppercase; }
.car-rear-glass { height: 30px; background: linear-gradient(0deg, #050505, #111); border-radius: 0 0 20px 20px; margin: 15px -10px -10px -10px; border-top: 2px solid #000; }
.car-legend { display: flex; justify-content: center; gap: 20px; margin-top: 40px; flex-wrap: wrap; }
.car-legend div { display: flex; align-items: center; gap: 8px; color: #888; font-size: 14px; font-weight: 600; }
.legend-dot { width: 14px; height: 14px; border-radius: 4px; }
.legend-dot.avail { background: #2A2A2A; border: 1px solid #444; }
.legend-dot.sel { background: var(--yellow); }
.legend-dot.occ { background: #111; border: 1px solid #222; }


/* =================================================================
   ÖZEL TRANSFER SAYFASI (PRIVATE TRANSFER)
   ================================================================= */
.transfer-page-wrapper {
    background: #0D0D0D;
    min-height: 100vh;
    padding: 60px 0 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
}

.transfer-header-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    border-bottom: 1px solid #333;
    padding-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.transfer-booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Sol Panel (Form) */
.booking-form-card {
    background: #151515;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.card-header-premium {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #222;
}
.card-header-premium .material-icons-outlined { font-size: 32px; color: var(--yellow); }
.card-header-premium h3 { font-size: 24px; font-weight: 800; color: #FFF; margin: 0; }
.form-section-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--red);
    font-weight: 800;
    margin: 25px 0 15px;
}
.select-wrapper { position: relative; }

/* Sağ Panel (Araç Kartı) */
.vehicle-summary-card {
    background: linear-gradient(145deg, #1A1A1A, #111);
    border: 1px solid #333;
    border-radius: 16px;
    padding: 30px;
    position: sticky;
    top: 100px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.vehicle-image-box { position: relative; border-radius: 12px; overflow: hidden; margin-bottom: 25px; border: 2px solid #222; }
.v-img { height: 250px; background-size: cover; background-position: center; transition: transform 0.5s ease; }
.vehicle-image-box:hover .v-img { transform: scale(1.05); }
.absolute-badge { position: absolute; top: 15px; right: 15px; z-index: 2; margin: 0; }
.vehicle-details h3 { font-size: 22px; font-weight: 800; color: #FFF; margin-bottom: 10px; display: flex; justify-content: space-between; align-items: center; }
.vehicle-details h3 span { font-size: 13px; color: #888; font-weight: 500; }
.vehicle-details p { font-size: 14px; color: #AAA; margin-bottom: 25px; line-height: 1.7; }
.vehicle-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 30px; padding-bottom: 25px; border-bottom: 1px dashed #333; }
.spec { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #CCC; font-weight: 600; }
.spec .material-icons-outlined { color: var(--yellow); }
.guarantee-text {
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #888;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.guarantee-text .material-icons-outlined { color: #4CAF50; font-size: 18px; }


/* =================================================================
   TAXI & EXTRA SERVICES SAYFASI
   ================================================================= */
.taxi-services-section { padding: 90px 0; background: var(--bg-main); }
.taxi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.taxi-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.taxi-card:hover { transform: translateY(-5px); border-color: var(--yellow); }
.featured-taxi-card { border-left: 5px solid var(--yellow); background: var(--bg-sec); }
.tc-icon { margin-bottom: 18px; }
.tc-icon .material-icons-outlined { font-size: 40px; color: var(--yellow); }
.tc-content h3 { font-size: 18px; font-weight: 700; color: var(--header-color); margin: 0 0 10px 0; }
.tc-content p { font-size: 14px; color: var(--text-main); line-height: 1.6; margin: 0 0 20px 0; }
.btn-taxi-res {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--pure-black);
    color: var(--yellow);
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    margin-top: auto;
    border: 1px solid var(--yellow);
    transition: var(--transition);
    white-space: nowrap;
}
.btn-taxi-res:hover { background: var(--yellow); color: var(--pure-black); }


/* =================================================================
   CONTACT SAYFASI
   ================================================================= */
.contact-hero {
    background: linear-gradient(180deg, #000, #0A0A0A);
    padding: 100px 0 60px;
    text-align: center;
    border-bottom: 1px solid #222;
}
.contact-hero h1 { font-size: clamp(32px, 5vw, 45px); color: #FFF; font-weight: 800; margin: 20px 0; }
.contact-hero p { color: #AAA; font-size: 18px; max-width: 600px; margin: 0 auto; }
.contact-page-section { padding: 90px 0; background: var(--bg-main); }
.contact-grid-page { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.c-info-card {
    display: flex;
    gap: 18px;
    background: var(--card-bg);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow);
    flex-wrap: wrap;
}
.c-icon { font-size: 36px; color: var(--yellow); flex-shrink: 0; }
.wa-icon { color: #25D366; }
.c-info-text h4 { font-size: 16px; font-weight: 700; color: var(--header-color); margin: 0 0 6px 0; }
.c-info-text p { font-size: 14px; color: var(--text-muted); margin: 0; word-break: break-word; }
.big-phone { font-size: 20px; font-weight: 700; color: var(--header-color); }
.c-status { font-size: 11px; font-weight: 600; color: #10b981; }
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
}
.social-contact-row {
    background: var(--card-bg);
    padding: 20px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow);
}
.social-contact-row h4 { font-size: 14px; font-weight: 700; color: var(--header-color); margin: 0 0 12px 0; }
.social-icons-wrapper { display: flex; gap: 10px; flex-wrap: wrap; }
.social-icons-wrapper a {
    width: 40px;
    height: 40px;
    background: var(--bg-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: var(--transition);
}
.social-icons-wrapper a:hover { background: var(--yellow); color: var(--pure-black); }
.contact-form-wrapper {
    background: var(--card-bg);
    padding: 35px;
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow);
}
.contact-form-wrapper h3 { font-size: 22px; font-weight: 700; color: var(--header-color); margin: 0 0 5px 0; }
.contact-form-wrapper > p { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }
.form-row-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.btn-send-message {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--yellow);
    color: var(--pure-black);
    padding: 14px;
    border: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
}
.full-width-map { position: relative; }
.full-width-map iframe { display: block; width: 100%; height: 450px; border: none; }
.map-overlay-banner {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pure-black);
    color: var(--white);
    padding: 16px 30px;
    border-radius: 8px;
    text-align: center;
    width: 90%;
    max-width: 400px;
}
.map-overlay-banner h3 { margin: 0 0 4px 0; font-size: 16px; color: var(--yellow); }
.map-overlay-banner p { margin: 0; font-size: 13px; opacity: 0.8; }


/* =================================================================
   ABOUT SAYFASI
   ================================================================= */
.about-hero {
    padding: 40px 20px;
    text-align: center;
    background: var(--bg-main);
    color: var(--text-main);
    overflow: hidden;
}
.about-hero .container { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.about-hero h1 { font-size: clamp(32px, 5vw, 48px); font-weight: 800; line-height: 1.2; margin-bottom: 20px; color: var(--header-color); }
.about-hero p { font-size: 18px; opacity: 0.85; max-width: 600px; margin: 0 auto; color: var(--text-muted); }

.rich-about-section { padding: 90px 0; background: var(--bg-main); }
.rich-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image-collage { position: relative; height: 500px; }
.img-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow);
}
.img-front {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 65%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    border: 4px solid var(--bg-sec);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    z-index: 2;
}
.quality-stamp {
    position: absolute;
    bottom: 40px;
    left: 30px;
    background: var(--yellow);
    color: var(--pure-black);
    padding: 16px 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 800;
    z-index: 3;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.quality-stamp .material-icons-outlined { font-size: 30px; display: block; margin-bottom: 5px; }
.quality-stamp p { font-size: 14px; line-height: 1.3; margin: 0; }
.about-story-content .sub-heading { color: var(--red); }
.about-story-content h2 { font-size: 36px; font-weight: 800; color: var(--header-color); margin-bottom: 20px; line-height: 1.2; }
.about-story-content .lead-text { font-size: 17px; font-weight: 600; color: var(--yellow); margin-bottom: 20px; line-height: 1.5; }
.about-story-content p { color: var(--text-muted); font-size: 15px; line-height: 1.7; margin-bottom: 30px; }
.story-features { display: flex; flex-direction: column; gap: 20px; }
.sf-item { display: flex; gap: 15px; align-items: flex-start; }
.sf-item .material-icons-outlined { font-size: 28px; color: var(--yellow); background: rgba(252,209,22,0.1); padding: 10px; border-radius: 12px; }
.sf-item h4 { font-size: 16px; font-weight: 700; color: var(--header-color); margin: 0 0 4px 0; }
.sf-item span { font-size: 13px; color: var(--text-muted); }

.about-stats-banner { background: var(--pure-black); padding: 60px 0; border-top: 1px solid #222; border-bottom: 1px solid #222; }
.astats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; gap: 30px; }
.astat-box h3 { font-size: clamp(32px, 5vw, 45px); font-weight: 800; color: var(--yellow); margin-bottom: 10px; line-height: 1; }
.astat-box p { color: #FFF; font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin: 0; }

.team-section { padding: 90px 0; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.team-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.team-card:hover { transform: translateY(-10px); border-color: var(--yellow); }
.team-icon { font-size: 48px; color: var(--yellow); margin-bottom: 20px; }
.team-card h4 { font-size: 18px; font-weight: 700; color: var(--header-color); margin-bottom: 12px; }

/* Genel Sayfa */
.page-hero-full { background: #000; padding: 80px 0 40px; text-align: center; border-bottom: 1px solid #222; }
.page-hero-full h1 { font-size: clamp(28px, 5vw, 40px); color: #FFF; font-weight: 800; margin-bottom: 10px; }
.page-hero-full p { color: var(--yellow); font-weight: 600; font-size: 14px; }
.generic-page-fullwidth { padding: 90px 0; background: var(--bg-main); }
.fullwidth-content { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.content-block { margin-bottom: 40px; }
.content-block h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--header-color);
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--yellow);
}
.content-block p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 15px; }
.premium-list { list-style: none; padding: 0; }
.premium-list li { position: relative; padding-left: 24px; margin-bottom: 12px; font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.premium-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; background: var(--yellow); border-radius: 50%; }


/* =================================================================
   REVIEWS SAYFASI
   ================================================================= */
.reviews-page-wrapper { background: var(--bg-main); padding: 60px 0 100px; }
.review-form-container {
    max-width: 700px;
    margin: 0 auto 80px;
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
}
.review-form-container::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: linear-gradient(90deg, var(--yellow), var(--red)); }
.review-form-header { padding: 40px 40px 20px; text-align: center; }
.review-form-header .material-icons-outlined { font-size: 48px; color: var(--yellow); margin-bottom: 15px; }
.review-form-header h3 { font-size: 24px; font-weight: 800; color: var(--header-color); margin-bottom: 10px; }
.review-form-header p { color: var(--text-muted); font-size: 15px; }
.review-form-body { padding: 0 40px 40px; }
.rating-selector-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg-main);
    border-radius: 12px;
    border: 1px solid var(--card-border);
}
.rating-selector-wrapper label { font-weight: 700; color: var(--header-color); margin-bottom: 15px; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.star-rating-input { display: flex; gap: 10px; cursor: pointer; flex-wrap: wrap; justify-content: center; }
.star-rating-input .material-icons-outlined {
    font-size: clamp(32px, 8vw, 42px);
    color: var(--card-border);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.star-rating-input .material-icons-outlined.active { color: var(--yellow); filter: drop-shadow(0 0 8px rgba(252, 209, 22, 0.4)); }
.star-rating-input .material-icons-outlined:hover { transform: scale(1.15) translateY(-2px); }
.form-message-box { padding: 16px 20px; border-radius: 8px; margin-bottom: 25px; font-weight: 600; display: flex; align-items: center; gap: 10px; font-size: 14px; }
.form-message-box.success { background: rgba(16, 185, 129, 0.1); color: #10b981; border: 1px solid rgba(16, 185, 129, 0.2); }
.form-message-box.error { background: rgba(239, 68, 68, 0.1); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.2); }
.review-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--card-border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    background: var(--input-bg);
    color: var(--text-main);
    transition: var(--transition);
}
.review-textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--card-border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    background: var(--input-bg);
    color: var(--text-main);
    transition: var(--transition);
    resize: vertical;
    min-height: 120px;
}
.review-input:focus,
.review-textarea:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1); }
.empty-state-card {
    background: var(--card-bg);
    border: 1px dashed var(--card-border);
    border-radius: var(--radius);
    padding: 60px 20px;
    text-align: center;
    grid-column: 1 / -1;
}
.empty-state-card .material-icons-outlined { font-size: 64px; color: var(--card-border); margin-bottom: 20px; }
.empty-state-card h4 { color: var(--header-color); font-size: 20px; margin-bottom: 10px; }
.empty-state-card p { color: var(--text-muted); }


/* =================================================================
   GENEL RESPONSIVE (MOBİL) DÜZENLEMELERİ
   ================================================================= */
@media (max-width: 1024px) {
    .shared-booking-grid,
    .transfer-booking-grid { grid-template-columns: 1fr; gap: 40px; }
    .virtual-car-wrapper,
    .vehicle-summary-card { position: static; }
    .shared-header-box,
    .transfer-header-box { flex-direction: column; align-items: flex-start; }
    .step-indicator { width: 100%; justify-content: flex-start; }
    .rich-about-grid,
    .contact-grid-page { grid-template-columns: 1fr; }
    .about-image-collage { height: 400px; margin-bottom: 40px; }
    .astats-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .taxi-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-taxi-card { grid-column: span 2; }
}

@media (max-width: 768px) {
    .shared-page-wrapper,
    .transfer-page-wrapper { padding: 40px 0 80px; }
    .form-row,
    .vehicle-specs,
    .form-row-contact { grid-template-columns: 1fr; gap: 0; }
    .astats-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .taxi-grid { grid-template-columns: 1fr; }
    .featured-taxi-card { grid-column: span 1; flex-direction: column !important; align-items: flex-start; gap: 15px; }
    .featured-taxi-card .btn-taxi-res { align-self: flex-start !important; }
    .about-image-collage { height: 300px; }
    .img-back { height: 220px; }
    .img-front { height: 180px; }
    .quality-stamp { bottom: 20px; left: 20px; padding: 12px 16px; }
    .quality-stamp p { font-size: 12px; }
    .booking-form-card,
    .passenger-form-card { padding: 25px 20px; }
    .star-rating-input { gap: 5px; }
    .star-rating-input .material-icons-outlined { font-size: 36px; }
    .review-form-header,
    .review-form-body { padding-left: 20px; padding-right: 20px; }
    .contact-hero h1,
    .about-hero h1 { font-size: 32px; }
    .page-hero-full h1 { font-size: 28px; }
    .map-overlay-banner { width: 95%; padding: 12px 20px; }
}

@media (max-width: 480px) {
    .step-indicator { gap: 5px; padding: 10px 15px; }
    .step { font-size: 11px; gap: 3px; }
    .step .material-icons-outlined { font-size: 14px; }
    .step-line { width: 15px; }
    .trip-select-card { padding: 15px; }
    .tsc-left strong { font-size: 16px; }
    .seat-badge { font-size: 11px; padding: 4px 10px; }
    .premium-car-chassis { max-width: 280px; }
    .luxury-seat { max-width: 65px; height: 75px; }
    .luxury-seat.available .icon-seat { font-size: 26px; }
    .luxury-seat.occupied .material-icons-outlined { font-size: 22px; }
    .fullwidth-content { padding: 0 15px; }
}

.custom-dialog-box {
    max-width: 360px !important;
    text-align: center;
    padding: 35px 25px !important;
    border-radius: 16px !important;
}
.dialog-icon {
    font-size: 56px !important;
    margin-bottom: 15px;
}
.dialog-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}
.dialog-message {
    color: #64748b;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 25px;
}
.dialog-btn {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border-radius: 8px;
}
.dialog-buttons {
    display: flex;
    gap: 12px;
}
.dialog-btn-cancel {
    flex: 1;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #475569;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}
.dialog-btn-cancel:hover {
    background: #e2e8f0;
}
.dialog-buttons .dialog-btn {
    flex: 1;
    width: auto;
}