/*
 * Location Page Styles - Kolkata ABC Square Building
 * Modern design with glassmorphism and gradient effects
 */

/* ==================== GOOGLE FONTS & FONT AWESOME ==================== */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

/* ==================== ROOT VARIABLES ==================== */
:root {
    --primary-green: #74a93d;
    --dark-green: #2e5d2e;
    --light-green: #abe076;
    --text-dark: #2e5d2e;
    --text-gray: #555555;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-gray: #e9ecef;
    --white: #ffffff;
    --font-primary: 'Nunito', sans-serif;
}

/* ==================== GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--text-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ==================== HERO SLIDER ==================== */

.location-hero-slider {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(0 0 0 / 85%) 0%, rgb(5 13 5 / 70%) 15%, rgb(11 15 11 / 55%) 30%, rgba(46, 93, 46, 0.35) 45%, rgba(46, 93, 46, 0.15) 60%, rgba(46, 93, 46, 0.05) 75%, transparent 100%);
    z-index: 2;
}

/* Wavy bottom edge for hero overlay */
.hero-slider-overlay::after {
    content: "";
    position: absolute;
    bottom: -65px;
    left: 0;
    width: 100%;
    height: 120px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 100' preserveAspectRatio='none'><path d='M0,30 Q50,0 100,30 T200,30 T300,30 T400,30 T500,30 T600,30 T700,30 T800,30 T900,30 T1000,30 T1100,30 T1200,30 L1200,100 L0,100 Z' fill='%23ffffff'/></svg>");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
  }

.hero-slider-content {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    width: 100%;
    max-width: 1200px;
}

.location-hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 3vw, 5rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 0 #1a5c1a, 0 2px 0 #164d16, 0 3px 0 #133f13, 0 4px 0 #0f310f, 0 5px 0 #0c230c, 0 8px 15px rgba(0, 0, 0, 0.5), 0 12px 25px rgba(0, 0, 0, 0.4), 0 -1px 3px rgba(255, 255, 255, 0.3);
}

.location-hero-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(1.1rem, 1.2vw, 1.6rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.5;
    max-width: 900px;
    margin: 0 auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6), 0 4px 8px rgba(0, 0, 0, 0.4), 0 6px 12px rgba(0, 0, 0, 0.3);
}


/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #ffffff;
    transform: scale(1.3);
}

/* ==================== SECTIONS ==================== */

.location-section {
    padding: 80px 0;
    position: relative;
}

.premier-section {
    background:linear-gradient(135deg, #fafdff 0%, #fdfeff 100%);
}

.experience-section {
    background: #ffffffb3;
}

.activities-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pricing-section {
    background: #ffffff87;
}

.map-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.safety-section {
    background: #ffffff99;
}

.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative; /* Added for pseudo-element positioning */
    overflow: hidden; /* Added to contain wider pseudo-elements */
}

.faq-section::after {
    content: "";
    position: absolute;
    bottom: -32px;
    left: -25%;
    width: 150%;
    height: 100px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V30.5C221,43,472,39,600,27C728,15,960,15,1200,20V0H0Z" fill="%235d9038"></path><path d="M0,0V53C221,66,472,62,600,50C728,38,960,38,1200,43V0H0H0Z" fill="%235d9038" opacity="0.7"></path><path d="M0,0V75.5C221,88,472,84,600,72C728,60,960,60,1200,65V0H0Z" fill="%235d9038" opacity="0.5"></path></svg>');
background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    transform: scaleY(-1);
}

