/* VIP Taşımacılık - Klasik Lüks (Siyah & Altın/Şampanya) */

:root {
    /* Klasik Lüks - Siyah & Altın/Şampanya */
    --bg-dark: #000000;
    --bg-charcoal: #1A1A1A;
    --bg-card: #1A1A1A;
    --bg-card-hover: #2A2A2A;
    --text-primary: #FFFFFF;
    --text-secondary: #CCCCCC;
    --border-color: #333333;
    --border-color-hover: #4A4A4A;
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.7);
    
    /* Premium Gold & Champagne Accent */
    --accent-gold: #D4AF37;
    --accent-gold-light: #F4D03F;
    --accent-gold-dark: #B8941F;
    --accent-champagne: #C5A059;
    --accent-white: #FFFFFF;
    --shadow-gold: 0 8px 24px rgba(212, 175, 55, 0.4);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #D4AF37 100%);
    --gradient-gold-hover: linear-gradient(135deg, #F4D03F 0%, #D4AF37 100%);
    --gradient-champagne: linear-gradient(135deg, #C5A059 0%, #D4AF37 100%);
    --gradient-dark: linear-gradient(135deg, #1A1A1A 0%, #000000 100%);
    
    /* WhatsApp Green */
    --whatsapp-green: #25D366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

/* Modern Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in-delay-1 {
    animation: fadeInUp 0.6s ease-out 0.1s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
    opacity: 0;
}

.fade-in-delay-3 {
    animation: fadeInUp 0.6s ease-out 0.3s forwards;
    opacity: 0;
}

/* Optimized scroll animations - faster loading */
.animate-ready {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Ensure cards are visible by default, animation only for scroll */
.service-card,
.fleet-card,
.why-us-item,
.testimonial-card,
.faq-item {
    opacity: 1;
    transform: translateY(0);
}

/* Only apply animation class when needed */
.service-card.animate-ready,
.fleet-card.animate-ready,
.why-us-item.animate-ready,
.testimonial-card.animate-ready,
.faq-item.animate-ready {
    opacity: 0;
    transform: translateY(15px);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-dark);
    background-image: 
        radial-gradient(at 0% 0%, rgba(212, 175, 55, 0.03) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(197, 160, 89, 0.02) 0px, transparent 50%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

/* Header */
.main-header {
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.main-header:hover {
    background: rgba(26, 26, 26, 1);
    border-bottom-color: var(--accent-gold);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand h1 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin: 0;
    font-weight: 700;
}

.nav-brand a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.site-logo {
    max-height: 80px;
    height: auto;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta,
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-cta .btn,
.nav-actions .btn {
    padding: 0.5rem 1.5rem;
    white-space: nowrap;
}

.lang-switcher {
    position: relative;
}

.lang-select {
    appearance: none;
    background: var(--bg-card) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='%23CCCCCC'%3E%3Cpath d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 0.6rem center;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.45rem 2rem 0.45rem 0.75rem;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    min-width: 7rem;
}

.lang-select:hover,
.lang-select:focus {
    border-color: var(--accent-gold);
    outline: none;
}

.lang-select option {
    background: var(--bg-dark);
    color: var(--text-primary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s;
    display: block;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn-gold {
    background: var(--gradient-gold);
    color: #000000;
    position: relative;
    overflow: hidden;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold:hover {
    background: var(--gradient-gold-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
    color: #000000;
}

.btn-gold:active {
    transform: translateY(-1px) scale(1);
}

.btn-outline {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-gold);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-outline:hover {
    color: #000000;
    border-color: var(--accent-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-outline:hover::before {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #000000;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    background: var(--gradient-gold-hover);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.btn-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
}

.btn-link:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1A1A1A 0%, #000000 100%);
    background-size: cover;
    background-position: center;
    padding: 2rem 0;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
        padding: 1rem 0;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}


.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-gold);
    text-shadow: none;
    animation: fadeInUp 0.8s ease-out;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s;
}

.glass-card:hover::before {
    left: 100%;
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(212, 175, 55, 0.2);
    background: var(--bg-card-hover);
    border-color: var(--accent-gold);
}

/* Inquiry Form */
.inquiry-form-section {
    background: var(--bg-dark);
}

.inquiry-form {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: var(--bg-charcoal);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

@media (max-width: 768px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: var(--bg-card-hover);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
    transform: translateY(-2px);
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    border-radius: 8px;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #ef4444;
    border-radius: 8px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

/* Animation delays removed for faster initial load - handled by JS */

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(212, 175, 55, 0.25);
    border-color: var(--accent-gold);
    background: var(--bg-card-hover);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.6));
}

.service-card h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Fleet Grid */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.fleet-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

/* Animation delays removed for faster initial load - handled by JS */

.fleet-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(212, 175, 55, 0.25);
    border-color: var(--accent-gold);
}

.fleet-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.1);
}

.fleet-content {
    padding: 1.5rem;
}

.fleet-content h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.fleet-specs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Why Us Grid */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-us-item {
    background: var(--bg-card);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.why-us-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.why-us-item:hover::before {
    width: 300px;
    height: 300px;
}

.why-us-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(212, 175, 55, 0.22);
    border-color: var(--accent-gold);
    background: var(--bg-card-hover);
}

.why-us-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.why-us-item h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Testimonials */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-left: 4px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(212, 175, 55, 0.22);
    border-left-color: var(--accent-gold);
    background: var(--bg-card-hover);
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.star {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.star.filled {
    color: var(--accent-gold);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.7);
}

.testimonial-comment {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.testimonial-author {
    font-weight: 600;
    color: var(--accent-gold);
    margin-top: 0.5rem;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: var(--border-color-hover);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.1);
}

.faq-question h3 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Footer */
.main-footer {
    background: var(--bg-charcoal);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3,
.footer-col h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-logo {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.footer-col p,
.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-col a:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.footer-bottom a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
    background: #20BA5A;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1A1A1A 0%, #000000 100%);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Content Pages */
.content-page,
.services-page,
.fleet-page,
.about-page,
.contact-page {
    padding: 3rem 0;
}

.content-text {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.content-text h2 {
    color: var(--accent-gold);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.content-text h2:first-child {
    margin-top: 0;
}

.content-text ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content-text li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

/* Services Detail */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    padding: 2rem;
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.6));
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 1.5rem 0;
}

/* Fleet Detail */
.fleet-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.fleet-detail-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
}

.fleet-detail-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 1rem;
}

.fleet-gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.fleet-detail-content {
    padding: 2rem;
}

.fleet-specs-detailed {
    margin: 1.5rem 0;
}

.spec-item {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.spec-item ul {
    margin-left: 2rem;
    margin-top: 0.5rem;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info {
    background: var(--bg-card);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--accent-gold);
}

.contact-form-wrapper {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

/* About Page - Premium, logo odaklı tasarım */
.about-page {
    padding: 0;
}

@keyframes aboutLogoGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.35)) drop-shadow(0 0 40px rgba(212, 175, 55, 0.15)); }
    50% { filter: drop-shadow(0 0 28px rgba(212, 175, 55, 0.5)) drop-shadow(0 0 60px rgba(212, 175, 55, 0.2)); }
}

@keyframes aboutShine {
    0% { transform: translateX(-100%) skewX(-15deg); opacity: 0; }
    60% { opacity: 0.4; }
    100% { transform: translateX(200%) skewX(-15deg); opacity: 0; }
}

/* Hero */
.about-hero {
    position: relative;
    padding: 4.5rem 0 5rem;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, #050505 0%, #0f0f0f 25%, #1a1a1a 50%, #0f0f0f 75%, #050505 100%);
    background-attachment: scroll;
}

.about-hero-bg::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 80%;
    background: radial-gradient(ellipse 70% 60% at 50% 20%, rgba(212, 175, 55, 0.18) 0%, rgba(197, 160, 89, 0.06) 40%, transparent 70%);
    pointer-events: none;
}

.about-hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.3) 20%, var(--accent-gold) 50%, rgba(212, 175, 55, 0.3) 80%, transparent 100%);
    opacity: 0.7;
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero-content {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.about-hero-logo-wrap {
    display: inline-block;
    margin-top: 1.75rem;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-hero-logo-wrap:hover {
    transform: scale(1.05);
}

.about-hero-logo {
    display: block;
    max-height: 100px;
    width: auto;
    max-width: 280px;
    height: auto;
    object-fit: contain;
    animation: aboutLogoGlow 4s ease-in-out infinite;
    transition: filter 0.3s ease;
}

.about-hero-logo-wrap:hover .about-hero-logo {
    animation: none;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.55)) drop-shadow(0 0 60px rgba(212, 175, 55, 0.25));
}

