/* =====================================================
   CELESTE ROYAL - FRONTEND CSS
   ===================================================== */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #E5B96C;
    --primary-dark: #5568d3;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   TOPBAR - GENİŞLİK VE STIL AYARLARI
======================================== */
.top-bar {
    background: #2c3e50;
    padding: 10px 0;
    font-size: 14px;
    color: white;
    border-bottom: 2px solid rgba(229, 185, 108, 0.3);
}

.top-bar .container {
    max-width: 1400px; /* Header ile aynı genişlik */
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* ===== SOL TARAF (İletişim & Sosyal Medya) ===== */
.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #E5B96C;
}

.social-media {
    display: flex;
    gap: 10px;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.social-media a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-media a:hover {
    background: #E5B96C;
    transform: translateY(-2px);
}

/* ===== SAĞ TARAF (Dil, Para Birimi, Üyelik) ===== */
.top-bar-right {
    gap: 15px;
}


/* ===== LANGUAGE SELECTOR ===== */
.language-selector {
    position: relative;
    z-index: 10000; /* ÇOK YÜKSEK Z-INDEX */
}

.lang-btn {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10001; /* DROPDOWN DAHA DA YÜKSEK */
}

.language-selector:hover .lang-dropdown,
.lang-dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    display: block;
    padding: 10px 15px;
    color: #2c3e50;
    text-decoration: none;
    font-size: 13px;
    transition: background 0.2s ease;
}

.lang-dropdown a:hover {
    background: #f8f9fa;
}

.lang-dropdown a.active {
    background: #E5B96C;
    color: white;
    font-weight: 600;
}

/* ===== CURRENCY SELECTOR ===== */
.currency-selector {
    position: relative;
    z-index: 10000; /* ÇOK YÜKSEK Z-INDEX */
}

.currency-btn {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.currency-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10001; /* DROPDOWN DAHA DA YÜKSEK */
}

.currency-selector:hover .currency-dropdown,
.currency-dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.currency-dropdown a {
    display: block;
    padding: 10px 15px;
    color: #2c3e50;
    text-decoration: none;
    font-size: 13px;
    transition: background 0.2s ease;
}

.currency-dropdown a:hover {
    background: #f8f9fa;
}

.currency-dropdown a.active {
    background: #E5B96C;
    color: white;
    font-weight: 600;
}

/* Üyelik/Login */
.login-btn {
    background: #E5B96C;
    color: white;
    padding: 6px 18px;
    border-radius: 6px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: #B8884F;
    transform: translateY(-2px);
}

/* ===== USER MENU ===== */
.user-menu {
    position: relative;
    z-index: 10000; /* ÇOK YÜKSEK Z-INDEX */
}

.user-menu a {
    color: white;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.user-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ===== RESPONSIVE - TOPBAR ===== */
/* ===== RESPONSIVE - TOPBAR ===== */
@media (max-width: 992px) {
    .top-bar .container {
        max-width: 100% !important;
        padding: 0 15px !important;
    }
    
    .top-bar {
        font-size: 13px !important;
        display: block !important;
    }
    
    .social-media {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 8px 0 !important;
        font-size: 12px !important;
        display: block !important;
    }
    
    .top-bar .container {
        padding: 0 12px !important;
    }
    
    .top-bar-content {
        flex-direction: column !important;
        gap: 8px !important;
        align-items: stretch !important;
    }
    
    .top-bar-left {
        width: 100% !important;
        justify-content: center !important;
        gap: 15px !important;
    }
    
    .top-bar-right {
        width: 100% !important;
        justify-content: center !important;
        gap: 10px !important;
    }
    
    .contact-info {
        display: flex !important;
        gap: 15px !important;
        justify-content: center !important;
    }
    
    .contact-info a {
        font-size: 12px !important;
    }
    
    .social-media {
        display: none !important;
    }
    
    .lang-btn,
    .currency-btn {
        padding: 5px 12px !important;
        font-size: 11px !important;
    }
    
    .login-btn {
        padding: 5px 15px !important;
        font-size: 11px !important;
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 6px 0 !important;
    }
    
    .top-bar-content {
        gap: 6px !important;
    }
    
    .top-bar-left {
        gap: 12px !important;
    }
    
    .top-bar-right {
        gap: 8px !important;
    }
    
    .contact-info {
        gap: 12px !important;
    }
    
    .contact-info a {
        font-size: 11px !important;
    }
    
    .lang-btn,
    .currency-btn,
    .login-btn {
        padding: 4px 10px !important;
        font-size: 10px !important;
    }
}


/* ========================================
   HEADER LOGO - YENİ DÜZENLEME
======================================== */
.main-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.main-header .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 85px;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    height: 85px;
    padding: 0;
}

