/* ==========================================================================
   Design Tokens & Variables (Redesign to match Image)
   ========================================================================== */
:root {
    /* Colors */
    --clr-bg: #f9faf9;
    --clr-surface: #ffffff;
    --clr-dark-blue: #23403f;
    /* Deep Teal */
    --clr-dark-blue-hover: #162c2b;
    --clr-gold: #708d88;
    /* Sage Green */
    --clr-gold-hover: #546e6a;
    --clr-text-main: #202b2a;
    --clr-text-light: #ffffff;
    --clr-text-muted: #697876;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Sizes */
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    --container-width: 1100px;

    /* Borders & Shadows */
    --border-radius: 8px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--clr-bg);
    color: var(--clr-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--clr-dark-blue);
}

a {
    color: var(--clr-dark-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--clr-gold);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

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

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--clr-dark-blue);
    color: var(--clr-text-light);
}

.btn-primary:hover {
    background-color: var(--clr-dark-blue-hover);
    color: var(--clr-text-light);
    transform: translateY(-2px);
}

.btn-gold {
    background-color: var(--clr-gold);
    color: var(--clr-text-light);
}

.btn-gold:hover {
    background-color: var(--clr-gold-hover);
    color: var(--clr-text-light);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--clr-text-light);
    color: var(--clr-text-light);
}

.btn-outline:hover {
    background-color: var(--clr-text-light);
    color: var(--clr-dark-blue);
}

.btn-small {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
}

/* ==========================================================================
   Header Navigation
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--spacing-md) 0;
    transition: all var(--transition-fast);
    background: transparent;
}

.site-header.scrolled {
    background: var(--clr-dark-blue);
    padding: var(--spacing-sm) 0;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.site-title a {
    font-weight: 900;
    color: var(--clr-text-light);
    font-size: 1.5rem;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.5rem;
}

.main-navigation ul li a {
    color: var(--clr-text-light);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.main-navigation ul li a:hover {
    color: var(--clr-gold);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    /* Ensure it stays above the open menu */
}

.menu-toggle .bars {
    width: 100%;
    height: 2px;
    background-color: var(--clr-text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--clr-dark-blue);
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-iframe-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-bg-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    /* (100 * 16 / 9) */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Overlay for text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(35 64 63 / 24%);
    /* Using Deep Teal with opacity */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--clr-text-light);
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--clr-text-light);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ==========================================================================
   Global Section Titles
   ========================================================================== */
.section-title {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--clr-text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}



/* ==========================================================================
   Diferenciais Section (Premium Cards)
   ========================================================================== */
.diferenciais-section {
    padding: 8rem 0;
    background-color: #f8f9f8;
    /* Very light off-white */
    overflow: hidden;
}

.diferenciais-header {
    margin-bottom: 5rem;
    text-align: left;
}

.diferenciais-header .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--clr-dark-blue);
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background-color: var(--clr-gold);
    border-radius: 2px;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.diferencial-card {
    background: #ffffff;
    padding: 2.5rem 1.5rem;
    border-radius: 4px;
    /* Sharp corners like in screenshot or very subtle radius */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.diferencial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.diferencial-icon {
    color: var(--clr-gold);
    margin-bottom: 0.5rem;
}

.diferencial-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--clr-dark-blue);
    line-height: 1.3;
}

.diferencial-card p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 1100px) {
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .title-underline {
        margin: 0 auto;
    }
}

/* ==========================================================================
   About Property Section
   ========================================================================== */
