:root {
    /* ============================================================
       BRAND COLORS
    ============================================================ */
    --primary: #f36f21;
    --primary-dark: #d65c15;
    --dark: #111111;
    --darker: #0a0a0a;
    --dark-grey: #1a1a1a;
    --grey: #333333;
    --light-grey: #f5f5f5;
    --border: #e0e0e0;
    --white: #ffffff;
    --font-family: 'Inter', sans-serif;

    /* ============================================================
       HERO TEXT — ADJUST THESE TO MANUALLY TUNE THE HERO SECTION
    ============================================================ */

    /* Main title (STRONG / FOUNDATION / STRONGER FUTURE) */
    --hero-title-size: 9rem;
    /* ← change font size */
    --hero-title-line-height: 0.85;
    /* ← tighter = lines closer together */
    --hero-title-letter-spacing: 3px;
    /* ← spacing between letters */
    --hero-title-margin-bottom: 30px;
    /* ← gap below title */

    /* Subtitle (BUILDING TOMORROW) */
    --hero-subtitle-size: 0.85rem;
    --hero-subtitle-spacing: 3px;
    /* ← letter spacing */
    --hero-subtitle-margin: 20px;
    /* ← gap below subtitle */

    /* Description paragraph */
    --hero-desc-size: 1rem;
    --hero-desc-margin: 20px;
    /* ← gap below description */
    --hero-desc-line-height: 1.7;

    /* Left panel content padding (top/bottom, left/right) */
    --hero-content-padding-h: 420px;
    /* ← horizontal padding */
    --hero-content-padding-r: 60px;
    /* ← right padding */
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    color: var(--grey);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.text-primary {
    color: var(--primary);
}

.text-small {
    font-size: 0.8rem;
}

.highlight {
    color: var(--primary);
}

.bg-dark {
    background-color: var(--dark-grey);
}

.bg-light {
    background-color: var(--light-grey);
}

.mt-4 {
    margin-top: 1.5rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.text-center {
    text-align: center;
}

.full-width {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn i {
    margin-left: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--dark);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--dark);
    border-color: var(--border);
}

.btn-outline-dark:hover {
    border-color: var(--dark);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Helpline */
.helpline {
    display: flex;
    align-items: center;
    gap: 10px;
}

.helpline-icon {
    width: 36px;
    height: 36px;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
}

.helpline-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.helpline-title {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    opacity: 0.8;
}

.helpline-number {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
}

/* Navbar */
.navbar {
    background-color: transparent;
    color: var(--white);
    padding: 30px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(243, 111, 33, 0.2);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

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

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

.logo-icon {
    font-size: 2rem;
    color: var(--white);
    font-style: italic;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    font-style: italic;
    color: var(--white);
}

.brand-tag {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s;
}

.mobile-toggle:hover {
    color: var(--primary);
}

/* Helpline Numbers Horizontal Styling */
.helpline-numbers {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    white-space: nowrap;
}

.helpline-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

/* Hero Section - Split Layout */
.hero {
    position: relative;
    display: flex;
    height: 100vh;
    min-height: 700px;
    color: var(--white);
    overflow: hidden;
}

/* LEFT: solid black panel with text */
.hero-left {
    position: relative;
    width: 50%;
    background-color: #000;
    display: flex;
    align-items: center;
    z-index: 2;
    padding-top: 100px;
    /* Right edge fades from black into transparent to blend with image */
    clip-path: none;
}

.hero-left-content {
    padding: 0 var(--hero-content-padding-r) 80px var(--hero-content-padding-h);
    max-width: 600px;
}

/* RIGHT: image panel */
.hero-right {
    position: relative;
    width: 50%;
    background: url('hero.png') no-repeat center center / cover;
    padding-top: 100px;
}

/* Fade overlay on the LEFT side of the image, blending from black to transparent */
.hero-fade-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(to right, #000000 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-subtitle {
    color: var(--white);
    font-size: var(--hero-subtitle-size);
    font-weight: 700;
    letter-spacing: var(--hero-subtitle-spacing);
    margin-bottom: var(--hero-subtitle-margin);
    display: flex;
    align-items: center;
    gap: 10px;
}

.orange-square {
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    display: inline-block;
    flex-shrink: 0;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: var(--hero-title-size);
    font-weight: 400;
    line-height: var(--hero-title-line-height);
    margin-bottom: var(--hero-title-margin-bottom);
    letter-spacing: var(--hero-title-letter-spacing);
    text-transform: uppercase;
}

.hero-desc {
    font-size: var(--hero-desc-size);
    margin-bottom: var(--hero-desc-margin);
    color: #ccc;
    max-width: 420px;
    line-height: var(--hero-desc-line-height);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Features Section */
.features-section {
    padding: 60px 0;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.features-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: var(--dark);
    border: 1px solid #333;
    border-radius: 4px;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 25px;
    gap: 15px;
    border-right: 1px solid #333;
}

.feature-item:last-child {
    border-right: none;
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary);
}

.feature-text h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 4px;
}

.feature-text p {
    color: #999;
    font-size: 0.8rem;
    line-height: 1.3;
}

/* Common Section */
.section {
    padding: 100px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-subtitle {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

/* Categories Section */
.categories-section {
    padding-top: 130px;
    /* space for features bar */
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.category-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 50%);
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-info h3 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
}

.cat-arrow {
    background-color: var(--primary);
    color: var(--white);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 0.8rem;
}

/* Brands Marquee Section */
.brands-section {
    background-color: var(--darker);
    padding: 60px 0 50px;
}

.brands-header {
    margin-bottom: 30px;
}

.brands-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 0;
}

.brands-title span {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 3px;
    white-space: nowrap;
}

.brands-title .line {
    height: 1px;
    flex: 1;
    background-color: #333;
}

/* Marquee Wrapper - clips overflow */
.brands-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* Fade edges left & right */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

/* The scrolling container holding two duplicate tracks */
.brands-marquee {
    display: flex;
    width: max-content;
    animation: marquee-scroll 22s linear infinite;
}

.brands-marquee:hover {
    animation-play-state: paused;
}

/* Each track is a row of logos */
.brands-track {
    display: flex;
    gap: 0;
}

.brand-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    gap: 10px;
    border-right: 1px solid #222;
    min-width: 180px;
    transition: background 0.3s;
}

.brand-logo-item:hover {
    background-color: #1a1a1a;
}

.brand-logo-item img {
    height: 60px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: none;
    transition: transform 0.3s;
}

.brand-logo-item:hover img {
    transform: scale(1.08);
}

.brand-logo-item p {
    color: #999;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.brand-logo-item:hover p {
    color: var(--primary);
}

/* Keyframe: scroll from 0 to -50% (= one full track width) */
@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.about-list li {
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--dark);
}

.about-list i {
    margin-right: 10px;
}

.about-image-wrapper {
    position: relative;
}

.about-main-img {
    width: 100%;
    border-radius: 4px;
    display: block;
}

.quality-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--dark);
    color: var(--white);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 4px;
}

.badge-icon {
    color: var(--primary);
    font-size: 2rem;
}

.badge-text h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.badge-text p {
    color: #999;
    font-size: 0.9rem;
}

.experience-stats {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 30px;
    border-radius: 0 4px 4px 0;
}

.stat-box h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Best Sellers */
.nav-arrows {
    display: flex;
    gap: 10px;
}

