:root {
    --primary-dark: #044e65;
    --primary-blue: #0a91b1;
    --primary-gold: #e7bf73;
    --secondary-dark: #033a4d;
    --accent-light: #5fb8d4;
    --text-dark: #1a3a47;
    --text-light: #5a7a87;
    --white: #FFFFFF;
    --light-bg: #f8fcfd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(24, 23, 22, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(24, 23, 22, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-gold);
}

.nav-menu a:hover:after {
    width: 100%;
}

.cta-btn {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #d4a855 100%);
    color: var(--primary-dark);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(231, 191, 115, 0.4);
}

.cta-btn:hover {
    background: linear-gradient(135deg, #f0ce8c 0%, var(--primary-gold) 100%);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(231, 191, 115, 0.6);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 10001;
    position: relative;
}

/* Hero Section */
/* ==========================================
   YENİ HERO / BANNER TASARIMI
   ========================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 50%, var(--secondary-dark) 100%);
    padding: 8rem 2rem 4rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?w=1920&q=80') center/cover;
    filter: brightness(0.3) blur(2px);
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(4, 78, 101, 0.9) 0%, rgba(10, 145, 177, 0.8) 50%, rgba(4, 78, 101, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Minimal Header */
.hero-header {
    text-align: center;
    animation: fadeInDown 0.8s ease;
}

.hero-brand {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 8px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
    animation: slideInLeft 1s ease 0.4s both;
}

/* Animasyonlar */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Booking Form */
.booking-form-container {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 30px 80px rgba(4, 78, 101, 0.4), 0 0 0 1px rgba(231, 191, 115, 0.3);
    animation: fadeInUp 0.8s ease 0.3s both;
    width: 100%;
    max-width: 900px;
    border: 2px solid rgba(231, 191, 115, 0.2);
}

.form-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.form-tab {
    flex: 1;
    padding: 1rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.form-tab.active {
    color: var(--primary-gold);
}

.form-tab.active:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gold);
}

.booking-form-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(237, 156, 53, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #f0a746 100%);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(237, 156, 53, 0.4);
}

