@font-face {
    font-family: 'Newscrash';
    src: url('assets/fonts/Newscrash.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* CSS Variable System matching RentMeUskar Brand Identity */
:root {
    --bg-primary: #070e24;
    --bg-secondary: #0f1c3f;
    --bg-tertiary: #182c5c;
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    /* Green/Blue brand colors from logo */
    --color-neon: #82d105;
    --color-neon-hover: #9cfc04;
    --color-neon-rgb: 130, 209, 5;
    --color-neon-glow: rgba(130, 209, 5, 0.15);
    --color-neon-border: rgba(130, 209, 5, 0.3);
    
    /* Font Families */
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    
    /* Animations & Borders */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-glow: 1px solid rgba(255, 255, 255, 0.08);
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
    --shadow-neon-glow: 0 0 25px rgba(130, 209, 5, 0.25);
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-secondary);
    border: 2px solid var(--bg-primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-neon);
}

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

p {
    color: var(--text-secondary);
}

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

.text-gradient {
    background: linear-gradient(135deg, #fff 30%, var(--color-neon) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-neon {
    color: var(--color-neon);
}

.subtitle {
    display: inline-block;
    color: var(--color-neon);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

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

.section-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

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

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--color-neon);
    color: #000;
    box-shadow: 0 4px 14px rgba(130, 209, 5, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-neon-hover);
    box-shadow: var(--shadow-neon-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: var(--border-glow);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
    border-radius: var(--border-radius-md);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(130, 209, 5, 0.1);
    color: var(--color-neon);
    border: 1px solid var(--color-neon-border);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

/* Header & Navigation Bar */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(7, 14, 36, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background-color: rgba(7, 14, 36, 0.9);
    border-bottom: 1px solid rgba(130, 209, 5, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    height: 110px;
    margin: 0 auto;
    padding: 0 2rem;
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-container {
    height: 90px;
}

.logo-area {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 95px;
    object-fit: contain;
    transition: var(--transition-smooth);
    transform: scale(1.4);
    transform-origin: left center;
}

.main-header.scrolled .nav-logo {
    height: 75px;
    transform: scale(1.3);
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 550;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    position: relative;
}

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

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-header-reserve {
    background-color: transparent !important;
    border: 2px solid var(--color-neon) !important;
    color: var(--color-neon) !important;
    box-shadow: none !important;
    font-size: 0.85rem !important;
    padding: 0.6rem 1.25rem !important;
    font-weight: 850 !important;
    letter-spacing: 0.05em !important;
    border-radius: 4px !important;
}

.btn-header-reserve i {
    font-size: 0.95rem;
    margin-right: 0.25rem;
}

.btn-header-reserve:hover {
    background-color: var(--color-neon) !important;
    color: #000 !important;
    box-shadow: var(--shadow-neon-glow) !important;
    transform: translateY(-2px);
}

/* Mobile Hamburger Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 130px;
    padding-bottom: 2rem;
    min-height: 90vh;
    background: radial-gradient(circle at 75% 40%, #0f224f 0%, #070e24 60%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    z-index: 10;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    z-index: 5;
}

.hero-brand-badge {
    display: inline-block;
    background-color: var(--color-neon);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    padding: 0.35rem 1rem;
    transform: skewX(-12deg);
    width: fit-content;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    border-radius: 2px;
    box-shadow: 0 4px 10px rgba(130, 209, 5, 0.2);
}

.hero-title {
    font-family: 'Newscrash', sans-serif;
    font-size: 4.5rem;
    font-style: normal;
    font-weight: normal;
    line-height: 1.05;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-title .text-white {
    color: #ffffff;
    -webkit-text-stroke: 1.5px #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.hero-title .text-neon {
    color: var(--color-neon);
    -webkit-text-stroke: 1.5px var(--color-neon);
    text-shadow: 0 0 25px rgba(130, 209, 5, 0.35);
}

.hero-subbox {
    background-color: var(--bg-secondary);
    backdrop-filter: blur(8px);
    border-left: 3px solid var(--color-neon);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.4rem 0.8rem;
    max-width: 450px;
    width: fit-content;
    border-radius: 0 6px 6px 0;
}

.hero-subbox p {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
}

/* Badges list */
.hero-badges {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero-badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-smooth);
    width: fit-content;
    cursor: pointer;
}

.hero-badge-item:hover {
    transform: translateX(10px);
}

.hero-badge-item:hover .badge-icon-circle {
    background-color: var(--color-neon);
    color: #000;
    box-shadow: 0 0 15px var(--color-neon);
}

.hero-badge-item:hover .badge-text strong {
    color: var(--color-neon);
}

.badge-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--color-neon-border);
    background-color: rgba(3, 7, 18, 0.6);
    color: var(--color-neon);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    font-size: 0.95rem;
    color: #ffffff;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}

.badge-text span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 600;
}

/* Vehicle Area */
.hero-vehicle {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
    z-index: 1;
}

.hero-van-img {
    width: 100%;
    max-width: 650px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.7));
    transition: var(--transition-smooth);
}

