:root {
    --primary-orange: #FF6B00;
    --accent-red: #E11D48;
    --bg-dark: #070707;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-white: #FFFFFF;
    --text-muted: #94A3B8;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.08);
    --premium-blur: blur(25px);
    --pill-radius: 100px;
}

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

a, button, .btn, .btn-capsule, .tour-book-btn, .tour-card, .faq-header {
    cursor: pointer !important;
}

html,
body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
    width: 100%;
    margin: 0;
    padding: 0;
}

.row {
    margin-right: 0;
    margin-left: 0;
}

.text-muted {
    color: var(--text-muted) !important;
}

/* --- Floating Pill Navigation --- */
.nav-wrapper {
    position: fixed;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 9999;
}

#mainNav {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: var(--premium-blur);
    -webkit-backdrop-filter: var(--premium-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--pill-radius);
    padding: 8px 12px;
    width: fit-content;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#mainNav.scrolled {
    background: rgba(10, 10, 10, 0.9);
    padding: 6px 12px;
    transform: translateY(-5px) scale(0.98);
}

.nav-link {
    color: var(--text-white) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 20px !important;
    opacity: 0.7;
}

.nav-link:hover {
    opacity: 1;
}

/* --- Hero: Full Cinematic Immersive --- */
.hero-wrapper {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-dark);
    color: white;
}

/* Hero Slider Backgrounds */
.hero-slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-slider-bg.active {
    opacity: 1;
}

.hero-slider-bg.slide-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)), url('assets/backgrounds/com.png');
}

.hero-slider-bg.slide-2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)), url('assets/backgrounds/amenitiesv.png');
}

/* Hero Slider Dots */
.hero-slider-dots {
    display: flex;
    gap: 12px;
    z-index: 10;
}

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

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-dot.active {
    background: var(--primary-orange);
    transform: scale(1.3);
}

.hero-content-inner {
    max-width: 1100px;
    z-index: 10;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 7rem) !important;
    font-weight: 800;
    line-height: 0.95 !important;
    letter-spacing: -4px !important;
    margin-bottom: 30px !important;
    text-transform: capitalize;
}

.hero-title span.text-orange {
    background: linear-gradient(135deg, #FF6B00 0%, #FFB800 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline !important;
}

.hero-subtitle {
    font-size: 1.35rem !important;
    color: rgba(255, 255, 255, 1) !important;
    margin-bottom: 50px !important;
    line-height: 1.5 !important;
    max-width: 700px !important;
    margin-left: auto;
    margin-right: auto;
    font-weight: 700;
    letter-spacing: 0.2px;
}

/* --- About Image Composition --- */
.about-image-composition {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 40px;
    z-index: 1;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 80%;
    object-fit: cover;
    border-radius: 30px;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
}

.about-img-secondary {
    position: absolute;
    bottom: 5%;
    right: 0;
    width: 55%;
    height: 60%;
    object-fit: cover;
    border-radius: 30px;
    z-index: 3;
    box-shadow: -10px 20px 40px rgba(0, 0, 0, 0.5);
    border: 5px solid #0a0a0a;
    transition: transform 0.4s ease;
}

.about-image-composition:hover .about-img-secondary {
    transform: translateY(-10px) scale(1.02);
}

.about-shape-bg {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle at top right, rgba(255, 107, 0, 0.15), transparent);
    border-radius: 40px;
    z-index: 1;
    transform: rotate(10deg);
}

.about-floating-card {
    position: absolute;
    top: 15%;
    right: -5%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 20px 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 4;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    animation: float 4s ease-in-out infinite;
}

.about-floating-card .icon {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.hero-floating-card {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px 30px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 20;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.hero-floating-card .icon {
    width: 20px;
    height: 20px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    box-shadow: 0 0 15px var(--primary-orange);
}

.hero-location-pill {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: rgba(30, 30, 30, 0.85);
    /* More solid for visibility */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 28px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9998;
    /* Just below navbar */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
}

.hero-location-pill:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: translateY(-3px) scale(1.02);
}

.hero-location-pill:hover i,
.hero-location-pill:hover span {
    color: white !important;
}

/* --- Offer Band --- */
.offer-band {
    background: linear-gradient(90deg, #FF6B00 0%, #E11D48 100%);
    color: white;
    padding: 15px 0;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    z-index: 1002;
    position: relative;
}

.offer-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    margin-right: 15px;
    font-size: 0.8rem;
}

/* --- Coordinate Display --- */
.location-coords {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    color: var(--primary-orange);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.since-badge {
    display: inline-block;
    border: 1px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 5px 15px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

/* --- Testimonial --- */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 50px;
    border-radius: 50px;
    backdrop-filter: var(--premium-blur);
    -webkit-backdrop-filter: var(--premium-blur);
    position: relative;
}

.testimonial-text {
    font-size: 1.4rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-white);
    margin-bottom: 30px;
}

/* --- India Map Presence --- */
.map-container {
    position: relative;
    display: inline-block;
}

.map-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
}

