/* ========================================
   KUSADASI VIP TRANSFER - Main Stylesheet
   Premium Airport Transfer Services
   ======================================== */

/* CSS Variables */
:root {
    --primary-color: #C9A227;
    --primary-dark: #A88B1D;
    --secondary-color: #1a1a1a;
    --accent-color: #D4AF37;
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --success: #28a745;
    --whatsapp: #25D366;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--black);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--secondary-color);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #20BA5C;
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 16px;
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
    background: var(--secondary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 25px;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left i {
    color: var(--primary-color);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white);
    opacity: 0.8;
}

.social-links a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.language-selector select {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.language-selector select option {
    background: var(--secondary-color);
    color: var(--white);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-family: var(--font-secondary);
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 2px;
    line-height: 1;
}

.logo-sub {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link i {
    font-size: 10px;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    padding: 15px 0;
    box-shadow: var(--shadow-lg);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: var(--text-color);
}

.dropdown-menu li a:hover {
    background: var(--gray-100);
    color: var(--primary-color);
}

.nav-cta {
    margin-left: 20px;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    max-width: 800px;
    width: 90%;
    padding: 0 20px;
    box-sizing: border-box;
}

.slide-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.slide-content h1 {
    font-family: var(--font-secondary);
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slide-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 35px;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.slider-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 100;
}

.slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: 2px solid var(--white);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--black);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* ========================================
   BOOKING SECTION
   ======================================== */
.booking-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.booking-wrapper {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.booking-header {
    background: var(--secondary-color);
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.booking-header h2 {
    font-family: var(--font-secondary);
    font-size: 32px;
    margin-bottom: 10px;
}

.booking-header p {
    opacity: 0.8;
}

.form-tabs {
    display: flex;
    background: var(--gray-100);
}

.form-tab {
    flex: 1;
    padding: 20px;
    background: transparent;
    border: none;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.form-tab:hover {
    color: var(--secondary-color);
}

.form-tab.active {
    background: var(--white);
    color: var(--primary-color);
}

.form-content {
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.form-group label i {
    color: var(--primary-color);
    margin-right: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-primary);
    font-size: 14px;
    border: 2px solid var(--gray-200);
    border-radius: 6px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
    padding: 80px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: 10px;
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--gray-100);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.light {
    color: var(--white);
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header h2 {
    font-family: var(--font-secondary);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header.light h2 {
    color: var(--white);
}

.section-header p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-header.light p {
    color: rgba(255,255,255,0.8);
}

/* ========================================
   FLEET SECTION
   ======================================== */
.fleet-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.vehicle-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.vehicle-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.05);
}

.vehicle-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 15px;
    background: var(--primary-color);
    color: var(--black);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.vehicle-badge.premium {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.vehicle-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vehicle-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.vehicle-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.vehicle-specs span {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.vehicle-specs i {
    color: var(--primary-color);
}

.vehicle-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
    min-height: 60px;
}

.vehicle-features span {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--gray-100);
    padding: 5px 12px;
    border-radius: 20px;
}

.vehicle-features i {
    color: var(--success);
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    padding: 100px 0;
    background: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.service-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 32px;
    color: var(--secondary-color);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .number {
    font-family: var(--font-secondary);
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .section-subtitle {
    margin-bottom: 10px;
}

.about-content h2 {
    font-family: var(--font-secondary);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    margin: 30px 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
}

.about-features i {
    color: var(--primary-color);
    font-size: 18px;
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */
.why-choose-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.why-number {
    font-family: var(--font-secondary);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1;
}

.why-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   PARTNERS SECTION
   ======================================== */
.partners-section {
    padding: 80px 0;
    background: var(--white);
}

.partners-section.companies {
    background: var(--gray-100);
}

.partners-slider {
    overflow: hidden;
    position: relative;
}

.partners-track {
    display: flex;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-logo {
    min-width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

.partner-logo img {
    max-height: 60px;
    max-width: 150px;
    object-fit: contain;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.partner-logo-static {
    background: var(--white);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo-static:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-5px);
}

.partner-logo-static img {
    max-height: 50px;
    max-width: 140px;
    object-fit: contain;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    padding: 100px 0;
    background: var(--secondary-color);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--primary-color);
    font-size: 16px;
}

.testimonial-card p {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--white);
}

.author-location {
    font-size: 13px;
    color: var(--primary-color);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-secondary);
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: var(--secondary-color);
    opacity: 0.8;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info .section-subtitle {
    margin-bottom: 10px;
}

.contact-info h2 {
    font-family: var(--font-secondary);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
}

.contact-item h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-light);
}

.social-links.large a {
    width: 45px;
    height: 45px;
    background: var(--gray-100);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 18px;
}

.social-links.large a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.contact-form-wrapper {
    background: var(--gray-100);
    padding: 40px;
    border-radius: 10px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-primary);
    font-size: 14px;
    border: none;
    border-radius: 6px;
    background: var(--white);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.payment-methods i {
    font-size: 32px;
    color: rgba(255,255,255,0.5);
    margin-left: 15px;
}

/* ========================================
   BACK TO TOP & WHATSAPP FLOAT
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-5px);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .top-bar-left {
        flex-direction: column;
        gap: 5px;
    }

    .top-bar-right {
        flex-direction: column;
        gap: 10px;
    }

    .language-selector {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow);
        z-index: 1001;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--gray-200);
    }

    .nav-link {
        padding: 15px 0;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 20px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    /* Hero & Slider Mobile Fixes */
    .hero {
        height: auto;
        min-height: 100vh;
        max-height: none;
    }

    .slide {
        min-height: 100vh;
    }

    .slide-content {
        width: 100%;
        max-width: 100%;
        padding: 20px;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .slide-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .slide-content h1 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 15px;
        word-wrap: break-word;
    }

    .slide-content p {
        font-size: 14px;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .slide-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .slide-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        font-size: 13px;
    }

    /* Slider Controls Mobile */
    .slider-controls {
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        gap: 15px;
        width: calc(100% - 40px);
        max-width: 320px;
        justify-content: center;
    }

    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .slider-prev i,
    .slider-next i {
        font-size: 14px;
    }

    .slider-dots {
        gap: 8px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        right: 20px;
        bottom: -20px;
        width: 120px;
        height: 120px;
    }

    .experience-badge .number {
        font-size: 36px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    /* Top Bar Mobile */
    .top-bar {
        padding: 8px 0;
    }

    .top-bar-left span {
        font-size: 12px;
    }

    .social-links {
        gap: 12px;
    }

    .social-links a {
        font-size: 16px;
    }

    .lang-btn {
        padding: 3px 6px;
        font-size: 10px;
    }

    .lang-btn img {
        width: 12px;
    }

    /* Navbar Mobile */
    .navbar {
        padding: 12px 0;
    }

    .logo-text {
        font-size: 22px;
    }

    .logo-sub {
        font-size: 9px;
        letter-spacing: 3px;
    }

    /* Hero Mobile Small */
    .slide-content h1 {
        font-size: 24px;
    }

    .slide-content p {
        font-size: 13px;
    }

    .slide-buttons .btn {
        padding: 12px 20px;
        font-size: 12px;
        max-width: 260px;
    }

    .slider-controls {
        bottom: 20px;
        gap: 10px;
    }

    .slider-prev,
    .slider-next {
        width: 36px;
        height: 36px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }

    /* Booking Form */
    .booking-header {
        padding: 20px;
    }

    .booking-header h2 {
        font-size: 24px;
    }

    .form-content {
        padding: 20px;
    }

    .form-tab {
        padding: 15px 10px;
        font-size: 11px;
    }

    .form-tab i {
        display: none;
    }

    .checkbox-group {
        flex-direction: column;
        gap: 10px;
    }

    .partner-logo {
        min-width: 150px;
    }

    .partners-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .slide-content h1 {
        font-size: 20px;
    }

    .slide-content p {
        font-size: 12px;
    }

    .slide-subtitle {
        font-size: 10px;
    }

    .slide-buttons .btn {
        padding: 10px 16px;
        font-size: 11px;
        max-width: 220px;
    }

    .slider-prev,
    .slider-next {
        width: 32px;
        height: 32px;
    }

    .logo-text {
        font-size: 18px;
    }

    .logo-sub {
        font-size: 8px;
    }
}

/* ========================================
   NEW COMPONENTS - EXTENDED STYLES
   ======================================== */

/* Language Selector Buttons */
.language-selector {
    display: flex;
    gap: 5px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn img {
    width: 16px;
    height: auto;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--black);
}

/* Telegram & Viber Buttons */
.btn-telegram {
    background: #0088cc;
    color: var(--white);
}

.btn-telegram:hover {
    background: #006699;
    transform: translateY(-2px);
}

.btn-viber {
    background: #665CAC;
    color: var(--white);
}

.btn-viber:hover {
    background: #59409A;
    transform: translateY(-2px);
}

/* Booking Progress Steps */
.booking-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background: var(--gray-100);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gray-300);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
}

.progress-step.active .step-number,
.progress-step.completed .step-number {
    background: var(--primary-color);
    color: var(--black);
}

.progress-step span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
}

.progress-step.active span {
    color: var(--primary-color);
}

.progress-line {
    width: 60px;
    height: 3px;
    background: var(--gray-300);
    margin: 0 10px;
    margin-bottom: 20px;
}

.progress-line.completed {
    background: var(--primary-color);
}

/* Form Steps */
.form-step {
    display: none;
    padding: 40px;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    font-family: var(--font-secondary);
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

/* Return Trip Section */
.return-trip-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px dashed var(--gray-200);
}

.return-trip-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* Vehicle Selection Grid */
.vehicle-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.vehicle-select-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.vehicle-select-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.vehicle-select-card.selected {
    border-color: var(--primary-color);
    background: rgba(201, 162, 39, 0.05);
}

.vehicle-select-image {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: var(--gray-100);
}

.vehicle-select-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.vehicle-select-info {
    padding: 20px;
}

.vehicle-select-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.vehicle-select-info .vehicle-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.vehicle-select-info .vehicle-specs span {
    font-size: 13px;
    color: var(--text-light);
}

.vehicle-features-mini {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.vehicle-features-mini span {
    width: 30px;
    height: 30px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-features-mini i {
    font-size: 12px;
    color: var(--primary-color);
}

.vehicle-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.vehicle-price .price-label {
    font-size: 12px;
    color: var(--text-light);
}

.vehicle-price .price-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-select-vehicle {
    width: 100%;
    padding: 12px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.btn-select-vehicle:hover {
    background: var(--primary-color);
    color: var(--black);
}

.vehicle-select-card.selected .btn-select-vehicle {
    background: var(--primary-color);
    color: var(--black);
}

/* Extras Section */
.extras-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gray-200);
}

.extras-section:last-child {
    border-bottom: none;
}

.extras-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.extras-section h4 i {
    color: var(--primary-color);
}

.extras-note {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Child Seats Grid */
.child-seats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.seat-option {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--gray-100);
    border-radius: 10px;
}

.seat-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.seat-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.seat-info h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}

.seat-info p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 10px;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.quantity-selector input {
    width: 40px;
    text-align: center;
    font-weight: 600;
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    padding: 5px;
}

/* Checkbox Cards */
.checkbox-group-large {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.checkbox-card {
    cursor: pointer;
}

.checkbox-card input {
    display: none;
}

.checkbox-content {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--gray-100);
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    transition: var(--transition);
}

.checkbox-card input:checked + .checkbox-content {
    background: rgba(201, 162, 39, 0.1);
    border-color: var(--primary-color);
}

.checkbox-content i {
    font-size: 20px;
    color: var(--text-light);
}

.checkbox-card input:checked + .checkbox-content i {
    color: var(--primary-color);
}

/* Drinks Grid */
.drinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
}

.drink-option {
    cursor: pointer;
}

.drink-option input {
    display: none;
}

.drink-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: var(--gray-100);
    border: 2px solid transparent;
    border-radius: 10px;
    transition: var(--transition);
    text-align: center;
}

.drink-option input:checked + .drink-card {
    border-color: var(--primary-color);
    background: rgba(201, 162, 39, 0.1);
}

.drink-card img {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

.drink-card span {
    font-size: 12px;
    font-weight: 600;
}

.drink-card.beer {
    position: relative;
}

.drink-card small {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #dc3545;
    color: white;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 3px;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px 40px;
    gap: 20px;
}

.btn-prev {
    margin-right: auto;
}

.btn-next,
.btn-submit {
    margin-left: auto;
}

/* Booking Summary */
.booking-summary {
    background: var(--gray-100);
    border-radius: 10px;
    padding: 30px;
}

.summary-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--gray-200);
}

