/* --- Root Variables and Reset (FINAL) --- */
:root {
    --color-saffron: #FF9933; 
    --color-indigo: #1E2749;  
    --color-ash: #ADB5BD;     
    --color-light-ash: #81beff; /* site background changed to a light blue */
    
    /* Typography Scale */
    --font-serif: "Merriweather", serif;
    --font-sans: "Poppins", sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}

* {
    box-sizing: border-box; 
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--color-light-ash);
    padding-top: 70px; 
    overflow-x: hidden;
    color: #333;
}

/* --- TYPOGRAPHY SCALE --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
    margin: var(--spacing-md) 0;
    color: var(--color-indigo);
}

h1 { font-size: 3.2rem; letter-spacing: -0.02em; }
h2 { font-size: 2.4rem; letter-spacing: -0.01em; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin: var(--spacing-sm) 0;
    line-height: 1.8;
}

/* --- BUTTON & LINK STYLES --- */
.cta-button, button, a.cta-button {
    font-family: var(--font-sans);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    background-color: var(--color-saffron);
    color: white;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(255, 153, 51, 0.2);
}

.cta-button:hover, 
.cta-button:focus,
button:hover,
button:focus,
a.cta-button:hover,
a.cta-button:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 153, 51, 0.35);
    outline: 2px solid var(--color-saffron);
    outline-offset: 2px;
}

.cta-button:active,
button:active {
    transform: translateY(0);
}

/* Focus visible for accessibility */
.cta-button:focus-visible,
button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--color-indigo);
    outline-offset: 2px;
}

.card-details-reveal .reveal-content {
    display: flex;
    gap: 16px;
    align-items: stretch;
}

/* Active state: expand within the flow, reveal slides and info */
.accommodation-card-wrapper.active .card-details-reveal {
    max-height: 680px; /* large enough for most content; will scroll if needed */
    padding: 18px 20px 22px 20px;
    opacity: 1;
}

/* Make the card visually expand while reveal shows */
.accommodation-card-wrapper.active {
    z-index: 30;
}

