/* ================================================
   Avis Car Rental - Rivercenter Mall San Antonio
   Informational Website Stylesheet
   Brand Colors: Red #0B6394, Dark #1A1A1A, White #FFFFFF
   ================================================ */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ================================================
   Top Banner
   ================================================ */
.top-banner {
    background-color: #0B6394;
    color: #fff;
    text-align: center;
    padding: 8px 20px;
    font-size: 14px;
}

.top-banner a {
    color: #FFEB3B;
    text-decoration: underline;
}

/* ================================================
   Header / Navigation
   ================================================ */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.budget-logo-img {
    height: 108px;
    width: auto;
}

.budget-logo-footer {
    height: 150px;
    width: auto;
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list a {
    color: #1A1A1A;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #0B6394;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #0B6394;
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 24px;
}

.nav-phone:hover {
    background-color: #0B6394;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background-color: #1A1A1A;
    transition: all 0.3s ease;
}

/* ================================================
   Hero Section
   ================================================ */
.hero {
    position: relative;
    min-height: 36vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1A1A1A;
    overflow: hidden;
}

/* Hero Background Image */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* High-quality Riverwalk image with a premium dark overlay */
    background-image: url('https://images.unsplash.com/photo-1592438276881-f7dce0bbaccf?q=80&w=2560&auto=format&fit=crop');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Dark gradient overlay for text readability + fade effect */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 99, 148, 0.75) 0%, rgba(26, 26, 26, 0.85) 50%, rgba(26, 26, 26, 0.95) 100%);
}

/* Animated floating particles effect */
.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(11, 99, 148, 0.3) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.3; }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 60px 24px;
    text-align: center;
    max-width: 900px;
}

/* Glassmorphism card effect for the hero content */
/* .hero-content::after - removed to eliminate thin blue border */

.hero h1 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    font-weight: 400;
    letter-spacing: 0.01em;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: clamp(14px, 1.7vw, 16px);
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.hero-location-badge svg {
    color: #FFD700;
    filter: drop-shadow(0 2px 6px rgba(255, 215, 0, 0.3));
}

/* Animated button with shine effect */
.btn-primary {
    background-color: #0B6394;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

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

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.publicdomainpictures.net/pictures/50000/nahled/san-antonio-river-walk.jpg'), linear-gradient(135deg, #0B6394 0%, #0B6394 40%, #1A1A1A 100%);
    background-blend-mode: overlay;
    background-size: cover, cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 60px 0;
}

.hero h1 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 24px;
}

.hero-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 16px;
    margin-bottom: 30px;
    backdrop-filter: blur(4px);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #0B6394;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0B6394;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #0B6394;
}

.btn-large {
    width: 100%;
    margin-top: 20px;
    padding: 16px 32px;
}

/* ================================================
   Quick Info Bar
   ================================================ */
.quick-info {
    background-color: #0B6394;
    padding: 0;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.info-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 30px;
}

.info-card-label {
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
    margin-bottom: 4px;
}

.info-card-value {
    font-size: 16px;
    color: #fff;
    font-weight: 700;
}

.info-card a.info-card-value {
    color: #fff;
    text-decoration: none;
}

/* ================================================
   Book Your Ride CTA Section
   ================================================ */
.cta-section {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(11, 99, 148, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-container h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 24px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.cta-description {
    font-size: 22px;
    color: #666;
    margin-bottom: 56px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 22px 56px;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(11, 99, 148, 0.15);
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(11, 99, 148, 0.3);
    background-color: #0B6394;
}

/* ================================================
   Section Common Styles
   ================================================ */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 12px;
}

.section-desc {
    font-size: 17px;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
}

/* ================================================
   Vehicles Section (Alternating backgrounds)
   ================================================ */
.vehicles-section {
    background-color: #fff;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.vehicle-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vehicle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.vehicle-image-container {
    background-color: #f8f8f8;
    overflow: hidden;
}

.vehicle-card img {
    width: 100%;
    height: auto;
    display: block;
}

.vehicle-info {
    padding: 24px;
}

.vehicle-info h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.vehicle-desc {
    color: #666;
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.vehicle-specs {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.vehicle-specs span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #555;
}

/* ================================================
   Services Section
   ================================================ */
.services-section {
    background-color: #F9F9F9;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.service-block:last-of-type {
    margin-bottom: 0;
}

.service-image svg {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.service-content h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
    margin: 16px 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    color: #444;
}

.feature-note {
    background-color: #FFF3E0;
    border-left: 4px solid #FF9800;
    padding: 12px 16px;
    margin-top: 12px;
    font-size: 14px;
    color: #5D4037;
    border-radius: 0 8px 8px 0;
}

/* ================================================
   Benefits Section
   ================================================ */
.benefits-section {
    background-color: #1A1A1A;
    padding: 60px 0;
    color: #fff;
}

.benefits-section h2 {
    text-align: center;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
}

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 28px;
    transition: background-color 0.3s ease;
}

.benefit-card:hover {
    background-color: rgba(255, 255, 255, 0.14);
}

.benefit-card h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

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

/* ================================================
   Location Section
   ================================================ */
.location-section {
    background-color: #fff;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.location-details h4 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0B6394;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-block {
    margin-bottom: 24px;
}

.phone-link {
    color: #0B6394;
    font-weight: 700;
    text-decoration: none;
    font-size: 18px;
}

.phone-link:hover {
    text-decoration: underline;
}

.hours-table table {
    width: 100%;
}

.hours-table td {
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.time {
    text-align: right;
    color: #0B6394;
    font-weight: 600;
}

.directions-text ol,
.directions-text ul {
    padding-left: 20px;
    margin-top: 8px;
}

.directions-text li {
    padding: 4px 0;
    font-size: 15px;
    color: #555;
}

.landmark-note {
    margin-top: 16px;
    font-weight: 700;
    color: #333;
}

/* ================================================
   Attractions Section
   ================================================ */
.attractions-section {
    background-color: #F5F5F5;
    padding: 80px 0;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.attraction-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.attraction-card svg {
    width: 120px;
    height: auto;
    flex-shrink: 0;
}

.attraction-info h4 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0B6394;
    margin-bottom: 6px;
}

.attraction-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* ================================================
   Footer
   ================================================ */
.site-footer {
    background-color: #0D0D0D;
    color: #ccc;
    padding: 50px 0 24px;
}

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

.footer-brand img.budget-logo-footer {
    max-height: 150px;
    width: auto;
}

.footer-tagline {
    font-size: 14px;
    color: #999;
    margin-top: 8px;
}

.footer-contact h4,
.footer-hours h4,
.footer-links h4 {
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-contact address {
    font-style: normal;
    line-height: 1.8;
    font-size: 14px;
}

.footer-phone {
    color: #0B6394;
    text-decoration: none;
    font-weight: 600;
}

.footer-hours table td:first-child {
    padding-right: 16px;
    font-size: 14px;
}

.footer-hours table td:last-child {
    color: #0B6394;
    font-weight: 600;
    font-size: 14px;
}

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0B6394;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: #777;
}

/* ================================================
   Responsive Design
   ================================================ */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 36px;
    }

    .info-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .vehicle-grid,
    .attractions-grid {
        grid-template-columns: 1fr;
    }

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

    .benefit-cards {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-banner {
        font-size: 12px;
        padding: 6px 14px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-list.active {
        display: flex;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

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

    .benefits-section h2 {
        font-size: 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .attractions-grid {
        grid-template-columns: 1fr;
    }
}

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

    .btn-large {
        padding: 14px 24px;
        font-size: 15px;
    }
}