@media (min-width: 1025px) {
    .hero-van-img {
        width: 210%;
        max-width: 1350px;
        margin-left: -55%;
        margin-top: -60px;
    }
}

.hero-vehicle:hover .hero-van-img {
    transform: scale(1.04) translateY(-5px);
    filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 30px rgba(130, 209, 5, 0.2));
}

/* Bottom Bar Wrapper (separating positioning from animation transforms) */
.hero-footer-wrapper {
    position: relative;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    left: 0;
    width: 100%;
    z-index: 10;
}

.hero-footer-bar {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-bar-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: rgba(15, 28, 63, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 1.5rem 2rem;
    gap: 2rem;
    box-shadow: var(--shadow-soft);
}

.footer-bar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.footer-bar-item:hover {
    transform: translateY(-3px);
}

.footer-bar-item:hover i {
    color: var(--color-neon-hover);
    transform: scale(1.1);
}

.footer-bar-item i {
    font-size: 1.75rem;
    color: var(--color-neon);
    transition: var(--transition-smooth);
}

.footer-bar-text {
    display: flex;
    flex-direction: column;
}

.footer-bar-text strong {
    font-size: 0.95rem;
    color: #ffffff;
}

.footer-bar-text span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 600;
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8) skewX(-12deg);
    }
    to {
        opacity: 1;
        transform: scale(1) skewX(-12deg);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-scale-in {
    animation: scaleIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
}

.animate-fade-in-up-delayed {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    opacity: 0;
}

.animate-slide-in-right {
    animation: slideInRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
    opacity: 0;
}

.animate-fade-in-up-late {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    opacity: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-section {
        padding-top: 130px;
        padding-bottom: 4rem;
        min-height: auto;
    }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .hero-content {
        align-items: center;
    }
    .hero-brand-badge {
        margin: 0 auto 1rem auto;
    }
    .hero-subbox {
        margin: 0 auto;
        border-radius: 8px;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        border-bottom: 4px solid var(--color-neon);
    }
    .hero-badges {
        align-items: center;
    }
    .hero-badge-item:hover {
        transform: translateY(-5px);
    }
    .hero-footer-wrapper {
        position: relative;
        bottom: 0;
        margin-top: 4rem;
    }
    .hero-footer-bar {
        padding: 0;
    }
    .footer-bar-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 110px;
    }
    .hero-title {
        font-size: 3rem;
    }
}

.scroll-down-indicator {
    position: relative;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    align-self: center;
    z-index: 10;
    text-align: center;
}

.scroll-down-indicator i {
    color: var(--text-secondary);
    font-size: 1.5rem;
}

.scroll-down-indicator i:hover {
    color: var(--color-neon);
}

.bounce-animation {
    animation: bounce 2s infinite;
}

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

