/* ================================================================
   SHRI SANWARIYA TRAVELS - MAIN STYLES
   ================================================================ */

/* ----- RESET & BASE ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #fefcf8;
    color: #1e1e2a;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}


/* ----- BUTTONS ----- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #D4AF37;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 0.95rem;
}

.btn-primary:hover {
    background: #b8860b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid #D4AF37;
    color: #b8860b;
    padding: 10px 26px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.25s ease;
    font-size: 0.95rem;
}

.btn-outline:hover {
    background: #D4AF37;
    color: #ffffff;
}

.btn-block {
    width: 100%;
    justify-content: center;
}


/* ================================================================
   HEADER / NAVBAR
   ================================================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(254, 252, 248, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    padding: 10px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.logo img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text .brand {
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #D4AF37, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.logo-text .tagline {
    font-size: 0.5rem;
    font-weight: 500;
    color: #b8860b;
    display: block;
    -webkit-text-fill-color: #b8860b;
}

.nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav a {
    font-size: 0.85rem;
    font-weight: 500;
    color: #2d3e4f;
    padding: 4px 0;
    position: relative;
    transition: color 0.2s;
}

.nav a:hover,
.nav a.active {
    color: #D4AF37;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s;
    border-radius: 2px;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.btn-nav {
    background: #D4AF37 !important;
    color: #ffffff !important;
    padding: 10px 28px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35) !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    line-height: 1.4;
}

.btn-nav:hover {
    background: #b8860b !important;
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45) !important;
}

.btn-nav::after {
    display: none !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: #2d3e4f;
    border-radius: 3px;
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}


/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
    padding: 25px 0 35px;
}

.hero-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    background: linear-gradient(130deg, #fcf6ed, #fff8ee);
    border-radius: 28px;
    padding: 28px 26px;
    align-items: center;
}

.hero-content {
    flex: 1.2;
    min-width: 240px;
}

.hero-content .badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    padding: 4px 16px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #b8860b;
    margin-bottom: 12px;
}

.hero-content h1 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
}

.hero-content .highlight {
    color: #D4AF37;
    border-bottom: 3px solid #f3d382;
}

.hero-content p {
    color: #4a5a6a;
    margin-bottom: 16px;
    font-size: 0.92rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-sidebar {
    flex: 0.9;
    min-width: 240px;
}


/* ----- LIVE CARD ----- */
.live-card {
    background: #ffffff;
    padding: 16px 18px;
    border-radius: 22px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.live-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0e5dc;
    margin-bottom: 10px;
}

.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #e74c3c;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.8); }
}

.live-title {
    font-weight: 700;
    font-size: 0.8rem;
    color: #1e1e2a;
    flex: 1;
}

.live-badge {
    background: #e74c3c;
    color: #ffffff;
    font-size: 0.4rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    animation: pulse-badge 1.5s infinite;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.live-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
    margin-bottom: 10px;
}

.stat-item {
    text-align: center;
    padding: 5px 4px;
    background: #fefcf8;
    border-radius: 10px;
    border: 1px solid #f0e5dc;
}

.stat-number {
    font-size: 1.3rem;
    font-weight: 800;
    color: #D4AF37;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.55rem;
    color: #5a6e7c;
    font-weight: 500;
}

