:root {
    --primary: #ff6b35;
    --primary-dark: #e55a2b;
    --secondary: #2a6df5;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --gray: #6c757d;
    --success: #28a745;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9fafc;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== FLOATING BUTTONS ========== */
.floating-contact {
    position: fixed;
    bottom: 40px;
    left: 30px;
    right: 30px;
    z-index: 1001;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    animation: float 3s ease-in-out infinite;
    pointer-events: auto;
}

.float-btn:nth-child(2) {
    animation-delay: 0.4s;
}

.float-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    order: 1;
}

.phone-btn {
    background: linear-gradient(135deg, #1377e9, #2a6df5);
    order: 2;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ========== HEADER & NAVBAR ========== */
header {
    background-color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.8s ease-out;
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

@keyframes slideDown {
    0% { transform: translateY(-100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    z-index: 1002;
    height: 70px;
}

.logo img {
    height: 60px;
    width: 150px;
    max-width: 200px;
    object-fit: cover;
    transition: var(--transition);
}

@media (min-width: 992px) {
    .logo img {
        height: 65px;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 45px;
    }
}

.logo img:hover {
    transform: scale(1.05);
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 16px;
    padding: 5px 0;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1002;
}

.book-now-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    white-space: nowrap;
    font-size: 16px;
}

.book-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: var(--dark);
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
    z-index: 1002;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.mobile-menu-btn:hover {
    background-color: #f0f5ff;
    color: var(--primary);
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    min-height: 60vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    color: #ffffff;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("/assets/images/hero.jpeg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: min-content;
        width: 400px;
        height: 100vh;
        padding: 6px;
        background-attachment: scroll;
    }

    .hero-content h1 {
        font-size: 20px;
        margin-bottom: 0px;
    }

    .stat-box {
        padding: 15px;
        max-width: 280px;
        margin-bottom: 0px;
    }
}

@media (min-width: 768px) {
    .hero-section {
        min-height: 80vh;
        padding: 100px 20px;
        background-attachment: fixed;
    }

    .hero-content h1 {
        font-size: 48px;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: white;
}

.hero-content h1 span {
    color: #ff6b35;
    display: inline-block;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    min-width: 150px;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    display: block;
}

/* ========== BOOKING SECTION ========== */
.booking-section {
    padding: 80px 0;
    background-color: #f8fafd;
}

.section-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 5px;
}

/* Booking Tabs */
.booking-tabs-container {
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.booking-tabs {
    display: flex;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e1e5eb;
}

.tab-btn {
    flex: 1;
    background: none;
    border: none;
    color: var(--gray);
    padding: 20px 30px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tab-btn.active {
    color: var(--primary);
    background-color: white;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.tab-btn:hover:not(.active) {
    color: var(--primary);
    background-color: rgba(255, 107, 53, 0.05);
}

/* Form Slider */
.booking-form-slider {
    position: relative;
    overflow: hidden;
    min-height: 700px;
}

.form-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.form-slide h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 30px;
    text-align: center;
}

/* ========== FORM STYLES WITH PLACEHOLDER FIX ========== */
form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 10px;
}

/* Form Input Styles with Placeholder Fix */
form input[type="text"],
form input[type="tel"],
form input[type="email"],
form input[type="date"],
form input[type="time"] {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e1e5eb;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: var(--transition);
    background-color: #f8f9fa;
    color: #495057;
    position: relative;
}

/* Regular input placeholders */
form input[type="text"]::placeholder,
form input[type="tel"]::placeholder,
form input[type="email"]::placeholder {
    color: #6c757d;
    opacity: 0.8;
    font-size: 15px;
}

/* FIX FOR DATE/TIME PLACEHOLDERS */
input[type="date"],
input[type="time"] {
    position: relative;
}

/* Default state - show placeholder */
input[type="date"]:invalid,
input[type="time"]:invalid {
    color: transparent;
}

/* Show placeholder text using pseudo-element */
input[type="date"]:invalid:before,
input[type="time"]:invalid:before {
    content: attr(placeholder);
    color: #6c757d;
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}

/* When date/time has a value, show it */
input[type="date"]:valid,
input[type="time"]:valid {
    color: #495057;
}

/* Remove placeholder when focused */
input[type="date"]:focus:invalid:before,
input[type="time"]:focus:invalid:before {
    content: '';
}

/* Focus states */
form input:focus {
    outline: none;
    border-color: var(--primary);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    color: #495057;
}

/* Car Selection */
.car-selection {
    background-color: #f8fafd;
    padding: 25px;
    border-radius: 12px;
    margin: 20px 0;
}

.car-selection p {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 18px;
    text-align: center;
}

.car-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.car-options label {
    display: flex;
    align-items: center;
    padding: 15px;
    background: white;
    border: 2px solid #e1e5eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.car-options label:hover {
    border-color: var(--primary);
    background-color: rgba(255, 107, 53, 0.05);
}

.car-options input[type="radio"] {
    margin-right: 12px;
    transform: scale(1.2);
}

.car-options label:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    width: 100%;
    padding: 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* ========== CONFIRMATION SECTION ========== */
.confirmation-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #eef2ff 100%);
}

.confirmation-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 74, 173, 0.12);
    text-align: center;
    border: 1px solid #e1e8ff;
}

.confirmation-icon {
    font-size: 70px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.confirmation-card h2 {
    color: #1a237e;
    margin-bottom: 15px;
    font-size: 32px;
}

.confirmation-message {
    color: #666;
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.booking-summary {
    background: #f8f9ff;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    text-align: left;
    border-left: 4px solid #3f51b5;
}

.booking-summary h3 {
    color: #1a237e;
    margin-bottom: 20px;
    font-size: 22px;
}

#summaryContent p {
    margin: 12px 0;
    color: #444;
    font-size: 16px;
    line-height: 1.5;
}

#summaryContent strong {
    color: #1a237e;
    font-weight: 600;
    min-width: 160px;
    display: inline-block;
}

.confirmation-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.download-btn, .new-booking-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.download-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
}

