* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #5C0E99;
    --light-purple: #9A18FF;
    --purple-gradient: linear-gradient(180deg, #9A18FF 0%, #5C0E99 100%);
    --text-dark: #000000;
    --text-gray: #5E5E5E;
    --text-light-gray: #616161;
    --bg-light: #ABDCFF;
    --border-gray: #E0E0E0;
    --white: #FFFFFF;
    --yellow-badge: #FFD700;
}

body {
    font-family: 'Inter', -apple-system, Roboto, Helvetica, sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Header Styles */
.main-header {
    padding: 20px 0;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 31px;
    height: 43px;
}

.logo-text {
    width: 150px;
    height: 42px;
}

.brand-name {
    font-family: 'Jomolhari', serif;
    font-size: clamp(24px, 3vw, 48px);
    font-weight: 400;
    color: var(--primary-purple);
    letter-spacing: 6px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-purple);
}

.btn-get-price-nav {
    background: var(--purple-gradient);
    color: var(--white);
    border: none;
    border-radius: 5px;
    padding: 10px 24px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s;
    white-space: nowrap;
}

.btn-get-price-nav:hover {
    transform: translateY(-2px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--primary-purple);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(11px, 11px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -10px);
}

.btn-login {
    color: rgba(154, 24, 255, 0.68);
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid transparent;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-login:hover {
    border-color: var(--light-purple);
}

.btn-quick-support {
    background: var(--purple-gradient);
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 5px;
    transition: transform 0.2s;
    white-space: nowrap;
}

.btn-quick-support:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    padding: 40px 0;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    max-width: 1400px;
}

.hero-background {
    position: relative;
    width: 100%;
    height: 100%;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.hero-accent-bar {
    position: absolute;
    bottom: 15%;
    left: 2%;
    right: 2%;
    height: 44px;
    background: rgba(171, 220, 255, 0.6);
    z-index: 1;
}

.bus-image-container {
    position: absolute;
    bottom: 5%;
    left: 0;
    right: 0;
    z-index: 2;
}

.bus-image {
    width: 75%;
    max-width: 1000px;
    height: auto;
}

.bus-badge {
    position: absolute;
    bottom: 40%;
    left: 27%;
    width: 13%;
    height: auto;
}

.road-image {
    position: absolute;
    bottom: 0;
    left: 2%;
    right: 2%;
    width: 96%;
    height: auto;
    z-index: 3;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 20px;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 4vw, 64px);
    font-weight: 700;
    line-height: 1.2;
    text-align: right;
}

.vehicle-types {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.vehicle-type {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(20px, 2.5vw, 35px);
    font-weight: 500;
    color: var(--primary-purple);
}

.separator {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(20px, 2.5vw, 35px);
    font-weight: 500;
    color: var(--primary-purple);
}

.btn-book-ride {
    background: var(--purple-gradient);
    color: var(--white);
    border: none;
    border-radius: 5px;
    padding: 20px 40px;
    font-size: clamp(24px, 2vw, 36px);
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s;
    align-self: flex-end;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.btn-book-ride:hover {
    transform: translateY(-2px);
}

/* Journey Section */
.journey-section {
    padding: 60px 0;
    background: #F9F9F9;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(20px, 2vw, 32px);
    font-weight: 500;
    text-align: center;
    margin-bottom: 32px;
}

.trip-type-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.trip-type-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.trip-type-option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-purple);
}

.trip-type-option span {
    font-family: 'Inter', sans-serif;
    font-size: clamp(20px, 2vw, 32px);
    font-weight: 500;
}

.trip-separator {
    font-size: clamp(20px, 2vw, 32px);
    font-weight: 500;
}

.journey-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.form-section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 500;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 20px;
    color: var(--text-light-gray);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    font-size: 20px;
    font-style: italic;
    font-weight: 300;
    color: var(--text-light-gray);
}