.live-progress {
    background: #f8f4ef;
    padding: 6px 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.progress-bar {
    width: 100%;
    height: 5px;
    background: #e8e0d8;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #D4AF37, #b8860b);
    border-radius: 10px;
    transition: width 0.6s ease;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    margin-top: 3px;
    font-size: 0.45rem;
    color: #5a6e7c;
    font-weight: 500;
}

.progress-text span:first-child {
    color: #1e1e2a;
    font-weight: 600;
}

.progress-text span:last-child {
    color: #D4AF37;
    font-weight: 700;
}

.live-cta {
    text-align: center;
    padding-top: 8px;
    border-top: 1px solid #f0e5dc;
}

.live-cta p {
    font-size: 0.7rem;
    font-weight: 600;
    color: #1e1e2a;
    margin-bottom: 6px;
}


/* ----- MINI STATS ----- */
.mini-stats {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 10px;
    padding: 5px 16px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    flex-wrap: wrap;
    border: 1px solid rgba(212, 175, 55, 0.08);
}

.mini-stats span {
    font-size: 0.65rem;
    font-weight: 600;
    color: #2c3e4e;
    display: flex;
    align-items: center;
    gap: 5px;
}

.mini-stats span i {
    color: #D4AF37;
    font-size: 0.75rem;
}

.hero-footer {
    text-align: center;
    margin-top: 8px;
    font-size: 0.7rem;
    font-weight: 500;
    color: #5a6e7c;
}


/* ================================================================
   SECTION TITLES
   ================================================================ */
.section {
    padding: 45px 0;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 6px;
}

.section-title.light {
    color: #ffffff;
}

.section-sub {
    text-align: center;
    color: #5a6e7c;
    max-width: 650px;
    margin: 0 auto 32px;
    font-size: 0.9rem;
}


/* ================================================================
   ABOUT SECTION - IMAGE CENTERED
   ================================================================ */
.about {
    background: linear-gradient(135deg, #fff8f0, #fffef5);
    border-radius: 28px;
    margin: 16px 0;
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    align-items: center;
}

.about-text {
    flex: 1.2;
    min-width: 240px;
}

.about-text p {
    margin-bottom: 12px;
    color: #2c3e4e;
    font-size: 0.9rem;
}

.stats-row {
    display: flex;
    gap: 14px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.stat-box {
    background: #ffffff;
    padding: 12px 18px;
    border-radius: 16px;
    text-align: center;
    flex: 1;
    min-width: 70px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.stat-box h4 {
    font-size: 1.3rem;
    color: #D4AF37;
}

.stat-box p {
    font-size: 0.65rem;
    color: #5a6e7c;
    margin: 0;
}

/* ABOUT IMAGE - CENTERED */
.about-image {
    flex: 0.9;
    min-width: 160px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-image img {
    max-width: 180px;
    width: 100%;
    height: auto;
    border-radius: 22px;
    background: #ffffff;
    padding: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    display: block;
    margin: 0 auto;
}

.about-location {
    margin-top: 10px;
    font-weight: 600;
    color: #b8860b;
    font-size: 0.8rem;
    text-align: center;
}


/* ================================================================
   REVIEWS SECTION
   ================================================================ */
.reviews {
    margin: 16px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}

.review-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0e5dc;
    transition: all 0.3s;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.review-card .stars {
    color: #D4AF37;
    font-size: 0.95rem;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.review-card .text {
    font-size: 0.82rem;
    line-height: 1.5;
    color: #2c3e4e;
    margin-bottom: 12px;
    font-style: italic;
}

.review-card .author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-card .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37, #b8860b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.review-card .name {
    font-weight: 600;
    font-size: 0.85rem;
}

.review-card .location {
    font-size: 0.7rem;
    color: #7a8a9a;
}


/* ================================================================
   FLEET SECTION
   ================================================================ */
.fleet {
    margin: 16px 0;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.fleet-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0e5dc;
    transition: all 0.4s;
}

.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.1);
    border-color: #D4AF37;
}

/* ----- SLIDER ----- */
.slider-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #1e2a3a;
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    transition: 0.3s;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(212, 175, 55, 0.8);
}

.slider-btn.prev {
    left: 6px;
}

.slider-btn.next {
    right: 6px;
}

.slider-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 5;
}

.slider-dots .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: 0.3s;
}

.slider-dots .dot.active {
    background: #D4AF37;
    width: 18px;
    border-radius: 10px;
}

.badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #D4AF37, #b8860b);
    color: #ffffff;
    padding: 3px 12px;
    border-radius: 30px;
    font-size: 0.55rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.fleet-card .info {
    padding: 14px 16px 16px;
}

.fleet-card .info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e1e2a;
    margin-bottom: 3px;
}

.fleet-card .features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.fleet-card .features span {
    font-size: 0.65rem;
    color: #5a6e7c;
    background: #f8f4ef;
    padding: 2px 8px;
    border-radius: 20px;
}

.fleet-card .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #f0e5dc;
}

.fleet-card .price {
    font-weight: 800;
    color: #D4AF37;
    font-size: 1rem;
}