.arrow-btn {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 1px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.arrow-btn:hover {
    background-color: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 20px;
    transition: box-shadow 0.3s;
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.product-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.product-details h4 {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 10px;
    min-height: 48px;
}

.product-details .price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}

.product-details .price span {
    font-size: 0.8rem;
    color: var(--grey);
    font-weight: 400;
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.project-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.project-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.project-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 50%);
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.project-icon {
    background-color: var(--primary);
    color: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.project-text h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 2px;
}

.project-text p {
    color: #ccc;
    font-size: 0.85rem;
}

/* ============================================================
   DELIVERY RANGE SECTION
============================================================ */
.delivery-section {
    padding: 100px 0 120px;
    background: #0d0d0d;
    color: var(--white);
    overflow: hidden;
}

.delivery-header {
    text-align: center;
    margin-bottom: 40px;
}

.delivery-header .section-title {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.delivery-sub {
    color: #aaa;
    font-size: 1rem;
    max-width: 550px;
    margin: 0 auto;
}

/* Big KM display */
.km-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 50px;
}

.km-badge {
    display: flex;
    align-items: baseline;
    gap: 8px;
    background: var(--primary);
    padding: 18px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(243, 111, 33, 0.4);
}

.km-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    line-height: 1;
    color: white;
    display: inline-block;
    transition: transform 0.2s;
}

.km-number.km-pop {
    animation: kmPop 0.3s ease;
}

@keyframes kmPop {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.km-unit {
    font-size: 1.8rem;
    font-weight: 800;
    color: rgba(255,255,255,0.8);
}

.km-label {
    font-size: 1rem;
    font-weight: 600;
    color: #aaa;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Road Wrapper */
.road-wrapper {
    position: relative;
    padding-bottom: 30px;
}

/* KM Markers above road */
.km-markers {
    position: relative;
    height: 30px;
    margin-bottom: 4px;
}

.km-mark {
    position: absolute;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.km-mark::before {
    content: '';
    display: block;
    width: 2px;
    height: 10px;
    background: #444;
    margin: 0 auto;
}

.km-mark span {
    font-size: 0.75rem;
    color: #888;
    font-weight: 600;
    white-space: nowrap;
}

/* The actual road */
.road {
    position: relative;
    height: 90px;
    background: #1c1c1c;
    border-radius: 8px;
    border: 2px solid #333;
    overflow: visible;
}

/* Dashed center line */
.road-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    transform: translateY(-50%);
    background: repeating-linear-gradient(
        to right,
        #444 0px, #444 30px,
        transparent 30px, transparent 50px
    );
}

/* Orange progress fill */
.road-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(to right, rgba(243,111,33,0.15), rgba(243,111,33,0.05));
    border-radius: 8px 0 0 8px;
    border-right: 3px solid var(--primary);
    width: 0%;
    transition: width 0.55s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
}

/* Snap dots on road */
.snap-dot {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #444;
    border: 2px solid #666;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    transition: background 0.3s, border-color 0.3s;
}

/* Truck wrapper — draggable */
.truck-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-70%);
    width: 260px;
    cursor: grab;
    user-select: none;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.truck-wrapper:active { cursor: grabbing; }

/* Tooltip above truck */
.truck-tooltip {
    background: var(--primary);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 6px;
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(243,111,33,0.6);
    position: relative;
}

.truck-tooltip::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--primary);
}

/* Real truck image wrapper */
.truck-img-wrap {
    width: 260px;
    position: relative;
}

/* The actual truck image */
.truck-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.6));
    transition: filter 0.25s;
    animation: truckBounce 0.6s ease-in-out infinite alternate;
}

.truck-wrapper:hover .truck-img {
    filter: drop-shadow(0 10px 25px rgba(243,111,33,0.5));
}

/* Gentle up-down bounce while idle */
@keyframes truckBounce {
    from { transform: translateY(0px);   }
    to   { transform: translateY(-4px);  }
}

/* Driving shake animation triggered via JS class */
.truck-img.driving {
    animation: truckDrive 0.15s linear infinite;
}

@keyframes truckDrive {
    0%   { transform: translateY(0px) rotate(0deg);   }
    25%  { transform: translateY(-3px) rotate(0.3deg); }
    50%  { transform: translateY(0px) rotate(0deg);   }
    75%  { transform: translateY(-2px) rotate(-0.3deg);}
    100% { transform: translateY(0px) rotate(0deg);   }
}

/* Range Cards row */
.range-cards {
    display: flex;
    gap: 12px;
    margin-top: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.range-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 20px;
    border: 2px solid #333;
    border-radius: 8px;
    background: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 90px;
}

.range-card i {
    font-size: 1.2rem;
    color: #555;
    transition: color 0.3s;
}

.range-card span {
    font-size: 1rem;
    font-weight: 700;
    color: #888;
    transition: color 0.3s;
}

