/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-green: #1C3A2F;
    /* Deep forest green */
    --accent-green: #37A777;
    /* A brighter, but still natural green for buttons */
    --light-bg: #F8F9FA;
    --text-dark: #fff;
    --text-light: #FFFFFF;
    --brand-mint: #8CD4B0;
    --family-font: 'Montserrat', sans-serif;
    /* Mint green for headers */
}

/* Utilities */
/* Utilities */
.brand-gradient-text {
    /* White start, fading into mint around 40% (end of HOTELS), then to teal */
    background: linear-gradient(90deg, #FFFFFF 25%, #A0EAC3 55%, #58CBA2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent !important;
    display: inline-block;
}

body {
    font-family: 'Sora', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;

}

#hero-body {
    padding: 15px;
}

/* Utilities */
.text-primary-green {
    color: var(--primary-green) !important;
}

.bg-primary-green {
    background-color: var(--primary-green) !important;
}

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

.btn-custom {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    border-radius: 10px;
    font-weight: 300;
    padding: 0.5rem 1.5rem;
}

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

.btn-green-solid {
    background-color: var(--accent-green);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 0.6rem 2rem;
    font-weight: 300;
    transition: all 0.3s;
}

.btn-green-solid:hover {
    background-color: #37A777;
    color: white;
}

/* Navbar */
.navbar {
    transition: all 0.3s;
    padding: 0.8rem 1.5rem;
    background: rgba(43, 62, 57, 0.4);
    /* Semi-transparent dark green */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    width: 94%;
    max-width: 1320px;
    margin: 20px auto 0 auto;
    left: 0;
    right: 0;
}

.navbar-brand {
    font-weight: 700;
    color: white !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    color: #fff !important;
    font-weight: 400;
    margin-left: 1rem;
    text-transform: uppercase;
    font-size: 1rem;
    font-family: var(--family-font);
}