.accommodation-card-wrapper.active .accommodation-card {
    transform: scale(1.03);
    border-radius: 12px;
    opacity: 0.1;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.accommodation-card-wrapper.active .card-content {
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

/* Reveal gallery becomes visible when expanded */
.card-details-reveal .reveal-gallery {
    width: 55%;
    min-height: 220px;
    border-radius: 8px;
    overflow: hidden;
    background: #111;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.accommodation-card-wrapper.active .card-details-reveal .reveal-gallery {
    opacity: 1;
    transform: translateY(0);
}

/* Reveal info column */
.card-details-reveal .reveal-info {
    width: 45%;
    padding: 8px 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Ensure controls sit above when expanded */
.card-details-reveal .reveal-prev, .card-details-reveal .reveal-next, .reveal-close {
    z-index: 40;
}

/* --- EXPANDING PANEL (Book-Style Reveal) --- */
.expanded-panel {
    width: 0;
    height: 100%;
    background: var(--color-indigo);
    color: white;
    position: absolute;
    right: 0;
    top: 0;
    overflow: hidden;
    border-radius: 10px;
    transition: width var(--transition-slow), padding var(--transition-base);
    display: flex;
    flex-direction: column;
    padding: 0; /* becomes visible after expansion */
    z-index: 30;
}

.expanded-panel.open {
    width: 100%;
    padding: 20px;
}

/* Hide card content when expanded */
.accommodation-card.hide {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
}

/* Expanded Content */
.expanded-content {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.expanded-panel.open .expanded-content {
    opacity: 1;
}

/* Gallery inside expanded view */
.expanded-gallery {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}
.expanded-gallery img {
    width: 30%;
    border-radius: 8px;
    height: auto;
    object-fit: cover;
}

/* Close Button */
.close-expanded {
    align-self: flex-end;
    font-size: 22px;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    margin-bottom: 10px;
    transition: transform var(--transition-fast), color var(--transition-fast);
    padding: 8px;
    border-radius: 4px;
}

.close-expanded:hover, .close-expanded:focus {
    transform: scale(1.15) rotate(90deg);
    color: #FFD700;
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Book Now Button */
.book-btn {
    display: inline-block;
    width: auto;
    margin-top: 15px;
    background: #1e90ff; /* changed to blue */
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 6px 18px rgba(30, 144, 255, 0.22);
}

.book-btn:hover, .book-btn:focus {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 28px rgba(16, 124, 230, 0.36);
    outline: 2px solid white;
    outline-offset: 2px;
}

/* When opening, allow the wrapper to show the absolute panel outside clipping */
.accommodation-card-wrapper.opening {
    overflow: visible;
    z-index: 40;
}

/* Responsive adjustments for gallery */
@media (max-width: 700px) {
    .expanded-gallery img { width: 48%; }
    .expanded-panel.open { padding: 16px; }
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.nav-list a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color var(--transition-base), border-bottom var(--transition-base);
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
}

.nav-list a:hover, .nav-list a:focus {
    color: var(--color-indigo);
    border-bottom-color: var(--color-saffron);
    outline: none;
}

.menu-toggle {
    display: none; /* hidden by default; shown only on small screens via media query */
    font-size: 1.8em;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-saffron);
    font-weight: bold;
    line-height: 1;
    z-index: 1100;
}

/* Keep main nav visible by default on wide screens */
.main-nav {
    display: block;
}

/* --- CAROUSEL STYLES (REPLACING HERO SECTION) --- */
/* --- HERO SECTION (full-bleed, overlay + CTA) --- */
.hero {
    position: relative;
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 5%;
    margin-top: -70px; /* allow hero to extend behind fixed header */
    color: #fff;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}
.hero-title {
    font-size: 2.4rem;
    margin: 0 0 10px 0;
    line-height: 1.05;
    text-shadow: 0 6px 18px rgba(0,0,0,0.45);
}
.hero-sub {
    margin: 0 0 18px 0;
    font-size: 1.05rem;
    max-width: 48ch;
}
.hero-cta {
    --cta-bg: var(--color-saffron);
    background: var(--cta-bg);
    color: #111;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.hero-cta:hover, .hero-cta:focus {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}

@media (max-width: 900px) {
    .hero { height: 50vh; margin-top: 0; }
    .hero-title { font-size: 1.6rem; }
    .hero-sub { font-size: 0.95rem; }
    .hero-content { padding: 18px 6px; }
}

.carousel-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    /* Move content up behind fixed header */
    margin-top: -70px;
}

.carousel-track {
    display: flex;
    height: 100%;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0 5%;
    align-items: center;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}
.carousel-track {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* ----- Slide Base ----- */
.slide {
    min-width: 90%; /* Slides take up most of the screen */
    height: 80%;
    background: white;
    border-radius: 30px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    scroll-snap-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    margin: 0 20px;
    overflow: hidden;
}

/* Alternating layout */
.slide.odd { flex-direction: row; }
.slide.even { flex-direction: row-reverse; }

/* ----- Slide Content Layout ----- */
.img-section {
    flex: 1;
    height: 100%;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.2); 
}

.desc-section {
    flex: 1;
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}
.desc-section h2 {
    font-size: 24px;
    color: var(--color-indigo);
    margin-bottom: 10px;
}
.desc-section p {
    color: #444;
}

/* --- Slideshow Dots (positioned relative to the Carousel Container) --- */
.dots {
    position: absolute;
    bottom: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 50;
}

.dots span {
    width: 12px;
    height: 12px;
    background: var(--color-ash);
    border-radius: 50%;
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
}

.dots span:hover {
    background: var(--color-indigo);
    transform: scale(1.3);
}

.dots span.active {
    background: var(--color-indigo);
    transform: scale(1.4);
    box-shadow: 0 0 12px rgba(30, 39, 73, 0.4);
}


/* --- 3. Accommodation Section Styling --- */
.accommodation-section {
    padding: 60px 5%;
    background-color: var(--color-light-ash);
    text-align: center;
}

.section-description {
    max-width: 800px;
    margin: 15px auto 40px auto;
    color: #555;
    font-size: 1.1em;
}

.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Ensure grid items stretch to equal height so cards match sizes */
.accommodation-grid {
    align-items: stretch;
    align-content: start;
}

/* Wrapper for interaction */
.accommodation-card-wrapper {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
    display: flex; /* allow child .accommodation-card to stretch */
    align-items: stretch;
}
.accommodation-card-wrapper:active {
    box-shadow: 0 0 0 3px var(--color-saffron); 
}

.accommodation-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: left;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    cursor: pointer;
    display: flex; /* layout card vertically so image + content align */
    flex-direction: column;
    width: 100%;
    height: 100%; /* fill the wrapper so all cards have equal height */
}

.accommodation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 180px;
    background-color: #ccc;
    background-size: cover;
    background-position: center;
}

.card-content { 
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* keep call-to-action at bottom */
    flex: 1; /* allow content to grow so cards equalize height */
}

.distance-info {
    font-weight: bold;
    color: var(--color-indigo);
    margin: 10px 0;
    padding: 5px 0;
    border-top: 1px solid var(--color-ash);
}

.card-cta {
    display: block;
    text-align: center;
    margin-top: 15px;
}

/* --- CARD DETAILS REVEAL (CLICK/TAP FOR ALL DEVICES) --- */
.card-details-reveal {
    /* In-flow expandable panel (hidden by max-height). No drop-in transform effect. */
    position: relative;
    width: 100%;
    background-color: var(--color-indigo);
    color: white;
    padding: 0 20px; /* padding expands when active */
    font-size: 1.1em;
    border-radius: 8px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.45s ease, padding 0.25s ease;
}

.card-details-reveal.active {
    /* max-height is set dynamically in JS for smooth, content-sized expansion */
    padding: 20px;
}

/* Reveal content layout */
.card-details-reveal .reveal-content {
    display: flex;
    gap: 16px;
    width: 100%;
    align-items: stretch;
}
.card-details-reveal .reveal-gallery {
    position: relative;
    width: 55%;
    min-height: 180px;
    border-radius: 8px;
    overflow: hidden;
    background: #222;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.38s ease, transform 0.38s ease;
}
.card-details-reveal.active .reveal-gallery {
    opacity: 1;
    transform: translateY(0);
}
.card-details-reveal .reveal-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: none;
}
.card-details-reveal .reveal-slide.active { display: block; }
.reveal-prev, .reveal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reveal-prev { left: 10px; }
.reveal-next { right: 10px; }

.card-details-reveal .reveal-info {
    width: 45%;
    padding: 10px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.card-details-reveal .reveal-info p { color: #fff; margin-bottom: 12px; }
.book-now {
    display: inline-block;
    padding: 10px 16px;
    background: #1e90ff; /* blue */
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
}
.book-now:hover { background: #0f78e6; }

/* Make reveal stack vertically on small cards/mobile */
.card-details-reveal .reveal-content { align-items: stretch; }
.card-details-reveal .reveal-gallery, .card-details-reveal .reveal-info { min-height: 160px; }

.accommodation-card-wrapper {
    position: relative;
    transition: all 0.4s ease;
}

/* Base card */
.accommodation-card {
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
    z-index: 1;
}

/* Hover effect (preserve) */
.accommodation-card:hover {
    transform: scale(1.05);
}

/* Expanded card container effect (centered modal-like reveal) */
.card-details-reveal {
    /* baseline: scaled down and positioned over the card wrapper */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.6);
    transform-origin: center center;
    transition: transform 0.4s ease, opacity 0.4s ease, left 0.4s ease, top 0.4s ease;
    z-index: 10;
}

/* When card is expanded: make reveal into a centered, fixed modal */
.accommodation-card-wrapper.active .card-details-reveal {
    position: fixed;
    left: 50%;
    top: 50%;
    width: min(980px, 92vw);
    max-height: 86vh;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
    background-color: var(--color-indigo);
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: auto;
    z-index: 2000;
    overflow: auto;
}

/* Hide original card when expanded */
.accommodation-card-wrapper.active .accommodation-card {
    /* Slightly grow the card so it feels like expanding, and fade its text
       rather than removing the whole card instantly. The reveal modal will
       appear centered on top. */
    transform: scale(1.06);
    border-radius: 14px;
    opacity: 0.08;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

/* Fade out the card content (text) during expansion so the gallery shows through */
.accommodation-card-wrapper.active .card-content {
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

/* Hover overlay on the image to provide a simple quick-reveal */
.card-image {
    position: relative;
    transition: transform var(--transition-base);
}
.card-image::after {
    content: "View details";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translateY(8px);
    background: rgba(0,0,0,0.55);
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base), transform var(--transition-base);
}
.accommodation-card:hover .card-image::after {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
}

/* Close button style: white background circular */
.reveal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 20;
    cursor: pointer;
    background: white;
    border-radius: 50%;
    padding: 6px 10px;
    border: none;
}

/* Close button inside reveal */
.reveal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.35);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 1200;
}
.reveal-close:hover { background: rgba(0,0,0,0.55); }


/* --- 4. Alternating Feature Section (Asymmetrical Layout) --- */
.feature-section-container {
    padding: 60px 0; 
    background-color: #fff;
    text-align: center;
}
.feature-section-container h2 {
    margin-bottom: 40px;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto 50px auto;
    position: relative;
    overflow: hidden; 
}

/* Styling for the skew */
.feature-item .description-box {
    padding: 50px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--color-light-ash);
    position: relative;
    z-index: 10;
}
/* When a description has an inline image, lay out image + text side-by-side */
.feature-item .description-box.has-img {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    /* default: image at start; specific layouts override below */
}
/* place thumbnail on the opposite inner side for standard/reversed layouts */
.feature-item.layout-standard .description-box.has-img { flex-direction: row-reverse; }
.feature-item.layout-reversed .description-box.has-img { flex-direction: row; }

.feature-desc-img {
    width: 160px;
    height: 110px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    transform: translateY(-8px);
    transition: transform 200ms ease, box-shadow 200ms ease;
}
.feature-desc-img:hover, .feature-desc-img:focus {
    transform: translateY(-12px);
    box-shadow: 0 26px 60px rgba(0,0,0,0.18);
}
.feature-desc-img + .desc-text { display: block; }

@media (max-width: 900px) {
    .feature-item .description-box.has-img { flex-direction: column; }
    .feature-desc-img { width: 100%; height: auto; transform: translateY(0); box-shadow: 0 8px 22px rgba(0,0,0,0.08); }
}
.feature-item .image-box {
    background-size: cover;
    background-position: center;
    min-height: 350px;
    position: relative;
    z-index: 5;
}

/* --- STANDARD LAYOUT (Description Left / Image Right) --- */
.layout-standard .image-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%; 
    width: 20%;
    height: 100%;
    background-color: var(--color-light-ash);
    transform: skewX(-5deg); 
    transform-origin: top left;
}