.about-hero-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    padding: 0.35rem 1rem;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 100px;
}

.about-hero-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.about-hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Intro section - tek sütun: logo üstte, başlık, slogan, paragraf */
.about-intro-section {
    padding: 4rem 0;
}

.about-intro-block {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.about-intro-block .about-intro-logo-wrap {
    margin-bottom: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: inline-block;
    transition: all 0.35s ease;
}

.about-intro-block .about-intro-logo-wrap:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}

.about-intro-block .about-intro-logo {
    display: block;
    max-height: 80px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    filter: drop-shadow(0 2px 12px rgba(212, 175, 55, 0.3));
}

.about-intro-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin: 0 0 0.5rem;
}

.about-intro-lead {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 1.5rem;
    line-height: 1.45;
    letter-spacing: 0.01em;
}

.about-intro-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
    text-align: center;
}

/* Why Us section */
.about-why-section {
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 26, 0.5) 50%, transparent 100%);
}

.about-section-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 3rem;
}

.about-section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--accent-gold);
    margin: 0 0 0.5rem;
}

.about-section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.about-why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.5s ease-out var(--delay, 0s) forwards;
    opacity: 0;
}

.about-why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.about-why-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(212, 175, 55, 0.2);
}

.about-why-card:hover::before {
    transform: scaleX(1);
}

