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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

:root {
    --spring-easing: linear(
        0, 0.002, 0.01 0.9%, 0.038 1.8%, 0.156, 0.312 5.8%, 0.789 11.1%, 1.015 14.2%,
        1.096, 1.157, 1.199, 1.224 20.3%, 1.231, 1.231, 1.226, 1.214 24.6%,
        1.176 26.9%, 1.057 32.6%, 1.007 35.5%, 0.984, 0.968, 0.956, 0.949 42%,
        0.946 44.1%, 0.95 46.5%, 0.998 57.2%, 1.007, 1.011 63.3%, 1.012 68.3%,
        0.998 84%, 1
    );
    --spring-duration: 1.33s;
}

@keyframes wipe {
    0% { mask-position: 200% center; }
    100% { mask-position: 0% center; }
}

@keyframes text {
    0% { background-position: 100% center; }    
    100% { background-position: -100% center; }    
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.logo a {
    text-decoration: none;
}

.logo-box {
    border: 4px solid white;
    padding: 8px 16px;
    background: transparent;
    display: inline-block;
    position: relative;
    isolation: isolate;
    scale: 1;
    transition: all var(--spring-duration) var(--spring-easing);
}

.logo-box:hover {
    scale: 1.05;
    transition-duration: calc(var(--spring-duration)*0.5);
}

.logo-text {
    font-family: 'Archivo Black', sans-serif;
    color: white;
    font-size: 1.2rem;
    letter-spacing: 1.5px;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-color: white;
    background-image: linear-gradient(120deg, transparent, rgba(255,255,255,0.66) 40%, rgba(255,255,255,0.9) 50%, transparent 52%);
    background-repeat: no-repeat;
    background-size: 300% 300%;
    background-position: center 200%;
}

.logo-box:hover .logo-text {
    animation: text .66s ease-in-out 1;
}

.shimmer {
    position: absolute;
    inset: -40px;
    border-radius: inherit;
    mix-blend-mode: color-dodge;
    mix-blend-mode: plus-lighter;
    pointer-events: none;
}

.shimmer::before,
.shimmer::after {
    transition: all 0.5s ease;
    opacity: 0;
    content: "";
    border-radius: inherit;
    position: absolute;
    inset: 40px;
}

.shimmer::before {
    box-shadow: 0 0 3px 2px rgba(255, 255, 255, 0.95),
        0 0 7px 4px rgba(255, 255, 255, 0.8),
        0 0 13px 8px rgba(255, 255, 255, 0.6),
        0 0 22px 6px rgba(255, 255, 255, 0.4);
    z-index: -1;
}

.shimmer::after {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.95),
        inset 0 0 3px 1px rgba(255, 255, 255, 0.8),
        inset 0 0 9px 1px rgba(255, 255, 255, 0.7);
    z-index: 2;
}

.logo-box:hover .shimmer::before,
.logo-box:hover .shimmer::after {
    opacity: 1;
}

.logo-box .shimmer {
    mask-image: linear-gradient(
        90deg, transparent 15%, white 45%, white 55%, transparent 85%
    );
    mask-size: 200% 200%;
    mask-position: center;
    animation: wipe 3s linear infinite both -0.5s;
}

.logo-box .shimmer::before,
.logo-box .shimmer::after {
    opacity: 1;
}

.tagline-container {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.line {
    width: 40px;
    height: 1.5px;
    background: white;
}

.tagline {
    font-family: 'Hanken Grotesk', sans-serif;
    color: white;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.8px;
    white-space: nowrap;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 5px;
    font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(255,255,255,0.1);
    color: white;
}

/* Dropdown Menu */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
}

.nav-menu li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    color: #333;
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: block;
    font-size: 0.95rem;
}

.dropdown a:hover {
    background: #f8f9fa;
    color: #dc143c;
}

.dropdown a:last-child {
    border-bottom: none;
    border-radius: 0 0 10px 10px;
}

.dropdown a:first-child {
    border-radius: 10px 10px 0 0;
}

/* Sub-dropdown */
.dropdown-item {
    position: relative;
}