.conclusion-section {
    background: linear-gradient(135deg, #74a93d 0%, #2e5d2e 100%);
    color: #ffffff;
}

/* ==================== TYPOGRAPHY ==================== */

.section-heading {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    /* Gradient text effect */
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-heading2 {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    /* Gradient text effect */
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-heading.white-text {
    color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: unset !important;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.4),
        0 6px 12px rgba(0, 0, 0, 0.3);
}

.section-heading.white-text .emoji-icon {
    color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: unset !important;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.3);
}

.emoji-icon {
    font-size: 1.2em;
    display: inline-block;
    /* Remove text shadow and use gradient instead */
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 15px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 600;
    color: #1e3903;
    margin-bottom: 20px;
    text-align: center;
}

.section-text {
    font-size: clamp(1rem, 3vw, 1.2rem);
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.section-subtitle-text {
    text-align: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 30px;
}

.section-footer-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 40px auto 0;
}

/* ==================== CONTENT WITH IMAGE ==================== */

.content-with-image {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.content-left {
    order: 1;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.content-right {
    order: 2;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
}

.building-image {
    width: 100%;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.building-image:hover {
    transform: translateY(-5px);
}
.image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(to top, rgba(147, 197, 114, 0.9), transparent);
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding: 0 20px 30px;
            transition: height 0.5s ease;
            overflow: hidden;
        }
        
        .building-name {
            color: white;
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.5s ease 0.2s;
        }
        
        .content-right:hover .building-image {
            transform: scale(1.05);
        }
        
        .content-right:hover .image-overlay {
            height: 40%;
        }
        
        .content-right:hover .building-name {
            transform: translateY(0);
            opacity: 1;
        }

/* ==================== GLASSMORPHISM CARDS ==================== */

.glass-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(116, 169, 61, 0.2);
}

/* ==================== EXPERIENCE GRID ==================== */

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.experience-card {
    text-align: center;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 15px;
}

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

.experience-card:hover .card-image img {
    transform: scale(1.1);
}

.card-title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 15px;
}

/* ==================== ACTIVITIES SECTION ==================== */

.activity-category-title {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Activities Toggle Switch */
.activities-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.switch {
    --_switch-bg-clr: #097e22;
    --_switch-padding: 4px;
    --_slider-bg-clr: rgb(255, 153, 0);
    --_slider-bg-clr-on: rgb(24, 137, 141);
    --_slider-txt-clr: #ffffff;
    --_label-padding: 1rem 2rem;
    --_switch-easing: cubic-bezier(0.47, 1.64, 0.41, 0.8);
    color: white;
    width: fit-content;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    position: relative;
    border-radius: 9999px;
    cursor: pointer;
    isolation: isolate;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.switch input[type="checkbox"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.switch > span {
    display: grid;
    place-content: center;
    transition: opacity 300ms ease-in-out 150ms;
    padding: var(--_label-padding);
    z-index: 1;
}

.switch::before,
.switch::after {
    content: "";
    position: absolute;
    border-radius: inherit;
    transition: inset 150ms ease-in-out;
}

/* Switch slider */
.switch::before {
    background-color: var(--_slider-bg-clr);
    inset: var(--_switch-padding) 50% var(--_switch-padding) var(--_switch-padding);
    transition:
        inset 500ms var(--_switch-easing),
        background-color 500ms ease-in-out;
    z-index: -1;
    box-shadow:
        inset 0 1px 1px rgba(0, 0, 0, 0.3),
        0 1px rgba(255, 255, 255, 0.3);
}

/* Switch bg color */
.switch::after {
    background-color: var(--_switch-bg-clr);
    inset: 0;
    z-index: -2;
}

/* Switch focus */
.switch:focus-within::after {
    inset: -0.25rem;
    box-shadow: 0 0 0 3px rgba(116, 169, 61, 0.3);
}

.switch:has(input:checked):hover > span:first-of-type,
.switch:has(input:not(:checked)):hover > span:last-of-type {
    opacity: 1;
    transition-delay: 0ms;
    transition-duration: 100ms;
}

/* Switch hover */
.switch:has(input:checked):hover::before {
    inset: var(--_switch-padding) var(--_switch-padding) var(--_switch-padding) 45%;
}

.switch:has(input:not(:checked)):hover::before {
    inset: var(--_switch-padding) 45% var(--_switch-padding) var(--_switch-padding);
}

/* Checked - move slider to right */
.switch:has(input:checked)::before {
    background-color: var(--_slider-bg-clr-on);
    inset: var(--_switch-padding) var(--_switch-padding) var(--_switch-padding) 50%;
}

/* Set opacity */
.switch > span:last-of-type,
.switch > input:checked + span:first-of-type {
    opacity: 0.75;
}

.switch > input:checked ~ span:last-of-type {
    opacity: 1;
}

/* Activities Content Sections */
.activities-content {
    display: none;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.activities-content.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
    animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    /* Force equal width for all cards */
    justify-items: stretch;
}

.activity-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* FIXED dimensions - will not change with more cards */
    width: 100% !important;
    height: 420px !important;
    min-height: 420px !important;
    max-height: 420px !important;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease;
    /* Enhanced glassmorphism effect */
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.2) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.activity-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(116, 169, 61, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 3px rgba(255, 255, 255, 0.5);
}

.activity-card:hover::before {
    opacity: 1;
}

.activity-image {
    width: 100% !important;
    /* FIXED height - exactly 60% of 420px = 252px */
    height: 252px !important;
    min-height: 252px !important;
    max-height: 252px !important;
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 0;
    position: relative;
    flex-shrink: 0;
}

.activity-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.3) 0%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.activity-card:hover .activity-image img {
    transform: scale(1.15);
}

/* Activity Info Area - FIXED 40% of card height */
.activity-info {
    padding: 25px;
    /* FIXED height - exactly 40% of 420px = 168px */
    height: 168px !important;
    min-height: 168px !important;
    max-height: 168px !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
}

.activity-title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
    /* Gradient text effect */
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Limit to 2 lines max */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-shrink: 0;
}

.activity-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.activity-modes {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.activity-modes li {
    font-size: 0.95rem;
    color: var(--text-gray);
    padding: 5px 0;
}

/* Equipment List */
.equipment-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.equipment-item {
    text-align: center;
    padding: 30px 20px;
}

.equipment-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
    text-shadow: 
        0 1px 0 #ccc,
        0 2px 0 #c9c9c9,
        0 3px 0 #bbb,
        0 4px 0 #b9b9b9,
        0 5px 0 #aaa,
        0 6px 1px rgba(0,0,0,.1),
        0 0 5px rgba(0,0,0,.1),
        0 1px 3px rgba(0,0,0,.3),
        0 3px 5px rgba(0,0,0,.2),
        0 5px 10px rgba(0,0,0,.25);
    color: var(--primary-green);
}

.equipment-item h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 10px;
}