.about-property-section {
    position: relative;
    padding: 8rem 0;
    /* Premium dark gradient transferred from video section */
    background: linear-gradient(135deg, #2b4f4c 0%, #708d88 100%);
    overflow: hidden;
    color: var(--clr-text-light);
}

.about-property-section .section-title {
    color: var(--clr-text-light);
}

.about-property-section .section-subtitle {
    color: var(--clr-gold);
    opacity: 1;
}

/* Background Effects with enhanced visibility */
.bg-abstract-lines {
    position: absolute;
    bottom: 5%;
    right: 0;
    width: 300px;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg width='300' height='100' viewBox='0 0 300 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-50 50Q25 10 100 50T250 50' stroke='%23ffffff' stroke-width='1.5' fill='none' stroke-linecap='round' opacity='0.3'/%3E%3Cpath d='M-50 70Q25 30 100 70T250 70' stroke='%23ffffff' stroke-width='1.5' fill='none' stroke-linecap='round' opacity='0.2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    transform: scaleX(-1);
    pointer-events: none;
    z-index: 1;
}

.bg-botanical-art {
    position: absolute;
    bottom: -100px;
    left: -150px;
    width: 500px;
    height: 500px;
    /* Aura Premium: Duas formas suaves esfumaçadas (verde sálvia e azul escuro) remetendo vagamente a mata/sombras */
    background: radial-gradient(circle at 40% 40%, rgba(112, 141, 136, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(35, 64, 63, 0.08) 0%, transparent 60%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 1;
}

.about-property-section .container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
    align-items: center;
}

.about-text-card {
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--clr-text-light);
    font-family: 'Playfair Display', serif;
}

.about-text p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.8rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-text p strong {
    color: #fff;
    font-weight: 700;
}

.about-check-list {
    list-style: none;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-check-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.4;
}

.about-check-list li i {
    color: var(--clr-gold);
    font-style: normal;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-image {
    position: relative;
}

.large-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
}

.large-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 20px;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-image .large-video-wrapper {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-pronto {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background-color: var(--clr-gold);
    color: var(--clr-dark-blue);
    padding: 0.8rem 1.8rem;
    font-weight: 900;
    font-family: var(--font-heading);
    transform: rotate(-3deg);
    border-radius: 4px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    z-index: 20;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* ==========================================================================
   Refúgio Natural Parallax Section
   ========================================================================== */
.refugio-parallax-section {
    position: relative;
    padding: 8rem 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--clr-dark-blue);
    overflow: hidden;
}

.refugio-parallax-section .parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgb(230 234 233 / 18%); */
    /* Light overlay */
    z-index: 1;
    background: linear-gradient(90deg, rgb(112 141 136 / 33%) 0%, #0000008c 100%);
}

.parallax-title {
    font-size: 2.3rem;
    color: #f1f5f4;
    margin-bottom: 1rem;
    text-shadow: 4px 1px 2px rgb(69 102 99);
    text-align: center;
}

.parallax-subtitle {
    font-size: 1.2rem;
    color: #f3f6f5;
    font-weight: 500;
    text-align: center;
}

/* ==========================================================================
   Benefits / Income Transfer Section (Dark Blue)
   ========================================================================== */
.benefits-section {
    background-color: var(--clr-dark-blue);
    color: var(--clr-text-light);
    padding: 5rem 0;
}

.benefits-section h2 {
    color: var(--clr-text-light);
}

.benefits-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-list {
    list-style: none;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefits-list-icon {
    background-color: var(--clr-gold);
    color: #fff;
    min-width: 32px;
    height: 32px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.benefits-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   Stats Section (Infinite Marquee)
   ========================================================================== */
.stats-section {
    padding: 5rem 0 2rem;
    background-color: var(--clr-bg);
    text-align: center;
    background: radial-gradient(circle at center, #ffffff 0%, #f0f4f3 100%);
    display: none;
}

.infinite-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
    margin-top: 3rem;
    display: none;

}


.infinite-marquee-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scroll-marquee 25s linear infinite;
}

.infinite-marquee-container:hover .infinite-marquee-track {
    animation-play-state: paused;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

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

.stat-card {
    background-color: var(--clr-dark-blue);
    color: var(--clr-text-light);
    padding: 2rem 1.25rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 260px;
    flex-shrink: 0;
}

.stat-card-wide {
    min-width: 320px;
}

.stat-card-icon {
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--clr-text-light);
}

.stat-card h3 {
    color: var(--clr-text-light);
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.stat-card p {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.95;
    margin-bottom: 0.2rem;
}

.stat-card p.stronger {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-card span {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 0.25rem;
}

.stat-card span.multiline-span {
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   Why Invest Grid Section
   ========================================================================== */
.why-invest-section {
    padding: 4rem 0 5rem;
    background-color: var(--clr-bg);
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.why-card {
    background: var(--clr-surface);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: left;
    border-top: 4px solid var(--clr-dark-blue);
    transition: transform var(--transition-fast);
}

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

.why-icon {
    width: 40px;
    height: 40px;
    background-color: var(--clr-dark-blue);
    color: #fff;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.why-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

/* ==========================================================================
   Gallery Mosaic Section
   ========================================================================== */
.gallery-section {
    padding: 6rem 0;
    position: relative;
    background: radial-gradient(circle at center, #ffffff 0%, #f0f4f3 100%);
    overflow: hidden;
}

.bg-waves-left,
.bg-waves-right {
    position: absolute;
    width: 300px;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg width='300' height='100' viewBox='0 0 300 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-50 50Q25 10 100 50T250 50' stroke='%23708d88' stroke-width='1.5' fill='none' stroke-linecap='round' opacity='0.3'/%3E%3Cpath d='M-50 70Q25 30 100 70T250 70' stroke='%23708d88' stroke-width='1.5' fill='none' stroke-linecap='round' opacity='0.2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
}

.bg-waves-left {
    top: 20%;
    left: 0;
    background-position: left center;
}

.bg-waves-right {
    bottom: 20%;
    right: 0;
    background-position: right center;
    transform: scaleX(-1);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 12px;
    margin-top: 3rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

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

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

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

.gi-tall {
    grid-row: span 2;
}

.gi-wide {
    grid-column: span 2;
}

/* ==========================================================================
   Location Section
   ========================================================================== */
.location-section {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--clr-surface) 0%, rgba(112, 141, 136, 0.1) 100%);
    overflow: hidden;
}

.bg-waves-dark-left,
.bg-waves-dark-right {
    position: absolute;
    width: 300px;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg width='300' height='100' viewBox='0 0 300 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-50 50Q25 10 100 50T250 50' stroke='%2323403f' stroke-width='1.5' fill='none' stroke-linecap='round' opacity='0.15'/%3E%3Cpath d='M-50 70Q25 30 100 70T250 70' stroke='%2323403f' stroke-width='1.5' fill='none' stroke-linecap='round' opacity='0.1'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
}

.bg-waves-dark-left {
    top: 10%;
    left: 0;
    background-position: left center;
}

.bg-waves-dark-right {
    bottom: 10%;
    right: 0;
    background-position: right center;
    transform: scaleX(-1);
}

.location-header {
    text-align: center;
    margin-bottom: 4rem;
}

.location-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

@media (max-width: 900px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
}

.location-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 4px solid var(--clr-surface);
    margin-top: 7rem;
    min-height: 400px;
}

.location-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: contrast(1.1) saturate(1.1);
}

.location-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--clr-dark-blue);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.location-info h3::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--clr-gold);
}

.poi-list {
    list-style: none;
    padding: 0;
}

.poi-list li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1rem;
    padding: 0.8rem 1rem 0.8rem 0;
    border-left: 3px solid var(--clr-gold);
    background: linear-gradient(90deg, rgba(112, 141, 136, 0.08) 0%, transparent 100%);
    border-radius: 0 8px 8px 0;
    padding-left: 1.2rem;
}

.poi-list li:last-child {
    margin-bottom: 0;
}

.poi-icon {
    width: 44px;
    height: 44px;
    background-color: #ffffff;
    color: var(--clr-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(112, 141, 136, 0.2);
}

.poi-text h4 {
    font-size: 1.1rem;
    color: var(--clr-text-main);
    margin-bottom: 0.2rem;
    font-family: var(--font-heading);
}

.poi-text span {
    font-size: 0.9rem;
    color: var(--clr-gold);
    font-weight: 600;
}

grid-column: span 1;
grid-row: span 2;
}

.gi-wide {
    grid-column: span 2;
    grid-row: span 1;
}

.gi-small {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-more {
    background: linear-gradient(135deg, #2b4f4c 0%, #708d88 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.gallery-more:hover {
    background: linear-gradient(135deg, #1d3635 0%, #546e6a 100%);
    color: #fff;
    transform: scale(1.02);
}

.gallery-more h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    font-weight: 700;
    color: #ffffff;
}

.gallery-more p {
    font-size: 0.8rem;
    opacity: 0.9;
    color: #ffffff;
}



/* ==========================================================================
   Lightbox Gallery
   ========================================================================== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(21, 39, 38, 0.96);
    /* Darkened var(--clr-dark-blue) */
    z-index: 9999;
    display: none;
    /* hidden by default */
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 95%;
    max-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-img-wrapper {
    position: relative;
    display: inline-block;
}

#lightboxImg {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    object-fit: contain;
    display: block;
}

/* Lightbox Counter (15 / 19) */
.lightbox-counter {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    font-family: var(--font-body);
    letter-spacing: 1px;
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 8px 24px;
    border-radius: 4px;
    color: #fff;
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
    text-align: center;
    max-width: 90%;
    margin-top: 0;
}

/* Close Button on the Image */
.lightbox-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10000;
    border-top-right-radius: 6px;
    border-bottom-left-radius: 4px;
    transition: background 0.2s;
}

.lightbox-close:hover {
    background: var(--clr-gold);
    color: #000;
}

/* Thin Arrows on the edges */
.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 10px;
    color: white;
    font-weight: 300;
    font-size: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    transition: background 0.3s, color 0.3s;
    z-index: 10000;
}

.lightbox-prev {
    left: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.lightbox-next {
    right: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

@media (max-width: 768px) {

    .lightbox-prev,
    .lightbox-next {
        padding: 8px;
        font-size: 16px;
    }
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--clr-gold);
}

/* ==========================================================================
   About / Beach Background Section
   ========================================================================== */
.about-section {
    position: relative;
    padding: 5rem 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    color: var(--clr-text-light);
    display: none;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 76, 0.7);
    /* Darker overlay for readability */
}

.about-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-section h2 {
    color: var(--clr-gold);
    margin-bottom: 1.5rem;
}

/* Professional Icon List Styling */
.chance-list {
    list-style: none;
    padding: 0;
}

.chance-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    group: hover;
}