.submit-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Services Section */
.services {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-subtitle {
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 450px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card-bg {
    transform: scale(1.1);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(4, 78, 101, 0.4) 0%, rgba(4, 78, 101, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    color: var(--white);
    transition: all 0.4s ease;
}

.service-card:hover .service-card-overlay {
    background: linear-gradient(to bottom, rgba(10, 145, 177, 0.4) 0%, rgba(10, 145, 177, 0.95) 100%);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.service-card:hover p {
    opacity: 1;
    transform: translateY(0);
}

/* Fleet Section */
.fleet {
    padding: 8rem 2rem;
    background: var(--white);
}

.fleet-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.fleet-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(4, 78, 101, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(10, 145, 177, 0.1);
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(10, 145, 177, 0.25);
    border-color: rgba(10, 145, 177, 0.3);
}

.fleet-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.fleet-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.fleet-card:hover .fleet-card-image img {
    transform: scale(1.1);
}

.fleet-card-content {
    padding: 2rem;
}

.fleet-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.fleet-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.fleet-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.fleet-feature-icon {
    color: var(--primary-blue);
    font-size: 1rem;
}

.fleet-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e5e5;
}

.fleet-price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.fleet-price-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.fleet-book-btn {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #d4a855 100%);
    color: var(--primary-dark);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.fleet-book-btn:hover {
    background: linear-gradient(135deg, #f0ce8c 0%, var(--primary-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 191, 115, 0.4);
}

/* Features Section */
.features {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.features-grid {
    max-width: 1400px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(231, 191, 115, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.4s ease;
    background: rgba(231, 191, 115, 0.1);
}

.feature-item:hover .feature-icon {
    background: var(--primary-gold);
    color: var(--primary-dark);
    transform: rotateY(360deg) scale(1.1);
    border-color: var(--primary-gold);
    box-shadow: 0 0 30px rgba(231, 191, 115, 0.5);
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 8rem 2rem;
    background: var(--white);
}

.contact-grid {
    max-width: 1400px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.contact-info {
    padding: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: var(--primary-gold);
    transform: translateX(10px);
}

.contact-item:hover .contact-item-icon,
.contact-item:hover .contact-item-content h4,
.contact-item:hover .contact-item-content p {
    color: var(--white);
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    color: var(--white);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-item-icon {
    background: var(--white);
    color: var(--primary-gold);
}

.contact-item-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
footer {
    background: var(--secondary-dark);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: var(--white);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 5px 35px rgba(37, 211, 102, 0.7);
    }
}

/* ==========================================
   RESPONSIVE DESIGN - TÜM EKRAN BOYUTLARI
   ========================================== */

/* Large Desktop: 1200px+ */
/* Default styles - no media query needed */

/* Desktop: 992px - 1199px */
@media (max-width: 1199px) {
    .hero-content {
        max-width: 960px;
    }

    .hero-brand {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

/* Laptop/Tablet Landscape: 768px - 991px */
@media (max-width: 991px) {
    /* Hero Section */
    .hero {
        padding: 6rem 2rem 3rem;
    }

    .hero-brand {
        font-size: 2.5rem;
        letter-spacing: 5px;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    /* Form */
    .booking-form-container {
        padding: 2.5rem;
        max-width: 100%;
    }

    .booking-form-container h3 {
        font-size: 2rem;
    }

    /* Step 2 Layout - Tek kolona geç */
    .step2-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .route-map-inline .route-map {
        height: 300px;
    }

    /* Sections Padding */
    .services,
    .fleet,
    .features,
    .contact {
        padding: 5rem 2rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    /* Services & Fleet */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* Tablet Portrait: 576px - 767px */
@media (max-width: 767px) {
    /* Header */
    header {
        padding: 0.75rem 0;
    }

    .header-container {
        padding: 0 1.5rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    /* Mobile Menu */
    .menu-toggle {
        display: block;
        padding: 0.5rem;
        transition: transform 0.3s ease;
    }

    .menu-toggle:active {
        transform: scale(0.95);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
        flex-direction: column;
        padding: 5rem 2rem;
        transition: right 0.3s ease;
        gap: 1.5rem;
        z-index: 9999;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        animation: slideInRight 0.3s ease forwards;
        opacity: 0;
    }

    .nav-menu.active li {
        opacity: 1;
    }

    .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu li:nth-child(2) { animation-delay: 0.15s; }
    .nav-menu li:nth-child(3) { animation-delay: 0.2s; }
    .nav-menu li:nth-child(4) { animation-delay: 0.25s; }
    .nav-menu li:nth-child(5) { animation-delay: 0.3s; }
    .nav-menu li:nth-child(6) { animation-delay: 0.35s; }
    .nav-menu li:nth-child(7) { animation-delay: 0.4s; }

    .nav-menu a {
        display: block;
        padding: 0.875rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1.05rem;
    }

    .nav-menu a:hover {
        padding-left: 0.5rem;
        transition: all 0.3s ease;
    }

    .cta-btn {
        background: var(--primary-gold);
        padding: 0.875rem 1.5rem !important;
        border-radius: 8px;
        text-align: center;
        border-bottom: none !important;
    }

    /* Language Switcher in Mobile Menu */
    .language-switcher {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        justify-content: center;
    }

    /* Hero */
    .hero {
        padding: 6rem 1.5rem 3rem;
        min-height: auto;
    }

    .hero-brand {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    .hero-tagline {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    /* Form */
    .booking-form-container {
        padding: 2rem;
    }

    .booking-form-container h3 {
        font-size: 1.75rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .form-actions button {
        width: 100%;
    }

    /* Sections Padding */
    .services,
    .fleet,
    .features,
    .contact {
        padding: 4rem 1.5rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    /* Services & Fleet - Single Column */
    .services-grid,
    .fleet-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Section Headers */
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    /* Contact Section */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-top: 1.5rem;
    }

    .contact-info {
        padding: 0;
    }

    .contact-item {
        padding: 1.5rem;
        gap: 1.25rem;
    }

    .contact-item-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .contact-image {
        max-height: 400px;
    }

    /* Footer */
    footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
    }
}

/* Mobile: 320px - 575px */
@media (max-width: 575px) {
    /* Header */
    .header-container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.25rem;
    }

    .menu-toggle {
        font-size: 1.6rem;
    }

    .nav-menu {
        width: 90%;
        max-width: 300px;
        padding: 4rem 1.5rem;
    }

    /* Hero */
    .hero {
        padding: 5rem 1rem 2rem;
    }

    .hero-brand {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }

    .hero-tagline {
        font-size: 0.75rem;
    }

    /* Form */
    .booking-form-container {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .booking-form-container h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    /* Steps - More Compact */
    .booking-steps {
        margin-bottom: 1.5rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .step-label {
        font-size: 0.7rem;
    }

    .step-line {
        width: 30px;
        margin: 0 5px;
        margin-top: 18px;
    }

    /* Form Fields */
    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group select {
        padding: 0.7rem 0.85rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    /* Buttons */
    .btn-primary,
    .btn-secondary {
        padding: 0.7rem 1.25rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    /* Price Card */
    .distance-info-card {
        padding: 1rem;
    }

    .price-title {
        font-size: 1rem;
    }

    .price-label {
        font-size: 0.8rem;
    }

    .price-value {
        font-size: 0.85rem;
    }

    .price-row.price-total .price-value {
        font-size: 1.15rem;
    }

    /* Map */
    .route-map-inline .route-map {
        height: 250px;
    }

    .map-title {
        font-size: 0.9rem;
    }

    /* Info Message */
    .info-message {
        padding: 1.5rem 1rem;
    }

    .info-message p {
        font-size: 0.85rem;
    }

    /* Sections */
    .services,
    .fleet,
    .features,
    .contact {
        padding: 3rem 1rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-description {
        font-size: 0.95rem;
    }

    /* Service Cards */
    .service-card {
        min-height: 300px;
    }

    .service-card-overlay {
        padding: 2rem 1.5rem;
    }

    .service-card-overlay h3 {
        font-size: 1.25rem;
    }

    .service-card-overlay p {
        font-size: 0.9rem;
    }

    /* Fleet Cards */
    .fleet-card-content {
        padding: 1.5rem;
    }

    .fleet-card-title {
        font-size: 1.25rem;
    }

    .fleet-features {
        gap: 0.5rem;
        grid-template-columns: 1fr 1fr;
    }

    .fleet-feature {
        font-size: 0.85rem;
    }

    .fleet-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .fleet-book-btn {
        width: 100%;
    }

    /* Features */
    .feature-item {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }

    .feature-item h4 {
        font-size: 1.1rem;
    }

    .feature-item p {
        font-size: 0.9rem;
    }

    /* Contact Section */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 1.5rem;
    }

    .contact-info {
        padding: 0;
    }

    .contact-item {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
        gap: 1rem;
    }

    .contact-item-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }

    .contact-item-content h4 {
        font-size: 1.05rem;
    }

    .contact-item-content p {
        font-size: 0.9rem;
    }

    .contact-image {
        max-height: 250px;
        border-radius: 10px;
    }

    .contact-image img {
        height: 250px;
    }

    /* Footer */
    footer {
        padding: 2.5rem 1rem 1rem;
    }

    .footer-content {
        gap: 2rem;
        margin-bottom: 1.5rem;
    }

    .footer-about h3 {
        font-size: 1.5rem;
    }

    .footer-about p {
        font-size: 0.95rem;
    }

    .footer-links h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer-links ul li {
        margin-bottom: 0.6rem;
    }

    .footer-links ul li a {
        font-size: 0.95rem;
    }

    .social-links {
        gap: 0.75rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}

/* Extra Small Mobile: 320px - 374px */
@media (max-width: 374px) {
    .hero-brand {
        font-size: 1.25rem;
        letter-spacing: 2px;
    }

    .booking-form-container {
        padding: 1.25rem;
    }

    .booking-form-container h3 {
        font-size: 1.25rem;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .step-label {
        font-size: 0.65rem;
    }

    .step-line {
        width: 25px;
        margin-top: 15px;
    }
}


/* Currency Selector */
.currency-selector {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.currency-selector label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #fff;
    font-size: 0.9rem;
}

.currency-selector select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    background: rgba(255, 255, 255, 0.95);
    cursor: pointer;
    transition: all 0.3s ease;
}

.currency-selector select:hover {
    border-color: #ED9C35;
}

.currency-selector select:focus {
    outline: none;
    border-color: #ED9C35;
    box-shadow: 0 0 0 3px rgba(237, 156, 53, 0.2);
}

/* Distance Info */
.distance-info {
    background: linear-gradient(135deg, rgba(237, 156, 53, 0.2) 0%, rgba(237, 156, 53, 0.1) 100%);
    border-left: 4px solid #ED9C35;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

.distance-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.distance-label {
    font-weight: 500;
    color: #fff;
}

.distance-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: #ED9C35;
}

/* Route Map */
.route-map-container {
    margin-top: 20px;
    animation: slideDown 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.route-map-container h4 {
    color: white !important;
    margin-bottom: 15px !important;
    font-size: 1.1rem !important;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.route-map {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.route-map .leaflet-container {
    z-index: 1 !important;
}

.route-map .leaflet-pane {
    z-index: 2 !important;
}

.route-map .leaflet-control {
    z-index: 3 !important;
}

/* ==========================================
   YENİ REZERVASYON FORMU - 2 ADIMLI
   ========================================== */

/* Progress Steps */
.booking-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.step.active {
    opacity: 1;
}

.step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f5f5f5;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #999;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    border-color: var(--primary-blue);
    color: white;
    box-shadow: 0 4px 15px rgba(10, 145, 177, 0.5);
    transform: scale(1.05);
}

.step-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #999;
    text-align: center;
}

.step.active .step-label {
    color: var(--text-dark);
    font-weight: 700;
}

.step-line {
    width: 60px;
    height: 2px;
    background: #ddd;
    margin: 0 10px;
    align-self: flex-start;
    margin-top: 22px;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Step 2 Layout - İki Kolonlu Yapı */
.step2-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.step2-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step2-preview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Fiyat Bilgisi Kartı */
.distance-info-card {
    background: linear-gradient(135deg, rgba(10, 145, 177, 0.1) 0%, rgba(231, 191, 115, 0.1) 100%);
    border: 2px solid rgba(10, 145, 177, 0.3);
    border-radius: 16px;
    padding: 2rem;
    animation: slideInRight 0.4s ease;
    box-shadow: 0 4px 20px rgba(10, 145, 177, 0.15);
    backdrop-filter: blur(10px);
}

.price-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.25rem;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(10, 145, 177, 0.15);
    transition: all 0.3s ease;
}

.price-row:hover {
    padding-left: 0.5rem;
    background: rgba(10, 145, 177, 0.03);
    border-radius: 6px;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row.price-total {
    padding: 1.25rem;
    margin-top: 0.75rem;
    background: linear-gradient(135deg, rgba(10, 145, 177, 0.15), rgba(231, 191, 115, 0.15));
    border-radius: 10px;
    border: none;
    box-shadow: 0 2px 10px rgba(10, 145, 177, 0.1);
}

.price-row.price-total:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(10, 145, 177, 0.2);
}

.price-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.price-value {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.price-row.price-total .price-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.price-row.price-total .price-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-blue);
}

/* Harita İnline */
.route-map-inline {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    animation: slideInRight 0.5s ease;
}

.map-title {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-align: center;
}

.route-map-inline .route-map {
    height: 250px;
}

/* Bilgilendirme Mesajı */
.info-message {
    background: rgba(255, 255, 255, 0.08);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
}

.info-message p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Form Actions (Butonlar) */
.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
    justify-content: space-between;
}

.form-actions button {
    flex: 1;
    min-height: 50px;
}

/* Booking Form h3 */
.booking-form-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.booking-form-container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), rgba(237, 156, 53, 0.3));
    border-radius: 2px;
}

/* ==========================================
   FORM TASARIMI - MODERNLEŞTİRME
   ========================================== */

/* Form Groups */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 4px rgba(237, 156, 53, 0.1);
}

.form-group input::placeholder {
    color: #999;
}

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(10, 145, 177, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(10, 145, 177, 0.6);
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--primary-blue) 100%);
}

.btn-secondary {
    background: #f5f5f5;
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: #e8e8e8;
}

.btn-block {
    width: 100%;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::before {
    content: '📱';
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%) !important;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5) !important;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Price Preview Step 2 */
.price-preview-step2 {
    margin: 1.5rem 0;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(10, 145, 177, 0.08), rgba(231, 191, 115, 0.08));
    border: 2px solid rgba(10, 145, 177, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideInUp 0.4s ease;
    box-shadow: 0 3px 15px rgba(10, 145, 177, 0.1);
}

.price-preview-step2 .preview-icon {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

.price-preview-step2 .preview-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.price-preview-step2 .preview-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.price-preview-step2 .preview-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.price-preview-step2 .preview-distance {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   RESPONSIVE - MOBİL UYUMLULUK
   ========================================== */

/* Eski responsive bloklar kaldırıldı - Yeni sistem yukarıda */

/* Step 3 Layout */
.step3-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

#distanceInfoStep3 {
    order: 1;
}

#routeMapContainerStep3 {
    order: 2;
}

.route-map-container {
    background: linear-gradient(135deg, rgba(10, 145, 177, 0.05), rgba(231, 191, 115, 0.05));
    border-radius: 16px;
    padding: 1.5rem;
    border: 2px solid rgba(10, 145, 177, 0.2);
    box-shadow: 0 4px 20px rgba(10, 145, 177, 0.1);
    transition: all 0.3s ease;
}

.route-map-container:hover {
    box-shadow: 0 6px 30px rgba(10, 145, 177, 0.15);
    transform: translateY(-2px);
}

.route-map-container .map-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.route-map-container .route-map {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(10, 145, 177, 0.15);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

@media (min-width: 992px) {
    .step3-layout {
        grid-template-columns: 1fr 1.5fr;
    }

    #distanceInfoStep3 {
        order: 1;
    }

    #routeMapContainerStep3 {
        order: 2;
    }
}

@media (max-width: 768px) {
    .route-map-container .route-map {
        height: 300px;
    }

    .step3-layout {
        gap: 1.5rem;
    }

    .distance-info-card {
        padding: 1.5rem;
    }

    .price-title {
        font-size: 1.2rem;
    }

    .price-row.price-total .price-value {
        font-size: 1.4rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions button {
        width: 100%;
    }
}

/* Modern Hero Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.15;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-light));
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: 5s;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
}

.shape-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 10%;
    animation-delay: 10s;
    background: linear-gradient(135deg, var(--accent-light), var(--primary-gold));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(90deg);
    }
    50% {
        transform: translateY(0) rotate(180deg);
    }
    75% {
        transform: translateY(30px) rotate(270deg);
    }
}

/* Hero Content Modernization */
.hero-brand {
    position: relative;
    display: inline-block;
}

.hero-brand::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    border-radius: 2px;
}

.hero-tagline {
    position: relative;
    padding-left: 20px;
}

.hero-tagline::before {
    content: '✈';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Modern Services Grid */
.services-modern-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    padding: 0 2rem;
}

.service-modern-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(10, 145, 177, 0.1), transparent);
    transition: left 0.6s;
}

.service-modern-card:hover::before {
    left: 100%;
}

.service-modern-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 60px rgba(10, 145, 177, 0.2);
}

.service-modern-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 145, 177, 0.1), rgba(231, 191, 115, 0.1));
    border-radius: 50%;
    color: var(--primary-blue);
    transition: all 0.4s ease;
    position: relative;
}

.service-modern-icon svg {
    width: 50px;
    height: 50px;
    transition: transform 0.4s ease;
}

.service-modern-card:hover .service-modern-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.service-modern-card:hover .service-modern-icon svg {
    transform: scale(1.1);
}

.service-modern-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.service-modern-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .services-modern-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-modern-card {
        padding: 2.5rem 1.5rem;
    }
}

/* Premium Fleet Cards with Glassmorphism */
.fleet-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(4, 78, 101, 0.12);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    position: relative;
}

.fleet-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 145, 177, 0.1), rgba(231, 191, 115, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.fleet-card:hover::after {
    opacity: 1;
}

.fleet-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 60px rgba(10, 145, 177, 0.25);
    border-color: rgba(10, 145, 177, 0.3);
}

.fleet-card-image {
    position: relative;
    overflow: hidden;
}

.fleet-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    z-index: 1;
    transition: left 0.6s;
}

.fleet-card:hover .fleet-card-image::before {
    left: 150%;
}

.fleet-card-title {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Premium Badge */
.fleet-card::before {
    content: 'PREMIUM';
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, var(--primary-gold), #d4a855);
    color: var(--primary-dark);
    padding: 5px 40px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 2px 10px rgba(231, 191, 115, 0.4);
}

/* Scroll Animations */
[data-animate] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-up"] {
    transform: translateY(40px);
}

[data-animate="fade-down"] {
    transform: translateY(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="zoom-in"] {
    transform: scale(0.9);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Staggered Animation for Grid Items */
.services-modern-grid > *,
.fleet-grid > *,
.features-grid > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-modern-grid.animated > *,
.fleet-grid.animated > *,
.features-grid.animated > * {
    opacity: 1;
    transform: translateY(0);
}

.services-modern-grid.animated > *:nth-child(1) { transition-delay: 0.1s; }
.services-modern-grid.animated > *:nth-child(2) { transition-delay: 0.2s; }
.services-modern-grid.animated > *:nth-child(3) { transition-delay: 0.3s; }

.fleet-grid.animated > *:nth-child(1) { transition-delay: 0.1s; }
.fleet-grid.animated > *:nth-child(2) { transition-delay: 0.2s; }
.fleet-grid.animated > *:nth-child(3) { transition-delay: 0.3s; }

/* Info Message */
.info-message {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(10, 145, 177, 0.05), rgba(231, 191, 115, 0.05));
    border-radius: 12px;
    border: 2px dashed rgba(10, 145, 177, 0.3);
}

.info-message p {
    color: var(--text-dark);
    font-size: 1rem;
    margin: 0;
}

/* Step 3 Specific Styles */
.form-step[data-step="3"] .distance-info-card {
    animation: fadeInUp 0.5s ease;
}

.form-step[data-step="3"] .route-map-container {
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