.fleet-card .btn-book {
    background: #D4AF37;
    color: #ffffff;
    padding: 5px 18px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.fleet-card .btn-book:hover {
    background: #b8860b;
    transform: scale(1.04);
}


/* ================================================================
   OFFER BANNER
   ================================================================ */
.offer-banner {
    margin: 25px 0;
}

.banner-box {
    background: linear-gradient(135deg, #D4AF37, #b8860b);
    border-radius: 26px;
    padding: 30px 22px;
    text-align: center;
    color: #ffffff;
}

.banner-box h2 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.banner-box p {
    font-size: 0.85rem;
    opacity: 0.95;
    margin-bottom: 12px;
}

.banner-box .btn-call {
    background: #ffffff;
    color: #b8860b;
    padding: 10px 28px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    transition: 0.25s;
}

.banner-box .btn-call:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}


/* ================================================================
   BOOKING SECTION - UPDATED
   ================================================================ */

.booking {
    background: linear-gradient(135deg, #0f1a24 0%, #1a2a38 100%);
    border-radius: 28px;
    margin: 25px 0;
    padding: 50px 0;
    color: #ffffff;
}

.booking .section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 6px;
}

.booking .section-title.light {
    color: #ffffff;
}

.booking .section-sub.light {
    color: #aab8c5;
}

.booking-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.booking-form,
.price-calculator {
    flex: 1;
    min-width: 280px;
}

/* ----- BOOKING FORM ----- */
.booking-form {
    background: #ffffff;
    padding: 28px 30px;
    border-radius: 24px;
    color: #1e1e2a;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.booking-form h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e1e2a;
    border-bottom: 2px solid #f0e5dc;
    padding-bottom: 12px;
}

.booking-form h3 i {
    color: #D4AF37;
    margin-right: 8px;
}

.booking-form .form-group {
    margin-bottom: 14px;
}

.booking-form .form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #4a5a6a;
    margin-bottom: 4px;
}

.booking-form .form-row {
    display: flex;
    gap: 14px;
}

.booking-form .form-group.half {
    flex: 1;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #e2e2e2;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.booking-form input:focus,
.booking-form select:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
    background: #ffffff;
}