.map-marker {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    box-shadow: 0 0 15px 5px rgba(255, 107, 0, 0.4), 0 0 0 rgba(255, 107, 0, 0.2);
    animation: pulse-marker 2s infinite;
    cursor: pointer;
    z-index: 10;
}

.marker-label {
    position: absolute;
    left: 25px;
    top: -5px;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.map-marker:hover .marker-label {
    opacity: 1;
    transform: translateX(0);
}

.marker-kozhikode {
    top: 29%;
    left: 32%;
}

.marker-kochi {
    top: 55%;
    left: 50%;
}

/* Specific Positions for Markers (Adjusted) */
/* .marker-kochi {
    bottom: 12%;
    left: 45.4%;
}

.marker-kozhikode {
    bottom: 15.2%;
    left: 44.4%;
} */

/* --- District Labels --- */
/* Removed as labels are now built into the map graphic itself */

@keyframes pulse-marker {
    0% {
        box-shadow: 0 0 15px 5px rgba(255, 107, 0, 0.6), 0 0 0 0 rgba(255, 107, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 15px 5px rgba(255, 107, 0, 0.2), 0 0 0 15px rgba(255, 107, 0, 0);
    }

    100% {
        box-shadow: 0 0 15px 5px rgba(255, 107, 0, 0.6), 0 0 0 0 rgba(255, 107, 0, 0);
    }
}

/* --- FAQ --- */
.faq-container {
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-header {
    padding: 25px 35px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-content {
    padding: 0 35px 30px;
    display: none;
    color: var(--text-muted);
}

/* --- Auto-Scrolling Client Logo Marquee (Green Theme) --- */
.client-marquee-section {
    padding: 30px 0;
    background: #050505;
    border-top: 1px solid rgba(37, 211, 102, 0.15);
    border-bottom: 1px solid rgba(37, 211, 102, 0.15);
    overflow: hidden;
    position: relative;
}

.client-marquee-section::before,
.client-marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.client-marquee-section::before {
    left: 0;
    background: linear-gradient(to right, #050505 0%, transparent 100%);
}

.client-marquee-section::after {
    right: 0;
    background: linear-gradient(to left, #050505 0%, transparent 100%);
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: inline-flex;
    white-space: nowrap;
    animation: scrollMarquee 15s linear infinite;
    padding-left: 20px;
}

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

.trust-badge {
    color: #25D366;
    opacity: 0.8;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.marquee-content .logo-text {
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    opacity: 0.4;
    transition: all 0.3s ease;
    cursor: pointer;
}

.marquee-content .logo-text:hover {
    opacity: 1;
    color: #25D366;
    text-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

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

/* --- New Signature Experience (Circular Staggered) --- */
.feature-row {
    margin-bottom: 120px;
}

.feature-img-container {
    position: relative;
    width: 450px;
    height: 450px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-img-wrap {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border: 5px solid rgba(255, 255, 255, 0.05);
}

.feature-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-row:hover .feature-img-wrap img {
    transform: scale(1.1);
}

.feature-ring {
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    border-top: 2px solid var(--primary-orange);
    border-right: 2px solid var(--primary-orange);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-row:hover .feature-ring {
    transform: translate(-50%, -50%) rotate(135deg);
}

.feature-img-overlap {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 3;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 8px solid var(--bg-dark);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-img-overlap.overlap-right {
    bottom: -10px;
    right: -10px;
}

.feature-img-overlap.overlap-left {
    bottom: -10px;
    left: -10px;
}

.feature-img-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-row:hover .feature-img-overlap {
    transform: translateY(-15px);
}

.feature-row:hover .feature-img-overlap img {
    transform: scale(1.1);
}

/* --- Classic Grid Signature Experience --- */
.sig-classic-section {
    position: relative;
    padding: 100px 0;
    background: radial-gradient(circle at 50% 100%, rgba(255, 107, 0, 0.05), #050505 60%);
    overflow: hidden;
}

.sig-classic-title-lg {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-white);
    letter-spacing: -2px;
}

.sig-classic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, minmax(200px, 280px));
    gap: 20px;
    position: relative;
}

.sig-classic-img-wrap {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    background: #111;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sig-classic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
    filter: brightness(0.85);
}

.sig-classic-img-wrap:hover .sig-classic-img {
    transform: scale(1.08);
    filter: brightness(1);
}

.sig-classic-img-wrap:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.sig-classic-img-wrap:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.sig-classic-img-wrap:nth-child(3) {
    display: none;
    /* Hide 3rd image to keep a 2/1 layout + 1 stat box for a premium asymmetrical look, or make it span */
}

.sig-classic-grid.has-3-images .sig-classic-img-wrap:nth-child(3) {
    display: block;
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

/* Redefine grid for the 3 images + 1 box */
.sig-classic-grid {
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: 250px 250px;
}

.sig-classic-img-wrap:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.sig-classic-img-wrap:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.sig-classic-img-wrap:nth-child(3) {
    display: block;
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    /* Wait, 1 is 1/3, so 1 spans both. Then 3 would overlap. Let's fix this */
}

/* Correct Asymmetrical Grid */
.sig-classic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 20px;
}

.sig-classic-img-wrap:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
}

.sig-classic-img-wrap:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.sig-classic-img-wrap:nth-child(3) {
    display: none;
}

/* Keeping just 2 images and a stat box looks cleaner */

/* Let's actually use all 3 images perfectly */
.sig-classic-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    grid-template-rows: minmax(180px, 1fr) minmax(220px, 1fr);
    gap: 24px;
    height: 100%;
    min-height: 550px;
}

.sig-classic-img-wrap:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    border-radius: 40px;
}

.sig-classic-img-wrap:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    border-radius: 30px;
}

.sig-classic-img-wrap:nth-child(3) {
    display: none;
    /* User has 3 images + stat box. Let's do 2 columns, 2 rows */
}

/* Final Perfect 2x2 Grid */
.sig-classic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 24px;
}

.sig-classic-img-wrap:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    border-radius: 30px 10px 10px 10px;
}

.sig-classic-img-wrap:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    border-radius: 10px 40px 10px 10px;
}

.sig-classic-img-wrap:nth-child(3) {
    display: block;
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    border-radius: 10px 10px 10px 30px;
}

.sig-classic-stat-box {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    /* Overlaps with child 2 if not careful */
}

/* ACTUAL Final Perfect 2x2 Grid matching the 4 elements */
.sig-classic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 20px;
    height: 100%;
}

.sig-classic-img-wrap:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    border-radius: 30px;
}

