@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-main: #0d0d0d;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222222;
    --primary: #ffc107;
    --primary-hover: #e0a800;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --border-color: #2a2a2a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #030303;
    color: var(--text-main);
    overflow-x: hidden;
    scroll-behavior: smooth;
    /* Apple Liquid Mesh Background */
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 193, 7, 0.12), transparent 40%),
        radial-gradient(circle at 90% 60%, rgba(255, 255, 255, 0.05), transparent 40%),
        radial-gradient(circle at 50% 90%, rgba(255, 193, 7, 0.08), transparent 50%);
    background-attachment: fixed;
}

/* Typography */
.section-subtitle {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-main);
}

.highlight {
    color: var(--primary);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    /* Apple Vision Pro Glass */
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a.active, .nav-links a:hover {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 4px;
}

.nav-contact-btn {
    background: var(--primary);
    color: #000;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s;
}

.nav-contact-btn:hover {
    background: var(--primary-hover);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 5% 4rem;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(13, 13, 13, 1)), url('./assets/images/uttarakhand_landscape.png') no-repeat center center/cover;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 2rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border-left: 3px solid var(--primary);
    padding-left: 10px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-feature-item i {
    color: var(--primary);
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: #000;
}

.btn-primary:hover {
    background: var(--primary-hover);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--text-main);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Booking Widget Hyper-Modern Redesign */
.booking-widget {
    background: rgba(20, 20, 22, 0.3);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    width: 440px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.booking-widget::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.8;
}

.booking-widget h3 {
    text-align: center;
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.booking-widget h3::before, .booking-widget h3::after {
    content: '';
    height: 2px;
    width: 30px;
    background: var(--primary);
    border-radius: 2px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.input-group {
    position: relative;
    margin-bottom: 0.5rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.input-group.full-width {
    grid-column: 1 / -1;
}

.input-group:focus-within {
    background: rgba(0, 0, 0, 0.7);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.15);
    transform: translateY(-2px);
}

.input-group i {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.input-group:focus-within i {
    color: var(--primary);
}

.input-group input, .input-group select {
    width: 100%;
    padding: 1.2rem 1rem 1.2rem 3rem;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    appearance: none;
}

.input-group input::placeholder {
    color: rgba(255,255,255,0.4);
}

.input-group select {
    cursor: pointer;
}

.input-group select option {
    background: var(--bg-main);
    color: #fff;
    padding: 10px;
}

.btn-block {
    width: 100%;
    justify-content: center;
    margin-top: 1.5rem;
    padding: 1.2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--primary) 0%, #e0a800 100%);
    border: none;
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.25);
    position: relative;
    overflow: hidden;
    color: #000;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 193, 7, 0.35);
}

.btn-block::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

/* Sections */
.section {
    padding: 5rem 5%;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-card {
    /* Apple Liquid Glass */
    background: rgba(25, 25, 28, 0.4);
    backdrop-filter: blur(30px) saturate(150%);
    -webkit-backdrop-filter: blur(30px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card:hover {
    background: rgba(35, 35, 40, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Fleet */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.fleet-card {
    /* Apple Liquid Glass */
    background: rgba(25, 25, 28, 0.4);
    backdrop-filter: blur(30px) saturate(150%);
    -webkit-backdrop-filter: blur(30px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fleet-card:hover {
    background: rgba(35, 35, 40, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.fleet-img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.fleet-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.fleet-specs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.fleet-specs span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.fleet-specs i {
    color: var(--primary);
}

/* Features Horizontal */
.features-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    /* Apple Liquid Glass */
    background: rgba(20, 20, 22, 0.3);
    backdrop-filter: blur(25px) saturate(150%);
    -webkit-backdrop-filter: blur(25px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-radius: 24px;
    padding: 2.5rem;
    margin-top: 4rem;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-box i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.feature-box h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.review-card {
    /* Apple Liquid Glass */
    background: rgba(25, 25, 28, 0.4);
    backdrop-filter: blur(30px) saturate(150%);
    -webkit-backdrop-filter: blur(30px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    transition: all 0.4s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    background: rgba(35, 35, 40, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-content h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.stars {
    color: var(--primary);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.review-content p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Footer */
footer {
    background: #000;
    padding: 4rem 5% 2rem;
    border-top: 1px solid var(--border-color);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
}

.social-icons a {
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact li {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 0.2rem;
}

.qr-code {
    width: 100px;
    height: 100px;
    background: #fff;
    padding: 5px;
    border-radius: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 1rem;
}

/* Floating Actions */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.fab {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.fab:hover {
    transform: scale(1.1);
}

.fab-whatsapp {
    background: #25D366;
}

.fab-call {
    background: var(--primary);
    color: #000;
}

/* Tracking Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.tracking-box {
    width: 90%;
    max-width: 450px;
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .tracking-box {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1rem;
}

.modal-header h3 {
    font-size: 1.2rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-header h3 i {
    color: var(--primary);
}

#close-tracking {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
}

#close-tracking:hover {
    color: var(--primary);
}

.tracking-map-mockup {
    width: 100%;
    height: 150px;
    background: linear-gradient(rgba(20,20,25,0.8), rgba(20,20,25,0.8)), url('https://upload.wikimedia.org/wikipedia/commons/e/e0/Night_map_of_the_world.png') center/cover;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
    animation: pulse-animation 2s infinite;
}

.moving-car {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 80%;
    transform: translate(-50%, -50%);
    animation: drive-car 3s ease-in-out infinite alternate;
}

@keyframes pulse-animation {
    0% { transform: translate(-50%, -50%) scale(0.95); box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7); }
    70% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 0 15px rgba(255, 193, 7, 0); }
    100% { transform: translate(-50%, -50%) scale(0.95); box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); }
}

@keyframes drive-car {
    0% { left: 80%; }
    100% { left: 25%; }
}

.tracking-status {
    background: rgba(0,0,0,0.4);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

/* Google Reviews Carousel */
.reviews-carousel {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    cursor: grab;
}

.reviews-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scroll-reviews 35s linear infinite;
}

.reviews-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-reviews {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.google-review-card {
    background: rgba(25,25,28,0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.5rem;
    width: 320px;
    flex-shrink: 0;
    transition: border-color 0.3s, transform 0.3s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.google-review-card:hover {
    border-color: rgba(255,193,7,0.3);
    transform: translateY(-4px);
}

.gr-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.gr-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
}

.gr-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
}

.gr-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}

.gr-glogo {
    height: 20px;
    margin-left: auto;
    flex-shrink: 0;
}

.gr-stars {
    color: #ffc107;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.gr-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-subtitle {
        border-left: none;
        padding-left: 0;
    }
    .hero-features {
        justify-content: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .booking-widget {
        width: 100%;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
