/* ========================================
   LUXORA FRONTEND STYLES
   Consolidated CSS from all frontend pages
   ======================================== */

/* ========================================
   GLOBAL RESET
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ========================================
   BODY
   ======================================== */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* ========================================
   HEADER / NAVIGATION (LAYOUT)
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    box-shadow: none;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: #1a1a2e;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    padding: 15px 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 65px;
    width: auto;
    background: #fff;
    border-radius: 6px;
    padding: 4px 8px;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #FFD700;
}

/* ========================================
   MAIN CONTENT (LAYOUT)
   ======================================== */
.main-content {
    min-height: 100vh;
}

/* ========================================
   FOOTER (LAYOUT)
   ======================================== */
.footer {
    background: #1a1a2e;
    color: white;
    padding: 60px 50px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    /* grid handled by Bootstrap row/col */
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-brand h3 span {
    color: #FFD700;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
}

.social-link:hover {
    background: #FFD700;
    color: #1a1a2e;
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFD700;
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-block;
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-contact i {
    color: #FFD700;
    font-size: 18px;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }
}

/* ========================================
   PAGE HEADER (ABOUT, SERVICES, CONTACT)
   ======================================== */
.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 140px 50px 80px;
    color: white;
    text-align: center;
}

.page-header-container {
    max-width: 1400px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
}

.page-header h1 span {
    color: #FFD700;
}

.page-header p {
    font-size: 20px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   ABOUT PAGE SECTION
   ======================================== */
.about-section {
    padding: 80px 50px;
    background: white;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ========================================
   ABOUT PAGE — STATS SECTION
   ======================================== */
.about-stats-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px 50px;
}

.about-stats-container {
    max-width: 1400px;
    margin: 0 auto;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    color: #FFD700;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .about-stats-section {
        padding: 40px 16px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 13px;
    }
}

/* ========================================
   HOMEPAGE - HERO SECTION
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(22, 33, 62, 0.65) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 100%;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    color: white;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-text h1 span {
    color: #FFD700;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.feature-item i {
    color: #FFD700;
    font-size: 20px;
}

/* ========================================
   HOMEPAGE - BOOKING CARD
   ======================================== */
.booking-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.booking-card h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #1a1a2e;
    font-weight: 700;
}

/* Service Type Selector */
.service-type-selector {
    margin-bottom: 16px;
}

.service-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.service-type-card {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.service-type-card:hover {
    border-color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.service-type-card.active {
    border-color: #FFD700;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.service-type-card .icon {
    font-size: 24px;
    margin-bottom: 6px;
}

.service-type-card .title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;
}

.service-type-card .description {
    font-size: 12px;
    opacity: 0.8;
}

/* ========================================
   HOMEPAGE - BOOKING FORM STYLES
   ======================================== */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-weight: 600;
    color: #333;
    font-size: 13px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #FFD700;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.required {
    color: #e74c3c;
}

/* Itinerary Stops */
.itinerary-item {
    background: #f9f9f9;
    padding: 16px;
    margin-bottom: 12px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    position: relative;
}

.itinerary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.itinerary-header strong {
    color: #FFD700;
    font-size: 14px;
}

.btn-remove {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.3s;
}

.btn-remove:hover {
    background: #c0392b;
}

.btn-add-itinerary {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
    font-size: 14px;
    transition: opacity 0.3s;
}

.btn-add-itinerary:hover {
    opacity: 0.8;
}

/* Search Button */
.btn-search {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a2e;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-search:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-search:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.btn-search.is-loading {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    cursor: wait;
}

.btn-search-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(26, 26, 46, 0.3);
    border-top-color: #1a1a2e;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    flex-shrink: 0;
}

.btn-search.is-loading .btn-search-spinner {
    display: block;
}

.btn-search.is-loading #searchBtnIcon {
    display: none;
}

/* Loading and Results */
.loading {
    display: none;
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 15px;
    margin-top: 30px;
}

.loading.active {
    display: block;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #FFD700;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error-message {
    display: none;
    background: #fee;
    color: #c33;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    border-left: 4px solid #c33;
}

.error-message.active {
    display: block;
}

.no-results {
    display: none;
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 15px;
    margin-top: 30px;
}

.no-results.active {
    display: block;
}

/* ========================================
   HOMEPAGE - FLEET SECTION
   ======================================== */
.fleet-section {
    padding: 80px 50px;
    background: #f5f5f5;
}

.fleet-container {
    max-width: 1400px;
    margin: 0 auto;
}

.fleet-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.fleet-label {
    color: #FFD700;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.fleet-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.fleet-header h2 .gold-text {
    color: #FFD700;
}

.fleet-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.fleet-grid {
    /* gutters handled by Bootstrap g-4 */
}

.fleet-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: #FFD700;
}