.range-card small {
    font-size: 0.7rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.range-card:hover {
    border-color: var(--primary);
    background: #222;
}

.range-card.active {
    border-color: var(--primary);
    background: rgba(243, 111, 33, 0.12);
}

.range-card.active i {
    color: var(--primary);
}

.range-card.active span {
    color: var(--primary);
}

.range-card.active small {
    color: #f36f21aa;
}

/* CTA Section */
.cta-section {
    background-color: var(--dark);
    border-top: 5px solid var(--primary);
    padding: 40px 0;
}

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

.cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-icon {
    color: var(--primary);
    font-size: 3rem;
}

.cta-text p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.cta-text h2 {
    color: var(--white);
    font-size: 2rem;
}

/* Footer */
.footer {
    background-color: var(--darker);
    color: #999;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 35px;
    height: 35px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #999;
}

.social-links a:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

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

.footer-col ul li a {
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.contact-info i {
    color: var(--white);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* Map Section Split Layout */
.map-section {
    padding: 80px 0;
    background-color: var(--light-grey);
}

.map-flex {
    display: flex;
    gap: 40px;
    align-items: center;
}

.map-details {
    flex: 1;
}

.map-iframe-container {
    flex: 1;
}

.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    background-color: var(--primary);
    color: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-info-text strong {
    display: block;
    color: var(--dark);
    margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-left-content {
        padding: 0 40px 80px 40px;
    }

    .hero-title {
        font-size: 5rem;
    }

    .features-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-item:nth-child(2) {
        border-right: none;
    }

    .feature-item {
        border-bottom: 1px solid #333;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .brands-carousel {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-actions {
        display: none !important;
    }

    .mobile-toggle {
        display: block;
    }

    .navbar {
        height: 75px;
        padding: 15px 0;
    }

    .nav-links {
        display: flex !important;
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: var(--darker);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        overflow-y: auto;
        gap: 25px;
        transition: all 0.3s ease;
        z-index: 999;
        padding-top: 40px;
        padding-bottom: 40px;
        border-top: 1px solid rgba(255,255,255,0.05);
    }

    .nav-links.active {
        left: 0;
    }

    /* Stack hero on mobile */
    .hero {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }

    .hero-left {
        width: 100%;
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .hero-left-content {
        padding: 0 25px 0 25px;
    }

    .hero-right {
        width: 100%;
        height: 300px;
        padding-top: 0;
    }

    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

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

    .features-bar {
        grid-template-columns: 1fr;
    }

    .feature-item {
        border-right: none;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands-carousel {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cta-left {
        flex-direction: column;
    }

    .map-flex {
        flex-direction: column;
    }

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

    

    /* Responsive Modal Tweaks */
    .contact-modal-content,
    .hotel-modal-content {
        padding: 25px 20px !important;
        border-radius: 12px !important;
    }
    .contact-number-card {
        padding: 15px !important;
    }
    .contact-number-value {
        font-size: 1.3rem !important;
    }
    .hotel-modal-header h3 {
        font-size: 1.8rem !important;
    }
    .hotel-modal-header p {
        font-size: 0.9rem !important;
    }
}

/* Callout badge for Hotel Widget (Clickable Button) */
.hotel-callout-badge {
    position: fixed;
    right: 15px;
    top: calc(50% + 230px);
    transform: translateY(-50%);
    background: linear-gradient(135deg, #ff8c00, #ff5400);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 106, 0, 0.4);
    z-index: 1000;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: bubblePulse 2s infinite;
}

.hotel-callout-badge:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 106, 0, 0.6);
    background: linear-gradient(135deg, #ff5400, #ff8c00);
}

@keyframes bubblePulse {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.03); }
}



/* ============================================================
   HOTEL WIDGET (RIGHT POP-OUT)
============================================================ */
.hotel-widget {
    position: fixed;
    right: 0;
    top: 50% !important;
    transform: translateY(-50%) translateX(calc(100% - 60px));
    display: flex;
    align-items: stretch;
    background: var(--darker);
    border: 2px solid var(--primary);
    border-right: none;
    border-radius: 12px 0 0 12px;
    z-index: 999;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 10px 30px rgba(0,0,0,0.5);
    cursor: pointer;
}

.hotel-widget:hover {
    transform: translateY(-50%) translateX(0);
}

.hotel-tab {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    padding: 25px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.hotel-tab-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    color: #aaa;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hotel-tab-title {
    font-size: 1.5rem;
    color: var(--primary);
    white-space: nowrap;
}

.hotel-icon {
    transform: rotate(90deg);
    color: var(--primary);
    font-size: 1rem;
    margin-top: 10px;
    animation: bounceRight 1.5s infinite;
}

.hotel-widget:hover .hotel-icon {
    transform: rotate(-90deg);
    animation: none;
    margin-top: 0;
    margin-bottom: 10px;
}

.hotel-img-wrap {
    width: 320px;
    height: 220px;
    overflow: hidden;
    border-left: 1px solid #333;
}

.hotel-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hotel-widget:hover .hotel-img-wrap img {
    transform: scale(1.08);
}

@keyframes bounceRight {
    0%, 100% { transform: rotate(90deg) translateY(0); }
    50% { transform: rotate(90deg) translateY(-6px); }
}

/* ============================================================
   TAXI CALLOUT BADGE (LEFT SIDE)
============================================================ */
.taxi-callout-badge {
    position: fixed;
    /* Desktop: below both taxi widget AND property widget, shifted right */
    /* taxi center 38%+taxi-half 110px+property height 120px+gap 30px = 38%+260px */
    left: 70px;
    top: calc(38% + 260px);
    transform: none;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    z-index: 1000;
    cursor: pointer;
    border: 2px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: leftBubblePulse 2s infinite;
}

.taxi-callout-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #ff8c00, #ffd700);
}

@keyframes leftBubblePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

/* ============================================================
   TAXI WIDGET (LEFT POP-OUT)
============================================================ */
.taxi-widget {
    position: fixed;
    left: 0;
    top: 38% !important;
    transform: translateY(-50%) translateX(calc(-100% + 60px));
    display: flex;
    align-items: stretch;
    background: var(--darker);
    border: 2px solid #ffd700;
    border-left: none;
    border-radius: 0 12px 12px 0;
    z-index: 999;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 5px 10px 30px rgba(0,0,0,0.5);
    cursor: pointer;
}

.taxi-widget:hover {
    transform: translateY(-50%) translateX(0);
}

.taxi-tab {
    writing-mode: vertical-rl;
    padding: 25px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.taxi-tab-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    color: #aaa;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.taxi-tab-title {
    font-size: 1.5rem;
    color: #ffd700;
    white-space: nowrap;
}

.taxi-icon {
    color: #ffd700;
    font-size: 1rem;
    margin-top: 10px;
    animation: bounceLeft 1.5s infinite;
}

.taxi-widget:hover .taxi-icon {
    transform: rotate(180deg);
    animation: none;
    margin-top: 0;
    margin-bottom: 10px;
}

.taxi-img-wrap {
    width: 320px;
    height: 220px;
    overflow: hidden;
    border-right: 1px solid #333;
}

.taxi-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.taxi-widget:hover .taxi-img-wrap img {
    transform: scale(1.08);
}

@keyframes bounceLeft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ============================================================
   FEATURED PROPERTY WIDGET (LEFT POP-OUT, below Taxi)
============================================================ */
.property-widget {
    position: fixed;
    left: 0;
    /* snug below taxi: taxi center 38%, half-height 110px → bottom at 38%+110px, +2px gap */
    top: calc(38% + 112px);
    transform: translateX(calc(-100% + 60px));
    display: flex;
    align-items: stretch;
    background: var(--darker);
    border: 2px solid #4caf7d;
    border-left: none;
    border-radius: 0 12px 12px 0;
    z-index: 998;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 5px 10px 30px rgba(0,0,0,0.5);
    cursor: pointer;
    text-decoration: none;
}

.property-widget:hover {
    transform: translateX(0);
}

.property-widget-tab {
    writing-mode: vertical-rl;
    padding: 25px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.property-widget-tab-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    color: #aaa;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.property-widget-tab-title {
    font-size: 1.5rem;
    color: #4caf7d;
    white-space: nowrap;
}

.property-widget-icon {
    color: #4caf7d;
    font-size: 1rem;
    margin-top: 10px;
    animation: bounceLeft 1.5s infinite;
}

.property-widget:hover .property-widget-icon {
    transform: rotate(180deg);
    animation: none;
    margin-top: 0;
    margin-bottom: 10px;
}

.property-widget-img-wrap {
    width: 220px;
    height: 120px;
    overflow: hidden;
    border-right: 1px solid #333;
}

.property-widget-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-widget:hover .property-widget-img-wrap img {
    transform: scale(1.08);
}

/* ============================================================
   PROPERTIES MODAL (Enquiry & Listings)
 ============================================================ */
.properties-modal-content {
    background: #0c0c0c;
    border: 2px solid #4caf7d;
    width: 100%;
    max-width: 900px;
    padding: 30px 20px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    animation: modalPop 0.3s ease-out;
    color: var(--white);
    display: flex;
    flex-direction: column;
    max-height: 85vh;
}

.properties-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10;
}

.properties-modal-close:hover {
    color: #4caf7d;
}

.properties-list-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
    overflow-y: auto;
    padding: 10px 5px;
}

.properties-modal-card {
    background: #121212;
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, border-color 0.3s;
}

.properties-modal-card:hover {
    transform: translateY(-5px);
    border-color: #4caf7d;
}

.properties-modal-card-img {
    height: 140px;
    position: relative;
    overflow: hidden;
}

.properties-modal-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.properties-modal-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #4caf7d;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.properties-modal-card-body {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.properties-modal-card-type {
    color: #4caf7d;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
}

.properties-modal-card-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.properties-modal-card-loc {
    color: #aaa;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.properties-modal-card-desc {
    color: #888;
    font-size: 0.75rem;
    line-height: 1.4;
    margin-bottom: 15px;
    flex: 1;
}

.properties-modal-card-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

@media (max-width: 900px) {
    .properties-list-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .properties-list-container {
        grid-template-columns: 1fr;
        max-height: 55vh;
    }
    .properties-modal-content {
        padding: 20px 15px;
    }
}


/* ============================================================
   QUOTE MODAL
============================================================ */
.quote-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.quote-modal-content {
    background: #fff;
    width: 100%;
    max-width: 450px;
    padding: 40px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    animation: modalPop 0.3s ease-out;
}

@keyframes modalPop {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.quote-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.quote-modal-close:hover {
    color: #333;
}

.quote-form-group {
    margin-bottom: 20px;
}

.quote-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
}

.quote-form-group input,
.quote-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

