/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
    --primary-color: #0d3c26;
    /* Rich Forest Green */
    --primary-light: #164e33;
    --secondary-color: #0a7470;
    /* Premium Teal */
    --accent-color: #4cae9f;
    /* Refreshing Aqua */
    --gold-color: #c5a880;
    /* Luxury Gold */
    --gold-hover: #b09168;
    --bg-cream: #fbf9f6;
    /* Soft Cream */
    --bg-white: #ffffff;
    --text-dark: #1d211e;
    /* Off-black Charcoal */
    --text-muted: #5e6861;
    --border-color: #e5eae6;

    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;

    --shadow-sm: 0 2px 8px rgba(13, 60, 38, 0.05);
    --shadow-md: 0 8px 24px rgba(13, 60, 38, 0.08);
    --shadow-lg: 0 16px 40px rgba(13, 60, 38, 0.12);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================
   BASE STYLES & RESET
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-color);
}

p {
    font-weight: 300;
    color: var(--text-muted);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-cream);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 60, 38, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-block {
    display: flex;
    width: 100%;
    text-align: center;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

/* Icon utilities */
.icon {
    width: 20px;
    height: 20px;
}

/* Section Header Utilities */
.section-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold-color);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-title {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 17px;
    margin-bottom: 20px;
    max-width: 650px;
}

.section-desc-center {
    font-size: 17px;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ==========================================
   HEADER NAVIGATION
   ========================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(251, 249, 246, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo-area {
    display: flex;
    align-items: center;
    position: relative;
    height: 80px;
}

.header-logo {
    position: absolute;
    top: -15px;
    left: 0;
    height: 125px;
    width: 170px;
    object-fit: cover;
    object-position: top;
    z-index: 10;
}

.brand-info {
    display: flex;
    flex-direction: column;
    margin-left: 182px;
    /* Spacing for the absolute logo */
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    line-height: 1.1;
}

.powered-by {
    font-size: 9px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    padding: 6px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold-color);
    transition: var(--transition);
}

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

.btn-header-contact {
    background-color: var(--primary-color);
    color: var(--bg-cream) !important;
    padding: 10px 22px !important;
    border-radius: 50px;
}

.btn-header-contact:hover {
    background-color: var(--secondary-color);
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2.5px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(29, 33, 30, 0.35), rgba(29, 33, 30, 0.7));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin-left: 8%;
    padding: 30px;
    color: var(--bg-cream);
}

.hero-subtitle {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gold-color);
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 58px;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    max-width: 600px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-ctas .btn-secondary {
    color: #ffffff;
    border-color: #ffffff;
}

.hero-ctas .btn-secondary:hover {
    background-color: #ffffff;
    color: var(--primary-color);
}

.hero-trustline {
    font-size: 13px;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-trustline .bullet {
    color: var(--gold-color);
}

/* ==========================================
   QUICK HIGHLIGHTS
   ========================================== */
.highlights-section {
    padding: 60px 0;
    background-color: var(--bg-white);
    position: relative;
    z-index: 5;
    margin-top: -40px;
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
}

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

.highlight-card {
    text-align: center;
    padding: 28px 18px;
    background-color: var(--bg-cream);
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid rgba(197, 168, 128, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.highlight-card:hover {
    transform: translateY(-6px);
    background-color: var(--primary-color);
    border-color: var(--gold-color);
    box-shadow: 0 12px 30px rgba(13, 60, 38, 0.25);
}

.highlight-card:hover h3,
.highlight-card:hover p {
    color: var(--bg-cream);
}

.highlight-card:hover .highlight-icon svg {
    color: var(--gold-color);
    transform: scale(1.1);
}

.highlight-icon svg {
    width: 36px;
    height: 36px;
    color: var(--primary-color);
    margin-bottom: 16px;
    transition: var(--transition);
}

.highlight-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    transition: var(--transition);
}

.highlight-card p {
    font-size: 12px;
    transition: var(--transition);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
    padding: 100px 0;
}

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

.about-text .section-badge {
    display: block;
}

.about-amenities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0 40px 0;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
}

.amenity-check {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 18px;
}

.about-visual {
    position: relative;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-accent-box {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background-color: var(--secondary-color);
    color: white;
    padding: 24px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.accent-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    color: var(--gold-color);
}

.accent-label {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==========================================
   STAY OPTIONS
   ========================================== */
.stays-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

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

.stay-card {
    background-color: var(--bg-cream);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.stay-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.stay-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.stay-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.stay-card:hover .stay-img {
    transform: scale(1.08);
}

.stay-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--primary-color);
    color: var(--gold-color);
    font-size: 11px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    letter-spacing: 0.5px;
}

.stay-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.stay-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.stay-desc {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.stay-features {
    list-style: none;
    margin-bottom: auto;
    padding-bottom: 20px;
}

.stay-features li {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--text-muted);
    position: relative;
    padding-left: 28px;
    line-height: 1.4;
}

.stay-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c5a880'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.stay-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    display: flex;
    justify-content: center;
}

/* ==========================================
   PACKAGES SECTION
   ========================================== */
.packages-section {
    padding: 100px 0;
}

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

.package-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.package-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background-color: rgba(76, 174, 159, 0.15);
    color: var(--secondary-color);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.package-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    padding-right: 60px;
}