.about-why-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(212, 175, 55, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.about-why-icon span {
    font-size: 1.75rem;
}

.about-why-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin: 0 0 0.75rem;
    line-height: 1.3;
}

.about-why-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* CTA section */
.about-cta-section {
    padding: 4rem 0 5rem;
}

.about-cta-box {
    position: relative;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.98) 0%, rgba(15, 15, 15, 0.99) 100%);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(212, 175, 55, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.about-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, transparent 30%, rgba(212, 175, 55, 0.4) 50%, transparent 70%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.about-cta-box:hover {
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.55), 0 0 60px rgba(212, 175, 55, 0.12), inset 0 1px 0 rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

.about-cta-box:hover::before {
    opacity: 1;
}

.about-cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin: 0 0 0.75rem;
}

.about-cta-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin: 0 0 2rem;
    line-height: 1.6;
}

.about-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.about-cta-buttons .btn {
    min-width: 160px;
}

/* Legacy compatibility */
.about-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.about-intro .lead {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--bg-card);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
        position: relative;
    }
    
    .nav-brand {
        flex: 1;
    }
    
    .nav-brand h1 {
        font-size: 1.2rem;
    }
    
    .site-logo {
        max-height: 60px;
        max-width: 200px;
    }
    
    .nav-cta,
    .nav-actions {
        order: 2;
        margin-right: 0.5rem;
    }

    .nav-cta .btn,
    .nav-actions .btn {
        padding: 0.4rem 1rem;
        font-size: 0.875rem;
    }

    .lang-select {
        min-width: 6rem;
        padding: 0.35rem 1.5rem 0.35rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-charcoal);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        border-top: 1px solid var(--border-color);
        box-shadow: var(--shadow-lg);
        width: 100%;
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        padding: 1rem 1.5rem;
        display: block;
        width: 100%;
    }
    
    .hero-content {
        padding: 1rem;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .inquiry-form {
        padding: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-detail-card,
    .fleet-detail-card {
        grid-template-columns: 1fr;
    }
    
    .service-detail-image,
    .fleet-detail-image {
        height: 200px;
    }
    
    .fleet-detail-gallery {
        grid-template-columns: 1fr;
    }
    
    .fleet-image {
        height: 200px;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .content-text,
    .contact-info,
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-logo {
        max-height: 50px;
        margin: 0 auto 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0.5rem 0;
    }

    /* About page responsive */
    .about-hero {
        padding: 3rem 0 3.5rem;
    }

    .about-hero-logo {
        max-height: 72px;
        max-width: 220px;
    }

    .about-intro-block .about-intro-logo {
        max-height: 64px;
        max-width: 200px;
    }

    .about-intro-lead {
        font-size: 1.15rem;
    }

    .about-why-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .about-why-card {
        opacity: 1;
        animation: none;
    }

    .about-cta-box {
        padding: 2rem 1.5rem;
    }

    .about-cta-buttons {
        flex-direction: column;
    }

    .about-cta-buttons .btn {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .nav-brand h1 {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .inquiry-form,
    .contact-form-wrapper,
    .content-text {
        padding: 1rem;
    }
    
    .card {
        padding: 1rem;
    }
}

