/* Travaon Car Rental - Premium Theme */
:root {
    --gold: #d4af37;
    --gold-light: #f0d060;
    --gold-dark: #a6851a;
    --navy: #070a12;
    --navy-mid: #111827;
    --navy-card: rgba(17, 24, 39, 0.72);
    --glass: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.12);
    --text-muted: rgba(255, 255, 255, 0.7);
    --shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "Outfit", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--navy);
    color: #fff;
    overflow-x: hidden;
    margin: 0;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 600;
}

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.12;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 580px;
    line-height: 1.75;
}

.section-padding { padding: 5.5rem 0; }
.section-dark { background: var(--navy); }
.section-alt {
    background: linear-gradient(180deg, #0d1220 0%, #111827 100%);
}

/* Glass card base */
.glass-card {
    background: var(--navy-card);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: var(--transition);
}

.glass-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

/* Navbar */
.navbar-travaon {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    padding: 1.1rem 0;
    transition: var(--transition);
}

.navbar-travaon.scrolled {
    padding: 0.6rem 0;
    background: rgba(7, 10, 18, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.navbar-brand-travaon {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff !important;
}

.navbar-brand-travaon span { color: var(--gold); }

.nav-link-travaon {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 0.88rem;
    padding: 0.45rem 0.9rem !important;
    position: relative;
}

.nav-link-travaon::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link-travaon:hover,
.nav-link-travaon.active { color: var(--gold-light) !important; }

.nav-link-travaon:hover::after,
.nav-link-travaon.active::after { width: 55%; }

.navbar-toggler-travaon { border-color: rgba(212, 175, 55, 0.4); }
.navbar-toggler-travaon .navbar-toggler-icon { filter: invert(1); }

/* Buttons */
.btn-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: #0a0e17 !important;
    font-weight: 700;
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    letter-spacing: 0.06em;
    font-size: 0.82rem;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(212, 175, 55, 0.4);
    color: #0a0e17 !important;
}

.btn-outline-gold {
    background: transparent;
    color: #fff !important;
    font-weight: 600;
    border: 2px solid var(--gold);
    padding: 0.78rem 1.75rem;
    border-radius: 50px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #0a0e17 !important;
    transform: translateY(-3px);
}

/* Hero */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--navy);
    background-size: cover;
    background-position: center;
    padding-top: 90px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(7, 10, 18, 0.92) 0%,
        rgba(7, 10, 18, 0.65) 45%,
        rgba(7, 10, 18, 0.88) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 920px;
    padding: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    color: var(--gold-light);
    font-size: 0.82rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    line-height: 1.08;
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 2.25rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--text-muted);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    animation: heroBounce 2s infinite;
}

.hero-scroll i { display: block; font-size: 1.2rem; margin-top: 0.4rem; }

@keyframes heroBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* About */
.about-image-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
}

.about-image-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-wrap:hover img { transform: scale(1.04); }

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
    margin-top: 1.25rem;
}

.stat-card {
    padding: 1.1rem;
    text-align: center;
    border-radius: 14px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.stat-card h3 {
    color: var(--gold);
    font-size: 1.75rem;
    margin-bottom: 0.15rem;
}

.stat-card p {
    margin: 0;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.tag-pill {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.12);
    padding: 0.35rem 0.8rem;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

/* Fleet cards */
.fleet-card {
    overflow: hidden;
    height: 100%;
}

.fleet-card-img {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.fleet-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.fleet-card:hover .fleet-card-img img { transform: scale(1.07); }

.fleet-card-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 10, 18, 0.85), transparent 55%);
}

.fleet-card-body { padding: 1.35rem 1.5rem 1.5rem; }

.fleet-card-body h4 { font-size: 1.3rem; margin: 0.5rem 0; }

.fleet-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.fleet-rate {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin: 0.75rem 0 1rem;
}

.fleet-rate .amount {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.fleet-rate .unit {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Pricing section */
.pricing-highlight {
    text-align: center;
    padding: 2rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(7, 10, 18, 0.5));
    border: 1px solid rgba(212, 175, 55, 0.25);
    margin-bottom: 2.5rem;
}

.pricing-highlight h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.5rem;
}

.pricing-card {
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: rgba(212, 175, 55, 0.45);
    background: linear-gradient(160deg, rgba(212, 175, 55, 0.12), var(--navy-card));
}

.pricing-card.featured::before {
    content: "Popular";
    position: absolute;
    top: 16px;
    right: -28px;
    background: var(--gold);
    color: #0a0e17;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.35rem 2.5rem;
    transform: rotate(45deg);
}

.pricing-card .vehicle-name {
    font-size: 1.35rem;
    margin: 0.75rem 0 0.25rem;
}

.pricing-card .price {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
    margin: 0.5rem 0;
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 1.5rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.4rem 0;
    color: var(--text-muted);
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li i {
    color: var(--gold);
    margin-right: 0.5rem;
}

/* Services */
.service-card {
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
}

.service-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.25);
    font-size: 1.65rem;
    color: var(--gold);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gold);
    color: #0a0e17;
    transform: scale(1.08);
}

.service-card h4 { font-size: 1.15rem; margin-bottom: 0.65rem; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* Gallery */
.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    border: 1px solid var(--glass-border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after { opacity: 1; }

/* Reviews */
.review-card {
    padding: 2rem;
    height: 100%;
    position: relative;
}

.review-card::before {
    content: "\201C";
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.25;
    position: absolute;
    top: 0.25rem;
    left: 1.25rem;
    line-height: 1;
}

.review-stars { color: var(--gold); margin-bottom: 1rem; }

.review-text {
    font-style: italic;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #0a0e17;
}

.review-author h6 {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 600;
}

.review-author small { color: var(--text-muted); }

/* Contact */
.contact-info-card,
.contact-form-card {
    padding: 2rem;
    height: 100%;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.35rem;
}

.contact-item i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-item h6 {
    font-family: var(--font-body);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 0.2rem;
}

.contact-item p,
.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-decoration: none;
    font-size: 0.95rem;
}

.contact-item a:hover { color: var(--gold-light); }

.contact-form-card .form-control,
.contact-form-card .form-select {
    background: rgba(7, 10, 18, 0.6);
    border: 1px solid var(--glass-border);
    color: #fff;
    border-radius: 12px;
    padding: 0.75rem 1rem;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    background: rgba(7, 10, 18, 0.8);
    border-color: var(--gold);
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.2);
}

.contact-form-card label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.map-wrap {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow);
}

.map-wrap iframe {
    width: 100%;
    height: 340px;
    border: 0;
}

.alert-travaon {
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    border-radius: 14px;
}

.field-validation-error { color: #ff8a8a; font-size: 0.8rem; }

/* Footer */
.footer-travaon {
    background: #04060c;
    padding: 4rem 0 0;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand span { color: var(--gold); }

.footer-heading {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 1.1rem;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.55rem; }

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover { color: var(--gold-light); }

.social-icons { display: flex; gap: 0.65rem; margin-top: 1rem; }

.social-icons a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: #fff;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--gold);
    color: #0a0e17;
    transform: translateY(-4px);
}

.footer-bottom {
    margin-top: 2.5rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 58px;
    height: 58px;
    background: #25d366;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.45);
    z-index: 1040;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff !important;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(7, 10, 18, 0.97);
        padding: 1rem;
        border-radius: 14px;
        margin-top: 0.75rem;
        border: 1px solid var(--glass-border);
    }

    .about-stats { grid-template-columns: 1fr; }
}

@media (max-width: 575.98px) {
    .section-padding { padding: 4rem 0; }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .hero-buttons .btn { width: 100%; }
}