/* Top full width */
.sig-classic-img-wrap:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    border-radius: 30px;
}

/* Bottom left */
.sig-classic-img-wrap:nth-child(3) {
    display: none;
}

/* Hide 3rd so stat goes bottom right */
.sig-classic-stat-box {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

/* Bottom right */

.sig-classic-stat-box {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(255, 107, 0, 0.05) 100%);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    backdrop-filter: var(--premium-blur);
    -webkit-backdrop-filter: var(--premium-blur);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255, 107, 0, 0.05);
    transition: transform 0.4s ease;
}

.sig-classic-stat-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 0, 0.4);
}

.sig-classic-stat-num {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.sig-classic-stat-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sig-classic-features {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sig-classic-feature {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 20px;
    border-radius: 20px;
    transition: background 0.3s ease;
}

.sig-classic-feature:hover {
    background: rgba(255, 255, 255, 0.02);
}

.sig-classic-icon-box {
    width: 65px;
    height: 65px;
    min-width: 65px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-orange);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), inset 0 0 15px rgba(255, 107, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sig-classic-feature:hover .sig-classic-icon-box {
    background: rgba(255, 107, 0, 0.1);
    border-color: rgba(255, 107, 0, 0.3);
    color: #fff;
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 15px 25px rgba(255, 107, 0, 0.2);
}

.sig-classic-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

.sig-classic-feature-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.sig-classic-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    transition: color 0.3s ease;
}

.sig-classic-link:hover {
    color: var(--primary-orange);
}

.sig-classic-link i {
    transition: transform 0.3s ease;
}

.sig-classic-link:hover i {
    transform: translateX(5px);
}

/* --- Redesigned Testimonial Slider Gallery (Green Theme) --- */
.testimonial-section {
    background: radial-gradient(circle at center, rgba(37, 211, 102, 0.03) 0%, transparent 60%);
}

.testimonial-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

.testimonial-slider-container::before,
.testimonial-slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.testimonial-slider-container::before {
    left: 0;
    background: linear-gradient(to right, #050505 0%, transparent 100%);
}

.testimonial-slider-container::after {
    right: 0;
    background: linear-gradient(to left, #050505 0%, transparent 100%);
}

.testimonial-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scrollTestimonials 40s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

.testimonial-mini-card {
    background: linear-gradient(160deg, rgba(30, 30, 30, 0.95), rgba(10, 10, 10, 0.85));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: var(--premium-blur);
    -webkit-backdrop-filter: var(--premium-blur);
    border-radius: 24px;
    padding: 60px 40px 40px;
    width: calc((100vw - 48px) / 3);
    min-width: 400px;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 20px 40px rgba(255, 255, 255, 0.03);
    white-space: normal;
    text-align: center;
    margin-top: 40px;
}

.testimonial-mini-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(204, 255, 0, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(204, 255, 0, 0.15);
}

.card-stars-pill {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    display: flex;
    gap: 4px;
    box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.05);
}

.card-stars-pill i {
    color: #FFD700;
    font-size: 0.85rem;
    filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.5));
}

