﻿@charset "utf-8";

/* CSS Document */
/* ========================================================
   SİYAH VE ALTIN (PREMIUM VIP) TEMA GÜNCELLEMESİ
   ======================================================== */

/* Genel Arka Plan ve Metin Rengi */
body {
    background: #121212 !important; /* Koyu Siyah Arka plan */
    color: #e0e0e0 !important; /* Açık Gri/Beyaz okunabilir metinler */
}

/* Header (Üst Menü) */
header {
    background: #1a1a1a !important;
    border-bottom: 1px solid #333 !important;
}
.logo {
    color: #d4af37 !important; /* Altın Sarısı */
}
.logo span {
    color: #f9d71c !important; /* Daha açık parlak altın */
}
nav a {
    color: #ccc !important;
}
nav a:hover {
    color: #d4af37 !important;
}
.lang span {
    color: #aaa;
}

/* Beyaz Arka Plana Sahip Olan Tüm Kartlar ve Kutular */
.content, .transfer-card, .testi-card, .contact-wrapper, 
.blog-card, .contact-info, .vehicle-card, .info-box, 
.contact-form, .pagination a {
    background: #1e1e1e !important;
    border: 1px solid #333 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
    color: #efefef !important;
}

/* Başlıklar (Altın Rengi) */
h1, h2, h3, h4, .section-title, .page-header h1, .page-header h2, 
.content h3, .contact-info h3, .contact-form h3, .blog-title, 
.testi-card .author-name, .price {
    color: #d4af37 !important;
}

/* Ana Arama Kutusu ve Mavi Olan Alanlar */
.search-box, .testimonial, .notice-bar {
    background: #1a1a1a !important;
    border: 1px solid #d4af37 !important;
    color: #e0e0e0 !important;
}

/* Butonlar (Altın Arka Plan, Siyah Yazı) */
.search-btn, .btn-submit, .btn-view-all, .submit-btn, .select-btn, .pagination a.active {
    background: #d4af37 !important;
    color: #121212 !important;
    border: none !important;
}
.search-btn:hover, .btn-submit:hover, .btn-view-all:hover, 
.submit-btn:hover, .select-btn:hover, .pagination a:hover {
    background: #b5952f !important;
    color: #000 !important;
}

/* Form Elemanları (Input, Select, Textarea) */
.form-control, .form-input-wrapper input, .form-input-wrapper select, 
.form-input-wrapper textarea, .form-group select {
    background: #2a2a2a !important;
    border: 1px solid #444 !important;
    color: #fff !important;
}
.form-control:focus, .form-input-wrapper input:focus, 
.form-input-wrapper select:focus, .form-input-wrapper textarea:focus {
    border-color: #d4af37 !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2) !important;
}
.form-label, .form-label span, .form-group label {
    color: #ccc !important;
}

/* Araç Kartları (Rezervasyon Sayfası) Detayları */
.car-model, .tag, .blog-category, .price-box .type {
    background: #2a2a2a !important;
    color: #d4af37 !important;
    border: 1px solid #444 !important;
}
.inspect-btn {
    border: 2px solid #d4af37 !important;
    color: #d4af37 !important;
}
.inspect-btn:hover {
    background: #d4af37 !important;
    color: #121212 !important;
}
.price-box .amount {
    background: #d4af37 !important;
    color: #121212 !important;
}
.payment-text, .red-note, .step-note, .page-header p, .blog-excerpt, .blog-date {
    color: #aaa !important;
}

/* Premium Vip Kart Özelleştirmeleri (Zaten Altındı, Uyumlu Hale Getiriyoruz) */
.premium-card {
    border: 2px solid #d4af37 !important;
}
.premium-badge {
    background: #d4af37 !important;
    color: #121212 !important;
}

/* Linkler ve Oklar */
.read-more {
    color: #d4af37 !important;
}
.read-more:hover {
    color: #f9d71c !important;
}

