/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --secondary-color: #f59e0b;
    --text-dark: #111827;
    --text-gray: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    padding-top: 100px;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Top Disclaimer Banner */
.top-disclaimer-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 10px 0;
    z-index: 1001;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 35px;
    display: flex;
    align-items: center;
}

.disclaimer-wrapper {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: scroll-text 30s linear infinite;
}

.disclaimer-text {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    font-size: 0.875rem;
    padding-right: 60px;
    font-weight: 500;
}

.disclaimer-text i {
    font-size: 1rem;
    flex-shrink: 0;
    opacity: 0.9;
}

@keyframes scroll-text {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.top-disclaimer-banner:hover .disclaimer-wrapper {
    animation-play-state: paused;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 35px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo i {
    font-size: 1.4rem;
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary-color);
    color: white !important;
    padding: 8px 18px !important;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Slider Section */
.hero-slider-section {
    position: relative;
    margin-top: -100px;
    margin-bottom: 0;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 550px;
    max-height: 800px;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s ease-in-out;
    will-change: transform;
}

.hero-slide {
    min-width: 33.333%;
    width: 33.333%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-slide:not(:first-child) {
    margin-left: 0;
}

.hero-slide::after {
    display: none;
}

.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
    font-size: 1.1rem;
}

.hero-slider-btn:hover {
    background-color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-slider-btn.prev-btn {
    left: 20px;
}

.hero-slider-btn.next-btn {
    right: 20px;
}

.hero-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.hero-dot.active {
    background-color: #fff;
    width: 30px;
    border-radius: 6px;
}

.hero-enquiry-btn {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    z-index: 10;
    transition: var(--transition);
    box-shadow: var(--shadow-xl);
    letter-spacing: 1px;
}

.hero-enquiry-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Chardham Info Section */
.chardham-info-section {
    background: var(--bg-white);
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
}

.chardham-header-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: start;
}

.chardham-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 16px 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.chardham-info-boxes {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-light);
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    flex: 1;
    min-width: 160px;
    transition: var(--transition);
}

.info-box:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.info-box i {
    font-size: 1.4rem;
    color: var(--primary-color);
    width: 28px;
    text-align: center;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.info-value {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 700;
}

/* Statistics Section */
.chardham-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 24px 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
    margin: 20px 0;
}

.stat-box {
    text-align: center;
    padding: 12px;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 6px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 600;
    margin-top: 6px;
}

.stat-note {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 6px;
    font-style: italic;
}

/* Description */
.chardham-description {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.chardham-description p {
    margin-bottom: 12px;
}

.chardham-description p:last-child {
    margin-bottom: 0;
}

.chardham-description strong {
    color: var(--text-dark);
    font-weight: 700;
}

.service-note-text {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 18px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--primary-dark);
    line-height: 1.6;
    box-shadow: var(--shadow-sm);
}

/* Highlights List */
.chardham-highlights-list {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.chardham-highlights-list h3 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 14px;
    font-weight: 700;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.highlight-point {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.highlight-point i {
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Tour Highlights Box */
.tour-highlights-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 20px;
    border-radius: 10px;
    border-left: 3px solid var(--secondary-color);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.tour-highlights-box h3 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 14px;
    font-weight: 700;
}

.tour-highlights-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tour-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.tour-highlight-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-top: 4px;
    flex-shrink: 0;
}

/* CTA Buttons */
.chardham-cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.cta-primary-btn {
    background: var(--primary-color);
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
    display: inline-block;
    box-shadow: var(--shadow-sm);
}

.cta-primary-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-secondary-btn {
    background: white;
    color: var(--primary-color);
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    display: inline-block;
}

.cta-secondary-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Right Side Image */
.chardham-right {
    position: sticky;
    top: 120px;
}

.chardham-image-box {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.chardham-image-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.chardham-image-box img {
    width: 100%;
    height: auto;
    display: block;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 25px 0;
    text-align: center;
    margin-top: 0;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #dc2626;
    z-index: 1;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #dc2626;
    z-index: 1;
}

.page-header h1 {
    font-size: 1.875rem;
    margin-bottom: 8px;
    color: white;
    font-weight: 700;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 2;
}

.page-subtitle {
    font-size: 1rem;
    opacity: 0.95;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Section Styles */
section {
    padding: 25px 0;
    scroll-margin-top: 100px;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px;
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.section-description {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* About Chardham Section */
.about-chardham {
    background: var(--bg-white);
}

.chardham-intro {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: start;
}

.chardham-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.chardham-highlight {
    background: var(--bg-light);
    padding: 18px;
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
    transition: var(--transition);
}

.chardham-highlight:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.chardham-highlight h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chardham-highlight h3 i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.chardham-highlight p {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.chardham-temples {
    /* background: var(--bg-light); */
    padding: 28px;
    border-radius: 12px;
    /* border: 1px solid var(--border-color); */
}

.chardham-temples h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.temples-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.temple-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.temple-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.temple-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.temple-card:hover::before {
    transform: scaleX(1);
}

.temple-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 14px;
    box-shadow: var(--shadow-sm);
}

.temple-card h4 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.temple-card p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Chardham Highlights Section */
.chardham-highlights {
    background: var(--bg-light);
}

.highlights-content {
    max-width: 1200px;
    margin: 0 auto;
}

.highlight-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.highlight-item-large {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.highlight-item-large:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.highlight-icon-large {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.highlight-icon-large i {
    font-size: 1.5rem;
    color: white;
}

.highlight-item-large h3 {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.highlight-item-large p {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.highlight-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.highlight-feature {
    background: white;
    padding: 18px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.highlight-feature:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.highlight-feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.highlight-feature h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.highlight-feature p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Itinerary Section */
.itinerary-section {
    background: var(--bg-white);
}

.itinerary-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding-left: 50px;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.itinerary-item {
    position: relative;
    margin-bottom: 20px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.itinerary-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.itinerary-item::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 30px;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--primary-color);
    z-index: 2;
}

.itinerary-day-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.day-number {
    background: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
    padding: 6px;
}

.day-label {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.day-num {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

.itinerary-day-header h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.itinerary-content p {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 14px;
}

.itinerary-note {
    background: #fef3c7;
    padding: 14px;
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.itinerary-note i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.itinerary-info {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.itinerary-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.itinerary-info i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-light);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 18px;
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.875rem;
}

/* Quick Contact CTA */
.quick-contact-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.quick-contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.cta-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cta-box p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .cta-primary-btn {
    background: white;
    color: var(--primary-color);
    padding: 18px 48px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-xl);
}

.cta-buttons .cta-primary-btn:hover {
    background: #f3f4f6;
    transform: translateY(-3px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cta-buttons .cta-secondary-btn {
    background: transparent;
    color: white;
    padding: 18px 48px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid white;
    transition: var(--transition);
}

.cta-buttons .cta-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Floating Action Buttons */
.floating-action-buttons {
    position: fixed;
    right: 30px;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.75rem;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.whatsapp-float {
    background: #25D366;
}

.phone-float {
    background: var(--primary-color);
}

.float-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Services Section */
.about-service {
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.service-card {
    background: white;
    padding: 28px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
}

.service-icon i {
    font-size: 1.75rem;
    color: white;
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.service-note {
    background: #eff6ff;
    padding: 20px 24px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-note i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.service-note p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Why Choose Section */
.why-choose {
    background: var(--bg-light);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.why-item {
    background: white;
    padding: 28px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.why-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
}

.why-icon i {
    font-size: 1.5rem;
    color: white;
}

.why-item h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.why-item p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Package Features Section */
.package-features-section {
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.features-column {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.features-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border-color);
}

.include-title {
    color: #059669;
}

.exclude-title {
    color: #dc2626;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    border-bottom: 1px solid var(--border-color);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list i {
    margin-top: 4px;
    flex-shrink: 0;
}

.features-list .fa-check-circle {
    color: #059669;
}

.features-list .fa-times-circle {
    color: #dc2626;
}

/* Process Section */
.process {
    background: var(--bg-white);
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step {
    display: flex;
    gap: 28px;
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.step:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.step-content p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 12px;
}

.step-content ul {
    margin-top: 12px;
    padding-left: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.step-content ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Process Timeline */
.process-timeline {
    background: var(--bg-light);
}

.timeline-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.timeline-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.timeline-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.timeline-marker {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.timeline-item h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.timeline-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* What to Expect Section */
.what-to-expect {
    background: var(--bg-white);
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.expect-item {
    background: var(--bg-light);
    padding: 28px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.expect-item:hover {
    border-color: var(--primary-color);
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.expect-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.expect-item h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.expect-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact {
    background: var(--bg-white);
}

.contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.contact-card {
    background: white;
    padding: 28px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-card h3 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card p {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.cta-section {
    text-align: center;
    margin: 40px 0;
}

.cta-button {
    background: var(--primary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 16px;
}

.contact-info-box {
    background: #eff6ff;
    padding: 24px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    max-width: 600px;
    margin: 40px auto 0;
    text-align: center;
}

.contact-info-box h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
}

.contact-info-box h3 i {
    color: var(--primary-color);
}

.contact-info-box p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 50px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-section {
    position: relative;
}

.footer-section h3 {
    font-size: 0.875rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-section a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: var(--transition);
    color: var(--primary-color);
}

.footer-section a:hover {
    color: white;
    padding-left: 15px;
}

.footer-section a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-disclaimer {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    line-height: 1.7;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-bottom p::before,
.footer-bottom p::after {
    content: '•';
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
        padding: 0 20px;
    }
    
    .chardham-header-content,
    .chardham-intro {
        gap: 50px;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: #ffffff !important;
        width: 100%;
        text-align: left;
        transition: 0.3s ease-in-out;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        padding: 0;
        gap: 0;
        z-index: 1002;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        list-style: none;
        margin: 0;
        border: none;
        height: calc(100vh - 90px);
    }
    
    .nav-menu li {
        padding: 0;
        margin: 0;
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 18px 24px;
        border-bottom: 1px solid #e5e7eb;
        margin: 0;
        color: #111827;
        font-size: 1rem;
        font-weight: 500;
        text-decoration: none;
        width: 100%;
        box-sizing: border-box;
        background: #ffffff;
        transition: background-color 0.2s ease;
    }
    
    .nav-menu a::after {
        display: none !important;
    }
    
    .nav-menu a:hover,
    .nav-menu a:active {
        background: #f9fafb;
        color: var(--primary-color);
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    .nav-menu .nav-cta {
        margin: 12px 24px;
        padding: 14px 24px !important;
        text-align: center;
        border-radius: 8px;
        background: var(--primary-color) !important;
        color: #ffffff !important;
        border: none !important;
        font-weight: 600;
        display: block;
    }
    
    .nav-menu .nav-cta:hover,
    .nav-menu .nav-cta:active {
        background: var(--primary-dark) !important;
        transform: none;
        color: #ffffff !important;
    }

    .nav-menu.active {
        left: 0;
    }
    
    /* Mobile Menu Backdrop */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1001;
        display: block;
    }
    
    body.menu-open {
        overflow: hidden;
    }

    .hamburger {
        display: flex;
    }

    .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);
    }
    
    section {
        padding: 35px 0;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .page-header {
        padding: 20px 0;
        margin-top: 0;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .page-subtitle {
        font-size: 0.95rem;
    }
    
    .chardham-title {
        font-size: 3rem;
    }
    
    .highlight-main {
        grid-template-columns: 1fr;
    }
    
    .highlight-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .temples-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 90px;
        font-size: 15px;
    }

    .main-header {
        top: 35px;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .nav-menu {
        top: 90px;
        padding-top: 0;
        background: #ffffff !important;
    }
    
    .nav-menu a {
        padding: 18px 24px;
        border-bottom: 1px solid #e5e7eb;
        background: #ffffff;
    }
    
    .nav-menu .nav-cta {
        margin: 12px 24px;
        padding: 14px 24px !important;
    }

    .top-disclaimer-banner {
        padding: 8px 0;
        height: 35px;
    }

    .disclaimer-text {
        font-size: 0.8rem;
        gap: 10px;
    }

    .hero-slider-container {
        height: 65vh;
        min-height: 500px;
        max-height: 700px;
    }
    
    .hero-slider-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    .hero-slider-btn.prev-btn {
        left: 15px;
    }
    
    .hero-slider-btn.next-btn {
        right: 15px;
    }

    .hero-enquiry-btn {
        right: 15px;
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .chardham-header-content,
    .chardham-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .chardham-right {
        position: static;
        order: -1;
    }

    .chardham-title {
        font-size: 2.5rem;
    }

    .chardham-info-boxes {
        flex-direction: column;
    }

    .info-box {
        width: 100%;
    }

    .chardham-stats {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 0;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .chardham-cta-buttons {
        flex-direction: column;
    }

    .cta-primary-btn,
    .cta-secondary-btn {
        width: 100%;
        text-align: center;
    }
    
    section {
        padding: 30px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    .page-header {
        padding: 18px 0;
        margin-top: 0;
    }
    
    .page-header h1 {
        font-size: 1.375rem;
    }
    
    .page-subtitle {
        font-size: 0.9rem;
    }
    
    .highlight-features {
        grid-template-columns: 1fr;
    }
    
    .itinerary-timeline {
        padding-left: 30px;
    }
    
    .itinerary-item::before {
        left: -37px;
    }
    
    .floating-action-buttons {
        right: 20px;
        bottom: 100px;
    }

    .float-btn {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 30px;
    }
    
    .enquiry-modal.active {
        padding: 10px;
        align-items: flex-start;
        padding-top: 20px;
    }
    
    .enquiry-modal-content {
        max-width: 100%;
        margin: 0;
    }
    
    .enquiry-modal-header {
        padding: 16px 20px;
    }
    
    .enquiry-modal-header h2 {
        font-size: 1.1rem;
    }
    
    .enquiry-form {
        padding: 20px;
    }
    
    .form-group {
        margin-bottom: 16px;
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group input[type="number"],
    .form-group input[type="date"],
    .form-group textarea {
        font-size: 0.85rem;
        padding: 10px 12px;
    }
    
    .submit-btn {
        font-size: 0.9rem;
        padding: 10px 18px;
    }
    
    .footer-section h3 {
        font-size: 0.8rem;
        margin-bottom: 16px;
    }
    
    .footer-section ul li {
        margin-bottom: 8px;
    }
    
    .footer-section a {
        font-size: 0.85rem;
    }
    
    .footer-disclaimer {
        font-size: 0.8rem;
        padding: 16px;
    }
    
    .footer-bottom {
        padding-top: 20px;
        font-size: 0.8rem;
    }
    
    .cta-box h2 {
        font-size: 2.25rem;
    }
    
    .cta-box p {
        font-size: 1.1rem;
    }
    
    .services-grid,
    .why-choose-grid,
    .features-grid,
    .contact-cards,
    .timeline-items,
    .expect-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        gap: 24px;
    }
    
    .process-steps {
        gap: 24px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    
    .step-number {
        margin: 0 auto 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .chardham-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-box h2 {
        font-size: 1.75rem;
    }
    
    .hero-slider-container {
        height: 55vh;
        min-height: 450px;
    }
}

/* Enquiry Form Modal */
.enquiry-modal {
    display: none;
    position: fixed;
    z-index: 99998;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
    animation: fadeIn 0.3s ease;
    pointer-events: auto;
}

.enquiry-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.enquiry-modal.active {
    pointer-events: none;
}

.enquiry-modal.active .enquiry-modal-content {
    pointer-events: auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.enquiry-modal-content {
    background-color: #ffffff;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.enquiry-modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    padding: 18px 24px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1;
}

.enquiry-modal-header h2 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.enquiry-modal-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    border-radius: 4px;
}

.enquiry-modal-close:hover {
    transform: scale(1.2);
    background: rgba(255, 255, 255, 0.1);
}

.enquiry-form {
    padding: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="date"],
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.875rem;
    font-family: inherit;
    color: var(--text-dark);
    background-color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="number"]:focus,
.form-group input[type="date"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.date-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.date-input-wrapper input[type="date"] {
    padding-right: 40px;
    position: relative;
}

.date-input-wrapper input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 10px;
    cursor: pointer;
    opacity: 1;
    width: 20px;
    height: 20px;
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
    font-family: inherit;
}

.submit-btn {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
    margin-top: 8px;
}

.submit-btn:hover {
    background: linear-gradient(180deg, var(--primary-dark) 0%, #1e3a8a 100%);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Sticky Enquiry Button */
.sticky-enquiry-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 50%, #1e40af 100%);
    color: #ffffff;
    padding: 25px 14px;
    border-radius: 8px 0 0 8px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: -2px 0 8px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1.5px;
    width: 55px;
    height: auto;
    min-height: 200px;
    border: none;
    outline: none;
    margin: 0;
}

.sticky-enquiry-btn span {
    transform: rotate(90deg);
    display: inline-block;
    white-space: nowrap;
    line-height: 1;
}

.sticky-enquiry-btn:hover {
    background: linear-gradient(180deg, var(--primary-dark) 0%, #1e40af 100%);
    box-shadow: -2px 0 12px rgba(37, 99, 235, 0.4);
    right: 2px;
}

@media (max-width: 768px) {
    .sticky-enquiry-btn {
        right: 4%;
        transform: translate(50%, -50%);
        border-radius: 8px;
        padding: 15px 10px;
        min-width: 45px;
        min-height: 160px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    
    .sticky-enquiry-btn:hover {
        right: 4%;
        transform: translate(50%, -50%);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}