.fleet-card.most-popular {
    border-color: #FFD700;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}

.fleet-image-wrapper {
    position: relative;
    height: 200px;
    background: #1a1a1a;
    overflow: hidden;
}

.fleet-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.fleet-card:hover .fleet-image {
    transform: scale(1.05);
}

.most-popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FFD700;
    color: #1a1a1a;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}

.fleet-details {
    padding: 24px;
}

.fleet-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
}

.fleet-rating i {
    color: #FFD700;
    font-size: 14px;
}

.fleet-rating span {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 14px;
}

.fleet-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.fleet-card .vehicle-model {
    color: #666;
    font-size: 14px;
    margin-bottom: 16px;
}

.fleet-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.fleet-feature {
    background: #f5f5f5;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 9px;
    color: #555;
    font-weight: 500;
}

.fleet-capacity {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.capacity-info {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 14px;
}

.capacity-info i {
    color: #1a1a1a;
    font-size: 16px;
}

.fleet-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fleet-price {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
}

.fleet-btn-select {
    background: #1a1a1a;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.fleet-btn-select:hover {
    background: #FFD700;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* ========================================
   HOMEPAGE - SERVICES SECTION
   ======================================== */
.services-section {
    padding: 80px 50px;
    background: #1a1a2e;
    color: white;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-label {
    color: #FFD700;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.section-header h2 .gold-text {
    color: #FFD700;
}

.section-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.services-grid {
    /* gutters handled by Bootstrap g-4 */
}

.service-card {
    background: #16213e;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.service-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(26, 26, 46, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.service-card .service-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.service-card .service-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ========================================
   HOMEPAGE - WHY CHOOSE US SECTION
   ======================================== */
.why-choose-section {
    padding: 80px 50px;
    background: white;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
}

.why-choose-section .section-header h2 {
    color: #1a1a1a;
}

.why-choose-section .section-header p {
    color: #666;
}

.features-grid {
    /* gutters handled by Bootstrap g-4 */
}

.feature-card {
    background: #f9f9f9;
    padding: 40px 30px;
    height: 100%;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    background: white;
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: white;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* ========================================
   HOMEPAGE - TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    padding: 80px 50px;
    background: #f5f5f5;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-section .section-header h2 {
    color: #1a1a1a;
}

.testimonials-section .section-header p {
    color: #666;
}

.testimonials-grid {
    /* gutters handled by Bootstrap g-4 */
}

.testimonial-card {
    background: white;
    padding: 40px;
    height: 100%;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.quote-icon {
    font-size: 48px;
    color: #FFD700;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 30px;
}

.testimonial-content {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.stars i {
    color: #FFD700;
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: white;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: #666;
}

/* Testimonials Marquee */
.marquee-row {
    overflow: hidden;
    margin-bottom: 20px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.marquee-row {
    cursor: grab;
}

.marquee-row.dragging {
    cursor: grabbing;
}

/* Testimonial Card */
.t-card {
    background: white;
    border-radius: 14px;
    padding: 24px;
    width: 320px;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    border: 1px solid #efefef;
    transition: box-shadow 0.3s ease;
}

.t-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.t-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.t-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: #1a1a2e;
    flex-shrink: 0;
}

.t-author-info h5 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 3px;
}

.t-author-info span {
    font-size: 12px;
    color: #888;
}

.t-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
}

.t-stars i {
    color: #FFD700;
    font-size: 13px;
}

.t-text {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

/* ========================================
   HOMEPAGE - CONTACT SECTION
   ======================================== */
.contact-section {
    padding: 80px 50px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-content {
    /* gutters handled by Bootstrap g-4 */
    align-items: start;
}

.contact-info h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #FFD700;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
    transform: translateX(5px);
}

.contact-item i {
    color: #FFD700;
    font-size: 24px;
    width: 30px;
    flex-shrink: 0;
}

.contact-item-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 8px;
}

.contact-item-content p {
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-item-content a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item-content a:hover {
    color: #FFD700;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.contact-form-wrapper h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
}

.contact-form-wrapper p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: white;
    font-size: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    transition: all 0.3s;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FFD700;
    background: rgba(255, 255, 255, 0.08);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-submit-contact {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a2e;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.7);
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    background: #1a1a2e;
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: #1a1a2e;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ========================================
   RESPONSIVE - HOMEPAGE
   ======================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 20px 60px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .booking-card {
        padding: 25px;
    }

    .service-types {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .fleet-section {
        padding: 60px 20px;
    }

    .fleet-header h2 {
        font-size: 32px;
    }

    .fleet-grid .col-md-3 {
        width: 100%;
    }

    .about-section,
    .services-section,
    .why-choose-section,
    .testimonials-section,
    .contact-section {
        padding: 60px 20px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .services-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}


/* ========================================
   HEADER AUTH LINKS & USER DROPDOWN
   ======================================== */
.nav-auth-link {
    color: white !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-auth-link:hover { color: #FFD700 !important; }

.nav-auth-btn {
    display: inline-block;
    padding: 8px 22px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a2e !important;
    font-weight: 700;
    font-size: 14px;
    border-radius: 25px;
    text-decoration: none !important;
    transition: opacity 0.3s, transform 0.2s;
}
.nav-auth-btn:hover { opacity: 0.9; transform: translateY(-1px); }

.nav-user-dropdown { position: relative; }

.nav-user-btn {
    background: transparent;
    border: 1px solid rgba(255,215,0,0.5);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.3s, background 0.3s;
}
.nav-user-btn:hover { border-color: #FFD700; background: rgba(255,215,0,0.1); }
.nav-user-btn .nav-chevron { font-size: 11px; transition: transform 0.3s; }
.nav-user-dropdown.open .nav-chevron { transform: rotate(180deg); }

.nav-user-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #1a1a2e;
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 10px;
    min-width: 170px;
    overflow: hidden;
    z-index: 300;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.nav-user-dropdown.open .nav-user-menu { display: block; }

.nav-user-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    color: rgba(255,255,255,0.85) !important;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s, color 0.2s;
}
.nav-user-menu a:hover { background: rgba(255,215,0,0.1); color: #FFD700 !important; }

/* Mobile auth links */
.mobile-auth-link {
    color: rgba(255,255,255,0.85) !important;
    text-decoration: none;
    font-weight: 500;
    padding: 4px 0;
}
.mobile-auth-link:hover { color: #FFD700 !important; }

/* ========================================
   HAMBURGER BUTTON
   ======================================== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ========================================
   MOBILE NAV OVERLAY
   ======================================== */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    max-width: 300px;
    height: 100%;
    background: #1a1a2e;
    padding: 70px 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
}

.mobile-nav-overlay.open .mobile-nav-menu {
    transform: translateX(0);
}

.mobile-nav-menu a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.3s;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
    color: #FFD700;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ========================================
   MOBILE RESPONSIVE — GLOBAL
   ======================================== */
@media (max-width: 768px) {

    /* --- Header --- */
    .hamburger {
        display: flex;
    }

    .mobile-nav-overlay {
        display: block;
        pointer-events: none;
    }

    .header {
        background: rgba(26, 26, 46, 0.95) !important;
        padding: 14px 0 !important;
        backdrop-filter: blur(6px);
    }

    /* --- Hero --- */
    .hero {
        height: auto;
        min-height: 100svh;
        align-items: flex-start;
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text h1 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .hero-text p {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .features-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        justify-items: start;
        text-align: left;
    }

    .feature-item {
        font-size: 14px;
    }

    /* --- Booking Card --- */
    .booking-card {
        padding: 18px 16px;
        border-radius: 16px;
    }

    .service-types {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .service-type-card {
        padding: 10px 8px;
    }

    .service-type-card .icon {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .service-type-card .title {
        font-size: 13px;
    }

    .service-type-card .description {
        font-size: 11px;
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .form-group input,
    .form-group select {
        padding: 10px 12px;
        font-size: 14px;
    }

    .btn-search {
        padding: 13px;
        font-size: 15px;
        margin-top: 10px;
    }

    /* --- Contact Form --- */
    .contact-form-wrapper {
        padding: 24px 18px;
    }

    /* --- Footer --- */
    .footer {
        padding: 40px 16px 24px;
    }

    .footer-bottom p {
        font-size: 12px;
        line-height: 1.6;
    }

    /* --- Section headers --- */
    .section-header {
        margin-bottom: 36px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .section-header p {
        font-size: 15px;
    }

    /* --- Marquee cards on mobile --- */
    .t-card {
        width: 260px;
        padding: 18px;
    }

    /* --- WhatsApp on small screens --- */
    .whatsapp-float {
        bottom: 20px;
        right: 16px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}

@media (max-width: 430px) {
    .hero-text h1 {
        font-size: 24px;
    }
}

/* ========================================
   SERVICES PAGE
   ======================================== */
.services-overview {
    padding: 80px 50px;
    background: white;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-align: center;
}

.section-title .gold-text {
    color: #FFD700;
}

.section-intro {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-intro-light {
    color: rgba(255, 255, 255, 0.8);
}

/* Service Detail Sections */
.service-detail {
    padding: 80px 50px;
    scroll-margin-top: 80px;
}

.services-overview + .service-detail {
    padding-top: 0;
}

.service-detail:nth-child(even) {
    background: #f9f9f9;
}

.service-detail:nth-child(odd) {
    background: white;
}

/* Service Detail Images */
.service-detail-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    height: 420px;
}

.service-detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-detail-img-wrap:hover .service-detail-img {
    transform: scale(1.04);
}

/* Service Info */
.service-info h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.service-info h2 i {
    color: #FFD700;
    margin-right: 15px;
    font-size: 38px;
}

.service-description {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.service-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-features li i {
    color: #FFD700;
    font-size: 18px;
    width: 20px;
    flex-shrink: 0;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-cta {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    font-size: 16px;
}

.service-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    color: #1a1a1a;
}

/* Hourly Service features list (centred column) */
.service-hourly-features {
    max-width: 500px;
    margin: 0 auto 30px;
    text-align: left;
}

/* Features Section */
.features-section {
    padding: 80px 50px;
    background: #1a1a2e;
    color: white;
}

.features-section .section-title {
    color: white;
}

.services-page-features-grid {
    max-width: 1400px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-box {
    text-align: center;
    padding: 40px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #FFD700;
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 48px;
    color: #FFD700;
    margin-bottom: 20px;
    display: block;
}

.feature-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.feature-box p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 50px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    text-align: center;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 35px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.cta-btn-primary {
    background: #1a1a2e;
    color: white;
}

.cta-btn-primary:hover {
    background: #0f0f1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: white;
}

.cta-btn-secondary {
    background: white;
    color: #1a1a1a;
}

.cta-btn-secondary:hover {
    background: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: #1a1a1a;
}

/* Services Page Responsive */
@media (max-width: 768px) {
    .services-overview,
    .service-detail,
    .features-section,
    .cta-section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .service-detail-img-wrap {
        height: 240px;
    }

    .service-info h2 {
        font-size: 26px;
    }

    .service-info h2 i {
        font-size: 22px;
        margin-right: 8px;
    }

    .services-page-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .cta-section p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   AVAILABLE VEHICLES PAGE
   ======================================== */
.av-section {
    padding: 60px 50px 80px;
    background: #f5f5f5;
    min-height: 60vh;
}

.av-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* States */
.av-loading,
.av-error,
.av-no-results {
    display: none;
}

.av-loading.active,
.av-error.active,
.av-no-results.active {
    display: block;
}

.av-loading {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 20px;
    margin-bottom: 30px;
}

.av-loading h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.av-loading p {
    color: #888;
    font-size: 15px;
}

.av-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #FFD700;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.av-error {
    background: #fee;
    color: #c33;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #c33;
    font-size: 15px;
}

.av-no-results {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 20px;
}

.av-no-results i {
    font-size: 64px;
    color: #ccc;
    display: block;
    margin-bottom: 20px;
}

.av-no-results h3 {
    font-size: 24px;
    font-weight: 700;
    color: #666;
    margin-bottom: 10px;
}

.av-no-results p {
    color: #999;
    margin-bottom: 25px;
}

.av-btn-new-search {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    font-size: 15px;
    transition: all 0.3s;
}

.av-btn-new-search:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    color: #1a1a1a;
}

/* Grid */
.av-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 10px;
}

/* Card */
.av-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.av-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: #FFD700;
}

/* Card image */
.av-card-img-wrap {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    overflow: hidden;
}

.av-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.av-card:hover .av-card-img {
    transform: scale(1.06);
}

/* Badges */
.av-badge {
    position: absolute;
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.4px;
}

.av-badge-discount {
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

.av-badge-popular {
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.av-badge-class {
    bottom: 14px;
    left: 14px;
    background: rgba(26, 26, 46, 0.88);
    backdrop-filter: blur(8px);
    color: white;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Card body */
.av-card-body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.av-card-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.av-card-rating i {
    color: #FFD700;
    font-size: 13px;
}

.av-card-rating span {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
}

.av-card-name {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 14px;
    line-height: 1.3;
}

.av-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.av-feature-tag {
    background: #f5f5f5;
    padding: 5px 11px;
    border-radius: 6px;
    font-size: 12px;
    color: #555;
    font-weight: 500;
}

.av-card-capacity {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.av-card-capacity span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 14px;
}

.av-card-capacity i {
    color: #1a1a1a;
    font-size: 15px;
}

.av-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

/* Price */
.av-price-wrap {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.av-price-original {
    text-decoration: line-through;
    color: #aaa;
    font-size: 14px;
    font-weight: 600;
}

.av-price {
    font-size: 30px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
}

.av-price-currency {
    font-size: 18px;
    font-weight: 700;
}

/* Select button */
.av-btn-select {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 13px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.av-btn-select:hover:not(:disabled) {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(255, 215, 0, 0.4);
}

.av-btn-select:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.av-btn-select.loading {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    cursor: wait;
    color: white;
}

.av-spinner-inline {
    display: none;
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    flex-shrink: 0;
}

.av-btn-select.loading .av-spinner-inline {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .av-section {
        padding: 40px 16px 60px;
    }

    .av-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .av-card-footer {
        flex-direction: column;
        gap: 14px;
        align-items: stretch;
    }

    .av-btn-select {
        width: 100%;
        justify-content: center;
    }
}