/* Footer (En Alt Kısım) */
footer {
    background: #0a0a0a !important; /* Simsiyah */
    border-top: 1px solid #333 !important;
}
.contact-box {
    background: #1a1a1a !important;
    border: 1px solid #d4af37 !important;
}
.footer-title {
    color: #d4af37 !important;
}
.footer-links a {
    color: #aaa !important;
}
.footer-links a:hover {
    color: #d4af37 !important;
}

/* Genel Çizgiler / Border'lar */
.res-header, .vehicle-summary, .author-info, .vc-left, .vc-right, .contact-info {
    border-color: #333 !important;
}

.logo a {
    color: #d4af37 !important;
    text-decoration: none !important;
}

.logo a:hover {
    color: #f9d71c !important;
}

.logo a span {
    color: #f9d71c !important;
}
p,li {
    color: #e8e8e8 !important;
}
quote-text {
    color: #e8e8e8 !important;
}


/* ========================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f3f3f3;
    color:#222;
}

a{
    text-decoration:none;
    color:inherit;
}

.container{
    width:95%;
    max-width:1200px;
    margin:auto;
}

/* HEADER */

header{
    background:#fff;
    border-bottom:1px solid #ddd;
}

.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:15px 0;
    gap:20px;
}

.logo a,
.logo a:hover,
.logo a:visited,
.logo a:active{
    font-size:38px;
    font-weight:700;
    color:#007EA8;
}

.logo span{
    color:#ff7a00;
}

nav{
    display:flex;
    align-items:center;
    gap:30px;
}

nav a{
    font-size:15px;
    color:#333;
    transition:.3s;
}

nav a:hover{
    color:#007EA8;
}

.lang{
    display:flex;
    flex-direction:column;
    font-size:14px;
    gap:3px;
}

/* HERO */

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
    pointer-events: none;
}

.hero {
    position: relative;
    min-height: 520px;
    overflow: hidden;
}

.hero-lcp {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}


.hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
}

.hero h1{
    position:absolute;
    top:55px;
    left:0;
    width:100%;
    text-align:center;
    color:#fff;
    font-size:52px;
    margin:0;
    font-weight:600;
    line-height:1.15;
}

/* SEARCH */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.search-box{
    position:absolute;
    top:350px;
    left:50%;
    transform:translateX(-50%);

    background:#007EA8;
    border-radius:8px;
    padding:20px;

    display:grid;
    grid-template-columns:minmax(0, 1fr) minmax(0, 1fr) 220px 220px;
    gap:15px;
    align-items:end;

    width:calc(100% - 150px);
    box-sizing:border-box;
}


/*.form-group label{
    display:block;
    color:#fff;
    font-size:13px;
    margin-bottom:8px;
}*/
.form-group label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.form-group select{
    width:100%;
    height:50px;
    border:none;
    border-radius:5px;
    padding:0 15px;
    font-size:15px;
}

.search-btn{
margin-top:0px;
    height:50px;
    border:none;
    border-radius:5px;
    background:#003f57;
    color:#fff;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.search-btn:hover{
    background:#002736;
}

/* ABOUT US SECTION */
.about-section {
    padding: 60px 0 80px;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}


/* CONTENT BOX */
.content {
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    line-height: 1.9;
    box-shadow: 0 4px 10px rgba(0,0,0,.05);
}

.content h3 {
    margin: 30px 0 15px;
    font-size: 24px;
    color: #007EA8;
    font-weight: 600;
}

.content h3:first-child {
    margin-top: 0;
}

.content p {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
}

.content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.content ul li {
    font-size: 16px;
    color: #444;
    margin-bottom: 10px;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.image-grid img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    height: 300px;
}

/* HOW IT WORKS SECTION */
.how-it-works-section {
    padding: 50px 0 80px;
}

.page-title {
    font-size: 22px;
    font-weight: 400;
    color: #333;
    margin-bottom: 40px;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 60px; /* Adimlar arasi bosluk */
}