/* --- REVERSED LAYOUT (Image Left / Description Right) --- */
.layout-reversed {
    grid-template-areas: "image description";
}
.layout-reversed .image-box {
    grid-area: image;
}
.layout-reversed .description-box {
    grid-area: description;
}
.layout-reversed .image-box:before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%; 
    width: 20%;
    height: 100%;
    background-color: var(--color-light-ash);
    transform: skewX(5deg); 
    transform-origin: top right;
}


/* --- 5. Testimonial Section Styling --- */
.testimonial-section {
    padding: 60px 5%;
    background-color: white;
    text-align: center;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch; 
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-slider::-webkit-scrollbar { display: none; }
.testimonial-slider { -ms-overflow-style: none; scrollbar-width: none; }

.testimonial-card {
    flex: 0 0 350px; 
    padding: 30px;
    border-radius: 10px;
    background-color: #fcfcfc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-ash);
    text-align: left;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--color-saffron);
}

.testimonial-card .rating {
    font-size: 1.2em;
    color: gold;
    display: block;
    margin-bottom: 10px;
}

.testimonial-card .author {
    margin-top: 15px;
    font-weight: bold;
    color: var(--color-indigo);
}

/* --- 6. Map Section Styling --- */
.map-section {
    padding: 60px 5%;
    background-color: var(--color-light-ash);
    text-align: center;
}