/* ============================================================
   CONTACT US GLOW BUTTON & MODAL
============================================================ */
.nav-links a.nav-contact-btn {
    background: linear-gradient(135deg, var(--primary) 0%, #ff6a00 100%);
    color: var(--white) !important;
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 106, 0, 0.4);
    animation: pulseGlow 2s infinite;
    font-weight: 700;
    margin-left: 5px;
    display: inline-block;
    align-self: center;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 106, 0, 0);
        transform: scale(1.04);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 106, 0, 0);
        transform: scale(1);
    }
}

.contact-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.contact-modal-content {
    background: #111;
    border: 2px solid var(--primary);
    width: 100%;
    max-width: 480px;
    padding: 40px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    animation: modalPop 0.3s ease-out;
    color: var(--white);
    text-align: center;
}

.contact-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.contact-modal-close:hover {
    color: var(--primary);
}

.contact-modal-header {
    margin-bottom: 30px;
}

.contact-modal-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
    animation: phonePulse 1.5s infinite alternate;
}

@keyframes phonePulse {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.contact-modal-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-modal-header p {
    font-size: 0.95rem;
    color: #aaa;
}

.contact-numbers-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-number-card {
    background: #181818;
    border: 1px solid #333;
    padding: 20px;
    border-radius: 12px;
    transition: border-color 0.3s;
}

.contact-number-card:hover {
    border-color: var(--primary);
}

.contact-number-name {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-number-value {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.contact-number-actions {
    display: flex;
    gap: 10px;
}

.contact-action-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s, opacity 0.2s;
    text-decoration: none;
    color: var(--white);
}

.contact-action-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.contact-action-btn.call {
    background: var(--primary);
}

.contact-action-btn.whatsapp {
    background: #25d366;
}

/* ============================================================
   HOTEL & RESTAURANT MODAL & SLIDE VIEW
============================================================ */
.hotel-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.hotel-modal-content {
    background: #111;
    border: 2px solid #ff6a00;
    width: 100%;
    max-width: 980px;
    padding: 40px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
    animation: modalPop 0.3s ease-out;
    color: var(--white);
    max-height: 90vh;
    overflow-y: auto;
    margin: auto;
}

.hotel-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10;
}

.hotel-modal-close:hover {
    color: #ff6a00;
}

.hotel-modal-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

.hotel-modal-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--white);
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}

.hotel-modal-header p {
    font-size: 1rem;
    color: #aaa;
}

.hotel-modal-body {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: start;
}

.hotel-sub-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: #ff6a00;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hotel-video-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-menu-wrapper {
    position: relative;
    border: 1px solid #333;
    border-radius: 8px;
    height: 320px;
    overflow-y: auto;
    background: #080808;
}

/* custom scrollbar for menu wrapper */
.hotel-menu-wrapper::-webkit-scrollbar {
    width: 6px;
}
.hotel-menu-wrapper::-webkit-scrollbar-track {
    background: #111;
}
.hotel-menu-wrapper::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}
.hotel-menu-wrapper::-webkit-scrollbar-thumb:hover {
    background: #ff6a00;
}

.hotel-menu-img {
    width: 100%;
    height: auto;
    display: block;
    cursor: zoom-in;
    transition: filter 0.3s;
}

.hotel-menu-img:hover {
    filter: brightness(1.1);
}

.hotel-menu-zoom-hint {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.75);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    color: var(--white);
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Full screen menu viewer */
.menu-zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.menu-zoom-overlay img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0,0,0,0.8);
}

@media (max-width: 768px) {
    .hotel-modal-body {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .hotel-menu-wrapper {
        height: 250px;
    }
}





/* Swastik Group Callout Badge */
#site-resort .group-callout-badge {
    position: fixed;
    right: 15px;
    top: calc(50% + 230px);
    transform: translateY(-50%);
    background: linear-gradient(135deg, #1e5128, #4e9f3d);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(30, 81, 40, 0.4);
    z-index: 1000;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: bubblePulse 2s infinite;
}
#site-resort .group-callout-badge:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 8px 25px rgba(30, 81, 40, 0.6);
    background: linear-gradient(135deg, #4e9f3d, #1e5128);
}

/* ==== RESORT SITE SCOPED STYLES ==== */
/* ============================================================
   SWASTIK WILDERNESS RESORT - DESIGN SYSTEM & STYLE SHEET
============================================================ */

#site-resort {
    --primary: #1e5128;
    --primary-light: #4e9f3d;
    --accent: #d8b257;
    --accent-hover: #c49a3c;
    --dark: #191a19;
    --darker: #0d0f0d;
    --light: #f4f7f5;
    --white: #ffffff;
    --text-dark: #2c302e;
    --text-muted: #6b7280;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
}

#site-resort * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

#site-resort {
    overflow-x: hidden;
}

#site-resort {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

#site-resort h1, #site-resort h2, #site-resort h3, #site-resort h4, #site-resort h5, #site-resort h6 {
    font-weight: 700;
    line-height: 1.2;
}

#site-resort .font-title {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

#site-resort a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

#site-resort img {
    max-width: 100%;
    height: auto;
    display: block;
}

#site-resort .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   NAVIGATION
============================================================ */
#site-resort .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
}

#site-resort .navbar.scrolled {
    background: var(--darker);
    height: 80px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
    border-bottom: 1px solid rgba(30, 81, 40, 0.2);
}

#site-resort .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

#site-resort .logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

#site-resort .logo-icon {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(30, 81, 40, 0.4);
    border: 1px solid var(--accent);
}

#site-resort .logo-text {
    display: flex;
    flex-direction: column;
}

#site-resort .brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--white);
    letter-spacing: 2px;
}

#site-resort .brand-tag {
    font-size: 0.65rem;
    color: var(--accent);
    letter-spacing: 4px;
    text-transform: uppercase;
}

#site-resort .nav-links {
    display: flex;
    gap: 16px;
    align-items: center;
}

#site-resort .nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
    text-transform: uppercase;
    white-space: nowrap;
}

#site-resort .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover,
#site-resort .nav-links a.active {
    color: var(--white);
}

.nav-links a:hover::after,
#site-resort .nav-links a.active::after {
    width: 100%;
}

#site-resort .nav-btn {
    background: var(--accent);
    color: var(--darker);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid var(--accent);
}

#site-resort .nav-btn:hover {
    background: transparent;
    color: var(--white);
}

/* Mobile Menu Toggle */
#site-resort .mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ============================================================
   HERO SECTION
============================================================ */
#site-resort .hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

#site-resort .hero-bg-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#site-resort .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.05);
}

#site-resort .hero-slide.active {
    opacity: 1;
    animation: zoomSlow 15s forwards;
}

@keyframes zoomSlow {
    from { transform: scale(1.08); }
    to { transform: scale(1); }
}

#site-resort .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

#site-resort .hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    padding: 0 24px;
}

#site-resort .hero-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hero-subtitle::before,
#site-resort .hero-subtitle::after {
    content: '';
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

#site-resort .hero-title {
    font-size: 5rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 3px;
    margin-bottom: 24px;
    line-height: 1;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.5);
}

#site-resort .hero-desc {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

#site-resort .hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

#site-resort .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

#site-resort .btn-primary {
    background-color: var(--accent);
    color: var(--darker);
    border: 2px solid var(--accent);
}

#site-resort .btn-primary:hover {
    background-color: transparent;
    color: var(--white);
}

#site-resort .btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

#site-resort .btn-outline:hover {
    background-color: var(--white);
    color: var(--darker);
}

#site-resort .hero-scroll-btn {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--white);
    font-size: 1.5rem;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
40% { transform: translateY(-10px) translateX(-50%); }
60% { transform: translateY(-5px) translateX(-50%); }
}

/* ============================================================
   SECTIONS GENERAL
============================================================ */
#site-resort .section {
    padding: 100px 0;
}