.step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.step h3 {
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    color: #222;
    margin-bottom: 20px;
}

.step img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    /* G?rsellerin siteye tam oturmasi i?in hafif bir g?lge eklenebilir, g?rselde yoksa kapatabilirsiniz */
    /* box-shadow: 0 4px 10px rgba(0,0,0,.05); */ 
}

.step .step-note {
    margin-top: 20px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    max-width: 1000px;
}

/* SECTION */

.section{
    padding:70px 0;
}

.section-title{
    text-align:center;
    font-size:40px;
    margin-bottom:40px;
    font-weight:600;
    color:#333;
}

/* TRANSFER GRID */

.transfer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.transfer-card{
    background:#fff;
    padding:22px;
    border-radius:8px;
    box-shadow:0 4px 10px rgba(0,0,0,.08);
    display:flex;
    align-items:center;
    justify-content:space-between;
    transition:.3s;
}

.transfer-card:hover{
    transform:translateY(-5px);
}

.transfer-left{
    display:flex;
    align-items:center;
    gap:15px;
}

.icon{
    font-size:34px;
}

.route{
    font-size:16px;
    line-height:1.5;
    font-weight:500;
}

.price{
    font-size:34px;
    font-weight:700;
    /*color:#007EA8;*/
	color:#007EA8;
}

/* TESTIMONIAL */

.testimonial{
    background:#007EA8;
    color:#fff;
    padding:60px 30px;
    border-radius:10px;
    text-align:center;
}

.testimonial h2{
    font-size:38px;
    margin-bottom:25px;
}

.testimonial p{
    max-width:900px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
}

.customer{
    margin-top:30px;
    font-size:24px;
    font-weight:600;
}

/* CONTENT */

.content{
    background:#fff;
    padding:50px;
    border-radius:10px;
    line-height:1.9;
    box-shadow:0 4px 10px rgba(0,0,0,.05);
}

.content h3{
    margin:30px 0 15px;
    font-size:28px;
}

.content ul{
    padding-left:20px;
}

/* FOOTER */

footer{
    color:#fff;
    margin-top:70px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
    padding:60px 0;
}

.footer-title{
    font-size:20px;
    margin-bottom:20px;
    font-weight:600;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.footer-links a{
    color:#ddd;
    font-size:15px;
}

.footer-links a:hover{
    color:#fff;
}

.contact-boxx{

    padding:25px;
    border-radius:10px;
}

/* PHOTO GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 220px;
    box-shadow: 0 4px 10px rgba(0,0,0,.08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
    background: #eaeaea; /* G�rsel y�klenene kadar gri arkaplan */
}

.gallery-item:hover img {
    transform: scale(1.08);
}
/* LATEST BLOG POSTS (ANASAYFA) */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,.05);
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,.1);
}

.blog-img {
    width: 100%;
    height: 220px;
    background: #ddd;
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #007EA8;
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
    z-index: 2;
}

.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-size: 13px;
    color:#666666;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color .3s;
}

.blog-title:hover {
    color: #007EA8;
}

.blog-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    font-size: 14px;
    font-weight: 600;
    color: #007EA8;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: .3s;
}

.read-more:hover {
    color: #ff7a00;
}

/* T�m�n� G�r Butonu */
.view-all-container {
    text-align: center;
    margin-top: 50px;
}

.btn-view-all {
    display: inline-block;
    background: #007EA8;
    color: #fff;
    padding: 14px 35px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-view-all:hover {
    background: #0088b8;
}

/* TESTIMONIALS PAGE SECTION */
.testimonials-page {
    padding: 60px 0 80px;
}


.page-header h1 {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}



/* TESTIMONIALS GRID */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testi-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,.04);
    display: flex;
    flex-direction: column;
    transition: transform .3s ease;
}

.testi-card:hover {
    transform: translateY(-5px);
}

.testi-card .stars {
    color: #ffb800; /* Yildiz rengi */
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testi-card .quote-text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1;
}