.booking-form .form-buttons {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.booking-form .form-buttons .btn-primary {
    flex: 1;
    justify-content: center;
    padding: 12px;
    font-size: 0.9rem;
}

.booking-form .form-buttons .confirm-btn {
    background: #b8860b;
}

.booking-form .form-buttons .confirm-btn:hover {
    background: #8a6508;
}

/* ----- PRICE CALCULATOR ----- */
.price-calculator {
    background: rgba(255, 255, 255, 0.06);
    padding: 28px 30px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.price-calculator h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
}

.price-calculator h3 i {
    color: #D4AF37;
    margin-right: 8px;
}

.calc-result {
    background: linear-gradient(135deg, #D4AF37, #b8860b);
    padding: 20px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
}

.calc-result p {
    font-size: 0.85rem;
    opacity: 0.95;
    margin-bottom: 4px;
}

.calc-result .total-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.calc-result small {
    font-size: 0.7rem;
    opacity: 0.9;
    display: block;
    margin-top: 4px;
}

.booking-status {
    background: rgba(255, 255, 255, 0.06);
    padding: 10px 14px;
    border-radius: 14px;
    min-height: 44px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.negotiate-note {
    background: rgba(255, 255, 255, 0.06);
    padding: 10px 14px;
    border-radius: 14px;
    text-align: center;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.negotiate-note a {
    color: #D4AF37;
    text-decoration: underline;
    font-weight: 700;
}

/* ----- WHATSAPP QUICK BUTTON ----- */
.whatsapp-quick {
    margin-top: 4px;
}

.wp-quick-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    flex-wrap: wrap;
}

.wp-quick-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.wp-quick-btn i {
    font-size: 1.4rem;
}

.wp-quick-btn small {
    font-size: 0.6rem;
    opacity: 0.85;
    font-weight: 400;
    display: block;
    width: 100%;
    text-align: center;
}

/* ================================================================
   CONTACT SECTION
   ================================================================ */
.contact {
    background: #fefaf5;
    border-radius: 28px;
    margin: 25px 0;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 20px;
}

.contact-info {
    flex: 1;
    min-width: 240px;
}

.contact-info h3 {
    font-size: 1.1rem;
    margin-bottom: 14px;
    color: #1e1e2a;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0;
    font-size: 0.85rem;
}

.contact-item i {
    width: 20px;
    color: #D4AF37;
    font-size: 0.9rem;
}

.city-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.city-tags span {
    background: #ffffff;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 500;
    color: #2c3e4e;
    border: 1px solid #f0e5dc;
}

.contact-form {
    flex: 1;
    min-width: 240px;
    background: #ffffff;
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.contact-form h3 {
    margin-bottom: 12px;
    font-size: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 16px;
    margin-bottom: 12px;
    border: 1px solid #e2dcd5;
    border-radius: 22px;
    font-family: inherit;
    font-size: 0.82rem;
}

.btn-submit {
    background: #D4AF37;
    color: #ffffff;
    border: none;
    padding: 10px;
    border-radius: 40px;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    transition: 0.25s;
    font-size: 0.85rem;
}

.btn-submit:hover {
    background: #b8860b;
}

.form-status {
    margin-top: 10px;
    text-align: center;
    font-size: 0.8rem;
}


/* ================================================================
   FOOTER
   ================================================================ */
.footer {
    border-top: 1px solid #f0e5dc;
    padding: 24px 0;
    text-align: center;
    color: #6c7e8e;
    font-size: 0.75rem;
    line-height: 1.8;
}

.footer-tagline {
    font-size: 0.65rem;
}

.footer-cities {
    font-size: 0.65rem;
    font-weight: 500;
}

.footer-credit {
    font-size: 0.65rem;
    margin-top: 6px;
    color: #8a9aa8;
}

.footer-credit a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
}

.footer-credit a:hover {
    text-decoration: underline;
}


/* ================================================================
   MODAL
   ================================================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: linear-gradient(135deg, #fffef9, #fff8f0);
    max-width: 400px;
    width: 92%;
    max-height: 90vh;
    border: 2px solid #D4AF37;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-header {
    background: linear-gradient(135deg, #D4AF37, #b8860b);
    padding: 12px 18px;
    text-align: center;
    color: #ffffff;
    position: relative;
    flex-shrink: 0;
}

.modal-header h2 {
    font-size: 1rem;
}

.modal-header p {
    font-size: 0.55rem;
    opacity: 0.9;
}

.modal-close {
    position: absolute;
    top: 6px;
    right: 10px;
    background: rgba(255, 255, 255, 0.2);
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: #ffffff;
    border-radius: 50%;
    transition: 0.2s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.4);
}

.modal-body {
    padding: 12px 16px;
    overflow-y: auto;
    flex: 1;
}

.modal-body::-webkit-scrollbar {
    width: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 4px;
}

.modal-footer {
    padding: 10px 16px 16px;
    display: flex;
    gap: 8px;
    border-top: 1px solid #f0e5dc;
    background: #faf8f5;
    flex-shrink: 0;
}

.btn-modal-outline {
    flex: 1;
    padding: 8px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    font-size: 0.75rem;
    border-radius: 10px;
    background: transparent;
    border: 2px solid #D4AF37;
    color: #b8860b;
    transition: 0.2s;
}

.btn-modal-outline:hover {
    background: #D4AF37;
    color: #ffffff;
}

.btn-modal-whatsapp {
    flex: 1;
    padding: 8px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    font-size: 0.75rem;
    border-radius: 10px;
    background: #25D366;
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: 0.2s;
}

.btn-modal-whatsapp:hover {
    background: #128C7E;
}


/* ----- MODAL DETAILS ----- */
.modal-details {
    background: #ffffff;
    border: 1px solid #f0e5dc;
    padding: 10px 12px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.modal-details .row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #f0e5dc;
    font-size: 0.8rem;
}

.modal-details .row:last-child {
    border-bottom: none;
}

.modal-details .label {
    font-weight: 600;
    color: #5a6e7c;
}

.modal-details .value {
    font-weight: 700;
    color: #1e2a3a;
}

.modal-fare {
    background: #fff8f0;
    padding: 8px 10px;
    border-radius: 10px;
    margin-top: 6px;
}

.modal-fare .item {
    display: flex;
    justify-content: space-between;
    padding: 3px 0;
    font-size: 0.78rem;
}

.modal-fare .total {
    border-top: 2px solid #D4AF37;
    margin-top: 4px;
    padding-top: 5px;
    font-weight: 800;
    font-size: 0.85rem;
    color: #D4AF37;
}

.modal-note {
    background: #fef2e0;
    padding: 8px;
    text-align: center;
    margin: 8px 0;
    font-size: 0.7rem;
    border-radius: 10px;
}


/* ================================================================
   WHATSAPP FLOATING BUTTON
   ================================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 16px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.whatsapp-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 8px 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.2s;
    border: 1px solid #e0e0e0;
}

.whatsapp-card:hover {
    transform: scale(1.02);
}

.wp-icon {
    background: #25D366;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #ffffff;
}

.whatsapp-card p {
    font-size: 0.65rem;
    font-weight: 600;
    margin: 0;
}

.whatsapp-card small {
    font-size: 0.5rem;
    color: #7a8a9a;
}

.wp-close {
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 8px;
    margin-left: 4px;
}

.wp-btn {
    background: #25D366;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: 0.2s;
}

.wp-btn:hover {
    transform: scale(1.08);
}


/* ================================================================
   TOAST / LOADING
   ================================================================ */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #1e2a3a;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.8rem;
    z-index: 1100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    animation: fadeUp 0.3s ease;
}

.toast.error {
    background: #c0392b;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}