.chance-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-gold);
    flex-shrink: 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.chance-item:hover .chance-icon {
    background: var(--clr-gold);
    color: var(--clr-dark-blue);
    transform: translateY(-2px);
}

.chance-item span {
    font-size: 1.1rem;
    font-weight: 400;
}

/* ==========================================================================
   Footer / Form Section
   ========================================================================== */
.footer-section {
    position: relative;
    background-color: var(--clr-gold);
    padding: 8rem 0;
    text-align: center;
    overflow: hidden;
    color: var(--clr-text-light);
}

.footer-waves {
    position: absolute;
    bottom: 20px;
    right: 0;
    width: 300px;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg width='300' height='100' viewBox='0 0 300 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-50 50Q25 10 100 50T250 50' stroke='%23ffffff' stroke-width='1.5' fill='none' stroke-linecap='round' opacity='0.3'/%3E%3Cpath d='M-50 70Q25 30 100 70T250 70' stroke='%23ffffff' stroke-width='1.5' fill='none' stroke-linecap='round' opacity='0.2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
}

.footer-section .container {
    position: relative;
    z-index: 2;
}

.footer-section .section-title {
    color: var(--clr-text-light);
}

.footer-section .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
}

/* ==========================================================================
   Site Footer
   ========================================================================== */
.site-footer {
    background: linear-gradient(180deg, var(--clr-dark-blue) 0%, #152726 100%);
    color: var(--clr-text-light);
    padding: 5rem 0 2rem;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--clr-text-light);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-disclaimer {
    font-size: 0.65rem;
    opacity: 0.5;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-credits {
    font-size: 0.75rem;
    opacity: 0.5;
    margin-top: 0.5rem;
}

/* WhatsApp Floating Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* ==========================================================================
   Animations (Reveal on Scroll)
   ========================================================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger for grid layouts */
.stagger-children>* {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-visible.stagger-children>* {
    opacity: 1;
    transform: translateY(0);
}

.reveal-on-scroll.is-visible.stagger-children>*:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal-on-scroll.is-visible.stagger-children>*:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal-on-scroll.is-visible.stagger-children>*:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal-on-scroll.is-visible.stagger-children>*:nth-child(4) {
    transition-delay: 0.4s;
}

.reveal-on-scroll.is-visible.stagger-children>*:nth-child(5) {
    transition-delay: 0.5s;
}

.reveal-on-scroll.is-visible.stagger-children>*:nth-child(6) {
    transition-delay: 0.6s;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {

    .benefits-container,
    .about-container,
    .about-content-grid {
        grid-template-columns: 1fr;
    }


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

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

    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .about-text-card {
        padding: 2rem;
    }

    .about-header .section-title {
        font-size: 2.2rem !important;
    }

    .about-check-list {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .menu-toggle {
        display: flex;
    }

    .main-navigation ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--clr-dark-blue);
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }

    .main-navigation.toggled ul {
        display: flex;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .gallery-container {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .gi-large,
    .gi-tall,
    .gi-wide,
    .gi-small {
        grid-column: span 1;
        grid-row: span 1;
    }
}