/* =========================================
   VARIABLES & RESET
   ========================================= */
:root {
    --primary-color: #081B3A;
    --secondary-color: #FFC107;
    --accent-color: #FFFFFF;
    --bg-color: #040d1e;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-muted: #A0AABF;
    --glass-border: rgba(255, 255, 255, 0.1);
    
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    --transition: all 0.3s ease;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--accent-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    color: var(--secondary-color);
}

.section {
    padding: 80px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Utilities */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    border-color: rgba(255, 193, 7, 0.3);
}

.grid-layout {
    display: grid;
    gap: 30px;
}

.mt-4 {
    margin-top: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #1ebc5a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.full-width {
    width: 100%;
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(8, 27, 58, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--accent-color);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100vw;
    height: 100vh;
    background: var(--primary-color);
    z-index: 999;
    padding: 100px 30px 30px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    width: 100%;
}

.mobile-link {
    font-size: 1.5rem;
    font-weight: 500;
    display: block;
    text-align: center;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: url('../images/poster.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(4, 13, 30, 0.9), rgba(4, 13, 30, 0.6));
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 800px;
}

.hero-subtitle {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 15px;
}

.hero-tagline {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-item i {
    color: var(--secondary-color);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* =========================================
   SERVICES
   ========================================= */
.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.glass-card:hover .card-icon {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.services h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.services p {
    color: var(--text-muted);
}

/* =========================================
   FLEET
   ========================================= */
.fleet-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.fleet-card h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.capacity {
    font-size: 0.9rem;
    color: var(--secondary-color);
    background: rgba(255, 193, 7, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.fleet-variants {
    font-size: 0.95rem;
    color: var(--secondary-color) !important;
    margin-bottom: 12px;
}

.fleet-variants strong {
    color: white;
}

/* Fleet Hover Images */
.fleet-image-wrapper {
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    margin-bottom: 0;
}

.fleet-hover-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
}

.fleet-card .card-icon {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.fleet-card:hover .fleet-image-wrapper {
    height: 180px;
    opacity: 1;
    margin-bottom: 20px;
}

.fleet-card:hover .card-icon {
    height: 0;
    opacity: 0;
    margin-bottom: 0;
    padding: 0;
}

/* =========================================
   COVERAGE
   ========================================= */
.coverage-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.coverage-card {
    text-align: center;
    padding: 40px 20px;
}

.coverage-card h3 {
    font-size: 1.3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.coverage-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

/* =========================================
   ABOUT & WHY CHOOSE US
   ========================================= */
.about-flex {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-lead {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.features-content {
    flex: 1;
}

.features-content h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.features-list i {
    font-size: 1.2rem;
}

/* =========================================
   BOOKING SECTION - PREMIUM REDESIGN
   ========================================= */
.booking {
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(8,27,58,0.6) 100%);
    position: relative;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,193,7,0.08);
    border: 1px solid rgba(255,193,7,0.25);
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #e0e0e0;
    transition: var(--transition);
}

.trust-badge i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.trust-badge:hover {
    background: rgba(255,193,7,0.15);
    border-color: rgba(255,193,7,0.5);
    transform: translateY(-2px);
}

/* Booking Card */
.booking-card {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(8, 27, 58, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,193,7,0.2);
    border-radius: 24px;
    padding: 50px 50px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04) inset;
}

/* Form Grid */
.booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 28px;
}

.form-group-full {
    grid-column: 1 / -1;
}

/* Form Elements */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #c8d0e0;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.form-group label i {
    color: var(--secondary-color);
    font-size: 0.85rem;
    width: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.05);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 0.97rem;
    min-height: 52px;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23FFC107' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 42px;
    cursor: pointer;
}

.form-group select option {
    background: #081B3A;
    color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255,193,7,0.05);
    box-shadow: 0 0 0 3px rgba(255,193,7,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

/* Vehicle Suggestion */
.vehicle-suggestion {
    margin-top: 6px;
    padding: 10px 14px;
    background: rgba(255,193,7,0.1);
    border: 1px solid rgba(255,193,7,0.4);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.booking-vehicle-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Optional Tag */
.optional-tag {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
    opacity: 0.7;
}

/* Trip Summary Card */
.trip-summary-card {
    background: rgba(255,193,7,0.06);
    border: 1px solid rgba(255,193,7,0.25);
    border-radius: 14px;
    overflow: hidden;
    animation: fadeIn 0.4s ease;
}

.trip-summary-header {
    padding: 12px 18px;
    background: rgba(255,193,7,0.1);
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255,193,7,0.15);
}

.trip-summary-header i {
    font-size: 1rem;
}

.trip-summary-body {
    padding: 14px 18px;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trip-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 100px;
}

.trip-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trip-value {
    font-size: 0.95rem;
    color: white;
    font-weight: 600;
}

.trip-duration .trip-value {
    color: var(--secondary-color);
    font-size: 1.05rem;
}


/* Contact Preference Radio Cards */
.contact-pref-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.radio-card {
    cursor: pointer;
    border-radius: 12px;
    border: 1.5px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    transition: var(--transition);
    overflow: hidden;
}

.radio-card input[type="radio"] {
    display: none;
}

.radio-card-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 20px;
    font-weight: 600;
    font-size: 0.97rem;
    color: #bbb;
    transition: var(--transition);
}

.radio-card-inner i {
    font-size: 1.4rem;
}

.radio-card:hover {
    border-color: rgba(255,193,7,0.4);
    background: rgba(255,193,7,0.06);
}

.radio-card input[type="radio"]:checked + .radio-card-inner {
    color: var(--secondary-color);
}

.radio-card:has(input:checked) {
    border-color: var(--secondary-color);
    background: rgba(255,193,7,0.1);
    box-shadow: 0 0 0 3px rgba(255,193,7,0.1);
}

#pref-wa .radio-card-inner i { color: #25D366; }
#pref-call .radio-card-inner i { color: var(--secondary-color); }

/* Submit Button */
.btn-booking-submit {
    width: 100%;
    padding: 18px 28px;
    background: linear-gradient(135deg, #25D366 0%, #1aad52 100%);
    border: none;
    border-radius: 14px;
    color: white;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    letter-spacing: 0.3px;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(37,211,102,0.3);
    position: relative;
    overflow: hidden;
}

.btn-booking-submit i {
    font-size: 1.4rem;
}

.btn-booking-submit::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.btn-booking-submit:hover::before {
    left: 100%;
}

.btn-booking-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37,211,102,0.45);
}

.btn-booking-submit:active {
    transform: translateY(0);
}

.btn-booking-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Form Messages */
#form-messages {
    margin-bottom: 8px;
}

/* Alerts */
.alert {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 0.93rem;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeIn 0.4s ease;
}
.alert-success {
    background: rgba(37,211,102,0.12);
    border: 1px solid rgba(37,211,102,0.4);
    color: #4ade80;
}
.alert-error {
    background: rgba(239,68,68,0.12);
    border: 1px solid rgba(239,68,68,0.4);
    color: #f87171;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =========================================
   BOOKING SUMMARY MODAL
   ========================================= */
.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.booking-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4,13,30,0.85);
    backdrop-filter: blur(6px);
}