.card-avatar-overlap {
    position: absolute;
    top: -40px;
    left: 40px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #1a1a1a;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
    background: #e0e0e0;
    overflow: hidden;
    z-index: 10;
}

.card-avatar-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-title-neon {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ccff00;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(204, 255, 0, 0.3);
}

.card-thumb-icon {
    position: absolute;
    bottom: -15px;
    right: -15px;
    font-size: 4rem;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
    z-index: 5;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: rotate(-10deg);
}

.testimonial-mini-card:hover .card-thumb-icon {
    transform: rotate(5deg) scale(1.1);
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 12px));
        /* Scrol exactly half since we duplicated the list */
    }
}

.testimonial-text-small {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-style: italic;
    font-weight: 300;
}

.avatar-circle {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.testimonial-author-small {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* --- Map Presence Section (Immersive Side-by-Side) --- */
.map-presence-section {
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
}

.map-container {
    position: relative;
    width: 100%;
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.map-img {
    width: 100%;
    height: auto;
    opacity: 0.95;
    display: block;
    filter: drop-shadow(0 0 40px rgba(0, 0, 0, 0.5));
}

/* Map Markers (Stylized Pulsating dots) */
.map-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-orange);
    border-radius: 50%;
    box-shadow: 0 0 30px var(--primary-orange);
    cursor: pointer;
    z-index: 100;
}

.map-marker::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-orange);
    border-radius: 50%;
    animation: mapPulse 2s infinite;
}

@keyframes mapPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

.marker-label {
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    padding: 8px 18px;
    border-radius: 50px;
    white-space: nowrap;
    font-weight: 800;
    font-size: 0.85rem;
    color: white;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
}

.map-marker:hover .marker-label {
    opacity: 1;
    top: -65px;
}


/* --- Premium Capsule Button --- */
.btn-capsule {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px 10px 10px 25px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 1rem;
}

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

.btn-capsule .btn-icon {
    background: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 0.9rem;
    transition: transform 0.4s ease;
}

.btn-capsule .btn-icon i {
    transform: rotate(45deg);
}

/* --- Bento Grid Layout --- */
.py-section {
    padding: 12rem 0;
}

.section-tag {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 60px;
}

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

.bento-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--premium-blur);
    -webkit-backdrop-filter: var(--premium-blur);
    border-radius: 50px;
    padding: 0;
    /* Changed to allow internal layout control */
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.bento-item:hover {
    border-color: rgba(255, 107, 0, 0.6);
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.bento-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item.medium {
    grid-column: span 2;
}

/* New internal wrapper for text clarity */
.bento-content {
    padding: 50px;
    position: relative;
    z-index: 10;
    background: linear-gradient(to bottom, rgba(7, 7, 7, 0.9) 0%, rgba(7, 7, 7, 0.4) 50%, transparent 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.bento-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.4;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-item:hover img {
    transform: scale(1.1);
    opacity: 0.6;
}

.bento-tag {
    color: var(--primary-orange);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 3px;
    margin-bottom: 12px;
    display: block;
    text-transform: uppercase;
}

.location-coords {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 25px;
}

.bento-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
}

.bento-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.15rem;
    max-width: 90%;
    line-height: 1.5;
    margin-bottom: 30px;
}

.bento-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: 0.3s;
}

.bento-cta:hover {
    opacity: 1;
    color: var(--primary-orange);
}