.logo a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0;
}

.logo-img {
    max-height: 75px;
    max-width: 280px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Logo text alternatifi */
.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: #E5B96C;
    margin: 0;
    padding: 0;
    line-height: 1;
}

/* ========================================
   RESPONSIVE - TABLET
======================================== */
@media (max-width: 992px) {
    .main-header .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .header-content {
        min-height: 75px;
    }
    
    .logo {
        height: 75px;
    }
    
    .logo-img {
        max-height: 65px; /* 60px'ten büyütüldü */
        max-width: 240px; /* 220px'ten büyütüldü */
    }
    
    .logo h1 {
        font-size: 26px;
    }
}

/* ========================================
   RESPONSIVE - MOBILE
======================================== */
@media (max-width: 768px) {
    .main-header .container {
        padding: 0 12px;
    }
    
    .header-content {
        min-height: 70px; /* 60px'ten büyütüldü */
    }
    
    .logo {
        height: 70px; /* 60px'ten büyütüldü */
    }
    
    .logo-img {
        max-height: 65px; /* 50px'ten BÜYÜK ARTIŞ */
        max-width: 220px; /* 180px'ten büyütüldü */
    }
    
    .logo h1 {
        font-size: 24px;
    }
}

/* ========================================
   RESPONSIVE - KÜÇÜK MOBİL
======================================== */
@media (max-width: 480px) {
    .main-header .container {
        padding: 0 10px;
    }
    
    .header-content {
        min-height: 65px;
    }
    
    .logo {
        height: 65px;
    }
    
    .logo-img {
        max-height: 60px; /* Hala büyük */
        max-width: 200px;
    }
    
    .logo h1 {
        font-size: 22px;
    }
}



/* Main Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav ul li a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.main-nav ul li a:hover,
.main-nav ul li.active a {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Call Now Button */
.call-now-btn {
    background: linear-gradient(135deg, #B8884F 0%, #E5B96C 100%);
    color: var(--text-white);
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.call-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.call-now-btn i {
    font-size: 20px;
}

.call-now-btn span {
    font-weight: 600;
}

.call-now-btn small {
    display: block;
    font-size: 11px;
    opacity: 0.9;
}

.call-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    line-height: 1.2;
}

.call-info span {
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.call-info small {
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
}

/* Mobile Menu */
/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--bg-white);
    box-shadow: 0 0 50px rgba(0,0,0,0.3);
    z-index: 99999 !important; /* TOPBAR'DAN YÜKSEK */
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, #B8884F 0%, #E5B96C 100%);
    color: white;
}

.mobile-menu-header h3 {
    color: white !important;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav ul li a {
    display: block;
    padding: 15px 20px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s;
}

.mobile-nav ul li a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 30px;
}

.mobile-nav ul li a i {
    margin-right: 10px;
    color: var(--primary-color);
}

/* ===== ALERT MESSAGES ===== */
.alert-message {
    padding: 15px 0;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
}

.alert-message .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.alert-message i {
    margin-right: 10px;
}

.alert-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.5;
}

.alert-close:hover {
    opacity: 1;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #B8884F 0%, #E5B96C 100%);
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--text-white);
    width: 100%;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== BOOKING FORM ===== */
.booking-form-container {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1.2s ease;
}

.trip-type-selector {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
}

.trip-type-option {
    flex: 1;
    max-width: 200px;
}

.trip-type-option input {
    display: none;
}