.nav-link:hover {
    color: white !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 760px;
    background: url(../img/slider.jpg) no-repeat center center / cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    padding-top: 80px;
    overflow: hidden;
    border-radius: 25px;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Strong left-to-right gradient for text readability matching design */
    background: linear-gradient(180deg, rgba(8, 47, 34, 0.6) 0%, rgba(8, 47, 34, 0.2) 100%) !important;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Strong left-to-right gradient for text readability matching design */
    background: linear-gradient(90deg, #152620 0%, rgba(21, 38, 32, 0.9) 35%, rgba(21, 38, 32, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    align-items: center;
    /* Push content up slightly to avoid overlap with bottom panel */
    padding-bottom: 100px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Custom Arrow Decoration */
.arrow-deco-line {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.7);
    width: 60px;
    position: relative;
    display: block;
}

.arrow-deco-line::after {
    content: "";
    position: absolute;
    right: 0;
    top: -2.5px;
    width: 6px;
    height: 6px;
    background-color: white;
    transform: rotate(45deg);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.arrow-deco-line.arrow-deco-dark {
    background-color: black;
}

.arrow-deco-line.arrow-deco-dark::after {
    background-color: black;
    box-shadow: none;
}

.benefit-dot {
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
}

.benefit-tag {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 10px;
    color: white;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.benefit-tag:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
}

/* Custom Contact Input */
.contact-custom-input {
    background-color: #e9e9e9;
    color: #000;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-weight: 500;
}

.contact-custom-input:focus {
    background-color: #fff;
    border-color: #000;
    box-shadow: none;
}

.contact-custom-input::placeholder {
    color: #777;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;

    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* VR Girl Image */
.hero-girl-img {
    position: absolute;
    bottom: -50px;
    /* Push her down a bit so she sits behind the panel nicely */
    right: 0%;
    /* Align to right edge */
    height: 90%;
    max-height: 800px;
    width: auto;
    object-fit: contain;
    z-index: 1;
    /* Behind text content but in front of background */
}

/* Bottom Panel styling */
.hero-bottom-panel-wrapper {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 0;
    /* Container fluid handles padding usually, but we want full width access for the leaf */
    display: flex;
    justify-content: center;
    pointer-events: none;
    /* Let clicks pass through outside the box */
}

.leaf-decoration {

    position: absolute;
    left: -135px;
    bottom: -165px;
    height: 560px;
    z-index: 5;
    transform: rotate(0deg);
    pointer-events: none;
}

.hero-bottom-container {
    background: #1f332ef0;
    /* Deep dark green matching the reference */
    padding: 1.5rem 2rem;
    width: 100%;

    border-radius: 12px;
    /* Slightly less rounded than before */
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 100;
    margin-top: -4rem;
    backdrop-filter: blur(4px);
    /* Pull up to overlap hero image significantly */
}

/* We need to use the bootstrap container inside this wrapper to align with page content */
/* Inner wrapper no longer strictly needed for width since container has max-width, but good for flex alignment if needed */
.hero-bottom-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* Search Input */
.search-box-large {
    background: white;
    border-radius: 6px;
    /* Much sharper radius as per image */
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    width: 320px;
    color: #333;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 0;
    /* Remove margin since we dwell in a centered box now */
    border: none;
}

.search-box-large i.fa-magnifying-glass {
    color: #333;
    font-size: 1.1rem;
    margin-right: 15px;
}

.search-box-large span {
    flex-grow: 1;
    font-size: 1rem;
}

/* Bottom Right Slider */
.hero-slider-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Align right */
    gap: 0;
    /* Remove gap for overlap */
    padding-right: 20px;
    /* Space for the last card */
    margin-bottom: 0;
}

.slider-card {
    height: 120px;
    width: 140px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 2px solid white;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    margin-left: -40px;
    /* Overlap effect */
    z-index: 1;
}

.slider-card:nth-child(1) {
    z-index: 10;
    margin-left: 0;
}

.slider-card:nth-child(2) {
    z-index: 9;
}

.slider-card:nth-child(3) {
    z-index: 8;
}

.slider-card:nth-child(4) {
    z-index: 7;
}

.slider-card.active {
    height: 180px;
    width: 260px;
    /* Much wider for the active one */
    border-color: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-radius: 24px;
    /* Very rounded */
}

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

/* 360 Oval Indicator */
.slider-360-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    /* Make it an oval */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slider-360-indicator span {
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
}

.slider-360-indicator i {
    position: absolute;
    font-size: 0.8rem;
    color: white;
    top: -8px;
    /* Floating icon? or inside? */
}

/* Adjust icon overlay to be the oval ring */
.slider-icon-overlay {
    display: none;
    /* Replaced by specific indicator structure */
}

/* The Problem Section */
.section-problem {
    padding: 5rem 0;
    text-align: center;
}

.section-title {
    font-weight: 700;
    font-size: 2.5rem;

    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    color: black;
}

.section-title::before,
.section-title::after {
    display: none;
}

.section-title {
    gap: 15px;
    /* Space between text and lines */
}

/* Custom Decorative Line */
.title-deco-line {
    height: 1px;
    background-color: black;
    width: 225px;
    position: relative;
}

/* Diamond on Right of Left Line */
.title-deco-line:first-child::after {
    content: "";
    position: absolute;
    right: -3px;
    /* Half of width to center on end */
    top: -2.5px;
    /* Center vertically: (6px height - 1px line)/2 = 2.5px diff? No. Top of line is 0. Line height 1px. Diamond 6px. Center of line is 0.5px. Center of diamond is 3px. Top = 0.5 - 3 = -2.5px. Correct. */
    width: 6px;
    height: 6px;
    background-color: black;
    transform: rotate(45deg);
}

/* Diamond on Left of Right Line */
.title-deco-line:last-child::before {
    content: "";
    position: absolute;
    left: -3px;
    top: -2.5px;
    width: 6px;
    height: 6px;
    background-color: black;
    transform: rotate(45deg);
}

.problem-desc {
    max-width: 965px;
    margin: 0 auto 1rem auto;
    color: #000;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 400;
}

.info-cards-row {
    margin-bottom: 4rem;
}

.info-card {
    background-color: #D5EDE2;
    padding: 1rem 1rem;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 400;
    color: #111111;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    min-height: 100px;
    line-height: 1.4;
    transition: transform 0.3s;
    font-family: var(--family-font);
}

.info-card:hover {
    transform: translateY(-5px);
}

/* Comparison Images */
.comparison-container {
    padding-top: 1rem;
}

.comparison-card {
    position: relative;
    margin-bottom: 30px;
    /* Removed overflow, border-radius, box-shadow from here to allow label to hang out */
}

.comp-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: #000;
    height: 100%;
    width: 100%;
}

.portrait-card {
    height: 400px;
}

.landscape-card {
    height: 400px;
}

.comp-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    opacity: 0.95;
}