.pkg-desc {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 24px;
}

.pkg-pricing {
    background-color: var(--bg-cream);
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    text-align: center;
}

.pkg-start {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.pkg-price {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
}

.pkg-price small {
    font-size: 13px;
    font-weight: 400;
    font-family: var(--font-body);
}

.pkg-inclusions {
    list-style: none;
    margin-bottom: 28px;
    flex-grow: 1;
}

.pkg-inclusions li {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--text-dark);
    position: relative;
    padding-left: 28px;
    line-height: 1.4;
}

.pkg-inclusions li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c5a880'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* ==========================================
   PHOTO GALLERY
   ========================================== */
.gallery-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    padding: 10px 24px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
    background-color: var(--primary-color);
    color: var(--bg-cream);
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--bg-cream);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(13, 60, 38, 0.15);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

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

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 60, 38, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay span {
    color: white;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid white;
    padding: 8px 16px;
    border-radius: 30px;
    letter-spacing: 0.5px;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1500;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 18, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: auto;
}

.lightbox-content {
    position: relative;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    width: 80%;
    max-width: 900px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 24px;
    background: rgba(255, 255, 255, 0.08);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1600;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.close-lightbox:hover {
    background-color: var(--gold-color);
    color: var(--primary-color);
    border-color: var(--gold-color);
    transform: rotate(90deg) scale(1.05);
}

.prev-lightbox,
.next-lightbox {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
    user-select: none;
    z-index: 10;
}

.prev-lightbox {
    left: -80px;
}

.next-lightbox {
    right: -80px;
}

.prev-lightbox:hover,
.next-lightbox:hover {
    background-color: var(--gold-color);
    color: var(--primary-color);
    border-color: var(--gold-color);
    transform: translateY(-50%) scale(1.08);
}

#lightbox-caption {
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 28px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-block;
    max-width: 90%;
    backdrop-filter: blur(4px);
}

/* ==========================================
   RESTAURANT SECTION
   ========================================== */
.restaurant-section {
    padding: 100px 0;
}

.restaurant-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.restaurant-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 480px;
}

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

.restaurant-feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 32px 0;
}

.r-feat strong {
    display: block;
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 6px;
}

.r-feat p {
    font-size: 13px;
}

/* ==========================================
   WHY CHOOSE US
   ========================================== */
.why-us-section {
    padding: 100px 0;
    background-color: var(--primary-color);
    color: white;
}

.why-us-section .section-badge {
    color: var(--gold-color);
}

.why-us-section .section-title {
    color: white;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.why-us-card {
    background-color: var(--primary-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 32px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.why-us-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.why-icon {
    font-size: 40px;
    margin-bottom: 24px;
    display: inline-block;
}

.why-us-card h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 12px;
}

.why-us-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
}

/* ==========================================
   GUEST REVIEWS
   ========================================== */
.reviews-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.reviews-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.review-slide {
    min-width: 100%;
    text-align: center;
    padding: 40px 60px;
    background-color: var(--bg-cream);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.stars {
    color: var(--gold-color);
    font-size: 22px;
    margin-bottom: 20px;
}

.review-text {
    font-size: 20px;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--primary-color);
    line-height: 1.5;
    margin-bottom: 24px;
}

.guest-name {
    font-size: 16px;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 4px;
}

.guest-tag {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--secondary-color);
    width: 24px;
    border-radius: 5px;
}

/* ==========================================
   LOCATION & MAP
   ========================================== */
.location-section {
    padding: 100px 0;
}