#site-resort .section-bg-dark {
    background-color: var(--darker);
    color: var(--white);
}

#site-resort .section-bg-light {
    background-color: var(--light);
}

#site-resort .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

#site-resort .section-subtitle {
    color: var(--primary-light);
    font-size: 0.9rem;
    letter-spacing: 4px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

#site-resort .section-bg-dark .section-subtitle {
    color: var(--accent);
}

#site-resort .section-title {
    font-size: 2.8rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    color: inherit;
    margin-bottom: 20px;
}

#site-resort .section-desc {
    color: var(--text-muted);
}

#site-resort .section-bg-dark .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   ABOUT SECTION
============================================================ */
#site-resort .about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

#site-resort .about-left-content {
    padding-right: 20px;
}

#site-resort .about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

#site-resort .about-feature-item {
    display: flex;
    gap: 15px;
}

#site-resort .about-feature-icon {
    font-size: 1.8rem;
    color: var(--primary-light);
}

#site-resort .about-feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

#site-resort .about-feature-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

#site-resort .about-images-stack {
    position: relative;
    height: 480px;
}

#site-resort .about-img-1 {
    width: 80%;
    border-radius: 12px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    z-index: 2;
}

#site-resort .about-img-2 {
    width: 70%;
    border-radius: 12px;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    right: 0;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    z-index: 1;
}

#site-resort .about-badge {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background-color: var(--primary);
    color: var(--accent);
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    z-index: 3;
    border: 1px solid var(--accent);
    text-align: center;
}

#site-resort .about-badge h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    line-height: 1;
}

#site-resort .about-badge p {
    font-size: 0.75rem;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ============================================================
   ACCOMMODATIONS SECTION
============================================================ */
#site-resort .acc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

#site-resort .acc-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

#site-resort .acc-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

#site-resort .acc-img-wrap {
    height: 250px;
    overflow: hidden;
    position: relative;
}

#site-resort .acc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

#site-resort .acc-card:hover .acc-img-wrap img {
    transform: scale(1.1);
}

#site-resort .acc-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#site-resort .acc-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

#site-resort .acc-body h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--darker);
}

#site-resort .acc-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

#site-resort .acc-specs {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

#site-resort .acc-spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-dark);
}

#site-resort .acc-spec-item i {
    color: var(--primary-light);
}

#site-resort .acc-gallery-btn {
    margin-top: 20px;
    padding: 12px;
    background: var(--light);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#site-resort .acc-gallery-btn:hover {
    background: var(--primary);
    color: var(--white);
}

/* ============================================================
   ACTIVITIES SECTION
============================================================ */
#site-resort .act-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

#site-resort .act-card {
    background: var(--dark);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

#site-resort .act-img-wrap {
    height: 100%;
    min-height: 250px;
    overflow: hidden;
}

#site-resort .act-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

#site-resort .act-card:hover .act-img-wrap img {
    transform: scale(1.08);
}

#site-resort .act-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#site-resort .act-content i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
}

#site-resort .act-content h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 12px;
}

#site-resort .act-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   GALLERY
============================================================ */
#site-resort .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 16px;
}

#site-resort .gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow);
}

#site-resort .gallery-item.tall {
    grid-row: span 2;
}

#site-resort .gallery-item.wide {
    grid-column: span 2;
}

#site-resort .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

#site-resort .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 60, 36, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

#site-resort .gallery-overlay i {
    font-size: 2rem;
    color: var(--accent);
    transform: scale(0.5);
    transition: var(--transition);
}

#site-resort .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

#site-resort .gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

#site-resort .gallery-item:hover img {
    transform: scale(1.1);
}

/* ============================================================
   BOOKING ENQUIRY SECTION
============================================================ */
#site-resort .book-section {
    position: relative;
    background: linear-gradient(135deg, var(--darker) 0%, var(--primary) 100%);
    color: var(--white);
    overflow: hidden;
}

#site-resort .book-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('L 1.png');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    pointer-events: none;
}

#site-resort .book-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

#site-resort .book-info h2 {
    color: var(--accent);
}

#site-resort .book-contact-list {
    margin-top: 40px;
}

#site-resort .book-contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

#site-resort .book-contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(216, 178, 87, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
    border: 1px solid rgba(216, 178, 87, 0.2);
}

#site-resort .book-contact-details h4 {
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 4px;
}

#site-resort .book-contact-details p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

#site-resort .book-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
}

#site-resort .book-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

#site-resort .form-group-full {
    grid-column: span 2;
}

#site-resort .form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--accent);
}

.form-group input,
.form-group select,
#site-resort .form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
#site-resort .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
}

#site-resort .form-group select option {
    background: var(--darker);
    color: var(--white);
}

#site-resort .form-checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 10px;
}

#site-resort .checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

#site-resort .checkbox-label input {
    width: auto;
    cursor: pointer;
}

#site-resort .book-submit-btn {
    grid-column: span 2;
    margin-top: 10px;
    background: var(--accent);
    color: var(--darker);
    border: none;
    font-weight: 700;
    justify-content: center;
    border-radius: 8px;
}

#site-resort .book-submit-btn:hover {
    background: var(--white);
    color: var(--darker);
}

/* ============================================================
   LIGHTBOX MODAL & GALLERY POPUPS
============================================================ */
#site-resort .lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

#site-resort .lightbox-content {
    max-width: 90%;
    max-height: 85%;
    position: relative;
}

#site-resort .lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    border: 2px solid var(--accent);
    object-fit: contain;
}

#site-resort .lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

#site-resort .lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

#site-resort .lightbox-arrow:hover {
    background: var(--accent);
    color: var(--darker);
}

#site-resort .lightbox-prev {
    left: -80px;
}

#site-resort .lightbox-next {
    right: -80px;
}

#site-resort .lightbox-caption {
    color: var(--accent);
    text-align: center;
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Room Gallery Slideout Overlay */
#site-resort .room-gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 1500;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#site-resort .room-gallery-content {
    background: var(--white);
    width: 100%;
    max-width: 800px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: modalPop 0.4s ease;
}

#site-resort .room-gallery-header {
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary);
    color: var(--white);
}

#site-resort .room-gallery-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

#site-resort .room-gallery-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

#site-resort .room-gallery-body {
    padding: 30px;
}

#site-resort .room-slideshow {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

#site-resort .room-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

#site-resort .room-slide-img.active {
    display: block;
}

#site-resort .room-slideshow-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#site-resort .room-slideshow-prev { left: 15px; }
#site-resort .room-slideshow-next { right: 15px; }

#site-resort .room-slideshow-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

#site-resort .room-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: var(--transition);
}

#site-resort .room-dot.active {
    background: var(--primary);
    width: 25px;
    border-radius: 10px;
}

/* ============================================================
   FOOTER
============================================================ */
#site-resort .footer {
    background-color: var(--darker);
    color: var(--white);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

#site-resort .footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

#site-resort .footer-logo {
    margin-bottom: 20px;
}

#site-resort .footer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

#site-resort .footer-socials {
    display: flex;
    gap: 15px;
}

#site-resort .footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#site-resort .footer-socials a:hover {
    background: var(--accent);
    color: var(--darker);
    border-color: var(--accent);
    transform: translateY(-3px);
}

#site-resort .footer-col h3 {
    font-size: 1.1rem;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

#site-resort .footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

#site-resort .footer-col ul {
    list-style: none;
}

#site-resort .footer-col ul li {
    margin-bottom: 15px;
}

#site-resort .footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

#site-resort .footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

#site-resort .footer-contact li {
    display: flex;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

#site-resort .footer-contact i {
    color: var(--accent);
    margin-top: 5px;
}

#site-resort .footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