.equipment-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ==================== PRICING SECTION ==================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.timing-card,
.price-card {
    text-align: center;
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 
        0 1px 0 #ccc,
        0 2px 0 #c9c9c9,
        0 3px 0 #bbb,
        0 4px 0 #b9b9b9,
        0 5px 0 #aaa,
        0 6px 1px rgba(0,0,0,.1),
        0 0 5px rgba(0,0,0,.1),
        0 1px 3px rgba(0,0,0,.3),
        0 3px 5px rgba(0,0,0,.2),
        0 5px 10px rgba(0,0,0,.25);
    color: var(--primary-green);
}

.card-heading {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    /* Gradient text effect */
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Live Clock & Status Styles */
.clock-container {
    margin-bottom: 25px;
}

.date-display {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 10px;
    font-weight: 500;
}

.digital-clock {
    font-size: 3rem;
    font-weight: 700;
    background: rgba(46, 93, 46, 0.15);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border: 2px solid rgba(116, 169, 61, 0.3);
    box-shadow: inset 0 2px 10px rgba(116, 169, 61, 0.1);
}

/* Status Indicator */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.status-open {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    border: 2px solid var(--primary-green);
    color: #ffffff;
    animation: statusPulse 2s infinite;
}

.status-closed {
    background: rgba(231, 76, 60, 0.2);
    border: 2px solid #e74c3c;
    color: #e74c3c;
}

.status-icon {
    font-size: 1.3rem;
}

@keyframes statusPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

/* Store Hours */
.store-hours {
    background: rgba(116, 169, 61, 0.08);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid rgba(116, 169, 61, 0.2);
}

.hours-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(116, 169, 61, 0.15);
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    color: var(--text-gray);
    font-weight: 500;
}

.time {
    font-weight: 600;
    color: var(--dark-green);
}