.testi-card .author-info {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.testi-card .author-name {
    font-size: 16px;
    font-weight: 600;
    color: #007EA8;
}

.testi-card .author-country {
    font-size: 13px;
    color: #888;
    margin-top: 3px;
}

/* CONTACT INFO */

.contact-section {
    padding: 60px 0 80px;
}

.contact-info {
    padding: 50px;
    background: #fafafa;
    border-right: 1px solid #eee;
}

.contact-info h3 {
    font-size: 24px;
    color: #007EA8;
    margin-bottom: 30px;
    font-weight: 600;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h4 {
    font-size: 15px;
    color: #333;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.map-container {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    background: #e0e0e0;
}

/* CONTACT FORM */
.contact-form {
    padding: 50px;
}

.contact-form h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: .3s;
    background: #fcfcfc;
}

.form-control:focus {
    outline: none;
    border-color: #007EA8;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 166, 223, 0.1);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.submit-btn {
    background: #007EA8;
    color: #fff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: .3s;
    width: 100%;
}

.submit-btn:hover {
    background: #0088b8;
}

/* FOOTER */
footer {
    background: #3d3d3d;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 60px 0;
}

.footer-title {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #ddd;
    font-size: 15px;
}

.footer-links a:hover {
    color: #fff;
}

/* BLOG PAGE STYLES */
.blog-section {
    padding: 60px 0 80px;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 16px;
    color: #666;
}

/* BLOG GRID */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,.05);
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,.1);
}

.blog-img {
    width: 100%;
    height: 220px;
    background: #ddd; /* Resim yoksa gri arkaplan g?r?ns?n */
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #007EA8;
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
}

.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title:hover {
    color: #007EA8;
}

.blog-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    font-size: 14px;
    font-weight: 600;
    color: #007EA8;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: .3s;
}

.read-more:hover {
    color: #ff7a00;
}

.read-more::after {
    content: '\2192'; /* Saga ok isareti */
    font-size: 16px;
}

/* PAGINATION */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    color: #333;
    border-radius: 5px;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0,0,0,.05);
    transition: .3s;
}

.pagination a:hover, .pagination a.active {
    background: #007EA8;
    color: #fff;
}
/* SEARCH RESULTS PAGE STYLES */
.search-results-section {
    padding: 40px 0 80px;
}

.page-header {
    text-align: center;
    margin-bottom: 30px;
}

.page-header h2 {
    font-size: 32px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.page-header p {
    font-size: 15px;
    color: #666;
}

/* Info Boxes */
.info-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.info-box {
    background: #b5ebfd;
    border: 1px solid #82d7f4;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.info-box h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #222;
}

.info-box p {
    font-size: 13px;
    color: #444;
}

/* Notice Bar */
.notice-bar {
    background: #0099cc;
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 30px;
}

/* Vehicle List */
.vehicle-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vehicle-card {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,.04);
}

.vc-left {
    width: 250px;
    padding: 20px;
    border-right: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.car-img {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
}

.car-img img {
    max-width: 100%;
    max-height: 100%;
}

.car-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 50px;
}

.car-model {
    background: #a4e5fb;
    width: 100%;
    padding: 6px;
    border-radius: 4px;
    font-size: 13px;
    color: #333;
    margin-bottom: 10px;
}

.inspect-btn {
    background: transparent;
    border: 2px solid #0099cc;
    color: #0099cc;
    padding: 6px 15px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.inspect-btn:hover {
    background: #0099cc;
    color: #fff;
}

.vc-center {
    flex: 1;
    padding: 25px;
}

.vc-center h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #333;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: #c3ecfb;
    color: #444;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 4px;
}