/* Stats Counter Section */
.stats-section {
    padding: 4rem 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-card {
    background-color: rgba(3, 7, 18, 0.4);
    border: var(--border-glow);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-neon-border);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 2.25rem;
    color: var(--color-neon);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Fleet Catalog Section */
.fleet-section {
    padding: 8rem 0;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.van-card {
    background-color: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    border: var(--border-glow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.van-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-neon-border);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.9), 0 0 25px rgba(130, 209, 5, 0.05);
}

.van-image-container {
    position: relative;
    width: 100%;
    height: 260px;
    background-color: #030815;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.van-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.van-tag {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background-color: rgba(3, 7, 18, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 0.4rem 0.8rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.van-tag.highlight {
    background-color: var(--color-neon);
    color: #000;
    border-color: var(--color-neon);
}

.van-details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.van-name {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.van-model-example {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.van-specs {
    list-style: none;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 1rem;
}

.van-specs li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.van-specs li i {
    color: var(--color-neon);
    width: 16px;
    text-align: center;
}

.van-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.van-price {
    display: flex;
    flex-direction: column;
}

.price-from {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.price-unit {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Calculator Section */
.calculator-section {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
    background-image: radial-gradient(circle at 80% 80%, rgba(130, 209, 5, 0.03) 0%, transparent 60%);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 5rem;
    align-items: center;
}

.calculator-info {
    display: flex;
    flex-direction: column;
}

.calculator-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.calculator-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.info-checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
}

.whatsapp-disclaimer {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background-color: rgba(3, 7, 18, 0.5);
    border-left: 3px solid var(--color-neon);
    padding: 1.25rem;
    border-radius: var(--border-radius-sm);
}

.whatsapp-icon {
    font-size: 2.5rem;
    color: #25d366;
}

.whatsapp-disclaimer h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.whatsapp-disclaimer p {
    font-size: 0.85rem;
}

/* Calculator Form */
.calculator-form {
    background-color: var(--bg-primary);
    border: var(--border-glow);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.form-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-group label i {
    color: var(--color-neon);
    margin-right: 0.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-control {
    width: 100%;
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    padding: 0.875rem 1rem;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-neon);
    box-shadow: 0 0 10px rgba(130, 209, 5, 0.15);
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2382d105' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
    padding-right: 2.5rem;
}

input[type="date"].form-control {
    position: relative;
}

/* Custom Checkbox Cards for Extras */
.extras-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.extra-checkbox-card {
    cursor: pointer;
    position: relative;
}

.extra-checkbox-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.extra-content {
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-sm);
    padding: 1rem 0.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.extra-content i {
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.extra-name {
    font-size: 0.8rem;
    font-weight: 700;
}

.extra-price {
    font-size: 0.75rem;
    color: var(--color-neon);
    font-weight: 600;
}

.extra-checkbox-card input[type="checkbox"]:checked + .extra-content {
    background-color: rgba(130, 209, 5, 0.06);
    border-color: var(--color-neon);
    box-shadow: 0 0 10px rgba(130, 209, 5, 0.1);
}

.extra-checkbox-card input[type="checkbox"]:checked + .extra-content i {
    color: var(--color-neon);
    transform: scale(1.1);
}

/* Live Price Summary Box */
.price-summary-box {
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.summary-value {
    font-weight: 600;
    color: var(--text-primary);
}

.summary-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0.25rem 0;
}

.total-row {
    font-size: 1.15rem;
    color: var(--text-primary);
    font-weight: 700;
}

.summary-total {
    font-size: 1.5rem;
    color: var(--color-neon);
    font-family: var(--font-heading);
}

#btn-submit-booking {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.2);
}

#btn-submit-booking:hover {
    background-color: #25d366;
    color: #fff;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

/* Services section */
.services-section {
    padding: 8rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    background-color: var(--bg-secondary);
    border: var(--border-glow);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(130, 209, 5, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--color-neon);
    box-shadow: 0 20px 40px rgba(130, 209, 5, 0.15), 0 0 1px var(--color-neon);
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--color-neon);
    margin-bottom: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-icon {
    transform: translateY(-5px) scale(1.15);
}

.service-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.service-desc-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Testimonials section */
.testimonials-section {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--bg-primary);
    border: var(--border-glow);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-neon-border);
}

.stars {
    color: var(--color-neon);
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.25rem;
}

.author-name {
    font-size: 1rem;
    margin-bottom: 0.15rem;
}

.author-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* FAQ Section Styling */
.faq-section {
    padding: 8rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background-color: var(--bg-secondary);
    border: var(--border-glow);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item.faq-expanded {
    border-color: var(--color-neon-border);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-question span {
    font-family: var(--font-heading);
}

.faq-toggle-icon {
    font-size: 1rem;
    color: var(--color-neon);
    transition: var(--transition-smooth);
}

.faq-item.faq-expanded .faq-toggle-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background-color: rgba(3, 7, 18, 0.2);
}

.faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.faq-expanded .faq-answer {
    max-height: 500px;
    transition: max-height 0.4s cubic-bezier(0.85, 0, 0.15, 1);
}

/* Contact Section Styling */
.contact-section {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-section-title {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.contact-section-desc {
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-method-card {
    background-color: var(--bg-primary);
    border: var(--border-glow);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition-smooth);
}

a.contact-method-card:hover {
    transform: translateX(5px);
    border-color: var(--color-neon-border);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.method-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(130, 209, 5, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--color-neon);
}

.method-details h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.method-details p {
    font-size: 0.9rem;
    color: var(--text-primary);
}

/* Map Display Area */
.map-card-container {
    background-color: var(--bg-primary);
    border: var(--border-glow);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    height: auto;
}

.map-card-title {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.map-card-title i {
    color: var(--color-neon);
}

.map-card-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.map-iframe-wrapper {
    flex-grow: 1;
    min-height: 320px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-card-footer {
    margin-top: 1.5rem;
}

/* Footer Styling */
.main-footer {
    background-color: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6rem 0 2rem 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    height: 160px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.footer-brand-desc {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background-color: var(--bg-secondary);
    border: var(--border-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.social-links a:hover {
    background-color: var(--color-neon);
    color: #000;
    border-color: var(--color-neon);
    transform: translateY(-3px);
}

.footer-links-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-neon);
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-col ul a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-links-col ul a:hover {
    color: var(--color-neon);
    padding-left: 4px;
}

.schedule-list li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-bottom: 0.75rem;
}

.schedule-list li span:first-child {
    font-weight: 700;
    color: var(--text-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.developer-credit {
    font-size: 0.85rem;
    color: var(--color-neon);
    font-weight: 600;
}

/* Animations Trigger */
.js .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-title-green {
        font-size: 3.8rem;
    }
    
    .hero-title-badge {
        font-size: 0.9rem;
        margin-left: 0.5rem;
        margin-top: 0.5rem;
        display: inline-block;
    }
    
    .hero-subtitle-banner {
        font-size: 0.9rem;
        padding: 0.6rem 1.25rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-badge-row {
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
        margin-bottom: 3rem;
    }
    
    .hero-bottom-strip {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        align-items: center;
        text-align: center;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-action-van-img {
        width: 100%;
        max-width: 420px;
    }
    
    .hero-arrow-indicator-container {
        display: none;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .calculator-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .footer-top {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 1.5rem;
    }
    
    .btn-nav {
        display: none !important; /* Hide CTA button in menu, shown inside drawer instead */
    }
    
    /* Navigation Drawer for Mobile */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--bg-secondary);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
        z-index: 1000;
        transition: right 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
        padding: 6rem 2rem 2rem 2rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        border-left: 1px solid rgba(130, 209, 5, 0.15);
    }
    
    .navbar.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1.75rem;
        width: 100%;
    }
    
    .nav-link {
        font-size: 1.15rem;
        display: block;
        width: 100%;
        padding: 0.25rem 0;
    }
    
    /* Hamburger to X Transformation */
    .mobile-menu-toggle.active #bar-1 {
        transform: translateY(9px) rotate(45deg);
        background-color: var(--color-neon);
    }
    
    .mobile-menu-toggle.active #bar-2 {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active #bar-3 {
        transform: translateY(-9px) rotate(-45deg);
        background-color: var(--color-neon);
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-title-green {
        font-size: 2.6rem;
    }
    
    .hero-title-badge {
        font-size: 0.8rem;
        padding: 0.25rem 0.75rem;
    }
    
    .hero-subtitle-banner {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .strip-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-form {
        padding: 2rem 1.5rem;
    }
    
    .extras-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
    }
}

/* Reviews Carousel */
.testimonials-carousel-container:hover .carousel-control {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.2);
}
.testimonials-carousel-container .carousel-control:hover {
    background: rgba(130, 209, 5, 0.1) !important;
    border-color: var(--color-neon) !important;
    color: var(--color-neon) !important;
    box-shadow: 0 0 15px rgba(130, 209, 5, 0.2);
}
.reviews-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}
.reviews-carousel-dot.active {
    background: var(--color-neon);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(130, 209, 5, 0.5);
}
@media (max-width: 950px) {
    #reviews-carousel-prev {
        left: 0.5rem !important;
        background: rgba(7, 14, 36, 0.8) !important;
    }
    #reviews-carousel-next {
        right: 0.5rem !important;
        background: rgba(7, 14, 36, 0.8) !important;
    }
}

/* Visibilidad de opciones en desplegables select */
select option,
select optgroup,
.custom-form-control option,
.custom-form-control optgroup,
.form-control option,
.form-control optgroup {
    background-color: #0f172a !important;
    color: #ffffff !important;
    padding: 10px !important;
    font-size: 0.95rem !important;
}

select option:checked,
select option:hover {
    background-color: #1e293b !important;
    color: #82d105 !important;
}