.bento-cta i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.bento-cta:hover i {
    transform: translateX(5px);
}

/* --- Experience Section (Image Left, Text Right) --- */
.exp-image-wrapper {
    position: relative;
    padding-right: 40px;
}

.exp-main-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 60px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.exp-floating-card {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: var(--premium-blur);
    -webkit-backdrop-filter: var(--premium-blur);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px 35px;
    border-radius: 35px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 5;
}

.exp-floating-card .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), #ff4500);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.4);
    transition: transform 0.4s ease;
}

.exp-floating-card:hover .icon {
    transform: scale(1.1) rotate(5deg);
}

.exp-content-box {
    position: relative;
    padding-left: 30px;
    border-left: 3px solid var(--primary-orange);
    margin-bottom: 40px;
}

.exp-content-box::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 10px;
    width: 17px;
    height: 17px;
    background: var(--bg-dark);
    border: 3px solid var(--primary-orange);
    border-radius: 50%;
}

.exp-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.5) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 600;
}

/* --- Modern Membership Grid --- */
.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.modern-plan {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 65px 45px;
    border-radius: 50px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.modern-plan:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.04);
}

.modern-plan.highlight {
    background: linear-gradient(135deg, var(--primary-orange), #E65A00);
    border: none;
    box-shadow: 0 30px 60px rgba(255, 107, 0, 0.2);
}

.modern-plan.highlight * {
    color: white !important;
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.plan-price span {
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.6;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.plan-features li {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.plan-features i {
    margin-right: 12px;
}

/* Footer Styling */
.footer {
    background: #050505;
    padding: 8rem 0 4rem;
}

.footer .logo-text {
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 2.5px;
}

.footer .location-coords {
    color: var(--text-white);
    margin-bottom: 0;
}

.footer a.text-muted {
    transition: color 0.3s ease;
}

.footer a.text-muted:hover {
    color: var(--primary-orange) !important;
}

/* Original colors for social media icons */
.footer a .fa-facebook {
    color: #1877F2;
}

.footer a .fa-instagram {
    color: #E4405F;
}

.footer a .fa-linkedin {
    color: #0A66C2;
}

.footer a .fa-whatsapp {
    color: #25D366;
}

/* --- Typography / Expansion Section --- */
.typography-section {
    position: relative;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
}

.offset-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.offset-line {
    display: flex;
    align-items: center;
    width: 100%;
}

.offset-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
    letter-spacing: 1px;
    padding: 0 20px;
}

.offset-title.ps-0 {
    padding-left: 0 !important;
}

.line-ext {
    flex-grow: 1;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);
}

.expansion-visuals .bento-item {
    transition: all 0.4s ease;
}

.expansion-visuals .bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.15);
}

/* Responsive Fixes */
@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        padding-top: 150px;
    }

    .hero-text-side {
        padding-right: 0;
        margin-bottom: 60px;
    }

    .hero-image-side {
        width: 100%;
    }

    .hero-main-img {
        height: 500px;
    }
}

/* --- Gallery Specific --- */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    cursor: pointer;
}

.gallery-item img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--glass-border);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: opacity 0.4s ease;
    border-radius: 1rem;
}

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

.gallery-overlay h5 {
    color: white;
    font-weight: 700;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin: 0;
}

.gallery-item:hover .gallery-overlay h5 {
    transform: translateY(0);
}

@media (max-width: 991px) {
    #mainNav {
        width: 96%;
        border-radius: 50px;
        position: relative;
    }

    .navbar-collapse {
        position: absolute;
        top: calc(100% + 15px);
        left: 0;
        right: 0;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        padding: 20px;
        border-radius: 25px;
        margin-top: 0;
        border: 1px solid var(--glass-border);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
        z-index: 1000;
    }

    .navbar-nav {
        align-items: flex-start !important;
        width: 100%;
    }

    .navbar-nav .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

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

    .navbar-nav .nav-link {
        padding: 15px 10px !important;
        font-size: 1.1rem;
        width: 100%;
        text-align: left;
    }

    .navbar-collapse .ms-auto {
        margin-top: 20px;
        width: 100%;
        display: flex;
        justify-content: flex-start;
    }

    .navbar-collapse .ms-auto .btn-capsule {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        width: 100vw;
        max-width: 100%;
        padding: 0 10px;
    }

    #mainNav {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .bento-grid,
    .plan-grid {
        grid-template-columns: 1fr;
    }

    .bento-item.large,
    .bento-item.medium {
        grid-column: span 1;
    }
}