.location-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: stretch;
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.address-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 40px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.address-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.addr-detail {
    font-size: 15px;
    margin-bottom: 32px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.addr-detail svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #e25c5c;
    /* Coral location pin */
}

.loc-distances {
    margin-bottom: 32px;
}

.dist-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.dist-item span {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dist-item span svg {
    flex-shrink: 0;
    color: var(--secondary-color);
    /* Premium brand teal */
}

.dist-item strong {
    color: var(--primary-color);
}

/* ==========================================
   CONTACT & ENQUIRY FORM
   ========================================== */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.contact-info-block p {
    font-size: 16px;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.c-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.c-icon {
    font-size: 24px;
    background-color: rgba(10, 116, 112, 0.08);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.c-detail-item h4 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.c-detail-item p {
    font-size: 14px;
    margin-bottom: 0;
    color: var(--text-muted);
}

.contact-form-block {
    background-color: var(--bg-cream);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.contact-form-block h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.form-group-row {
    display: flex;
    gap: 16px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
    background-color: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(10, 116, 112, 0.1);
}

/* ==========================================
   FOOTER
   ========================================== */
.main-footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: 200px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand h3 {
    color: white;
    font-size: 22px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-bottom: 16px;
    max-width: 320px;
}

.powered-by-footer {
    display: inline-block;
    font-size: 11px;
    color: var(--gold-color);
    letter-spacing: 0.5px;
    font-weight: 500;
}

.footer-grid h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid ul li {
    font-size: 13px;
    margin-bottom: 10px;
}

.footer-grid ul li a:hover {
    color: var(--gold-color);
}

.footer-divider {
    border: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    flex-wrap: wrap;
    gap: 16px;
}

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

.social-links a:hover {
    color: var(--gold-color);
}

/* ==========================================
   STICKY WHATSAPP BUTTON
   ========================================== */
.whatsapp-sticky-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1200;
    background-color: #25d366;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-sticky-btn:hover {
    background-color: #20ba5a;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-svg {
    width: 20px;
    height: 20px;
}

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

/* Tablet & Smaller Desktop */
@media (max-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .about-wrapper,
    .restaurant-wrapper,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visual {
        order: -1;
    }

    .about-accent-box {
        bottom: -15px;
        left: 15px;
    }

    .header-logo {
        position: static;
        display: block;
        height: 40px;
        width: 70px;
        object-fit: cover;
        object-position: center top;
        clip-path: circle(20px at 35px 20px);
    }

    .brand-info {
        margin-left: 0;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .header-container {
        height: 80px;
    }

    .logo-area {
        height: 80px;
    }

    .hero-section {
        padding-top: 80px;
    }

    .section-title {
        font-size: 30px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-content {
        margin-left: 0;
        padding: 20px;
        text-align: center;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-trustline {
        justify-content: center;
    }

    /* Header toggle */
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-cream);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        transition: 0.4s ease;
        padding: 40px;
        border-top: 1px solid var(--border-color);
        box-shadow: var(--shadow-lg);
    }

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

    .nav-link {
        font-size: 18px;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .highlight-card {
        padding: 16px 10px;
    }

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

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

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

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

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .review-slide {
        padding: 24px 16px;
    }

    .review-text {
        font-size: 16px;
    }

    .location-wrapper {
        grid-template-columns: 1fr;
    }

    .form-group-row {
        flex-direction: column;
        gap: 20px;
    }

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

    .footer-bottom {
        text-align: center;
        justify-content: center;
    }

    .prev-lightbox,
    .next-lightbox {
        padding: 10px;
        margin-top: -30px;
    }

    .prev-lightbox {
        left: -40px;
    }

    .next-lightbox {
        right: -40px;
    }
}

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

    .hero-title {
        font-size: 32px;
    }

    .about-accent-box {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 16px;
        display: inline-block;
        padding: 12px 24px;
    }

    .whatsapp-label {
        display: none;
        /* Hide text label on super small screens, keep logo */
    }

    .whatsapp-sticky-btn {
        padding: 12px;
        border-radius: 50%;
    }
}

/* ==========================================
   BROCHURE SPECIFIC NEW STYLES
   ========================================== */

/* Top Announcement Bar */
.top-bar {
    background-color: var(--primary-color);
    color: var(--gold-color);
    font-size: 13px;
    padding: 8px 0;
    text-align: center;
    border-bottom: 1px solid rgba(197, 168, 128, 0.2);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: underline;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--gold-color);
    font-style: italic;
    margin-bottom: 12px;
}

/* Pricing Table Styling */
.pricing-table-wrapper {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow-x: auto;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pricing-table th {
    background-color: var(--primary-color);
    color: var(--gold-color);
    font-family: var(--font-heading);
    padding: 18px 24px;
    font-size: 16px;
}

.pricing-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
}

.pricing-table tr:hover {
    background-color: var(--bg-cream);
}

.pricing-table .price-col {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 18px;
}

.pricing-table .highlight-row {
    background-color: #f7f3eb;
}

.badge-tag {
    background: var(--gold-color);
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Inclusions Banner */
.inclusions-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    padding: 36px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-top: 30px;
}

.inclusions-banner h3 {
    color: var(--gold-color);
    font-family: var(--font-heading);
    letter-spacing: 1px;
    margin-bottom: 24px;
    text-align: center;
}

.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.inc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(5px);
}

.inc-icon {
    font-size: 22px;
}

.inc-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-top: 20px;
}

/* Amenities Grid */
.amenities-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.amenity-card-box {
    background: #ffffff;
    border: 1px solid rgba(13, 60, 38, 0.12);
    padding: 30px 22px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.amenity-card-box:hover {
    transform: translateY(-6px);
    border-color: var(--gold-color);
    box-shadow: 0 15px 35px rgba(13, 60, 38, 0.15);
}

.amenity-card-box .a-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(13, 60, 38, 0.06);
    border: 1px solid rgba(197, 168, 128, 0.4);
    border-radius: 50%;
    margin-bottom: 18px;
    color: var(--primary-color);
    transition: var(--transition);
}

.amenity-card-box .a-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--primary-color) !important;
    display: block;
}