.summary-section:last-of-type {
    border-bottom: none;
}

.summary-section h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-section h4 i {
    color: var(--primary-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.summary-row span {
    color: var(--text-light);
}

.summary-vehicle {
    display: flex;
    align-items: center;
    gap: 20px;
}

.summary-vehicle img {
    width: 100px;
    height: 60px;
    object-fit: contain;
    background: var(--white);
    border-radius: 6px;
    padding: 5px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--secondary-color);
    border-radius: 8px;
    margin-top: 20px;
}

.summary-total span {
    color: var(--white);
    font-size: 18px;
}

.summary-total strong {
    color: var(--primary-color);
    font-size: 32px;
}

/* Vehicle Price Row */
.vehicle-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    margin-top: auto;
    padding-top: 10px;
}

.price-info {
    display: flex;
    flex-direction: column;
}

.price-info .price-label {
    font-size: 12px;
    color: var(--text-light);
}

.price-info .price-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-view-details {
    padding: 8px 16px;
    font-size: 12px;
    background: transparent;
    border: 1px solid var(--gray-300);
    color: var(--text-color);
}

.btn-view-details:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.vehicle-gallery-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.vehicle-gallery-btn:hover {
    background: var(--primary-color);
}

.vehicle-gallery-btn i {
    color: var(--secondary-color);
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: 10px;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    margin: 20px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--primary-color);
}