/* Next Opening */
.next-opening {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.next-opening p {
    color: var(--text-gray);
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.next-time {
    font-weight: 700;
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
}

.timing-hours {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.timing-note {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Price Table */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    overflow: hidden;
}

.price-table thead {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: #ffffff;
}

.price-table th,
.price-table td {
    padding: 15px;
    text-align: left;
}

.price-table th {
    font-weight: 600;
    font-size: 1rem;
}

.price-table td {
    font-size: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.price-table tbody tr:hover {
    background: rgba(116, 169, 61, 0.1);
}

.price-table .highlight-row {
    background: rgba(116, 169, 61, 0.15);
    font-weight: 600;
}

.price-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 15px;
    text-align: center;
}

.price-note a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.price-note a:hover {
    text-decoration: underline;
}

/* Special Bookings CTA */
.special-bookings-cta {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(116, 169, 61, 0.1) 0%, rgba(46, 93, 46, 0.1) 100%);
    border-radius: 15px;
    border: 2px solid rgba(116, 169, 61, 0.3);
    text-align: center;
    backdrop-filter: blur(10px);
}

.special-bookings-text {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
}

.special-bookings-text i {
    color: var(--primary-green);
    margin-right: 8px;
    font-size: 1.2rem;
    text-shadow: 
        0 1px 0 #ccc,
        0 2px 0 #c9c9c9,
        0 3px 0 #bbb,
        0 4px 0 #b9b9b9,
        0 5px 0 #aaa,
        0 6px 1px rgba(0,0,0,.1),
        0 0 5px rgba(0,0,0,.1),
        0 1px 3px rgba(0,0,0,.3),
        0 3px 5px rgba(0,0,0,.2),
        0 5px 10px rgba(0,0,0,.25);
}

.special-bookings-text strong {
    color: var(--dark-green);
    font-weight: 600;
}

.contact-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(116, 169, 61, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-cta-button i {
    font-size: 1.2rem;
    animation: phonePulse 2s infinite;
}

.contact-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(116, 169, 61, 0.5);
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
}

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

/* ==================== MAP SECTION ==================== */

.address-card {
    position: relative;
    text-align: center;
    padding: 0;
    margin-bottom: 30px;
    min-height: 350px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    
    /* Background Image */
    background-image: url('../../assets/img/address.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Glassmorphism Overlay */
.address-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 255, 255, 0.25) 100%
    );
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    z-index: 1;
}

/* Content Container */
.address-content {
    position: relative;
    z-index: 2;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 350px;
}

.address-main {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.2);
}

.address-main strong {
    color: #ffffff;
    font-size: 2rem;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.3);
}

.address-card p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #abe076;
    line-height: 2;
    margin-bottom: 15px;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.3);
}

.landmarks {
    font-size: 1.1rem;
    font-weight: 600;
    color: #abe076;
    margin-top: 20px;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.3);
}

.landmarks strong {
    color: #abe076;
}

/* Map Container */
.map-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.map-container {
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Visit Us Button */
.visit-us-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(116, 169, 61, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0;
    flex-shrink: 0;
}

.visit-us-button i {
    font-size: 1.3rem;
    animation: mapPulse 2s infinite;
}

.visit-us-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(116, 169, 61, 0.5);
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
}

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

.map-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 25px;
}

/* ==================== SAFETY SECTION ==================== */

.safety-subtitle {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-green);
    text-align: center;
    margin: 30px 0;
}

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

.safety-item {
    text-align: center;
    padding: 30px 20px;
    border-left: 4px solid var(--primary-green);
}

.safety-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
    text-shadow: 
        0 1px 0 #ccc,
        0 2px 0 #c9c9c9,
        0 3px 0 #bbb,
        0 4px 0 #b9b9b9,
        0 5px 0 #aaa,
        0 6px 1px rgba(0,0,0,.1),
        0 0 5px rgba(0,0,0,.1),
        0 1px 3px rgba(0,0,0,.3),
        0 3px 5px rgba(0,0,0,.2),
        0 5px 10px rgba(0,0,0,.25);
    color: var(--primary-green);
}