.trip-type-option span {
    display: block;
    padding: 12px 20px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.trip-type-option input:checked + span {
    background: linear-gradient(135deg, #B8884F 0%, #E5B96C 100%);
    color: var(--text-white);
    border-color: var(--primary-color);
}

.booking-form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group label i {
    color: var(--primary-color);
    margin-right: 5px;
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-actions {
    margin-top: 10px;
}

.btn-search {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #B8884F 0%, #E5B96C 100%);
    color: var(--text-white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Quick Booking Buttons */
.quick-booking-buttons {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.quick-booking-buttons h4 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.quick-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.quick-btn {
    padding: 12px 20px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-dark);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-btn:hover {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.quick-btn i {
    color: var(--primary-color);
}

.quick-btn:hover i {
    color: var(--text-white);
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #B8884F 0%, #E5B96C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--text-white);
    font-size: 32px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-list {
    list-style: none;
    margin-bottom: 30px;
}

.about-list li {
    padding: 10px 0;
    color: var(--text-dark);
}

.about-list i {
    color: var(--success-color);
    margin-right: 10px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #B8884F 0%, #E5B96C 100%);
    color: var(--text-white);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ===== VEHICLES SECTION ===== */
.vehicles-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.section-header p {
    color: var(--text-light);
    font-size: 16px;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vehicle-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.vehicle-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vip-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--warning-color);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.vehicle-info {
    padding: 25px;
}

.vehicle-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.vehicle-info p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.vehicle-features {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.vehicle-features span {
    color: var(--text-dark);
    font-size: 14px;
}

.vehicle-features i {
    color: var(--primary-color);
    margin-right: 5px;
}

.vehicle-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.price-label {
    color: var(--text-light);
    font-size: 13px;
}

.price-amount {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
}

/* ===== FOOTER ===== */
.main-footer {
    background: linear-gradient(135deg, #B8884F 0%, #E5B96C 100%);
    color: var(--text-white);
}

.footer-top {
    padding: 60px 0 30px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-widget h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-white);
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--text-white);
    padding-left: 5px;
}

.footer-links i {
    font-size: 12px;
    margin-right: 8px;
    color: white;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: start;
    gap: 10px;
}

.footer-contact i {
    color: white;
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a:hover {
    color: var(--text-white);
}

/* Footer Bottom */
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.footer-legal a:hover {
    color: var(--text-white);
}

.payment-methods {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.payment-methods img {
    height: 30px;
    opacity: 0.8;
}

.powered-by {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

/* ===== STICKY BUTTONS ===== */
.sticky-buttons {
    position: fixed;
    bottom: 30px;
    z-index: 900;
}

.sticky-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.sticky-whatsapp:hover {
    transform: scale(1.15);
}

.sticky-booking {
    position: fixed;
    bottom: 100px;  /* whatsapp'ın üstünde */
    left: 30px;     /* sağdan → sola */
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #B8884F 0%, #E5B96C 100%);
    border: none;
    border-radius: 50%;
    color: var(--text-white);
    font-size: 24px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    z-index: 900;
}

.sticky-booking:hover {
    transform: scale(1.1);
}
/* =====================================================
   PAGE STYLES (About, Services, Transfer, Contact)
   ===================================================== */

/* ===== PAGE HEADER ===== */
.page-header {
    position: relative;
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #B8884F 0%, #E5B96C 100%);
    color: var(--text-white);
    text-align: center;
    overflow: hidden;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeInUp 0.6s ease;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease;
}

.breadcrumb a {
    color: var(--text-white);
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* ===== ABOUT PAGE ===== */
.about-content-section {
    padding: 80px 0;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-intro-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-intro-text .lead {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.about-intro-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
    padding: 60px;
    background: linear-gradient(135deg, #B8884F 0%, #E5B96C 100%);
    border-radius: 15px;
}

.stat-item {
    text-align: center;
    color: var(--text-white);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Mission & Vision */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.mission-box,
.vision-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #B8884F 0%, #E5B96C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--text-white);
    font-size: 32px;
}

.mission-box h3,
.vision-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.mission-box p,
.vision-box p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Why Choose Us */
.why-choose-us {
    margin-bottom: 80px;
}

.why-choose-us h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.reason-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    text-align: center;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.reason-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #B8884F 0%, #E5B96C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--text-white);
    font-size: 24px;
}

.reason-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.reason-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    text-align: center;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.section-subtitle {
    color: var(--text-light);
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-member {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--primary-color);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.team-role {
    color: var(--text-light);
    font-size: 14px;
}

/* ===== SERVICES PAGE ===== */
.services-content-section {
    padding: 80px 0;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-intro .lead {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.services-grid-detailed {
    display: grid;
    gap: 60px;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.service-detail-card:hover {
    box-shadow: var(--shadow-md);
}

.service-detail-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-detail-card:hover .service-detail-image img {
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--success-color);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-badge.vip {
    background: var(--warning-color);
    color: var(--text-dark);
}

.service-detail-content {
    padding: 40px;
}

.service-detail-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #B8884F 0%, #E5B96C 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 32px;
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-detail-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    padding: 10px 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features i {
    color: var(--success-color);
    margin-right: 10px;
}

.service-routes h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.route-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.route-tags span {
    background: var(--bg-light);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-dark);
}

/* Additional Services */
.additional-services {
    margin-top: 80px;
    text-align: center;
}

.additional-services h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.additional-service-item {
    background: var(--bg-light);
    padding: 30px 20px;
    border-radius: 15px;
    transition: all 0.3s;
}

.additional-service-item:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-5px);
}

.additional-service-item i {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.additional-service-item:hover i {
    color: var(--text-white);
}

.additional-service-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.additional-service-item p {
    font-size: 14px;
    opacity: 0.9;
}

/* Pricing Info */
.pricing-info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #B8884F 0%, #E5B96C 100%);
    color: var(--text-white);
    text-align: center;
}

.pricing-info-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.pricing-info-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.pricing-features {
    list-style: none;
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 16px;
}

.pricing-features i {
    margin-right: 10px;
    color: var(--success-color);
}

/* ===== TRANSFER PAGE ===== */
.transfer-content-section {
    padding: 80px 0;
}

.how-it-works {
    margin-bottom: 80px;
}

.how-it-works h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #B8884F 0%, #E5B96C 100%);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* Meet & Greet */
.meet-greet-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.meet-greet-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.meet-greet-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.meet-greet-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.meet-greet-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
}

.feature-item i {
    font-size: 32px;
    color: var(--primary-color);
    min-width: 40px;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Airports */
.airports-section {
    margin-bottom: 80px;
}

.airports-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.airports-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.airport-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s;
}

.airport-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.airport-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #B8884F 0%, #E5B96C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--text-white);
    font-size: 36px;
}

.airport-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.airport-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.airport-info {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}

.airport-info li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.airport-info li:last-child {
    border-bottom: none;
}

/* Popular Routes */
.popular-routes-section {
    margin-bottom: 80px;
}

.popular-routes-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.routes-table {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.routes-table table {
    width: 100%;
}

.routes-table thead {
    background: linear-gradient(135deg, #B8884F 0%, #E5B96C 100%);
    color: var(--text-white);
}

.routes-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.routes-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.routes-table tbody tr:last-child td {
    border-bottom: none;
}

.routes-table tbody tr:hover {
    background: var(--bg-light);
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    padding: 8px 20px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-link:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

/* Safety */
.safety-section {
    text-align: center;
}

.safety-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.safety-item {
    background: var(--bg-light);
    padding: 30px 20px;
    border-radius: 15px;
}

.safety-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.safety-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.safety-item p {
    font-size: 14px;
    color: var(--text-light);
}

/* ===== CONTACT PAGE ===== */
.contact-content-section {
    padding: 80px 0;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #B8884F 0%, #E5B96C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--text-white);
    font-size: 24px;
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-info-card p {
    margin-bottom: 10px;
}

.contact-info-card a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-info-label {
    font-size: 13px;
    color: var(--text-light);
}

/* Contact Form */
.contact-form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact-form-section {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.contact-form-section h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-form-section p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-form .required {
    color: var(--danger-color);
}

.error-message {
    color: var(--danger-color);
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

/* Working Hours */
.working-hours-section {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
}

.working-hours-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.working-hours {
    margin-bottom: 30px;
}

.working-day {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.day {
    font-weight: 500;
    color: var(--text-dark);
}

.hours {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-extra-info {
    margin-bottom: 30px;
}

.contact-extra-info h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-extra-info ul {
    list-style: none;
}

.contact-extra-info li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-light);
}

.contact-extra-info i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Social Links */
.social-links h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.social-buttons {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 20px;
    transition: all 0.3s;
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.instagram {
    background: linear-gradient(135deg, #B8884F 0%, #E5B96C 100%);
}

.social-btn.twitter {
    background: #1da1f2;
}

.social-btn:hover {
    transform: translateY(-3px);
}

/* Map */
.map-section {
    margin-top: 80px;
}

.map-container iframe {
    width: 100%;
    border-radius: 15px;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #B8884F 0%, #E5B96C 100%);
    color: var(--text-white);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 18px;
}

/* ===== BUTTONS ===== */
.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

/* =====================================================
   LOGO RESPONSIVE FIX - ÖNCELİKLİ !important
   ===================================================== */

/* TABLET */
@media (max-width: 992px) {
    .logo-img {
        max-height: 65px !important;
        max-width: 240px !important;
    }
}

/* MOBİLE */
@media (max-width: 768px) {
    .header-content {
        min-height: 70px !important;
    }
    
    .logo {
        height: 70px !important;
    }
    
    .logo-img {
        max-height: 65px !important;
        max-width: 220px !important;
    }
}

/* KÜÇÜK MOBİLE */
@media (max-width: 480px) {
    .logo-img {
        max-height: 60px !important;
        max-width: 200px !important;
    }
}