.dropdown-item:hover .sub-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.sub-dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.sub-dropdown a {
    color: #333;
    padding: 10px 18px;
    border-bottom: 1px solid #f0f0f0;
    display: block;
    font-size: 0.9rem;
}

.sub-dropdown a:hover {
    background: #f8f9fa;
    color: #dc143c;
}

.dropdown-item > a .fas.fa-chevron-right {
    float: right;
    margin-top: 2px;
    font-size: 0.8rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

/* Breadcrumb */
.breadcrumb {
    background: #f8f9fa;
    padding: 1.2rem 0;
    margin-top: 90px;
    position: relative;
    z-index: 10;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #666;
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.breadcrumb-nav a {
    color: #dc143c;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
    color: #8b0000;
}

.breadcrumb-nav i {
    color: #999;
    font-size: 0.75rem;
}

.breadcrumb-nav span {
    color: #333;
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    height: 60vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-btn {
    background: #dc143c;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
    text-decoration: none;
    display: inline-block;
}

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

/* Container and Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-section {
    padding: 20px 0;
}

.content-section.gray {
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.section-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.section-subheading {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #dc143c;
}

/* Overview with Price */
.overview-with-price {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.overview-content {
    flex: 1;
}

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

/* Price Sidebar */
.price-sidebar {
    position: sticky;
    top: 100px;
}

.price-content {
    background: #dc143c;
    border: 3px solid #dc143c;
    border-radius: 15px;
    padding: 1.2rem 1rem;
    text-align: center;
    box-shadow: 
        rgba(220, 20, 60, 0.4) 4px 4px 0 0, 
        rgba(220, 20, 60, 0.3) 8px 8px 0 0, 
        rgba(220, 20, 60, 0.2) 12px 12px 0 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-content:hover {
    transform: translateY(-3px);
    box-shadow: 
        rgba(220, 20, 60, 0.5) 6px 6px 0 0, 
        rgba(220, 20, 60, 0.4) 12px 12px 0 0, 
        rgba(220, 20, 60, 0.3) 18px 18px 0 0;
}

.price-info {
    color: white;
}

.starting-from {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
}

.price-amount {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    line-height: 1;
}

.rupee-symbol {
    font-size: 1.8rem;
    font-weight: bold;
}

.price-per {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 500;
}

.price-btn {
    background: white;
    color: #dc143c;
    padding: 8px 20px;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.price-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.4);
}

/* Content Text */
.content-text {
    max-width: 1200px;
    margin: 0 auto;
}

.content-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

/* Package Highlights */
.package-highlights-section {
    background: white;
    padding: 20px 0;
}

.highlights-content {
    max-width: 1200px;
    margin: 0 auto;
}

.package-highlights-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: left;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

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

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #666;
    font-size: 1rem;
    padding: 0.3rem 0;
}

.highlight-item i {
    color: #d9534f;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #dc143c;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-text {
    color: #666;
    line-height: 1.6;
    text-align: justify;
}

/* Itinerary Section */
.itinerary-section {
    background: white;
    padding: 20px 0;
}

.itinerary-timeline {
    max-width: 1200px;
    margin: 0 auto;
}

.day-item {
    background: white;
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.day-header {
    background: #dc143c;
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.day-number {
    font-size: 1.5rem;
    font-weight: bold;
}

.day-location {
    font-size: 1.1rem;
    text-align: right;
    flex: 1;
    margin-left: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.day-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    align-items: start;
}

.day-text {
    padding-right: 1rem;
}

.day-text p {
    text-align: justify;
}

.day-image {
    height: 250px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.day-content h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.day-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.day-activities {
    list-style: none;
}

.day-activities li {
    margin-bottom: 0.5rem;
    padding-left: 20px;
    position: relative;
    color: #555;
}

.day-activities li:before {
    content: "★";
    position: absolute;
    left: 0;
}

/* Photography Section */
.photography-section {
    background: white;
    padding: 20px 0;
}

.photo-spots-container {
    max-width: 1200px;
    margin: 0 auto;
}

.photo-spot-item {
    background: white;
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.photo-spot-header {
    background: #dc143c;
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.photo-spot-header h3 {
    font-size: 1.3rem;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.photo-spot-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    align-items: start;
}

.photo-spot-text {
    padding-right: 1rem;
}

.photo-spot-image {
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
}

.photo-spot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-credit {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

.photo-spot-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: justify;
}

/* Note Box */
.note-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 5px;
    padding: 1rem;
    margin-top: 2rem;
}

.note-box p {
    margin: 0;
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

.note-box strong {
    color: #333;
}

/* Tips Section */
.tips-section {
    background: #f8f9fa;
    padding: 20px 0;
}

.tips-content {
    max-width: 1200px;
    margin: 0 auto;
}

.tips-section ul {
    list-style: none;
    margin-top: 2rem;
}

.tips-section ul li {
    margin-bottom: 1.5rem;
    padding-left: 30px;
    position: relative;
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

.tips-section ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #34c759;
    font-weight: bold;
    font-size: 1.3rem;
}

.tips-section ul li strong {
    color: #dc143c;
}

/* Packing Section */
.packing-section {
    background: white;
    padding: 20px 0;
}

.packing-content {
    max-width: 1200px;
    margin: 0 auto;
}

.packing-section .packing-list {
    counter-reset: packing-counter;
    list-style: none;
    margin-top: 2rem;
}

.packing-section .packing-list li {
    counter-increment: packing-counter;
    margin-bottom: 1.5rem;
    padding-left: 40px;
    position: relative;
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

.packing-section .packing-list li:before {
    content: counter(packing-counter);
    position: absolute;
    left: 0;
    background: #dc143c;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.packing-section .packing-list li strong {
    color: #dc143c;
    font-weight: 600;
}

/* Best Time Section */
.best-time-section {
    background: #f8f9fa;
    padding: 20px 0;
}

.best-time-content {
    max-width: 1200px;
    margin: 0 auto;
}

.best-time-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Inclusions Section */
.inclusions-section {
    padding: 20px 0;
    background: white;
}

.inclusions-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.inclusions-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.inclusions-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.inclusions-list {
    list-style: none;
}

.inclusions-list li {
    margin-bottom: 0.8rem;
    padding-left: 25px;
    position: relative;
    color: #555;
    text-align: justify;
}

.inclusions-list.included li:before {
    content: "✓";
    color: #34c759;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.inclusions-list.excluded li:before {
    content: "✗";
    color: #dc143c;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* FAQ Section */
.faq-section {
    padding: 20px 0;
    background: #f8f9fa;
}

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

.faq-item {
    margin-bottom: 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: white;
}

.faq-question {
    padding: 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    font-weight: bold;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
}

.faq-answer.active {
    max-height: 500px;
    padding: 1.5rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    text-align: justify;
}

/* Terms & Conditions Button Section */
.terms-button-section {
    background: #f8f9fa;
    padding: 20px 0;
    text-align: center;
}

.terms-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    color: white;
    padding: 15px 300px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.terms-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.5);
    background: linear-gradient(135deg, #ff1744 0%, #dc143c 100%);
}

.terms-button i {
    font-size: 1.3rem;
}

/* Trust Signals Section */
.trust-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}
/* Carousel Section */
.carousel-section {
    padding: 20px 0;
    background: white;
}

.carousel-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

#default-carousel {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

#default-carousel .relative.h-56 {
    height: 350px;
}

/* ⭐ DESTINATION GUIDE WIDGET STYLES - START */

.guide-widget-section > .container > p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 3rem;
    text-align: justify;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.destination-guide-widget-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.destination-guide-widget-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc143c, #8b0000, #dc143c);
}

.widget-header {
    text-align: center;
	margin-bottom: 3rem;
}

.widget-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: 0.5rem;
}

.guide-widget-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.guide-widget-card {
    position: relative;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    height: 280px;
}

.guide-widget-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(220, 20, 60, 0.3);
}

.card-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.card-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.guide-widget-card:hover .card-bg-image {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    transition: background 0.4s ease;
}

.guide-widget-card:hover .card-overlay {
    background: linear-gradient(180deg, rgba(220, 20, 60, 0.4) 0%, rgba(139, 0, 0, 0.8) 100%);
}

.card-content-wrapper {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
}

.card-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.guide-widget-card:hover .card-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(360deg);
}

.card-icon i {
    font-size: 1.5rem;
    color: white;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.card-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.card-arrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.guide-widget-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.card-arrow i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.guide-widget-card:hover .card-arrow i {
    transform: translateX(5px);
}

.widget-footer {
    text-align: center;
    margin-top: 3rem;
}

.view-full-guide-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    color: white;
    padding: 17px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.view-full-guide-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.5);
    background: linear-gradient(135deg, #ff1744 0%, #dc143c 100%);
}

.view-full-guide-btn i {
    font-size: 1.3rem;
}

/* ⭐ DESTINATION GUIDE WIDGET STYLES - END */

/* Booking Section */
.booking-section {
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    color: white;
    padding: 20px 0;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.booking-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.booking-info p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
}

.booking-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    color: #333;
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #333;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc143c;
}

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

.submit-btn {
    background: #dc143c;
    color: white;
    padding: 15px 0;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    font-size: 1.1rem;
    font-weight: bold;
    transition: transform 0.3s;
}

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

/* Alert Messages */
.alert {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: opacity 0.3s;
}

.alert-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 20px 0;
}

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

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: #f0f0f0;
    line-height: 1.8;
    text-align: justify;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #f0f0f0;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a:hover {
    color: white;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 10px;
}