.safety-item h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 10px;
}

.safety-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ==================== FAQ ACCORDION ==================== */

.faq-accordion {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    grid-auto-rows: auto;
    align-items: start;
}

.faq-item {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-self: start;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 20px;
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-green);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    flex-shrink: 0;
}

.faq-question i.fa-1,
.faq-question i.fa-2,
.faq-question i.fa-3,
.faq-question i.fa-4,
.faq-question i.fa-5,
.faq-question i.fa-6 {
    color: var(--primary-green);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-question:hover {
    color: var(--primary-green);
}

.faq-question::after {
    content: '\002B';
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 1.8rem;
    line-height: 1;
    color: var(--primary-green);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 20px 20px 20px;
}

.faq-answer p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    text-align: left;
    margin: 0;
}

/* ==================== CONCLUSION SECTION ==================== */

.conclusion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.conclusion-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.conclusion-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
    text-shadow: 
        0 1px 0 rgba(255,255,255,0.3),
        0 2px 0 rgba(255,255,255,0.25),
        0 3px 0 rgba(255,255,255,0.2),
        0 4px 0 rgba(255,255,255,0.15),
        0 5px 0 rgba(255,255,255,0.1),
        0 6px 1px rgba(0,0,0,.1),
        0 0 5px rgba(0,0,0,.1),
        0 1px 3px rgba(0,0,0,.3),
        0 3px 5px rgba(0,0,0,.2),
        0 5px 10px rgba(0,0,0,.25);
    color: #ffffff;
}

.conclusion-item p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.6;
}