/* ============================================================
   RESPONSIVENESS
============================================================ */
@media (max-width: 1024px) {
#site-resort .hero-title {
        font-size: 4rem;
    }
    
    #site-resort .about-grid,
#site-resort .book-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
#site-resort .about-images-stack {
        height: 420px;
        max-width: 500px;
        margin: 0 auto;
    }
    
#site-resort .acc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
#site-resort .act-grid {
        grid-template-columns: 1fr;
    }
    
#site-resort .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
#site-resort .navbar {
        height: 75px;
    }
    
#site-resort .navbar.scrolled {
        height: 70px;
    }
    
#site-resort .nav-links {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: var(--darker);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        overflow-y: auto;
        gap: 30px;
        transition: var(--transition);
        z-index: 999;
        padding-top: 40px;
        padding-bottom: 40px;
        border-top: 1px solid rgba(255,255,255,0.05);
    }
    
#site-resort .nav-links.active {
        left: 0;
    }
    
#site-resort .mobile-toggle {
        display: block;
    }
    
#site-resort .nav-btn {
        display: none; /* or put inside menu */
    }
    
#site-resort .hero-title {
        font-size: 3rem;
    }
    
#site-resort .hero-desc {
        font-size: 1rem;
    }
    
#site-resort .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
#site-resort .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
#site-resort .acc-grid {
        grid-template-columns: 1fr;
    }
    
#site-resort .act-card {
        grid-template-columns: 1fr;
    }
    
#site-resort .act-img-wrap {
        height: 200px;
    }
    
#site-resort .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
#site-resort .book-card {
        padding: 24px;
    }
    
#site-resort .book-form {
        grid-template-columns: 1fr;
    }
    
#site-resort .form-group-full {
        grid-column: span 1;
    }
    
#site-resort .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
#site-resort .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
#site-resort .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    
    .gallery-item.wide,
#site-resort .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    #site-resort .lightbox-prev {
        left: 10px;
        display: flex !important;
    }
    #site-resort .lightbox-next {
        right: 10px;
        display: flex !important;
    }
    #site-resort .lightbox-arrow {
        background: rgba(0, 0, 0, 0.75);
        border: 1px solid rgba(255, 255, 255, 0.25);
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    #site-resort .room-slideshow {
        height: 260px;
    }
    #site-resort .about-images-stack {
        height: 280px !important;
    }
}

/* ============================================================
   SWASTIK GROUP WIDGET (RIGHT POP-OUT)
============================================================ */
#site-resort .group-widget {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(calc(100% - 60px));
    display: flex;
    align-items: stretch;
    background: var(--darker);
    border: 2px solid var(--accent);
    border-right: none;
    border-radius: 12px 0 0 12px;
    z-index: 999;
    transition: var(--transition);
    box-shadow: -5px 10px 30px rgba(0,0,0,0.5);
    cursor: pointer;
}

#site-resort .group-widget:hover {
    transform: translateY(-50%) translateX(0);
}

#site-resort .group-tab {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    padding: 25px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

#site-resort .group-tab-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    color: #aaa;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#site-resort .group-tab-title {
    font-size: 1.5rem;
    color: var(--accent);
    white-space: nowrap;
}

#site-resort .group-icon {
    transform: rotate(90deg);
    color: var(--accent);
    font-size: 1rem;
    margin-top: 10px;
    animation: bounceRightGroup 1.5s infinite;
}

#site-resort .group-widget:hover .group-icon {
    transform: rotate(-90deg);
    animation: none;
    margin-top: 0;
    margin-bottom: 10px;
}

#site-resort .group-img-wrap {
    width: 320px;
    height: 220px;
    overflow: hidden;
    border-left: 1px solid #333;
}

#site-resort .group-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

#site-resort .group-widget:hover .group-img-wrap img {
    transform: scale(1.08);
}

@keyframes bounceRightGroup {
0%, 100% { transform: rotate(90deg) translateY(0); }
50% { transform: rotate(90deg) translateY(-6px); }
}

/* ============================================================
   MAP SECTION
============================================================ */
#site-resort .map-section {
    padding: 80px 0;
    background-color: var(--light);
}

#site-resort .map-flex {
    display: flex;
    gap: 50px;
    align-items: center;
}

#site-resort .map-details {
    flex: 1;
}

#site-resort .map-iframe-container {
    flex: 1.2;
    box-shadow: var(--shadow-lg);
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid var(--accent);
}

@media (max-width: 1024px) {
#site-resort .map-flex {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
#site-resort .map-iframe-container {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* ============================================================
   CONTACT US GLOW BUTTON & MODAL (RESORT SYSTEM)
============================================================ */
#site-resort .nav-links a.nav-contact-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white) !important;
    padding: 8px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(216, 178, 87, 0.4);
    animation: pulseGlowResort 2s infinite;
    font-weight: 700;
    margin-left: 10px;
    display: inline-block;
    align-self: center;
}

@keyframes pulseGlowResort {
0% {
        box-shadow: 0 0 0 0 rgba(216, 178, 87, 0.7);
        transform: scale(1);
    }
50% {
        box-shadow: 0 0 0 10px rgba(216, 178, 87, 0);
        transform: scale(1.04);
    }
100% {
        box-shadow: 0 0 0 0 rgba(216, 178, 87, 0);
        transform: scale(1);
    }
}

#site-resort .contact-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#site-resort .contact-modal-content {
    background: var(--darker);
    border: 2px solid var(--accent);
    width: 100%;
    max-width: 480px;
    padding: 40px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    animation: modalPop 0.3s ease-out;
    color: var(--white);
    text-align: center;
}

#site-resort .contact-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

#site-resort .contact-modal-close:hover {
    color: var(--accent);
}

#site-resort .contact-modal-header {
    margin-bottom: 30px;
}

#site-resort .contact-modal-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 15px;
    animation: phonePulseResort 1.5s infinite alternate;
}

@keyframes phonePulseResort {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

#site-resort .contact-modal-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

#site-resort .contact-modal-header p {
    font-size: 0.95rem;
    color: #aaa;
}

#site-resort .contact-numbers-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#site-resort .contact-number-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    transition: border-color 0.3s;
}

#site-resort .contact-number-card:hover {
    border-color: var(--accent);
}

#site-resort .contact-number-name {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

#site-resort .contact-number-value {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

#site-resort .contact-number-actions {
    display: flex;
    gap: 10px;
}

#site-resort .contact-action-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s, opacity 0.2s;
    text-decoration: none;
    color: var(--white);
}

#site-resort .contact-action-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

#site-resort .contact-action-btn.call {
    background: var(--primary);
}

#site-resort .contact-action-btn.whatsapp {
    background: #25d366;
}




/* ============================================================
   MOBILE OVERRIDES — FINAL CLEAN VERSION
============================================================ */

/* mobile-helpline & mobileHotelBtn & mobileTaxiBtn: hidden on desktop, shown in mobile menu */
.mobile-helpline {
    display: none;
}
#mobileHotelBtn, #mobileTaxiBtn, #resortMobileGroupBtn, #resortMobileTaxiBtn {
    display: none;
}

@keyframes bubblePulseMobile {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(255,106,0,0.4); }
    50% { transform: scale(1.06); box-shadow: 0 6px 25px rgba(255,106,0,0.7); }
}

@keyframes bubblePulseMobileGold {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(216,178,87,0.4); }
    50% { transform: scale(1.06); box-shadow: 0 6px 25px rgba(216,178,87,0.7); }
}