.vc-right {
    width: 230px;
    padding: 20px;
    background: #fafafa;
    border-left: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.pricing-toggle {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-bottom: 15px;
}

.price-box {
    flex: 1;
    cursor: pointer;
    text-align: center;
}

.price-box .type {
    background: #99def6;
    font-size: 12px;
    padding: 8px 5px;
    border-radius: 6px 6px 0 0;
    color: #444;
}

.price-box .type input {
    margin-bottom: 3px;
}

.price-box .amount {
    background: #0099cc;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 5px;
    border-radius: 0 0 6px 6px;
}

.select-btn {
    width: 100%;
    background: #0099cc;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
    margin-bottom: 10px;
}

.select-btn:hover {
    background: #007fae;
}

.payment-text {
    font-size: 12px;
    color: #666;
}

/* Premium Card Overrides */
.premium-wrapper {
    position: relative;
    margin-top: 30px;
}

.premium-badge {
    position: absolute;
    top: -30px;
    left: 0;
    background: #f1c40f;
    color: #fff;
    padding: 6px 20px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px 6px 0 0;
}

.premium-card {
    border: 2px solid #f1c40f;
    background: #fffefa;
}

.premium-card .car-model {
    background: #fce270;
}

.premium-card .inspect-btn {
    border-color: #f1c40f;
    color: #d4a900;
}
.premium-card .inspect-btn:hover {
    background: #f1c40f;
    color: #fff;
}

.premium-card .tag {
    background: #fde68a;
}

.premium-card .price-box .type {
    background: #fce270;
}

.premium-card .price-box .amount,
.premium-card .select-btn {
    background: #f1c40f;
}

.premium-card .select-btn:hover {
    background: #d4a900;
}

/* RESERVATION PAGE STYLES */
.reservation-section {
    padding: 40px 0 80px;
}

.res-header {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 15px;
}

/* Vehicle Info Box */
.vehicle-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 40px 0;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 40px;
}

.vs-col {
    text-align: center;
    flex: 1;
}

.vs-img img {
    max-width: 220px;
    height: auto;
}

.vs-title {
    font-weight: 600;
    font-size: 14px;
    margin-top: 10px;
    color: e8e8e8;
}

.vs-route {
    font-weight: 600;
    font-size: 15px;
    color: e8e8e8;
}

.vs-price-label {
    font-weight: 600;
    font-size: 14px;
    color: e8e8e8;
}

.vs-price {
    font-size: 15px;
    color: #e8e8e8;
    margin-top: 3px;
}

/* Form Layout */
.form-section-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 15px;
    color: #e8e8e8;
}

.passenger-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 50px;
}

.arrival-info-section {
    margin-bottom: 40px;
}

.form-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
}

.form-label {
    width: 170px;
    font-size: 13px;
    color: #333;
    display: flex;
    justify-content: space-between;
    padding-right: 10px;
    padding-top: 6px;
}

.form-label span {
    flex-grow: 1;
}

.form-label::after {
    content: ":";
    margin-left: 10px;
}

.form-input-wrapper {
    flex: 1;
}

.form-input-wrapper input[type="text"],
.form-input-wrapper input[type="email"],
.form-input-wrapper input[type="number"],
.form-input-wrapper select,
.form-input-wrapper textarea {
    width: 100%;
    max-width: 300px;
    padding: 5px 8px;
    border: 1px solid #a9a9a9;
    border-radius: 2px;
    font-family: inherit;
    font-size: 13px;
    background: #fff;
}

.form-input-wrapper textarea {
    max-width: 400px;
    min-height: 70px;
    resize: vertical;
}

/* Specific inputs based on image */
.short-input {
    max-width: 50px !important;
}

.date-group, .time-group {
    display: flex;
    gap: 5px;
}

.date-group select, .time-group select {
    width: auto !important;
}

.red-note {
    color: #d0021b;
    font-size: 13px;
    margin-top: 5px;
    display: block;
    margin-left: 170px; /* Align with input */
}

/* Submit Button */
.submit-container {
    text-align: center;
    margin-top: 40px;
}

.btn-submit {
    padding: 6px 15px;
    background: #f0f0f0;
    border: 1px solid #777;
    border-radius: 2px;
    font-size: 13px;
    cursor: pointer;
    color: #333;
    font-family: inherit;
}