.conclusion-text {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-button-wrapper {
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: var(--primary-green);
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

/* ==================== UTILITY CLASSES ==================== */

.mt-5 {
    margin-top: 3rem;
}

/* ==================== RESPONSIVE DESIGN ==================== */

@media (max-width: 992px) {
    .location-hero-slider {
        min-height: 80vh;
    }

    .content-with-image {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content-left,
    .content-right {
        order: unset;
    }

    .content-left {
        padding: 30px;
    }
    
    /* Activity cards - FIXED dimensions on tablets */
    .activities-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .activity-card {
        height: 380px !important;
        min-height: 380px !important;
        max-height: 380px !important;
    }
    
    .activity-image {
        height: 228px !important;
        min-height: 228px !important;
        max-height: 228px !important;
    }
    
    .activity-info {
        height: 152px !important;
        min-height: 152px !important;
        max-height: 152px !important;
        padding: 20px;
    }
    
    .activity-title {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .activity-desc {
        font-size: 0.9rem;
    }

    .experience-grid,
    .equipment-list,
    .pricing-grid,
    .safety-grid,
    .conclusion-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .location-section {
        padding: 60px 0;
    }

    .location-hero-slider {
        min-height: 70vh;
    }
    
    .hero-slider-content {
        bottom: 100px;
    }

    .location-hero-title {
        font-size: clamp(1.8rem, 5vw, 3rem);
        /* Reduce 3D shadow layers on mobile */
        text-shadow: 
            0 1px 0 #1a5c1a,
            0 2px 0 #164d16,
            0 3px 0 #133f13,
            0 6px 12px rgba(0, 0, 0, 0.5),
            0 -1px 2px rgba(255, 255, 255, 0.2);
    }
    
    .location-hero-subtitle {
        font-size: clamp(1rem, 2.2vw, 1.4rem);
    }
    
    /* Toggle switch mobile adjustments */
    .switch {
        font-size: 1rem;
        --_label-padding: 0.8rem 1.5rem;
    }
    
    .activities-toggle-wrapper {
        margin-bottom: 40px;
    }
    
    /* Activity cards mobile - FIXED dimensions */
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .activity-card {
        height: 360px !important;
        min-height: 360px !important;
        max-height: 360px !important;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .activity-image {
        height: 216px !important;
        min-height: 216px !important;
        max-height: 216px !important;
    }
    
    .activity-info {
        height: 144px !important;
        min-height: 144px !important;
        max-height: 144px !important;
        padding: 18px;
    }
    
    .activity-title {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .activity-desc {
        font-size: 0.9rem;
        -webkit-line-clamp: 3;
    }

    .section-heading {
        font-size: clamp(1.6rem, 4vw, 2.5rem);
    }

    .content-left {
        padding: 25px;
    }

    .slider-dots {
        bottom: 38px;
    }
    
    /* Address card mobile responsive */
    .address-card {
        min-height: 300px;
        border-radius: 16px;
    }
    
    .address-card::before {
        backdrop-filter: blur(10px) saturate(130%);
        -webkit-backdrop-filter: blur(10px) saturate(130%);
    }
    
    .address-content {
        padding: 35px 25px;
        min-height: 300px;
    }
    
    .address-main {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .address-main strong {
        font-size: 1.6rem;
    }
    
    .address-card p {
        font-size: 1.05rem;
        line-height: 1.8;
    }
    
    .landmarks {
        font-size: 1rem;
        margin-top: 15px;
    }
    
    .visit-us-button {
        font-size: 1.05rem;
        padding: 14px 35px;
    }
    
    .map-button-wrapper {
        gap: 15px;
        margin-top: 20px;
    }
    
    /* FAQ responsive - single column on tablet */
    .faq-accordion {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 16px;
    }
    
    .faq-question::after {
        right: 16px;
        top: 16px;
    }
    
    .faq-answer-inner {
        padding: 0 16px 16px 16px;
    }
}

@media (max-width: 576px) {
    .location-hero-slider {
        min-height: 60vh;
    }
    
    .hero-slider-content {
        bottom: 80px;
        padding: 0 15px;
    }
    
    .location-hero-title {
        font-size: clamp(1rem, 1vw, 2rem);
    }
    .location-hero-subtitle {
        font-size: clamp(0.9rem, 1vw, 1.2rem);
    }
    /* Adjust wavy edge height for mobile */
    .hero-slider-overlay::after {
        height: 115px;
    }
    
    /* Activity cards small mobile - FIXED dimensions */
    .activity-card {
        height: 340px !important;
        min-height: 340px !important;
        max-height: 340px !important;
    }
    
    .activity-image {
        height: 204px !important;
        min-height: 204px !important;
        max-height: 204px !important;
    }
    
    .activity-info {
        height: 136px !important;
        min-height: 136px !important;
        max-height: 136px !important;
        padding: 16px;
    }
    
    .activity-title {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .activity-desc {
        font-size: 0.85rem;
        line-height: 1.5;
        -webkit-line-clamp: 3;
    }

    .experience-grid,
    .equipment-list {
        gap: 20px;
    }

    .glass-card {
        padding: 20px;
    }

    .content-left {
        padding: 20px;
    }

    .price-table th,
    .price-table td {
        padding: 10px;
        font-size: 0.9rem;
    }

    .cta-button {
        font-size: 1.1rem;
        padding: 15px 35px;
    }
    
    /* Address card small mobile */
    .address-card {
        min-height: 280px;
        border-radius: 12px;
    }
    
    .address-card::before {
        backdrop-filter: blur(8px) saturate(120%);
        -webkit-backdrop-filter: blur(8px) saturate(120%);
    }
    
    .address-content {
        padding: 30px 20px;
        min-height: 280px;
    }
    
    .address-main {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .address-main strong {
        font-size: 1.5rem;
    }
    
    .address-card p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .landmarks {
        font-size: 0.95rem;
        margin-top: 12px;
    }
    
    .visit-us-button {
        font-size: 1rem;
        padding: 12px 30px;
    }
    
    .map-button-wrapper {
        gap: 12px;
        margin-top: 18px;
        flex-direction: column;
    }
    
    .visit-us-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* FAQ mobile adjustments */
    .faq-question {
        font-size: 0.95rem;
        padding: 14px;
    }
    
    .faq-question::after {
        right: 14px;
        top: 14px;
        font-size: 1.5rem;
    }
    
    .faq-answer-inner {
        padding: 0 14px 14px 14px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
    .content-right:hover .building-name {
        font-size:1.3rem;
    }
}