.download-btn:hover {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
}

.new-booking-btn {
    background: linear-gradient(135deg, #3f51b5 0%, #303f9f 100%);
    color: white;
}

.new-booking-btn:hover {
    background: linear-gradient(135deg, #303f9f 0%, #283593 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(63, 81, 181, 0.3);
}

/* ========== TARIFF SECTION ========== */
.tariff-section {
    padding: 80px 0;
    background-color: #f0f5ff;
}

.tariff-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.tariff-card {
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: fadeInUp 0.8s ease-out both;
}

.tariff-card:nth-child(2) {
    animation-delay: 0.2s;
}

.tariff-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.tariff-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 20px;
    text-align: center;
}

.tariff-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.tariff-table {
    width: 100%;
    border-collapse: collapse;
}

.tariff-table th, .tariff-table td {
    padding: 18px 15px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
}

.tariff-table th {
    font-weight: 600;
    color: var(--dark);
    background-color: #f8fafd;
    font-size: 16px;
}

.tariff-table tr:last-child td {
    border-bottom: none;
}

.tariff-table tr:hover {
    background-color: #f8fafd;
}

.highlight {
    color: var(--primary);
    font-weight: 600;
}

/* ========== INFO SECTION ========== */
.info-section {
    padding: 80px 0;
    background-color: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.info-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: fadeInUp 0.8s ease-out both;
    border: 1px solid #e1e5eb;
}

.info-card:nth-child(2) {
    animation-delay: 0.2s;
}

.info-card:nth-child(3) {
    animation-delay: 0.4s;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.info-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
    display: block;
}

.info-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
    text-align: center;
}

.info-list {
    list-style-type: none;
}

.info-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.info-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 18px;
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: 80px 0;
    background-color: #f0f5ff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    animation: fadeInLeft 0.8s ease-out both;
}

@keyframes fadeInLeft {
    0% { opacity: 0; transform: translateX(-40px); }
    100% { opacity: 1; transform: translateX(0); }
}

.about-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--dark);
    text-align: center;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray);
    font-size: 17px;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.about-stat {
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 120px;
    transition: var(--transition);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.about-stat:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.about-stat .number {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.about-stat .label {
    font-size: 14px;
    color: var(--gray);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== FOOTER ========== */
footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about {
    padding-right: 20px;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo i {
    color: var(--primary);
}

.district-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.district-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.district-grid li {
    color: #b0b7c3;
    margin-bottom: 8px;
    font-size: 14px;
    padding-left: 15px;
    position: relative;
}

.district-grid li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
}

.footer-links h3, .footer-contact h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
}

.footer-links ul {
    list-style-type: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b7c3;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info {
    list-style-type: none;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #b0b7c3;
}

.contact-info i {
    color: var(--primary);
    margin-top: 3px;
    font-size: 18px;
    min-width: 20px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
    color: #b0b7c3;
    font-size: 14px;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .car-options {
        grid-template-columns: 1fr;
    }
    
    .booking-form-slider {
        min-height: 750px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 999;
        gap: 20px;
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        font-size: 18px;
        padding: 15px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .book-now-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-item {
        min-width: 120px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .booking-tabs-container {
        margin: 0 10px;
    }
    
    .form-slide {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .tariff-container, .info-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        gap: 20px;
    }
    
    .floating-contact {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .district-grid {
        grid-template-columns: 1fr;
    }
    
    .confirmation-card {
        padding: 25px;
        margin: 0 15px;
    }
    
    .confirmation-actions {
        flex-direction: column;
    }
    
    .download-btn, .new-booking-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .tab-btn {
        padding: 15px;
        font-size: 16px;
    }
    
    .form-slide h3 {
        font-size: 20px;
    }
    
    .info-card, .tariff-card {
        padding: 25px 20px;
    }
    
    .about-text h2 {
        font-size: 28px;
    }
    
    .about-stat {
        min-width: 100px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .floating-contact {
        bottom: 15px;
        left: 15px;
        right: 15px;
    }
    
    .float-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .logo img {
        max-height: 40px;
    }
    
    .book-now-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .booking-form-slider {
        min-height: 800px;
    }
}

/* Fix for mobile viewport */
@media (max-width: 480px) {
    .hero-section {
        min-height: 80vh;
        padding: 60px 15px 40px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    header {
        height: 70px;
        padding: 0 15px;
    }
    
    .logo img {
        max-height: 35px;
    }
}