/* ===== 992px breakpoint: Tablets & small laptops ===== */
@media (max-width: 992px) {

    /* --- Widgets: collapse to peek-out tab --- */
    .hotel-widget,
    #site-resort .group-widget {
        display: flex !important;
        height: 160px !important;
        width: auto !important;
        transform: translateY(-50%) translateX(calc(100% - 44px)) !important;
    }
    .hotel-widget:hover,
    .hotel-widget:focus,
    #site-resort .group-widget:hover,
    #site-resort .group-widget:focus {
        transform: translateY(-50%) translateX(0) !important;
    }

    .taxi-widget {
        display: flex !important;
        height: 160px !important;
        width: auto !important;
        transform: translateY(-50%) translateX(calc(-100% + 44px)) !important;
    }
    .taxi-widget:hover,
    .taxi-widget:focus {
        transform: translateY(-50%) translateX(0) !important;
    }

    /* Property widget: smaller on mobile, peeking from left below taxi */
    .property-widget {
        display: flex !important;
        height: 130px !important;
        width: auto !important;
        top: calc(50% + 130px) !important; /* sits below taxi widget with gap */
        transform: translateX(calc(-100% + 44px)) !important;
    }
    .property-widget:hover,
    .property-widget:focus {
        transform: translateX(0) !important;
    }
    .property-widget-tab {
        width: 44px !important;
        padding: 12px 10px !important;
    }
    .property-widget-tab-sub {
        display: none !important;
    }
    .property-widget-tab-title {
        font-size: 0.9rem !important;
        letter-spacing: 1px !important;
        max-height: 90px;
        overflow: hidden;
    }
    .property-widget-icon {
        font-size: 0.8rem !important;
        margin-top: 6px !important;
    }
    .property-widget-img-wrap {
        width: 130px !important;
        height: 130px !important;
    }

    .hotel-tab,
    .taxi-tab,
    #site-resort .group-tab {
        width: 44px !important;
        padding: 15px 10px !important;
    }

    /* Shorten the vertical tab text so it fits */
    .hotel-tab-title,
    .taxi-tab-title {
        font-size: 1rem !important;
        letter-spacing: 1px !important;
        max-height: 100px;
        overflow: hidden;
    }
    #site-resort .group-tab-title {
        font-size: 0.75rem !important;
        letter-spacing: 0.5px !important;
        max-height: 110px;
        overflow: hidden;
    }

    .hotel-tab-sub,
    .taxi-tab-sub,
    #site-resort .group-tab-sub {
        display: none !important;
    }
    .hotel-icon,
    .taxi-icon,
    #site-resort .group-icon {
        font-size: 0.8rem !important;
        margin-top: 6px !important;
    }
    .hotel-img-wrap,
    .taxi-img-wrap,
    #site-resort .group-img-wrap {
        width: 145px !important;
        height: 160px !important;
    }

    /* --- Callout badges: move to bottom-right corner --- */
    .hotel-callout-badge,
    #site-resort .group-callout-badge {
        display: flex;
        position: fixed !important;
        right: 16px !important;
        bottom: 85px !important;
        top: auto !important;
        transform: none !important;
        font-size: 0.8rem !important;
        padding: 9px 15px !important;
        z-index: 1001 !important;
        animation: bubblePulseMobile 2.2s ease-in-out infinite !important;
        white-space: nowrap !important;
    }
    .taxi-callout-badge {
        display: flex;
        position: fixed !important;
        left: 16px !important;
        bottom: 24px !important;
        top: auto !important;
        transform: none !important;
        font-size: 0.8rem !important;
        padding: 9px 15px !important;
        z-index: 1001 !important;
        animation: bubblePulseMobile 2.2s ease-in-out infinite !important;
        white-space: nowrap !important;
        background: linear-gradient(135deg, #ffd700, #ff8c00) !important;
        color: #000 !important;
    }
    #site-resort .group-callout-badge {
        animation: bubblePulseMobileGold 2.2s ease-in-out infinite !important;
        right: 16px !important;
        left: auto !important;
    }

    /* Prevent iOS zoom on input focus */
    input, select, textarea {
        font-size: 16px !important;
    }

    /* Resort hero title */
    #site-resort .hero-title {
        font-size: clamp(2rem, 8vw, 3rem) !important;
        line-height: 1.15 !important;
    }
}

/* ===== 768px breakpoint: Mobile phones ===== */
@media (max-width: 768px) {

    /* --- Navigation --- */
    .mobile-helpline {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-top: 30px;
        padding: 20px 0 0;
        border-top: 1px solid rgba(255,255,255,0.1);
        width: 85%;
    }
    #mobileHotelBtn, #mobileTaxiBtn, #resortMobileGroupBtn, #resortMobileTaxiBtn {
        display: inline-flex !important;
        align-items: center;
        gap: 8px;
    }
    .mobile-helpline .helpline-title {
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--primary);
        margin-bottom: 4px;
    }
    #site-resort .mobile-helpline .helpline-title {
        color: #d8b257;
    }
    .mobile-helpline .helpline-number {
        font-size: 1.05rem;
        font-weight: 700;
        color: #fff !important;
        text-decoration: none;
    }
    .mobile-helpline .helpline-number:hover {
        color: var(--primary) !important;
    }
    #site-resort .mobile-helpline .helpline-number:hover {
        color: #d8b257 !important;
    }

    /* --- Section headers --- */
    .section-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 14px !important;
        margin-bottom: 28px !important;
    }
    .section-title {
        font-size: 1.75rem !important;
    }
    #site-resort .section-header {
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    #site-resort .section-title {
        font-size: 2rem !important;
    }

    #site-resort .about-features {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin: 25px 0 !important;
    }
    #site-resort .about-badge {
        left: 10px !important;
        bottom: 20px !important;
        padding: 12px 20px !important;
    }
    #site-resort .about-images-stack {
        width: 100% !important;
        height: 350px !important;
        max-width: 100% !important;
        margin-top: 30px !important;
        position: relative !important;
    }
    #site-resort .about-img-1 {
        width: 80% !important;
        height: 220px !important;
    }
    #site-resort .about-img-2 {
        width: 70% !important;
        height: 190px !important;
    }
    #site-resort .about-img-1 img,
    #site-resort .about-img-2 img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    /* --- Hero buttons: stack vertically --- */
    .hero-buttons {
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
    }
    .hero-buttons .btn {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
    }
    /* Resort hero btns */
    #site-resort .hero-btns {
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
    }
    #site-resort .hero-btns .btn {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
    }

    /* --- Logo sizing --- */
    .brand-name {
        font-size: 1.25rem !important;
    }
    .logo-icon {
        font-size: 1.6rem !important;
    }
    #site-resort .brand-name {
        font-size: 1.35rem !important;
        letter-spacing: 1px !important;
    }
    #site-resort .brand-tag {
        font-size: 0.55rem !important;
        letter-spacing: 1.5px !important;
    }
    #site-resort .logo-icon {
        font-size: 1.7rem !important;
    }

    /* --- Modals: scrollable on small screens --- */
    .contact-modal-overlay,
    .hotel-modal-overlay,
    .quote-modal-overlay,
    #site-resort .contact-modal-overlay,
    #site-resort .room-gallery-modal {
        align-items: flex-start !important;
        overflow-y: auto !important;
        padding: 12px 10px !important;
    }
    .contact-modal-content,
    .hotel-modal-content,
    .quote-modal-content,
    #site-resort .contact-modal-content,
    #site-resort .room-gallery-content {
        margin: 40px auto !important;
        width: 100% !important;
        max-width: calc(100vw - 20px) !important;
        box-sizing: border-box !important;
        padding: 24px 18px !important;
    }
    .hotel-modal-body {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .hotel-menu-wrapper {
        height: auto !important;
        max-height: 300px !important;
    }
    .hotel-modal-header h3 {
        font-size: 1.6rem !important;
    }
    .contact-number-value {
        font-size: 1.3rem !important;
    }

    /* Resort room gallery modal */
    #site-resort .room-gallery-content {
        border-radius: 14px !important;
    }
    #site-resort .room-gallery-body {
        padding: 16px !important;
    }
    #site-resort .room-slideshow {
        height: 220px !important;
    }

    /* --- Delivery truck slider: scale down --- */
    .truck-wrapper,
    .truck-img-wrap {
        width: 100px !important;
    }
    .range-cards {
        gap: 8px !important;
        margin-top: 30px !important;
        flex-wrap: wrap !important;
    }
    .range-card {
        padding: 8px 10px !important;
        min-width: 68px !important;
        font-size: 0.78rem !important;
    }
    .km-mark span {
        font-size: 0.65rem !important;
    }

    /* --- Products grid: 1 col --- */
    .products-grid {
        grid-template-columns: 1fr !important;
    }
    .product-img {
        height: 160px !important;
    }

    /* --- Booking form: 1 col on mobile --- */
    #site-resort .book-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    #site-resort .book-form {
        grid-template-columns: 1fr !important;
    }
    #site-resort .form-group-full {
        grid-column: span 1 !important;
    }
    #site-resort .book-card {
        padding: 24px 18px !important;
    }

    /* --- Gallery: 2-col on mobile --- */
    #site-resort .gallery-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    #site-resort .gallery-item.wide,
    #site-resort .gallery-item.tall {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
    #site-resort .gallery-item {
        height: 140px !important;
    }

    /* --- Activities grid: 1 col --- */
    #site-resort .act-grid {
        grid-template-columns: 1fr !important;
    }

    /* --- Accommodations grid: 1 col --- */
    #site-resort .acc-grid {
        grid-template-columns: 1fr !important;
    }

    /* --- Lightbox arrows: bigger touch targets --- */
    .lightbox-arrow {
        width: 44px !important;
        height: 44px !important;
        font-size: 1rem !important;
    }

    /* --- Footer grid: 1 col on tiny phones --- */
    .footer-grid {
        grid-template-columns: 1fr !important;
    }
    #site-resort .footer-grid {
        grid-template-columns: 1fr !important;
    }

    /* --- Contact number layout --- */
    .contact-number-actions {
        flex-direction: column !important;
        gap: 10px !important;
    }
    .contact-action-btn {
        width: 100% !important;
        justify-content: center !important;
    }
    #site-resort .contact-number-actions {
        flex-direction: column !important;
    }
    #site-resort .contact-action-btn {
        width: 100% !important;
        justify-content: center !important;
    }

    /* --- Map iframe height --- */
    .map-iframe-container iframe,
    #site-resort .map-iframe-container iframe {
        height: 250px !important;
    }

    /* --- Section padding tighter on mobile --- */
    .section {
        padding: 60px 0 !important;
    }
    #site-resort .section {
        padding: 60px 0 !important;
    }
}