.comparison-card:hover .comp-img-wrapper img {
    transform: scale(1.05);
    opacity: 1;
}

/* Labels */
.comparison-label-bottom {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 40px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.9) 100%);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    min-width: 140px;
    z-index: 10;
}

.style-red {
    color: #FF4D4D;
}

.style-green-text {
    color: #4CAF50;
}

.comparison-label-floating {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 50px;
    border-radius: 12px;
    text-align: center;
    font-size: 1rem;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 10;
    font-family: var(--family-font);
}

.style-green-btn {
    background: #74b49b;
    background: linear-gradient(90deg, #7dbfa5, #6aa990);
    /* Soft green gradient */
    text-transform: uppercase;
}

/* 360 Indicator in VR Card */
.vr-360-indicator {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translate(-50%, 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    z-index: 5;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.vr-360-indicator i {
    font-size: 2rem;
    margin-bottom: 0px;
    border: none;
    /* Custom icon style */
    display: flex;
    align-items: center;
    justify-content: center;
}

.vr-360-indicator span {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: -10px;
}

/* Banner Section */
.banner-section {
    padding: 2rem 0;
}

.promo-banner {
    background-color: #348E5F;
    /* Base Sea Green */
    background: linear-gradient(90deg, #021F14 0%, #0B8555 100%);
    /* Fallback and base gradient */
    border-radius: 20px;
    padding: 0rem 4rem;
    color: white;
    position: relative;
    overflow: visible;
    /* Allow headset to pop out if needed */
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.promo-text h3 {
    font-weight: 500;
    font-size: 2rem;
    margin-bottom: 1rem;
    max-width: 600px;
    line-height: 1.3;
}

.btn-lime {
    background-color: #9ECB75;
    /* Lime Green */
    color: #000;
    font-weight: 500;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    /* Not full pill */
    border: none;
    transition: transform 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-lime:hover {
    background-color: #8db568;
    color: black;
    transform: translateY(-2px);
}

.vr-headset-img {
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
    margin-right: 0px;

}

/* The Solution Section */
/* The Solution Section */
.section-solution {
    padding: 6rem 0;
}

.solution-header-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.section-title-left {
    font-weight: 700;
    font-size: 2.5rem;
    color: black;
    margin: 0;
}

.solution-deco-line {
    height: 1px;
    background-color: black;
    width: 60px;
    position: relative;
    display: block;
}

/* Diamond/Arrow Tip on Left Line */
.solution-deco-line::before {
    content: "";
    position: absolute;
    right: -3px;
    /* Arrow pointing to text */
    top: -2.5px;
    width: 6px;
    height: 6px;
    background-color: black;
    transform: rotate(45deg);
}

.solution-desc {
    color: #000;
    font-size: 1.2rem;
    max-width: 500px;
    letter-spacing: 0;
}

/* Solution Feature Cards */
.sol-feature-card {
    background-color: #F5F5F7;
    /* Light gray */
    padding: 10px 15px;
    border-radius: 12px;
    position: relative;
    height: 92%;
    margin-top: 20px;
    /* Space for floating icon */
}

.sol-icon-box {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-color: #348E5F;
    /* Matching green */
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(52, 142, 95, 0.3);
}

.sol-card-text {
    font-weight: 400;
    font-size: 1rem;
    color: #111;
    line-height: 1.4;
    text-align: center;
    margin-top: 12px;
    font-family: var(--family-font);
}

/* Solution Image Grid */
.sol-img-card {
    background: linear-gradient(143deg, #c1c1c1, #d7d7d7);
    padding: 8px;
    /* White border effect */
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    height: 235px;
    /* Fixed height for grid */
}

.sol-img-card::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: linear-gradient(180deg, #000000 -13.82%, rgba(255, 255, 255, 0) 100%);
    border-radius: 12px;
    z-index: 1;
    pointer-events: none;
}

.sol-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    /* Inner radius */
    display: block;
}

.sol-360-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    z-index: 2;
    pointer-events: none;
}

.sol-360-overlay i {
    font-size: 1.5rem;
    margin-bottom: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.sol-360-overlay span {
    font-size: 0.8rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Decorative curved line at bottom of each image - simulated with pseudo-element or just use icons */
.sol-360-overlay::after {
    content: "";
    width: 60px;
    height: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    margin-top: -5px;
}



.why-card {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    min-height: 500px;
}

.why-image-side {
    height: 100%;
    position: relative;
    min-height: 400px;
}

.why-image-side img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Floating VR Headset */
.floating-vr-headset {
    position: absolute;
    right: 0;
    top: 0px;
    /* Adjust top position as needed */
    max-width: 50vw;
    /* Restrict width */
    width: 450px;
    /* Base width */
    z-index: 1;
    pointer-events: none;
    /* Let clicks pass through */
}

.why-content-side {

    /* Very dark deep green */
    height: 100%;
    padding: 3rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: rgba(12, 38, 16, 1);
}

/* Header */
.why-header-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

.why-title {
    font-weight: 800;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin: 0;
    background: linear-gradient(90deg, #FFFFFF 0%, #FFFFFF 25%, #64C59E 100%);
    /* White to Teal Green */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
    /* Required for background clip sometimes */
}

.why-deco-line {
    height: 1px;
    background-color: white;
    width: 60px;
    position: relative;
    display: block;
}

.why-deco-line::after {
    content: "";
    position: absolute;
    right: -3px;
    top: -2.5px;
    width: 6px;
    height: 6px;
    background-color: white;
    transform: rotate(45deg);
}

/* Description Area */
.why-description-area {
    text-align: right;
    position: relative;

}

.why-floating-icon {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    /* Floating VR headset icon on left of text block */
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    opacity: 0.9;
    display: none;
    /* Hidden on small screens if layout breaks, block on lg */
}

@media (min-width: 992px) {
    .why-floating-icon {
        display: block;
    }
}

.why-desc-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fff;
    font-family: var(--family-font);
}

/* Feature Buttons */
.why-btn {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 12px 15px;
    color: white;
    font-size: 1rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
    font-family: var(--family-font);

}

.why-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.why-btn i {
    color: white;
    font-size: 1rem;
}

/* Locations Section */
/* Locations Section */
.section-locations {
    padding: 6rem 0;
    text-align: center;
    position: relative;
    /* For decorative absolute elements */
}

/* Decorative Images */
.loc-deco-top {
    position: absolute;
    top: -135px;
    right: -80px;
    width: 460px;
    z-index: 1;
    transform: rotate(180deg);
    /* Adjust for top right leaf */
    pointer-events: none;
    opacity: 0.9;
}

.loc-deco-bottom {
    position: absolute;
    bottom: -20px;
    left: -145px;
    width: 440px;
    z-index: 1;

}

.section-desc-centered {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    font-family: var(--family-font);
    font-weight: 500;
    color: #6c757d;
    line-height: 1.6;
}

/* Map Wrapper */
.map-wrapper {
    position: relative;
    width: 100%;

    margin: 0rem auto 0 auto;
}

.map-img-bg {
    width: 100%;
    height: auto;
    display: block;

}

/* Custom Pins */
.map-pin-custom {
    position: absolute;
    transform: translate(-50%, -100%);
    /* Point to the bottom dot */
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.pin-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0;
    white-space: nowrap;
    position: relative;
    z-index: 2;
    padding-bottom: 2px;
}

.pin-line-vertical {
    width: 1px;
    background-color: #000;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.pin-dot {
    width: 6px;
    height: 6px;
    background-color: #000;
    border-radius: 50%;
    margin-top: 0;
}

/* Individual adjustments if needed */
.map-pin-custom:hover .pin-dot {
    transform: scale(1.5);
    background-color: #4CAF50;
    transition: all 0.2s;
}

/* Footer */
/* Footer */
.footer {
    background: linear-gradient(90deg, #021f14 0%, #075939 50%, #0a7e51 100%);
    /* Even darker deep green */
    color: white;
    padding: 5rem 0;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    margin-top: 0;
    font-size: 0.9rem;
}

.footer-brand {
    font-weight: 800;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    /* More space below logo */
}

.footer-brand i {
    font-size: 1.2rem;
    transform: rotate(-45deg) translateY(-2px);
    /* Tilted plane */
}

.footer-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.8rem;
    font-weight: 400;
    font-size: 1.2rem;
    font-family: var(--family-font);
}

/* Center Nav Links */
.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* More spacing between links */
}

.footer-nav-link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    /* Smaller, punchier */
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s;
    font-family: var(--family-font);
}

.footer-nav-link:hover {
    color: #9ECB75;
    opacity: 1;
}

/* Footer Buttons */
.footer-actions .btn {
    padding: 0 20px;
    height: 44px;
    /* Fixed height for uniformity */
    border-radius: 6px;
    font-weight: 400;
    font-size: 0.85rem;
    transition: all 0.3s;
    width: 200px;
    /* Fixed width strictly */
    display: inline-flex;
    align-items: center;
    font-family: var(--family-font);
    justify-content: flex-start;
}

.btn-footer-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: transparent;
    justify-content: center;
}

.btn-footer-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.btn-footer-solid {
    background-color: #348E5F;
    color: white;
    border: none;
    justify-content: space-between !important;
    padding: 0 15px 0 20px;
}

.btn-footer-solid:hover {
    background-color: #2E7d52;
    color: white;
    transform: translateX(3px);
}


/* =========================================
   PRODUCT PAGE STYLES
   ========================================= */

/* Product Hero */
.product-hero {
    position: relative;
    height: 500px;
    background: url(../img/slider.jpg) no-repeat center center / cover;
    margin: 20px 20px 4rem 20px;
    /* Floating card effect */
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Integrated Navbar for Product Page */
.product-hero .navbar {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1400px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 15px;
    padding: 0.8rem 2rem;
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.product-hero .navbar-brand {
    font-size: 1.4rem;
    color: white !important;
    font-weight: 800;
    letter-spacing: 1px;
}

.product-hero .navbar-toggler {
    border: none;
    outline: none;
    box-shadow: none;
}

.product-hero .nav-link {
    font-size: 1rem;
    margin: 0 15px;
    color: #FFF !important;
    letter-spacing: 1px;
    position: relative;
    font-family: var(--family-font);
}

.product-hero .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s;
}

.product-hero .nav-link:hover::after {
    width: 100%;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 47, 34, 0.6) 0%, rgba(8, 47, 34, 0.2) 100%);
}

.product-page-title {
    position: relative;
    z-index: 10;
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.prod-leaf-top-left {
    position: absolute;
    top: 40%;
    left: -50px;
    width: 325px;
    transform: rotate(78deg);
    z-index: 2;
    opacity: 0.7;
}

.prod-leaf-top-right {
    position: absolute;
    top: 40%;
    right: -50px;
    width: 300px;
    transform: rotate(188deg);
    z-index: -1;
    opacity: 0.7;
}

/* Product Overview Stack Layout */
.product-overview {
    padding: 5rem 0 5rem;
}

.overview-stack-container {
    position: relative;
    width: 100%;
    margin-top: 3rem;
    height: auto;
    /* Mobile default */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ov-stack-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 4px solid white;
    height: 300px;
}

.ov-stack-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Desktop Fanning Stack */
@media (min-width: 992px) {
    .overview-stack-container {
        height: 500px;
        /* Container height for stack */
        display: block;
        /* Disable flex */
    }

    .ov-stack-card {
        position: absolute;
        top: 0;
        height: 450px;
        width: 55%;
        /* Base width */
        transition: transform 0.3s ease;
    }

    /* Stack Ordering & Positioning */

    /* Card 1: Main Left */
    .ov-stack-card.card-1 {
        left: 0;
        z-index: 4;
        width: 50%;
    }

    /* Card 2 */
    .ov-stack-card.card-2 {
        left: 17%;
        z-index: 3;
        width: 50%;
        transform: scale(0.95) translateY(10px);
    }

    /* Card 3 */
    .ov-stack-card.card-3 {
        left: 34%;
        /* Overlap */
        z-index: 2;
        width: 50%;
        transform: scale(0.9) translateY(20px);
    }

    /* Card 4 */
    .ov-stack-card.card-4 {
        left: 50%;
        width: 50%;
        /* Extend to right */
        z-index: 1;
        transform: scale(0.85) translateY(30px);
    }

    /* Hover effect to bring cards to front or highlight */
    .ov-stack-card:hover {
        transform: scale(1.02) translateY(0);
        z-index: 10;
        /* Bring to front on hover */
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    }
}

/* 360 Indicator centered in Card 1 */
.ov-360-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.ov-360-indicator i {
    font-size: 2.5rem;
    margin-bottom: 5px;
}




/* Problem Box Styles */
.problem-box {
    background-color: #DDEEE6;
    /* Light mint matching reference */
    border-radius: 10px;
    padding: 15px 5px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    font-family: var(--family-font);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}

/* What We Offer */
.what-we-offer {
    padding: 4rem 0;
    position: relative;
}

.offer-leaf-right {
    position: absolute;
    bottom: -125px;
    right: -280px;
    width: 380px;
    pointer-events: none;
    z-index: 1;
    transform: rotate(271deg);
}

.offer-card {
    /* Wrapper wrapper - no global cleanup needed as we target children */
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
    margin-bottom: 1rem;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-header {
    font-family: var(--family-font);
    background-color: #37a777;
    color: white;
    padding: 10px 20px;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-radius: 10px;
    width: 60%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: -25px;
}

.offer-body {
    background-color: #f8f9fa;
    padding: 3rem 6.5rem 2rem;
    font-size: 15px;
    color: #000;
    line-height: 1.5;
    border-radius: 15px;
    text-align: center;
    z-index: 1;
    background: rgba(213, 213, 213, 0.3);
    font-family: var(--family-font);
    font-weight: 500;
}

.product-hero-title {
    font-family: var(--family-font);
    font-weight: 700;
}

/* Features Banner */
.features-banner-section {
    padding: 2rem 0 7rem;
}

.features-stripe {
    background: linear-gradient(135deg, #0a2e22 0%, #143d2e 100%);
    min-height: 180px;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
}

.feature-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    background: black;
    /* Tint */
}

.feature-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
}

.feature-col {
    position: relative;
    z-index: 2;
    height: 100px;
    /* content height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.border-end-white {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.feat-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    font-family: var(--family-font);
}

/* Earth Graphic */
.earth-graphic-section {
    padding-top: 0;
    /* margin-top: -50px; */
    position: relative;
    z-index: -1;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.earth-big-graphic {
    width: 100%;
    max-width: 900px;
    margin-bottom: -150px;
    pointer-events: none;
    position: relative;
    top: -40px;
}

/* =========================================
   CONTACT PAGE STYLES
   ========================================= */

.contact-hero {
    height: 60vh;
    min-height: 400px;
    background: url(../img/slider.jpg) no-repeat center center / cover;
}

.section-summary {
    padding-top: 5rem !important;
}

.summary-desc {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
    font-family: var(--family-font);
}

.summary-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
}

/* Why It Matters Cards */
.matter-card {
    background: #f5f5f5;
    padding: 1rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.3rem;
    color: #000000;
    border-radius: 12px;
    font-weight: 500;
    transition: transform 0.3s;
}

.matter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Hotels & Resorts Section */
.bg-dark-green {
    background-color: #0c260f;
    /* Deep green */
}

.text-light-gray {
    color: #bbb;
}

.benefit-tag {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 8px 12px;
    color: white;
    font-size: 0.9rem;
    text-align: center;

}

/* Contact Form Section */
.section-contact {
    /* overflow-x: hidden; */
}

.contact-details {
    font-size: 1.1rem;
    color: #000;
}

.floating-vr-headset {
    max-width: 100%;
    transform: scale(1.2) translateX(20px);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.form-control,
.form-select {
    padding: 0.8rem 1rem;
}

.form-label {
    margin-bottom: 0.2rem;
}

.fs-20 {
    font-size: 20px;
}

.text-black {
    color: #000;
}

.fw-300 {
    font-weight: 300;
}

.fs-25 {
    font-size: 25px;
}

.home-indicator {
    width: 90%;
}

.fw-600 {
    font-weight: 600;
}

.offer-leaf-right-1 {
    position: absolute;
    top: 40%;
    right: -230px;
    width: 315px;
    transform: rotate(270deg);
    z-index: -1;
    top: 380px;
}

/* What We Offer - New Symmetrical Title */
.section-title-offer {
    font-weight: 700;
    font-size: 2.5rem;
    color: black;
    margin: 0;
}

.offer-line-left,
.offer-line-right {
    display: block;
    width: 50px;
    height: 1.5px;
    /* Thin line */
    background-color: black;
    position: relative;
    margin-top: 5px;
    /* Visual alignment with text center */
}

/* Diamond on the right end of the left line (pointing to text) */
.offer-line-left::after {
    content: "";
    position: absolute;
    right: -3px;
    top: -2.25px;
    /* Center on 1.5px line */
    width: 6px;
    height: 6px;
    background-color: black;
    transform: rotate(45deg);
}

/* Diamond on the left end of the right line (pointing to text) */
.offer-line-right::before {
    content: "";
    position: absolute;
    left: -3px;
    top: -2.25px;
    width: 6px;
    height: 6px;
    background-color: black;
    transform: rotate(45deg);
}

.real-indicator {
    bottom: 50% !important;
}

/* Page Loader */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-green);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}