.booking-modal-card {
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg, #0d2147, #081830);
    border: 1px solid rgba(255,193,7,0.3);
    border-radius: 20px;
    width: 100%;
    max-width: 480px;
    padding: 36px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    animation: modalSlideIn 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: scale(0.88) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
    text-align: center;
    margin-bottom: 28px;
}

.modal-success-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 14px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.08); }
}

.modal-header h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
    color: white;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.07);
    gap: 12px;
}

.summary-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
    min-width: 90px;
}

.summary-value {
    font-size: 0.93rem;
    color: white;
    font-weight: 600;
    text-align: right;
    word-break: break-word;
}

.modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.modal-btn-edit {
    padding: 14px 18px;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    color: #ccc;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.modal-btn-edit:hover {
    border-color: rgba(255,255,255,0.5);
    color: white;
    background: rgba(255,255,255,0.05);
}

.modal-btn-confirm {
    padding: 14px 18px;
    background: linear-gradient(135deg, #25D366, #1aad52);
    border: none;
    border-radius: 10px;
    color: white;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

.modal-btn-confirm i { font-size: 1.1rem; }

.modal-btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.45);
}



/* =========================================
   CONTACT
   ========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 193, 7, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-muted);
}

.hover-link {
    color: var(--text-muted);
    transition: var(--transition);
}

.hover-link:hover {
    color: var(--secondary-color);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: #030812;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 60px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.footer p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.footer h4 {
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links li, .footer-contact li {
    margin-bottom: 15px;
    color: var(--text-muted);
}

.footer-links a {
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
}

/* =========================================
   MOBILE FLOATING ACTIONS & BOTTOM BAR
   ========================================= */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 99;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    animation: bounce 2s infinite;
}

.float-wa {
    background: #25D366;
}

.float-call {
    background: var(--secondary-color);
    color: var(--primary-color);
    animation-delay: 1s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.bottom-contact-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary-color);
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.bottom-bar-btn {
    flex: 1;
    padding: 15px 0;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.bottom-bar-btn.call-btn {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.bottom-bar-btn.wa-btn {
    background: #25D366;
    color: white;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .about-flex { flex-direction: column; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .fleet-grid { grid-template-columns: repeat(2, 1fr); }
    .booking-card { padding: 40px 36px; }
}

@media (max-width: 768px) {
    .nav-links, .nav-book-btn { display: none; }
    .hamburger { display: block; }

    .hero { min-height: 100vh; height: auto; padding-top: 100px; padding-bottom: 50px; text-align: center; }
    .hero-content { display: flex; flex-direction: column; align-items: center; }
    .hero-buttons { flex-direction: column; width: 100%; justify-content: center; }
    .hero-buttons .btn { width: 100%; }
    .hero-title { font-size: 2.5rem; }
    .hero-tagline { font-size: 1.4rem; }
    .hero-highlights { justify-content: center; }

    .services-grid { grid-template-columns: 1fr; }
    .fleet-grid { grid-template-columns: 1fr; }
    .coverage-grid { grid-template-columns: 1fr; }

    /* Booking */
    .booking-card { padding: 28px 20px; border-radius: 18px; }
    .booking-form { grid-template-columns: 1fr; gap: 16px; }
    .form-group-full { grid-column: 1; }
    .trust-badges { gap: 10px; }
    .trust-badge { padding: 8px 16px; font-size: 0.82rem; }
    .contact-pref-grid { grid-template-columns: 1fr 1fr; }
    .btn-booking-submit { font-size: 1rem; padding: 16px; }

    /* Modal */
    .booking-modal-card { padding: 26px 20px; }
    .modal-actions { grid-template-columns: 1fr; }
    .modal-btn-edit, .modal-btn-confirm { padding: 14px; }

    .features-list { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
    .footer-col { display: flex; flex-direction: column; align-items: center; }

    .bottom-contact-bar { display: flex; }
    .mobile-only-hide-bar { display: flex; bottom: 80px; }
    body { padding-bottom: 60px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .section { padding: 50px 0; }
    .trust-badges { flex-direction: column; align-items: center; }
    .contact-pref-grid { grid-template-columns: 1fr; }
    .booking-card { padding: 22px 16px; }
    .summary-label { min-width: 70px; }
}