.btn-submit:hover {
    background: #e4e4e4;
}

/* A�ilir Menu CSS */
.car-modal{

    display:none;

    position:fixed;

    left:0;
    top:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.75);

    z-index:99999;

}

.car-modal-content{

    background:#fff;

    width:90%;

    max-width:850px;

    max-height:90vh;

    overflow:auto;

    margin:40px auto;

    padding:30px;

    border-radius:10px;

    position:relative;

}

.close{

    position:absolute;

    right:20px;

    top:15px;

    font-size:35px;

    cursor:pointer;

}

.transfer-columns{
    display:flex;
    gap:30px;
    align-items:flex-start;
}

.transfer-column{
    flex:1;
}

/* */


/* RESPONSIVE */

@media(max-width:992px){

    .search-box{
        grid-template-columns:1fr 1fr;
    }

    .transfer-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hero h1{
        font-size:42px;
    }
	 .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
	
	 .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
   
	.blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
	    .info-boxes {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px){
	
	.main-menu{
        display:none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
    .steps-container {
        gap: 40px;
    }
    .step h3 {
        font-size: 16px;
    }

    .header-inner{
        flex-direction:column;
        align-items:flex-start;
    }

    nav{
        flex-wrap:wrap;
        gap:15px;
    }

    /*.hero{
        min-height:650px;
        padding:20px 0;
    }*/
	 .hero {
        min-height: 520px;
        height: 520px;
        position: relative;
        overflow: hidden;
    }

    .hero-lcp {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 100%;
        padding: 40px 15px;
        box-sizing: border-box;
    }
	
	
	
	
	/*..hero{
        min-height:650px;
    }

    hero h1{
        font-size:34px;
        margin-bottom:10px;
    }*/
	.hero h1{
        top:35px;
        padding:0 20px;
        font-size:32px;
        line-height:1.2;
        box-sizing:border-box;
    }

    /*.search-box{
        grid-template-columns:1fr;
		margin-top:50px;
		transform: translateY(0px);
    }*/
	.search-box{
	grid-template-columns:1fr;
        top:160px;
        width:calc(100% - 30px);
    }

    .transfer-grid{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .section-title{
        font-size:30px;
    }

    .content{
        padding:30px;
    }
	
	.gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .gallery-item {
        height: 150px;
    }
	.blog-grid {
        grid-template-columns: 1fr;
    }
	.testimonials-grid {
        grid-template-columns: 1fr;
    }
	.contact-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-info {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 30px;
    }
    .contact-form {
        padding: 30px;
    }
	.page-header h2 {
        font-size: 28px;
    }
	.blog-grid {
        grid-template-columns: 1fr;
    }
   
    .page-header h1 {
        font-size: 28px;
    }
	.vehicle-card {
        flex-direction: column;
    }
    .vc-left {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    .vc-right {
        width: 100%;
        border-left: none;
        border-top: 1px solid #eee;
    }
	.vehicle-summary {
        flex-direction: column;
        gap: 30px;
    }
    
    .passenger-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .form-label {
        width: 100%;
        margin-bottom: 5px;
        padding-top: 0;
    }
    
    .form-label::after {
        display: none;
    }
    
    .form-input-wrapper {
        width: 100%;
    }
    
    .form-input-wrapper input, 
    .form-input-wrapper textarea {
        max-width: 100%;
    }
    
    .red-note {
        margin-left: 0;
    }
	.lang{
    flex-direction:row;
        align-items:center;
        justify-content:center; /* Istersen flex-end de kullanabilirsin */
        gap:15px;
        margin-bottom:0;
        width:100%;
	margin-bottom:-16px;
}
   .logo a,
.logo a:hover,
.logo a:visited,
.logo a:active{
        width:100%;
        text-align:center;
    }
	
.transfer-columns{
        flex-direction:column;
    }
   
}

@media(max-width: 480px){
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item {
        height: 200px;
    }
}