.social-icons a {
    color: #f0f0f0;
    font-size: 1.8rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: #f0f0f0;
}

.footer-bottom p {
    white-space: nowrap;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #dc143c;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
    transition: all 0.3s;
    z-index: 999;
    border: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
}

.scroll-to-top:hover {
    background: #8b0000;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.6);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top i {
    font-size: 1.5rem;
}

/* Responsive Design - Tablets */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .overview-with-price {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .price-sidebar {
        position: static;
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .guide-widget-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .nav-menu > li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        padding: 1rem;
        width: 100%;
        justify-content: space-between;
        color: #666;
    }
    
    .nav-menu a:hover {
        background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
        color: white;
    }
    
    .nav-menu .fa-chevron-down,
    .nav-menu .fa-chevron-right {
        color: #666;
    }
    
    .nav-menu a:hover .fa-chevron-down,
    .nav-menu a:hover .fa-chevron-right {
        color: white;
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin: 0.5rem 0 0 0;
        border-radius: 8px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active {
        max-height: 500px;
    }
    
    .dropdown a {
        color: #666;
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #e0e0e0;
        font-size: 0.9rem;
    }
    
    .dropdown a:hover {
        background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
        color: white;
    }
    
    .sub-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #e9ecef;
        margin: 0.5rem 0 0 1rem;
        border-radius: 6px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .sub-dropdown.active {
        max-height: 400px;
    }
    
    .sub-dropdown a {
        color: #666;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .sub-dropdown a:hover {
        background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
        color: white;
    }
    
    .logo-box {
        border: 3px solid white;
        padding: 6px 12px;
    }
    
    .logo-text {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .tagline {
        font-size: 0.55rem;
        letter-spacing: 0.4px;
        max-width: 160px;
        white-space: normal;
        text-align: center;
    }
    
    .line {
        width: 15px;
    }
    
    .hero-section {
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-content {
        padding: 0 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .hero-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .content-section {
        padding: 20px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }
    
    .section-subheading {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .price-sidebar {
        position: static;
        order: -1;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
    }
    
    .price-content {
        padding: 1.5rem 1.2rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .rupee-symbol {
        font-size: 1.6rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .day-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.2rem;
    }
    
    .day-location {
        text-align: left;
        margin-left: 0;
        margin-top: 0.5rem;
        font-size: 0.95rem;
    }
    
    .day-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .day-text {
        padding-right: 0;
    }
    
    .day-image {
        order: -1;
        height: 200px;
    }
    
    .photo-spot-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .photo-spot-text {
        padding-right: 0;
    }
    
    .photo-spot-image {
        order: -1;
        height: 200px;
    }
    
    .inclusions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .terms-button-section {
        padding: 20px 0;
    }
    
    .terms-button {
        padding: 15px 30px;
        font-size: 1rem;
        gap: 10px;
    }
    
    .terms-button i {
        font-size: 1.1rem;
    }
    
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    #default-carousel .relative.h-56 {
        height: 250px;
    }
    
    .breadcrumb {
        padding: 0.8rem 0;
    }
    
    .breadcrumb-container {
        padding: 0 1.5rem;
    }
    
    .breadcrumb-nav {
        font-size: 0.85rem;
        flex-wrap: wrap;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-to-top i {
        font-size: 1.3rem;
    }
    
    .destination-guide-widget-section {
        padding: 20px 0;
    }
    
    .widget-header {
        margin-bottom: 2rem;
    }
    
    .widget-subtitle {
        font-size: 1rem;
    }
    
    .guide-widget-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .guide-widget-card {
        height: 250px;
    }
    
    .widget-footer {
        margin-top: 2rem;
    }
    
    .view-full-guide-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* Responsive Design - Small Mobile */
@media (max-width: 480px) {
    .logo-box {
        border: 2px solid white;
        padding: 4px 10px;
    }
    
    .logo-text {
        font-size: 0.75rem;
        letter-spacing: 0.8px;
    }
    
    .tagline {
        font-size: 0.48rem;
        letter-spacing: 0.3px;
        max-width: 140px;
    }
    
    .line {
        width: 12px;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero-section {
        height: 45vh;
        min-height: 350px;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .content-section {
        padding: 20px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }
    
    .price-amount {
        font-size: 2.2rem;
    }
    
    .rupee-symbol {
        font-size: 1.5rem;
    }
    
    .day-image {
        height: 180px;
    }
    
    .terms-button {
        padding: 12px 24px;
        font-size: 0.9rem;
        gap: 8px;
        white-space: normal;
        text-align: center;
        line-height: 1.4;
    }
    
    .terms-button i {
        font-size: 1rem;
    }
    
    .footer-bottom p {
        white-space: normal;
    }
    
    .guide-widget-card {
        height: 220px;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .card-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .logo-text {
        font-size: 0.65rem;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .rupee-symbol {
        font-size: 1.3rem;
    }
    
    .day-image {
        height: 150px;
    }
    
    .guide-widget-card {
        height: 200px;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        height: 70vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}

/* ===================================
   PACKAGE PAGE ADDITIONAL STYLES
   Added for family package generator
   =================================== */

/* Package Highlights Section */
.package-highlights-section {
    background: white;
    padding: 20px 0;
}

.highlights-content {
    max-width: 1200px;
    margin: 0 auto;
}

.package-highlights-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: left;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

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

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #666;
    font-size: 1rem;
    padding: 0.3rem 0;
}

.highlight-item i {
    color: #d9534f;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ============================================
   Destination Guide - SEO Text Block
   ============================================ */

.destination-guide-seo-text {
    max-width: 900px;
    margin: 40px auto 20px auto;
    text-align: center;
    padding: 0 15px;
}

.destination-guide-seo-text h2 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.destination-guide-seo-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .destination-guide-seo-text h2 {
        font-size: 1.5rem;
    }
    .destination-guide-seo-text p {
        font-size: 1rem;
    }
}

/* ============================================
   Weather Widget Mobile Responsiveness 
   ============================================ */
@media (max-width: 768px) {
    .weather-widget {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        width: 100% !important;
        margin: 15px 0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .hero-section {
        position: relative;
    }
}

@media (max-width: 480px) {
    .weather-widget {
        padding: 10px;
        font-size: 14px;
    }
    
    .weather-widget .temperature {
        font-size: 24px;
    }
    
    .weather-widget .location {
        font-size: 16px;
    }
}