.map-placeholder {
    width: 100%;
    max-width: 1000px;
    height: 450px;
    margin: 20px auto;
    background-color: #ccc; 
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    color: #555;
    border: 5px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-key-distance {
    background-color: #fff;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid var(--color-saffron);
    color: var(--color-indigo);
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 15px;
}

/* --- 7. Enquiry Section Styling --- */
.enquiry-section {
    padding: 60px 5%;
    background-color: #ffffff;
}

.enquiry-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.form-column h3, .contact-column h3 {
    color: var(--color-indigo);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-ash);
}

.enquiry-form input, 
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-fast);
}

.enquiry-form input:focus, 
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    outline: none;
    border-color: var(--color-saffron);
    box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.1);
    transform: scale(1.01);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all var(--transition-base);
    font-weight: 500;
}

.contact-link .icon {
    font-size: 1.4rem;
}

.whatsapp-link {
    background-color: #f0f0f0;
    color: #25d366;
    border-color: #25d366;
}

.whatsapp-link:hover, .whatsapp-link:focus {
    background-color: #25d366;
    color: white;
    transform: translateX(6px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

.mail-link {
    background-color: #f0f0f0;
    color: #1E2749;
    border-color: #1E2749;
}

.mail-link:hover, .mail-link:focus {
    background-color: var(--color-indigo);
    color: white;
    transform: translateX(6px);
    box-shadow: 0 6px 18px rgba(30, 39, 73, 0.3);
}

/* --- Footer Styling --- */
footer {
    background-color: var(--color-indigo);
    color: white;
    text-align: center;
    padding: 20px;
}

/* --- Floating Quick Contact Styling --- */
.qc-whatsapp-fixed {
    position: fixed;
    bottom: 30px; 
    right: 30px; 
    z-index: 9999; 
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4); 
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.whatsapp-logo-img {
    width: 35px;
    height: 35px;
    transform: rotate(15deg); 
}

/* =================================================== */
/* --- RESPONSIVENESS (Mobile View) --- */
/* =================================================== */

@media (max-width: 900px) { 
    
    /* Header: Show Trishula, Hide full Nav */
    .main-nav { display: none; }
    .menu-toggle { display: block; margin-left: auto; }
    /* When toggled on mobile, show nav as overlay */
    .main-nav.active {
        display: block;
        position: absolute;
        top: 70px;
        right: 5%;
        background: #ffffff;
        padding: 12px 18px;
        border-radius: 8px;
        box-shadow: 0 6px 18px rgba(0,0,0,0.12);
        z-index: 1090;
    }
    .main-nav.active .nav-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    /* Carousel Adjustments */
    .carousel-container {
        margin-top: 0; 
    }
    .slide {
        flex-direction: column; 
        height: auto; 
        min-height: 600px;
        min-width: 100%; 
        margin: 0;
        border-radius: 0;
    }
    .slide.odd, .slide.even {
        flex-direction: column;
    }

    .img-section {
        order: 1;
        min-height: 250px;
        border-radius: 0;
    }
    .desc-section {
        order: 2;
        padding: 30px 5%;
    }
    
    /* --- Asymmetrical Layout (STACKING) --- */
    .feature-item {
        grid-template-columns: 1fr; 
        grid-template-areas: 
            "image"
            "description";
    }
    .feature-item .description-box {
        grid-area: description;
        padding: 30px 5%;
    }
    .feature-item .image-box {
        grid-area: image;
        min-height: 250px;
    }
    .feature-item .image-box:before {
        content: none;
    }
    .layout-reversed {
        grid-template-areas: 
            "image"
            "description";
    }

    /* Enquiry Section Stack */
    .enquiry-container {
        grid-template-columns: 1fr; 
    }

    /* Testimonial slider adjustment */
    .testimonial-card {
        flex: 0 0 85vw;
    }
}

/* --- Header / Navigation Fixed Top --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    z-index: 1100;
    display: flex;
    align-items: center;
    padding: 0 5%;
    background-color: #ffffff;
    border-bottom: 3px solid var(--color-saffron);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo-area { display: flex; align-items: center; gap: 10px; }
.header-logo-img {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    border: 3px solid var(--color-saffron);
    object-fit: cover;
    display: block;
}

.site-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-indigo);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    z-index: 1110;
}

.main-nav { margin-left: auto; }