/* ============================================================
   ARCHITECTURAL PLANNING & 3D VISUALIZATION SECTION
============================================================ */
.architecture-section {
    padding: 100px 0;
    background-color: var(--light-grey);
}

.architecture-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.architecture-content {
    display: flex;
    flex-direction: column;
}

.architecture-desc {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.architecture-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 35px;
}

.arch-service-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.arch-service-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(243, 111, 33, 0.08);
}

.arch-service-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(243, 111, 33, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.arch-service-card:hover .arch-service-icon {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.arch-service-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.architecture-image-wrapper {
    position: relative;
}

.arch-img-stack {
    position: relative;
    height: 450px;
    width: 100%;
}

.arch-img-1 {
    width: 75%;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    border: 6px solid var(--white);
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), z-index 0.4s;
}

.arch-img-2 {
    width: 75%;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    right: 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
    border: 6px solid var(--white);
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), z-index 0.4s;
}

.arch-img-1 img,
.arch-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.arch-img-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.75);
    color: var(--white);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.arch-img-1:hover {
    z-index: 3;
    transform: scale(1.05) translateY(-5px);
}

.arch-img-2:hover {
    z-index: 3;
    transform: scale(1.05) translateY(-5px);
}

/* Responsive Styles for Architecture Section */
@media (max-width: 1024px) {
    .architecture-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .arch-img-stack {
        width: 100% !important;
        height: 380px !important;
        max-width: 500px !important;
        margin: 0 auto !important;
        position: relative !important;
    }
    
    .arch-img-1 {
        width: 75% !important;
        height: 240px !important;
    }
    
    .arch-img-2 {
        width: 75% !important;
        height: 240px !important;
    }
    
    .arch-img-1 img,
    .arch-img-2 img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
}

@media (max-width: 768px) {
    .architecture-services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .architecture-desc {
        font-size: 1rem;
    }
}

/* ============================================================
   CALL RINGING & PHONE MOCKUP ANIMATIONS
============================================================ */
.phone-mockup {
    background: #000 !important;
    border: 3px solid #333 !important;
    border-radius: 24px !important;
    padding: 24px 16px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
    position: relative;
    overflow: hidden;
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
}

.phone-screen {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.phone-notch {
    width: 110px;
    height: 18px;
    background: #333;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
}

.incoming-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 15px;
    animation: textBlink 1.5s infinite;
}

#site-resort .incoming-text {
    color: #d8b257;
}

.incoming-call-icon {
    position: relative;
    width: 64px;
    height: 64px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 10px 0 20px;
    animation: ringShake 0.6s infinite;
}

#site-resort .incoming-call-icon {
    background: #d8b257;
}

.incoming-call-icon::before,
.incoming-call-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: ringPulse 1.6s infinite;
    opacity: 0;
}

#site-resort .incoming-call-icon::before,
#site-resort .incoming-call-icon::after {
    border-color: #d8b257;
}

.incoming-call-icon::after {
    animation-delay: 0.8s;
}

.contact-action-btn.call.btn-ring {
    animation: btnVibrate 2s infinite;
    background: #25d366 !important; /* Green for answer call */
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.contact-action-btn.call.btn-ring:hover {
    background: #20ba5a !important;
}

/* Header Helpline Shake Animation */
.shake-ring {
    animation: ringShake 2s infinite ease-in-out;
    display: inline-block;
}

/* --- Keyframe Animations --- */
@keyframes ringShake {
    0%, 100% { transform: rotate(0) scale(1); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-10deg) scale(1.05); }
    20%, 40%, 60%, 80% { transform: rotate(10deg) scale(1.05); }
}

@keyframes ringPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

@keyframes textBlink {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes btnVibrate {
    0%, 90%, 100% { transform: scale(1); }
    92%, 96% { transform: rotate(-2deg) scale(1.02); }
    94%, 98% { transform: rotate(2deg) scale(1.02); }
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(243, 111, 33, 0.3);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.toast-notification.show {
    bottom: 30px;
}

.toast-icon {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Completed Projects Showcase */
.projects-gallery {
    padding: 80px 0;
}
.projects-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.project-showcase-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.project-showcase-img {
    height: 280px;
    width: 100%;
    overflow: hidden;
}
.project-showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.project-showcase-card:hover .project-showcase-img img {
    transform: scale(1.05);
}
.project-showcase-info {
    padding: 24px;
}
.project-showcase-info .project-tag {
    font-size: 0.72rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 8px;
}
.project-showcase-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}
.project-showcase-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 768px) {
    .projects-showcase-grid {
        grid-template-columns: 1fr !important;
    }
    .project-showcase-img {
        height: 220px !important;
    }
}

.helpline-icon {
    cursor: pointer;
}

@media (min-width: 769px) and (max-width: 1250px) {
    .helpline-text {
        display: none !important;
    }
    #site-resort .helpline-text {
        display: none !important;
    }
}




