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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    overflow-y: hidden; /* Prevent scroll while loading */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.loaded {
    overflow-y: auto; /* Allow scroll after loading */
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.loading-spinner {
    text-align: center;
    color: white;
}

.loading-spinner p {
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: 500;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Improve touch targets for mobile */
@media (max-width: 768px) {
    a, button {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

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

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

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

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 15px auto;
    border-radius: 2px;
}

/* Header Styles */
.header {
    background: rgba(225, 230, 231, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header:hover {
    background: rgba(243, 244, 246, 1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.25);
}

.navbar {
    padding: 1.2rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .brand-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-brand .brand-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-brand .brand-text {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.nav-brand .brand-name:hover {
    transform: scale(1.05);
}

.nav-brand .brand-name:hover .brand-icon {
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-menu a:hover::before {
    opacity: 1;
}

.nav-menu a:hover {
    color: #667eea;
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0.3rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: transform 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

.nav-menu a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-menu a:active {
    transform: translateY(0);
}

.nav-menu a.active {
    color: #667eea;
}

.nav-menu a.active::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
}

.nav-menu a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(102, 126, 234, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* Hero Section */
.hero {
    /* Background image using local Adi Kailash image */
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.5) 0%, rgba(118, 75, 162, 0.5) 100%),
                url('images/Adikailash.jpg') center/cover no-repeat;
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 0 20px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
    min-width: 240px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.stat-value {
    display: inline-block;
    font-size: 1.7rem;
    font-weight: 700;
    white-space: nowrap;
    line-height: 1.3;
    overflow: visible;
    text-overflow: clip;
    max-width: 100%;
}

.hero-price {
    margin: 1.5rem 0;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-right: 0.5rem;
}

.price-note {
    font-size: 1rem;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: var(--shadow-lg);
    margin-top: 2rem;
}

.btn-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.2);
}

/* Overview Section */
.overview {
    background: var(--bg-light);
}

.overview-content {
    display: grid;
    gap: 3rem;
}

.overview-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.overview-text p {
    margin-bottom: 1.5rem;
}

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

.detail-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.detail-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.detail-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Highlights Section */
.highlights {
    background: var(--bg-white);
}

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

.highlight-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.highlight-card ul {
    list-style: none;
    padding-left: 0;
}

.highlight-card li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.highlight-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Itinerary Section */
.itinerary {
    background: var(--bg-light);
}

.itinerary-timeline {
    position: relative;
    padding-left: 2rem;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 4px solid var(--bg-light);
    box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-day {
    position: absolute;
    left: -4rem;
    top: -5px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.timeline-content {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.timeline-content p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.timeline-content ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
    color: var(--text-light);
}

.timeline-content li {
    margin-bottom: 0.5rem;
}

.itinerary-note {
    background: #fef3c7;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--accent-color);
    margin-top: 3rem;
}

.itinerary-note ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.itinerary-note li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* Routes Section */
.routes {
    background: var(--bg-white);
}

.routes-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.routes-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
}

.routes-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.routes-info p {
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.transport-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.transport-options h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.transport-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s;
}

.transport-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
}

.transport-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.transport-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.transport-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.route-map {
    margin-top: 2rem;
}

.route-map h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.map-container {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
    .map-container {
        padding: 1.5rem;
        overflow-x: visible;
    }
}

.route-visualization {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    min-width: 800px;
}

@media (max-width: 768px) {
    .route-visualization {
        min-width: auto;
        width: 100%;
    }
}

.route-point {
    background: var(--bg-white);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    min-width: 120px;
    transition: all 0.3s;
}

.route-point:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.route-point.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.point-name {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.point-distance,
.point-altitude,
.point-note {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
}

.route-line {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
}

.route-details {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
}

.route-details h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.detail-item {
    background: var(--bg-white);
    padding: 1rem;
    border-radius: 10px;
    color: var(--text-light);
}

/* Enquiry Section */
.enquiry {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.enquiry .section-title {
    color: white;
}

.enquiry-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.enquiry-info h3 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.contact-item a:hover {
    opacity: 1;
    text-decoration: underline;
}

.contact-item p {
    margin-top: 0.5rem;
    opacity: 0.9;
}

.price-info {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-info h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price-details {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.enquiry-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.enquiry-form h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.enquiry-form .btn-primary {
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 1.5rem auto 0;
    text-align: center;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .enquiry-content {
        gap: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.2rem;
        padding: 0 15px;
    }
    
    .stat-item {
        min-width: 200px;
        padding: 1.3rem 1rem;
    }
    
    .stat-value {
        font-size: 1.7rem;
    }
}

@media (max-width: 900px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 100%;
    }
    
    .stat-item {
        min-width: 180px;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-brand .brand-icon {
        width: 28px;
        height: 28px;
    }
    
    .nav-brand .brand-text {
        font-size: 1.3rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.25);
        padding: 2rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        gap: 0.5rem;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        display: block;
        width: 90%;
        margin: 0 auto;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .nav-menu a::after {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 1.5rem 0;
        padding: 0 10px;
        max-width: 100%;
    }
    
    .stat-item {
        padding: 1.2rem 0.6rem;
        min-width: 160px;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .stat-value {
        font-size: 1.3rem;
        line-height: 1.2;
        white-space: nowrap;
    }
    
    .hero {
        padding: 80px 15px 60px;
        height: auto;
        min-height: 100vh;
    }
    
    .hero-price {
        margin: 1.5rem 0;
        padding: 0 10px;
    }
    
    .price {
        font-size: 2.2rem;
    }
    
    .btn-primary {
        padding: 14px 35px;
        font-size: 1rem;
        margin-top: 1.5rem;
    }

    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .overview-content {
        gap: 2rem;
    }
    
    .overview-text {
        font-size: 1rem;
        padding: 0 5px;
    }
    
    .overview-details {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .detail-card {
        padding: 1.5rem;
    }
    
    .detail-card h3 {
        font-size: 1rem;
    }
    
    .detail-card p {
        font-size: 0.9rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .highlight-card {
        padding: 2rem;
    }
    
    .highlight-card h3 {
        font-size: 1.3rem;
    }

    .enquiry-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .enquiry-info {
        order: 2;
    }
    
    .enquiry-form {
        order: 1;
        padding: 2rem 1.5rem;
    }
    
    .contact-item {
        margin-bottom: 1.2rem;
    }
    
    .price-info {
        padding: 1.5rem;
    }

    .route-visualization {
        flex-direction: column;
        min-width: auto;
        gap: 0.8rem;
    }
    
    .route-point {
        width: 100%;
        min-width: auto;
        padding: 1rem;
    }
    
    .route-line {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    .transport-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .transport-icon {
        font-size: 2.5rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }

    .timeline-day {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }

    .itinerary-timeline {
        padding-left: 0;
    }

    .itinerary-timeline::before {
        display: none;
    }

    .timeline-item {
        padding-left: 0;
        margin-bottom: 2rem;
    }

    .timeline-item::before {
        display: none;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
    }
    
    .itinerary-note {
        padding: 1.5rem;
    }
    
    .routes-info {
        padding: 1.5rem;
    }
    
    .map-container {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-brand .brand-icon {
        width: 24px;
        height: 24px;
    }
    
    .nav-brand .brand-text {
        font-size: 1.1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        padding: 0 5px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin: 1.2rem 0;
        padding: 0 10px;
        max-width: 100%;
    }
    
    .stat-item {
        padding: 1rem 0.8rem;
        min-width: auto;
    }
    
    .stat-label {
        font-size: 0.8rem;
        white-space: normal;
    }
    
    .stat-value {
        font-size: 1.3rem;
        line-height: 1.3;
        white-space: nowrap;
    }

    .price {
        font-size: 1.8rem;
    }
    
    .price-note {
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 60px 12px 50px;
    }
    
    .btn-primary {
        padding: 12px 30px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    
    .enquiry-form .btn-primary {
        width: 100%;
        max-width: 280px;
        display: block;
        margin: 1.5rem auto 0;
    }

    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .overview-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .detail-card {
        padding: 1.2rem;
    }
    
    .highlight-card {
        padding: 1.5rem;
    }
    
    .highlight-card h3 {
        font-size: 1.1rem;
    }
    
    .highlight-icon {
        font-size: 2.5rem;
    }
    
    .enquiry-form {
        padding: 1.5rem 1rem;
    }
    
    .enquiry-form h3 {
        font-size: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .timeline-content {
        padding: 1.2rem;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    .routes-info h3,
    .route-map h3,
    .route-details h3 {
        font-size: 1.3rem;
    }
    
    .transport-card h4 {
        font-size: 1.1rem;
    }
    
    .transport-card p {
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Prevent horizontal scroll on mobile */
* {
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    /* Prevent text from being too small */
    p, li, span {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
}

/* Success Message */
.success-message {
    background: #10b981;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    text-align: center;
    display: none;
}

.success-message.show {
    display: block;
}