.seating-capacity-select {
    font-style: normal;
    font-weight: 400;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

.seating-capacity-select option {
    font-style: normal;
    font-weight: 400;
}

.btn-add-stops {
    background: transparent;
    color: var(--text-light-gray);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-add-stops:hover {
    background: var(--primary-purple);
    color: var(--white);
    border-color: var(--primary-purple);
}

.map-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
}

.calendar-widget {
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-bottom: 1px solid var(--border-gray);
}

.calendar-day {
    padding: 8px;
    text-align: center;
    font-size: 12px;
    color: #666;
    border-right: 1px solid var(--border-gray);
}

.calendar-day:last-child {
    border-right: none;
}

.calendar-body {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.calendar-cell {
    padding: 12px;
    text-align: center;
    font-size: 14px;
    color: #333;
    border-right: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
    cursor: pointer;
    transition: background 0.2s;
}

.calendar-cell:hover:not(.disabled) {
    background: #f5f5f5;
}

.calendar-cell.disabled {
    color: #AAA;
}

.calendar-cell.selected {
    border: 1px solid #337AF7;
    color: #337AF7;
}

.capacity-section {
    position: relative;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-icon {
    width: 15px;
    height: 8px;
}

.capacity-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.capacity-option {
    font-size: 22px;
    font-weight: 300;
    padding: 8px 0;
    cursor: pointer;
    transition: color 0.2s;
}

.capacity-option:hover {
    color: var(--primary-purple);
}

.contact-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-label {
    font-family: 'Inter', sans-serif;
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 500;
}

.contact-input {
    flex: 1;
    max-width: 400px;
    padding: 16px 20px;
    border: 1px solid var(--border-gray);
    border-radius: 5px;
    font-size: 20px;
}

.btn-get-price {
    background: var(--purple-gradient);
    color: var(--white);
    border: none;
    border-radius: 5px;
    padding: 16px 48px;
    font-size: clamp(24px, 2vw, 32px);
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}

.btn-get-price:hover {
    transform: translateY(-2px);
}

/* Vehicles Section */
.vehicles-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #E8D5F5 0%, #F0E6FA 100%);
    position: relative;
}

.section-title-xl {
    font-family: 'Inter', sans-serif;
    font-size: clamp(48px, 5vw, 80px);
    font-weight: 500;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.decorative-stars {
    position: absolute;
    width: 105px;
    height: 62px;
}

.stars-left {
    top: 15%;
    left: 5%;
}

.stars-badge {
    position: absolute;
    top: -40px;
    left: -50px;
}

.stars-right {
    position: absolute;
    top: 40%;
    right: -50px;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.vehicle-card {
    background: var(--white);
    border-radius: 33px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    transition: transform 0.3s;
}

.vehicle-card:hover {
    transform: translateY(-8px);
}

.vehicle-card.featured {
    border: 2px solid var(--light-purple);
}

.most-popular-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #444;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 28px;
    font-weight: 400;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.vehicle-image-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    background: #f5f5f5;
}

.vehicle-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vehicle-name {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    color: #444;
}

.vehicle-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price {
    font-size: clamp(32px, 3vw, 48px);
    font-weight: 700;
    color: var(--text-dark);
}

.price-unit {
    font-size: 18px;
    color: #666;
}

.vehicle-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.rating-text {
    font-size: 14px;
    color: #666;
}

.vehicle-best-for {
    font-size: 16px;
    color: #666;
}

.vehicle-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vehicle-features li {
    font-size: 16px;
    color: #444;
}

.btn-book-now {
    background: var(--purple-gradient);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
    margin-top: auto;
}

.btn-book-now:hover {
    transform: scale(1.05);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--white);
}

.section-title-benefits {
    font-family: 'Inter', sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 500;
    text-align: center;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.benefit-card {
    background: #FAFAFA;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.benefit-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
}

.benefit-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Footer Section */
.footer-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.footer-image-wrapper {
    width: 100%;
    aspect-ratio: 29/11;
}

.footer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        text-align: center;
    }
    
    .vehicle-types {
        justify-content: center;
    }
    
    .btn-book-ride {
        align-self: center;
    }
}

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

    .header-content {
        flex-wrap: nowrap;
        gap: 0;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .hamburger-menu {
        display: flex;
        order: 3;
    }

    .logo-section {
        flex: 1;
    }

    .logo-text {
        width: 120px;
        height: 36px;
    }

    .main-nav {
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 0;
        border-top: 1px solid var(--border-gray);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        display: none;
        z-index: 999;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }

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

    .nav-link {
        padding: 16px 20px;
        font-size: 16px;
        border-bottom: 1px solid var(--border-gray);
        display: block;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .btn-get-price-nav {
        width: calc(100% - 40px);
        margin: 12px 20px;
        font-size: 16px;
        padding: 12px 20px;
        border-bottom: 1px solid var(--border-gray);
    }

    .header-actions {
        position: fixed;
        bottom: -200px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 12px;
        background: var(--white);
        padding: 16px 20px;
        border-top: 1px solid var(--border-gray);
        display: flex;
        z-index: 998;
        transition: bottom 0.3s ease;
    }

    .header-actions.active {
        bottom: 0;
    }

    .btn-login {
        padding: 12px 20px;
        font-size: 16px;
        text-align: center;
    }

    .btn-quick-support {
        padding: 12px 20px;
        font-size: 16px;
        width: 100%;
    }

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

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

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

    .contact-section {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-input {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .main-header {
        padding: 12px 0;
    }

    .logo-section {
        gap: 8px;
        flex: 1;
    }

    .logo-icon {
        width: 28px;
        height: 40px;
    }

    .logo-text {
        width: 100px;
        height: 30px;
    }

    .hamburger-menu {
        width: 40px;
        height: 40px;
        display: flex;
        padding: 6px;
    }

    .hamburger-line {
        width: 24px;
    }

    .brand-name {
        font-size: 20px;
        letter-spacing: 3px;
    }

    .vehicle-card {
        padding: 20px;
    }

    .most-popular-badge {
        font-size: 20px;
        padding: 8px 20px;
    }
}