.amenity-card-box:hover .a-icon {
    background: var(--primary-color);
    color: var(--gold-color);
    transform: scale(1.08);
}

.amenity-card-box:hover .a-icon svg {
    fill: var(--gold-color) !important;
}

.amenity-card-box h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

/* Luxury Pricing Table Styling */
.pricing-table-wrapper {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    overflow-x: auto;
    margin-bottom: 35px;
    border: 1px solid rgba(197, 168, 128, 0.3);
}

.pricing-table th {
    background: linear-gradient(135deg, var(--primary-color), #092c1b);
    color: var(--gold-color);
    font-family: var(--font-heading);
    padding: 20px 28px;
    font-size: 16px;
    letter-spacing: 1px;
}

.pricing-table td {
    padding: 18px 28px;
    border-bottom: 1px solid rgba(13, 60, 38, 0.07);
    font-size: 15px;
}

.pricing-table tr:hover {
    background-color: rgba(197, 168, 128, 0.06);
}

.pricing-table .price-col {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 19px;
    font-family: var(--font-heading);
}

.pricing-table .highlight-row {
    background: linear-gradient(90deg, rgba(197, 168, 128, 0.12), rgba(197, 168, 128, 0.04));
    border-left: 4px solid var(--gold-color);
}

/* Inclusions Banner */
.inclusions-banner {
    background: linear-gradient(135deg, #0a331f, #072617);
    color: #ffffff;
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    margin-top: 35px;
    border: 1px solid rgba(197, 168, 128, 0.3);
}

.inclusions-banner h3 {
    color: var(--gold-color);
    font-family: var(--font-heading);
    letter-spacing: 2px;
    margin-bottom: 28px;
    text-align: center;
    font-size: 20px;
}

.inc-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 168, 128, 0.2);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.inc-item:hover {
    background: rgba(197, 168, 128, 0.12);
    border-color: var(--gold-color);
}

.contact-details .c-icon {
    background: rgba(197, 168, 128, 0.12);
    border: 1px solid rgba(197, 168, 128, 0.3);
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Signature Experiences Grid */
.exp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.exp-card {
    background: var(--bg-cream);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.exp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.exp-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}

.exp-card h4 {
    padding: 12px 8px;
    font-size: 13px;
    font-family: var(--font-heading);
    font-weight: 600;
}

.exp-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.exp-tags-list span {
    background: #e8efe9;
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

/* Dining Highlight Box */
.menu-highlight-box {
    background: var(--bg-cream);
    border-left: 4px solid var(--primary-color);
    padding: 16px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-top: 15px;
}

.menu-highlight-box h4 {
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.menu-highlight-box p {
    font-size: 14px;
    color: var(--text-dark);
}