.vehicle-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.vehicle-modal-gallery {
    padding: 30px;
    background: var(--gray-100);
}

.gallery-main {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
}

.gallery-main img {
    width: 100%;
    height: 300px;
    object-fit: contain;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
}

.gallery-thumbs img {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
}

.gallery-thumbs img:hover,
.gallery-thumbs img.active {
    opacity: 1;
}

.vehicle-modal-info {
    padding: 30px;
}

.vehicle-modal-info h2 {
    font-family: var(--font-secondary);
    font-size: 28px;
    margin-bottom: 20px;
}

.modal-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.modal-specs span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.modal-specs i {
    color: var(--primary-color);
}

.modal-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.modal-features span {
    background: var(--gray-100);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.modal-features i {
    color: var(--success);
}

.modal-description {
    margin-bottom: 25px;
    color: var(--text-light);
    line-height: 1.7;
}

.modal-prices {
    margin-bottom: 25px;
}

.modal-prices h4 {
    font-size: 16px;
    margin-bottom: 15px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table td {
    padding: 10px;
    border-bottom: 1px solid var(--gray-200);
}

.price-table td:last-child {
    text-align: right;
    font-weight: 700;
    color: var(--primary-color);
}

.modal-book-btn {
    margin-top: 20px;
}

/* Floating Contact Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-btn.whatsapp {
    background: var(--whatsapp);
}

.float-btn.telegram {
    background: #0088cc;
}

.float-btn.viber {
    background: #665CAC;
}

/* Messaging Apps Section */
.messaging-apps {
    margin: 30px 0;
}

.messaging-apps h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.messaging-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.msg-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--white);
    transition: var(--transition);
}

.msg-btn:hover {
    transform: translateY(-2px);
}

.msg-btn.whatsapp {
    background: var(--whatsapp);
}

.msg-btn.telegram {
    background: #0088cc;
}

.msg-btn.viber {
    background: #665CAC;
}

/* Vehicle Features Extended */
.vehicle-features {
    flex-wrap: wrap;
}

/* Responsive for new components */
@media (max-width: 768px) {
    .booking-progress {
        flex-wrap: wrap;
        gap: 15px;
    }

    .progress-line {
        display: none;
    }

    .form-step {
        padding: 20px;
    }

    .vehicle-selection-grid {
        grid-template-columns: 1fr;
    }

    .child-seats-grid {
        grid-template-columns: 1fr;
    }

    .drinks-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .form-navigation {
        padding: 20px;
        flex-wrap: wrap;
    }

    .vehicle-modal-grid {
        grid-template-columns: 1fr;
    }

    .floating-buttons {
        bottom: 20px;
        left: 20px;
    }

    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .lang-btn {
        padding: 4px 8px;
        font-size: 11px;
    }

    .lang-btn img {
        width: 14px;
    }

    .cta-buttons {
        flex-direction: column;
    }
}