/* --- Premium Gallery Hero & GSAP Horizontal Scroll --- */

.gallery-hero-premium {
    position: relative;
    width: 100%;
}

.gallery-hero-premium .hero-overlay {
    z-index: 1;
}

.gallery-hero-premium h1 {
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-orange);
    border-radius: 50%;
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

/* GSAP Horizontal Track */
.gsap-horizontal-section {
    width: 100vw;
    height: 100vh;
}

.pin-wrap {
    display: flex;
    width: max-content;
    height: 100%;
    gap: 40px;
}

.horizontal-item {
    height: 70vh;
    width: 60vw;
    max-width: 900px;
    min-width: 600px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    cursor: grab;
}

.horizontal-item:active {
    cursor: grabbing;
}

.horizontal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.horizontal-item:hover img {
    transform: scale(1.05);
}

.item-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}

.horizontal-item:hover .item-caption {
    transform: translateY(0);
    opacity: 1;
}

.item-caption h3 {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.item-caption p {
    color: var(--primary-orange);
    font-size: 1.1rem;
    margin: 0;
    letter-spacing: 1px;
}

/* Special styling for intro/outro text cards inside the track */
.intro-item,
.outro-item {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-item:hover img,
.outro-item:hover img {
    transform: none;
}

@media (max-width: 991px) {
    .horizontal-item {
        width: 80vw;
        min-width: 300px;
        height: 60vh;
    }

    .item-caption {
        transform: translateY(0);
        opacity: 1;
        padding: 20px;
    }

    .item-caption h3 {
        font-size: 1.5rem;
    }
}

/* --- About Page Specific --- */
.about-hero-section {
    position: relative;
    overflow: hidden;
    background: #000;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/hq-images-optimized/IMG_7668.jpg') center/cover no-repeat;
    filter: brightness(0.8);
    z-index: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

.story-glass-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: rgba(30, 30, 30, 0.85);
    backdrop-filter: var(--premium-blur);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 35px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.founder-card {
    text-align: center;
    transition: transform 0.4s ease;
}

.founder-card:hover {
    transform: translateY(-15px);
}

.founder-img-wrapper {
    position: relative;
    width: 220px;
    height: 280px;
    margin: 0 auto 25px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    transition: all 0.5s ease;
}

.founder-card:hover .founder-img {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.05);
}

.founder-socials {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(to top, rgba(255, 107, 0, 0.9), transparent);
    transition: bottom 0.4s ease;
}

.founder-card:hover .founder-socials {
    bottom: 0;
}

.founder-socials a {
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.founder-socials a:hover {
    transform: translateY(-3px);
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

/* --- Vision / Mission / Our Promise Cards --- */
.vmp-card {
    background: linear-gradient(160deg, rgba(25, 25, 25, 0.9), rgba(10, 10, 10, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 28px;
    padding: 50px 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.vmp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vmp-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 0, 0.25);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 107, 0, 0.08);
}

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

.vmp-card--featured {
    background: linear-gradient(160deg, rgba(255, 107, 0, 0.12), rgba(255, 107, 0, 0.04));
    border-color: rgba(255, 107, 0, 0.2);
    border-top-color: rgba(255, 107, 0, 0.4);
}

.vmp-card--featured:hover {
    background: linear-gradient(160deg, rgba(255, 107, 0, 0.18), rgba(255, 107, 0, 0.06));
}

.vmp-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-orange);
    margin-bottom: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.vmp-card:hover .vmp-icon {
    background: rgba(255, 107, 0, 0.1);
    border-color: rgba(255, 107, 0, 0.3);
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 15px 25px rgba(255, 107, 0, 0.2);
}

.vmp-icon--featured {
    background: rgba(255, 107, 0, 0.1);
    border-color: rgba(255, 107, 0, 0.25);
}

.vmp-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.vmp-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    #presence.map-presence-section {
        padding-bottom: 20px !important;
    }
    #amenities.sig-classic-section {
        padding-top: 50px !important;
    }
    #testimonialCarousel h3 {
        font-size: 1.25rem !important;
        line-height: 1.5 !important;
    }
    #testimonialCarousel h5 {
        font-size: 0.95rem !important;
    }
    #testimonialCarousel p {
        font-size: 0.75rem !important;
    }
    #testimonialCarousel i.fa-quote-left {
        font-size: 2rem !important;
    }
}

/* Floating WhatsApp Button */
/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 120px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: wa-pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1) rotate(10deg);
    color: #fff;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 110px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
}

@keyframes wa-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
