/* ========================================
   CEYLON LUXE - COMPLETE STYLESHEET
   Luxury Sri Lanka & Maldives Travel 2026
======================================== */

/* ========================================
   ROOT VARIABLES
======================================== */
:root {
    /* Primary Colors */
    --cream: #F8F5F0;
    --off-white: #FDFBF7;
    --warm-white: #FAF8F5;
    --ivory: #FFFFF0;
    
    /* Gold Palette */
    --gold: #C8A97E;
    --gold-dark: #9B7F5B;
    --gold-light: #D4BC94;
    --gold-pale: #E8DCC8;
    
    /* Dark Tones */
    --forest: #0F2A1D;
    --forest-light: #1A3D2B;
    --charcoal: #333333;
    --slate: #4A4A4A;
    
    /* Accent Colors */
    --sage: #8B9D83;
    --sage-deep: #6B7D63;
    --ocean-blue: #1A4B6E;
    --ocean-dark: #0D2840;
    --turquoise: #40E0D0;
    --coral: #FF6B6B;
    --heart-red: #E74C3C;
    
    /* Neutrals */
    --grey-light: #E8E4DF;
    --grey-medium: #B8B4AF;
    --grey-dark: #6B6B6B;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(15, 42, 29, 0.06);
    --shadow-md: 0 8px 30px rgba(15, 42, 29, 0.1);
    --shadow-lg: 0 20px 60px rgba(15, 42, 29, 0.15);
    --shadow-xl: 0 35px 80px rgba(15, 42, 29, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s ease;
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-luxury: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Font stacks (used by inline footers & components) */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--off-white);
    color: var(--charcoal);
    line-height: 2.0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--forest);
}

h1 { font-size: clamp(42px, 7vw, 80px); font-weight: 700; letter-spacing: -1.5px; line-height: 1.05; }
h2 { font-size: clamp(32px, 5vw, 52px); letter-spacing: -1px; }
h3 { font-size: clamp(26px, 3vw, 36px); }
h4 { font-size: clamp(20px, 2.5vw, 26px); }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
    font-size: 17px;
    line-height: 2.1;
    font-weight: 300;
    color: var(--slate);
    letter-spacing: 0.3px;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ========================================
   NAVIGATION
======================================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 22px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    /* remove heavy blur for solid white header */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 1000;
    border-bottom: 1px solid rgba(200, 169, 126, 0.1);
    transition: var(--transition-normal);
}

nav.scrolled {
    padding: 15px 5%;
    box-shadow: var(--shadow-md);
}

body[data-cms-page="home"] #navbar {
    background: linear-gradient(to bottom, rgba(8, 24, 18, 0.42), rgba(8, 24, 18, 0.08)) !important;
    border-bottom-color: rgba(255, 255, 255, 0.12) !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

body[data-cms-page="home"] #navbar.scrolled {
    background: rgba(253, 251, 247, 0.98) !important;
    border-bottom-color: rgba(200, 169, 126, 0.1) !important;
    box-shadow: var(--shadow-md) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
}

body[data-cms-page="home"] .awards-strip {
    display: none !important;
}

body[data-cms-page="home"] #navbar {
    padding: 18px 5% !important;
    gap: 28px;
}

body[data-cms-page="home"] #navbar .nav-links {
    flex: 1 1 auto;
    justify-content: center;
    gap: clamp(18px, 2.2vw, 34px);
    min-width: 0;
}

body[data-cms-page="home"] #navbar .nav-actions {
    flex: 0 0 auto;
}

body[data-cms-page="home"] #navbar .nav-links > li > a {
    color: rgba(255, 255, 255, 0.92) !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

body[data-cms-page="home"] #navbar.scrolled .nav-links > li > a {
    color: var(--forest) !important;
    text-shadow: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--forest);
    letter-spacing: 3px;
}

.logo-icon {
    color: var(--gold);
    font-size: 24px;
    transition: transform 0.6s ease;
}

.logo:hover .logo-icon {
    transform: rotate(180deg);
}

body:not([data-cms-page^="maldives"]):not([data-site-country="maldives"]):not([class*="maldives"]) #navbar .logo {
    width: 154px;
    height: 58px;
    gap: 0;
    background: url('../assets/logo.png') left center / contain no-repeat;
    color: transparent;
    letter-spacing: 0;
    overflow: hidden;
    flex: 0 0 auto;
}

body:not([data-cms-page^="maldives"]):not([data-site-country="maldives"]):not([class*="maldives"]) #navbar .logo .logo-icon,
body:not([data-cms-page^="maldives"]):not([data-site-country="maldives"]):not([class*="maldives"]) #navbar .logo span {
    opacity: 0;
    width: 0;
    height: 0;
    overflow: hidden;
}

body:not([data-cms-page^="maldives"]):not([data-site-country="maldives"]):not([class*="maldives"]) .mobile-menu-header .logo-icon + span {
    display: inline-block;
    width: 150px;
    height: 54px;
    background: url('../assets/logo.png') left center / contain no-repeat;
    color: transparent;
    overflow: hidden;
}

body[data-cms-page^="maldives"] #navbar .logo,
body[data-site-country="maldives"] #navbar .logo,
body[class*="maldives"] #navbar .logo {
    width: 188px;
    height: 62px;
    gap: 0;
    background: url('../assets/logomoldives.png') left center / contain no-repeat;
    color: transparent;
    letter-spacing: 0;
    overflow: hidden;
    flex: 0 0 auto;
}

body[data-cms-page^="maldives"] #navbar .logo .logo-icon,
body[data-cms-page^="maldives"] #navbar .logo span,
body[data-site-country="maldives"] #navbar .logo .logo-icon,
body[data-site-country="maldives"] #navbar .logo span,
body[class*="maldives"] #navbar .logo .logo-icon,
body[class*="maldives"] #navbar .logo span {
    opacity: 0;
    width: 0;
    height: 0;
    overflow: hidden;
}

body[data-cms-page^="maldives"] .mobile-menu-header .logo-icon,
body[data-site-country="maldives"] .mobile-menu-header .logo-icon,
body[class*="maldives"] .mobile-menu-header .logo-icon {
    display: none;
}

body[data-cms-page^="maldives"] .mobile-menu-header .logo-icon + span,
body[data-site-country="maldives"] .mobile-menu-header .logo-icon + span,
body[class*="maldives"] .mobile-menu-header .logo-icon + span {
    display: inline-block;
    width: 168px;
    height: 48px;
    background: url('../assets/logomoldives.png') left center / contain no-repeat;
    color: transparent;
    overflow: hidden;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--forest);
    padding: 10px 0;
    position: relative;
    transition: var(--transition-fast);
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width var(--transition-normal);
}

.nav-links > li:hover > a,
.nav-links > li > a.active {
    color: var(--gold);
}

.nav-links > li:hover > a::after {
    width: 100%;
}

/* Dropdown Menu */
.has-dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    min-width: 220px;
    background: var(--off-white);
    border: 1px solid var(--grey-light);
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition-normal);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.nav-links > li.has-dropdown > a[href*="activities/index.html"] + .dropdown-menu {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: none !important;
}

.nav-links > li.has-dropdown > a[href*="destinations/index.html"] + .dropdown-menu {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: none !important;
    pointer-events: none !important;
}

.dropdown-menu a {
    display: block;
    padding: 10px 25px;
    font-size: 12px;
    font-weight: 500;
    color: var(--charcoal);
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    background: var(--gold-pale);
    color: var(--gold-dark);
    padding-left: 35px;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-wishlist {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--grey-light);
    border-radius: 50%;
    transition: var(--transition-normal);
}

.nav-wishlist:hover {
    border-color: var(--gold);
    background: var(--gold-pale);
}

.nav-wishlist svg {
    width: 20px;
    height: 20px;
    stroke: var(--forest);
    transition: var(--transition-fast);
}

.nav-wishlist:hover svg {
    stroke: var(--gold);
}

.nav-wishlist-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: var(--heart-red);
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-cta {
    padding: 12px 30px;
    background: #d7ae7f;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid #d7ae7f;
    transition: none;
}

.nav-cta:hover {
    background: #d7ae7f;
    color: #fff;
    border-color: #d7ae7f;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 26px;
    height: 2px;
    background: var(--forest);
    transition: var(--transition-normal);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: var(--forest);
    z-index: 1000;
    padding: 30px;
    transition: right var(--transition-slow);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    letter-spacing: 2px;
}

.mobile-close {
    font-size: 32px;
    color: var(--off-white);
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-nav-links li {
    border-bottom: 1px solid rgba(200, 169, 126, 0.2);
}

.mobile-nav-links li a {
    display: block;
    padding: 18px 0;
    color: var(--off-white);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.mobile-nav-links li a:hover {
    color: var(--gold);
    padding-left: 15px;
}

.mobile-cta {
    display: block;
    margin-top: 35px;
    padding: 16px;
    background: #d7ae7f;
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: none;
}

.mobile-cta:hover {
    background: #d7ae7f;
    color: #fff;
}

/* ========================================
   WISHLIST FLOATING BUTTON
======================================== */
.wishlist-floating {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 60px;
    height: 60px;
    z-index: 9999;
}

.wishlist-floating .wishlist-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    padding: 0;
    margin: 0;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(200, 169, 126, 0.5);
    transition: var(--transition-normal);
    position: relative;
}

.wishlist-floating .wishlist-btn:hover {
    transform: scale(1.08);
    background: var(--gold-dark);
}

.wishlist-floating .wishlist-btn svg {
    width: 28px;
    height: 28px;
    stroke: var(--off-white);
    fill: none;
}

.wishlist-floating .wishlist-count {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 24px;
    height: 24px;
    background: var(--heart-red);
    color: white;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--off-white);
}

/* ========================================
   WHATSAPP FLOATING BUTTON
======================================== */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    z-index: 9999;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    padding: 0;
    margin: 0;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition-normal);
}

.whatsapp-btn:hover {
    transform: scale(1.08);
    background: #128C7E;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
    fill: white;
}


/* ========================================
   WISHLIST HEART BUTTON (On Cards)
======================================== */
.wishlist-heart {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.wishlist-heart:hover {
    transform: scale(1.15);
    background: var(--off-white);
}

.wishlist-heart svg {
    width: 22px;
    height: 22px;
    stroke: var(--charcoal);
    fill: none;
    transition: var(--transition-fast);
}

.wishlist-heart.active {
    background: var(--heart-red);
}

.wishlist-heart.active svg {
    stroke: white;
    fill: white;
}

.wishlist-heart.active:hover {
    background: #c0392b;
}

/* Heart Animation */
@keyframes heartPulse {
    0% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(1); }
    75% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.wishlist-heart.animating {
    animation: heartPulse 0.6s ease;
}

/* ========================================
   TOAST NOTIFICATION
======================================== */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: linear-gradient(135deg, #d4af37, #f1df9a);
    padding: 18px 35px;
    border-radius: 50px;
    box-shadow: var(--shadow-xl);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--forest);
}

.toast-content svg {
    width: 22px;
    height: 22px;
    stroke: var(--forest);
    fill: none;
}

.toast-content span {
    font-size: 14px;
    font-weight: 600;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 42, 29, 0.1) 0%,
        rgba(15, 42, 29, 0.25) 50%,
        rgba(15, 42, 29, 0.45) 100%
    );
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--cream), transparent);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 950px;
    padding: 40px;
    color: var(--off-white);
}

.hero-badge {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid rgba(200, 169, 126, 0.5);
    margin-bottom: 35px;
    animation: fadeInDown 1s ease;
}

.hero-badge span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
}

body:not([data-cms-page^="maldives"]):not([data-site-country="maldives"]):not([class*="maldives"]) .hero-badge,
body:not([data-cms-page^="maldives"]):not([data-site-country="maldives"]):not([class*="maldives"]) .hero-badge-inline {
    border-color: #fff !important;
}

body:not([data-cms-page^="maldives"]):not([data-site-country="maldives"]):not([class*="maldives"]) .hero-badge span,
body:not([data-cms-page^="maldives"]):not([data-site-country="maldives"]):not([class*="maldives"]) .hero-badge-inline span {
    color: #fff !important;
    font-weight: 700 !important;
}

.hero h1 {
    color: var(--off-white);
    margin-bottom: 20px;
    text-shadow: 0 4px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.2s ease;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 18px;
    opacity: 0.95;
    animation: fadeIn 1.5s ease;
}

.hero-description {
    font-size: 17px;
    max-width: 580px;
    margin: 0 auto 40px;
    opacity: 0.9;
    animation: fadeIn 1.8s ease;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 2s ease;
}

.hero-scroll {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--off-white);
}

.hero-scroll span {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.7;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ========================================
   BUTTONS
======================================== */
.btn-primary {
    display: inline-block;
    padding: 18px 50px;
    background: var(--gold);
    color: var(--off-white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 2px solid var(--gold);
    transition: var(--transition-normal);
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(200, 169, 126, 0.4);
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 50px;
    background: transparent;
    color: var(--off-white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition-normal);
}

.btn-outline-light:hover {
    background: var(--off-white);
    color: var(--forest);
    border-color: var(--off-white);
    transform: translateY(-3px);
}

.btn-outline-dark {
    display: inline-block;
    padding: 16px 45px;
    background: transparent;
    color: var(--forest);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 2px solid var(--forest);
    transition: var(--transition-normal);
}

.btn-outline-dark:hover {
    background: var(--forest);
    color: var(--off-white);
    transform: translateY(-3px);
}

.btn-gold {
    display: inline-block;
    padding: 16px 45px;
    background: var(--gold);
    color: var(--forest);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 2px solid var(--gold);
    transition: var(--transition-normal);
}

.btn-gold:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-turquoise {
    display: inline-block;
    padding: 16px 45px;
    background: var(--turquoise);
    color: var(--ocean-blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 2px solid var(--turquoise);
    transition: var(--transition-normal);
}

.btn-turquoise:hover {
    background: transparent;
    color: var(--turquoise);
    transform: translateY(-3px);
}

/* ========================================
   SECTION STYLING
======================================== */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header.light .section-title { color: var(--off-white); }
.section-header.light .section-label { color: var(--gold-light); }

.section-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.section-title {
    color: var(--forest);
    margin-bottom: 20px;
}

.divider {
    width: 70px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 20px auto;
}

.section-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 580px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* ========================================
   INTRODUCTION
======================================== */
.introduction {
    background: var(--off-white);
    overflow: hidden;
}

.introduction::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(200, 169, 126, 0.08), transparent 70%);
    border-radius: 50%;
}

.intro-content {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px;
}

.section-description {
    max-width: 680px;
    margin: 0 auto;
    font-size: 17px;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding-top: 70px;
    border-top: 1px solid var(--grey-light);
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    display: inline;
}

.stat-plus {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--gold);
    vertical-align: top;
}

.stat-label {
    display: block;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--charcoal);
}

/* ========================================
   LUXURY SLIDER
======================================== */
.luxury-slider {
    position: relative;
    overflow: hidden;
    padding: 15px 0;
}

.slider-track {
    display: flex;
    gap: 30px;
    transition: transform var(--transition-luxury);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 45px;
}

.slider-controls.light .slider-btn {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
}

.slider-controls.light .slider-btn svg {
    stroke: var(--gold);
}

.slider-controls.light .slider-btn:hover {
    background: var(--gold);
}

.slider-controls.light .slider-btn:hover svg {
    stroke: var(--forest);
}

.slider-controls.maldives-controls .slider-btn {
    border-color: var(--turquoise);
}

.slider-controls.maldives-controls .slider-btn svg {
    stroke: var(--turquoise);
}

.slider-controls.maldives-controls .slider-btn:hover {
    background: var(--turquoise);
}

.slider-controls.maldives-controls .slider-btn:hover svg {
    stroke: var(--ocean-blue);
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--off-white);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.slider-btn:hover {
    background: var(--gold);
    transform: scale(1.08);
}

.slider-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    transition: stroke var(--transition-fast);
}

.slider-btn:hover svg {
    stroke: var(--off-white);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(200, 169, 126, 0.3);
    cursor: pointer;
    transition: var(--transition-normal);
}

.slider-dot.active {
    width: 32px;
    border-radius: 5px;
    background: var(--gold);
}

.slider-dot:hover:not(.active) {
    background: rgba(200, 169, 126, 0.6);
}

/* ========================================
   DESTINATION CARDS
======================================== */
.section-destinations {
    background: var(--cream);
}

.destination-card {
    min-width: calc(33.333% - 20px);
    background: var(--forest);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
}

.destination-card .card-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.destination-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-luxury), filter 0.8s ease;
    filter: saturate(0.9);
}

.destination-card:hover .card-image img {
    transform: scale(1.1);
    filter: saturate(1);
}

.destination-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(15, 42, 29, 0.95) 0%,
        rgba(15, 42, 29, 0.5) 40%,
        rgba(15, 42, 29, 0.2) 100%
    );
}

.destination-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 45px 35px;
    color: var(--off-white);
    transform: translateY(45%);
    transition: transform var(--transition-slow);
}

.destination-card:hover .card-content {
    transform: translateY(0);
}

.destination-card .card-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 10px;
}

.destination-card h3 {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 8px;
}

.destination-card .card-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 15px;
}

.destination-card .card-description {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease 0.1s;
}

.destination-card:hover .card-description {
    opacity: 1;
    transform: translateY(0);
}

.destination-card .card-meta {
    display: flex;
    gap: 20px;
    margin: 15px 0;
    font-size: 12px;
    color: var(--gold-light);
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease 0.15s;
}

.destination-card:hover .card-meta {
    opacity: 1;
    transform: translateY(0);
}

.destination-card .card-meta i {
    color: var(--gold);
    margin-right: 6px;
}

.destination-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease 0.2s;
}

.destination-card:hover .card-link {
    opacity: 1;
    transform: translateY(0);
}

.destination-card .card-link:hover {
    color: var(--off-white);
}

.destination-card .card-link svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.destination-card .card-link:hover svg {
    transform: translateX(5px);
}

/* ========================================
   ACTIVITIES SECTION
======================================== */
.section-activities {
    background: linear-gradient(180deg, #efe6d6 0%, #f8f3ea 55%, #f3ece1 100%);
    position: relative;
    overflow: visible;
}

.section-activities .section-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920') center/cover;
    opacity: 0.08;
}

.section-activities .section-subtitle {
    color: var(--charcoal);
}

.section-activities .container {
    position: relative;
    z-index: 2;
}

.activity-card {
    min-width: calc(33.333% - 20px);
    background: transparent;
    border: none;
    backdrop-filter: none;
    overflow: hidden;
    transition: var(--transition-slow);
    flex-shrink: 0;
    position: relative;
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 2;
}

.activity-card:hover::before {
    transform: scaleX(1);
}

.activity-card:hover {
    transform: translateY(-12px);
    border-color: var(--gold);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.activity-card .card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.activity-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-luxury);
}

.activity-card:hover .card-image img {
    transform: scale(1.1);
}

.activity-card .card-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 7px 18px;
    background: var(--gold);
    color: var(--forest);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
}

.activity-card .card-body {
    padding: 30px;
}

.activity-card .activity-icon {
    width: 55px;
    height: 55px;
    background: rgba(200, 169, 126, 0.15);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
    transition: var(--transition-normal);
}

.activity-card:hover .activity-icon {
    background: var(--gold);
    transform: rotate(360deg);
}

.activity-card h4 {
    font-size: 22px;
    color: var(--off-white);
    margin-bottom: 10px;
}

.activity-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 18px;
}

.activity-card .activity-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-top: 1px solid rgba(200, 169, 126, 0.2);
    border-bottom: 1px solid rgba(200, 169, 126, 0.2);
    margin-bottom: 18px;
}

.activity-card .duration {
    font-size: 12px;
    color: var(--sage);
}

.activity-card .duration i {
    margin-right: 6px;
}

.activity-card .price {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.activity-card .price strong {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--gold);
    margin-left: 5px;
}

.activity-card .btn-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    transition: var(--transition-fast);
}

.activity-card .btn-card:hover {
    color: var(--off-white);
}

.activity-card .btn-card svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.activity-card .btn-card:hover svg {
    transform: translateX(5px);
}

/* ========================================
   PACKAGES SECTION
======================================== */
.section-packages {
    background: #f6f2ea;
}

.package-card {
    min-width: calc(33.333% - 20px);
    background: transparent;
    border: none;
    overflow: hidden;
    transition: var(--transition-slow);
    flex-shrink: 0;
    position: relative;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transition: transform 0.5s ease;
    z-index: 2;
}

.package-card:hover::before {
    transform: scaleX(1);
}

.package-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 28px 56px rgba(15, 42, 29, 0.14);
}

.package-card.featured {
    border: 1px solid #d8c09a;
}

.package-card .package-image {
    position: relative;
    height: 255px;
    overflow: hidden;
}

.package-card .package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-luxury);
}

.package-card:hover .package-image img {
    transform: scale(1.08);
}

.package-card .package-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 8px 18px;
    background: #d4b27a;
    color: #10372a;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
}

.package-card .package-content {
    padding: 28px;
}

.package-card .package-duration {
    display: inline-block;
    padding: 8px 16px;
    background: var(--forest);
    color: var(--off-white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.package-card h3 {
    font-size: 42px;
    color: var(--forest);
    margin-bottom: 10px;
}

.package-card > .package-content > p {
    font-size: 15px;
    color: #3f4d48;
    margin-bottom: 22px;
}

.package-card .package-highlights {
    display: none;
}

.package-card .package-highlights li {
    position: relative;
    padding: 7px 0 7px 22px;
    font-size: 13px;
    color: var(--slate);
}

.package-card .package-highlights li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 9px;
}

.package-card .package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e9dfcf;
}

.package-card .package-price .from {
    display: block;
    font-size: 10px;
    color: #7d847e;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-card .package-price .amount {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    color: var(--forest);
    font-weight: 600;
}

.package-card .package-price .per {
    font-size: 12px;
    color: var(--sage);
}

.package-card .btn-package {
    padding: 12px 24px;
    background: var(--forest);
    color: var(--off-white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--forest);
    transition: var(--transition-normal);
}

.package-card .btn-package:hover {
    background: transparent;
    color: var(--forest);
}

/* ========================================
   HOTELS SECTION
======================================== */
.section-hotels {
    background: linear-gradient(145deg, #0d2f24 0%, #113a2d 52%, #0b2a20 100%);
}

.hotel-card {
    min-width: calc(33.333% - 20px);
    background: #fdf8ee;
    border: 1px solid rgba(212, 187, 145, 0.45);
    overflow: hidden;
    transition: var(--transition-slow);
    flex-shrink: 0;
    position: relative;
    display: flex;
    flex-direction: column;
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 26px 52px rgba(0, 0, 0, 0.32);
}

.hotel-card .hotel-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.hotel-card .hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-luxury);
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.08);
}

.hotel-card .hotel-rating {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 6px 14px;
    background: rgba(15, 42, 29, 0.9);
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 2px;
}

.hotel-card .hotel-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hotel-card .hotel-location {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b18647;
    margin-bottom: 8px;
}

.hotel-card h4 {
    font-size: 22px;
    background: transparent;
    border: none;
}

.hotel-card > .hotel-content > p {
    font-size: 13px;
    color: #46534e;
    line-height: 1.7;
    margin-bottom: 15px;
    min-height: 46px;
}

.hotel-card .hotel-amenities {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    min-height: 30px;
}

.hotel-card .hotel-amenities span {
    padding: 5px 12px;
    background: #f3e7d3;
    font-size: 11px;
    color: #7f5f31;
}

.hotel-card .hotel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid #e8dcc8;
    margin-top: auto;
}

.hotel-card .hotel-price .from {
    font-size: 10px;
    color: var(--sage);
    text-transform: uppercase;
}

.hotel-card .hotel-price .amount {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--forest);
    font-weight: 600;
}

.hotel-card .hotel-price .per {
    font-size: 12px;
    color: var(--sage);
}

.hotel-card .btn-hotel {
    padding: 10px 22px;
    background: var(--forest);
    color: var(--off-white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--forest);
    transition: var(--transition-normal);
}

.hotel-card .btn-hotel:hover {
    background: transparent;
    color: var(--forest);
}

/* ========================================
   SPECIALIZED SECTION
======================================== */
.section-specialized {
    background: var(--off-white);
}

.specialized-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.specialized-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--cream);
    border: 1px solid var(--grey-light);
    overflow: hidden;
    transition: var(--transition-slow);
}

.specialized-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.specialized-card .specialized-image {
    height: 100%;
    min-height: 380px;
    overflow: hidden;
}

.specialized-card .specialized-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-luxury);
}

.specialized-card:hover .specialized-image img {
    transform: scale(1.06);
}

.specialized-card .specialized-content {
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.specialized-card .specialized-icon {
    font-size: 44px;
    margin-bottom: 18px;
}

.specialized-card h3 {
    font-size: 26px;
    color: var(--forest);
    margin-bottom: 12px;
}

.specialized-card p {
    font-size: 14px;
    color: var(--charcoal);
    margin-bottom: 18px;
}

.specialized-card ul {
    margin-bottom: 22px;
}

.specialized-card ul li {
    position: relative;
    padding: 6px 0 6px 22px;
    font-size: 13px;
    color: var(--slate);
}

.specialized-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.specialized-card .specialized-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    transition: var(--transition-fast);
}

.specialized-card:hover .specialized-link {
    color: var(--forest);
}

.specialized-card .specialized-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.specialized-card:hover .specialized-link svg {
    transform: translateX(5px);
}

/* ========================================
   MALDIVES SECTION
======================================== */
.section-maldives {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--ocean-dark) 100%);
    position: relative;
    overflow: hidden;
}

.section-maldives .maldives-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1514282401047-d79a71a590e8?w=1920') center/cover;
    opacity: 0.1;
}

.section-maldives .container {
    position: relative;
    z-index: 2;
}

.section-maldives .slider-dot {
    background: rgba(64, 224, 208, 0.3);
}

.section-maldives .slider-dot.active {
    background: var(--turquoise);
}

.resort-card {
    min-width: calc(33.333% - 20px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(64, 224, 208, 0.3);
    backdrop-filter: blur(20px);
    overflow: hidden;
    transition: var(--transition-slow);
    flex-shrink: 0;
    position: relative;
}

.resort-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--turquoise), #00CED1);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    z-index: 2;
}

.resort-card:hover::before {
    transform: scaleX(1);
}

.resort-card:hover {
    transform: translateY(-12px);
    border-color: var(--turquoise);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.resort-card .resort-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.resort-card .resort-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-luxury);
}

.resort-card:hover .resort-image img {
    transform: scale(1.08);
}

.resort-card .resort-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 16px;
    background: var(--turquoise);
    color: var(--ocean-blue);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
}

.resort-card .resort-content {
    padding: 28px;
}

.resort-card .resort-location {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--turquoise);
    margin-bottom: 8px;
    display: block;
}

.resort-card h4 {
    font-size: 22px;
    color: var(--off-white);
    margin-bottom: 10px;
}

.resort-card > .resort-content > p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 15px;
}

.resort-card .resort-amenities {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.resort-card .resort-amenities span {
    padding: 5px 12px;
    background: rgba(64, 224, 208, 0.1);
    border: 1px solid rgba(64, 224, 208, 0.3);
    color: var(--turquoise);
    font-size: 10px;
}

.resort-card .resort-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid rgba(64, 224, 208, 0.2);
}

.resort-card .resort-price .from {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.resort-card .resort-price .amount {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--turquoise);
    font-weight: 600;
}

.resort-card .resort-price .per {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.resort-card .btn-resort {
    padding: 10px 20px;
    background: transparent;
    color: var(--turquoise);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--turquoise);
    transition: var(--transition-normal);
}

.resort-card .btn-resort:hover {
    background: var(--turquoise);
    color: var(--ocean-blue);
}

/* ========================================
   TESTIMONIAL SECTION
======================================== */
.section-testimonial {
    background: linear-gradient(135deg, var(--sage) 0%, var(--forest) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-testimonial .testimonial-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1920') center/cover;
    opacity: 0.08;
}

.testimonial-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    color: var(--off-white);
}

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: 180px;
    color: rgba(255, 255, 255, 0.1);
    line-height: 0.5;
    margin-bottom: 20px;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 20px;
    letter-spacing: 6px;
    margin-bottom: 35px;
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 40px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.testimonial-author .author-image {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
}

.testimonial-author .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author .author-info {
    text-align: left;
}

.testimonial-author .author-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.testimonial-author .author-location {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   CTA BANNER
======================================== */
.section-cta-banner {
    background: var(--forest);
    padding: 90px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    color: var(--off-white);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   NEWSLETTER
======================================== */
.section-newsletter {
    background: var(--cream);
    padding: 70px 0;
}

.newsletter-content {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h3 {
    font-size: 32px;
    color: var(--forest);
    margin-bottom: 12px;
}

.newsletter-content p {
    font-size: 15px;
    color: var(--charcoal);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-form .form-group input {
    padding: 16px 22px;
    width: 200px;
    border: 2px solid var(--grey-light);
    background: var(--off-white);
    font-size: 14px;
    transition: var(--transition-fast);
}

.newsletter-form .form-group input:focus {
    outline: none;
    border-color: var(--gold);
}

/* ========================================
   FOOTER
======================================== */
footer {
    background: var(--forest);
    color: var(--off-white);
}

/* Inline-markup footers: stop page-level h3 { clamp(...) } from swelling brand title; keep social cells uniform */
footer h3[style*="font-size: 22px"] {
    font-size: 22px !important;
    line-height: 1.25 !important;
}

body[data-site-country="maldives"] footer .footer-brand-logo[src*="logo.png"]:not([src*="logomoldives.png"]),
body[data-cms-page^="maldives"] footer .footer-brand-logo[src*="logo.png"]:not([src*="logomoldives.png"]),
body[class*="maldives"] footer .footer-brand-logo[src*="logo.png"]:not([src*="logomoldives.png"]) {
    width: 230px !important;
    height: auto !important;
    content: url('../assets/logomoldives.png') !important;
}

/* Keep glyph icons in the same visual cell size as the "f"/"in" labels. */
footer a[style*="width: 36px"][style*="height: 36px"] {
    font-size: 13px !important;
    line-height: 1 !important;
    max-width: 36px;
    max-height: 36px;
    box-sizing: border-box;
    overflow: hidden;
}

/* Shared inline footer layout: compact professional column rhythm */
footer > .container > div[style*="display: grid"][style*="grid-template-columns"] {
    grid-template-columns: minmax(250px, 1.45fr) minmax(128px, 0.72fr) minmax(140px, 0.78fr) minmax(135px, 0.74fr) minmax(190px, 1fr) !important;
    column-gap: clamp(22px, 2.6vw, 38px) !important;
    row-gap: 34px !important;
    align-items: start !important;
}

footer > .container > div[style*="display: grid"][style*="grid-template-columns"] > div {
    min-width: 0;
}

footer > .container > div[style*="display: grid"][style*="grid-template-columns"] > div:nth-child(n+2) {
    padding: 2px 0 0 16px;
    border-left: 1px solid rgba(195, 157, 103, 0.14);
}

footer > .container > div[style*="display: grid"][style*="grid-template-columns"] > div:nth-child(2) {
    padding-right: 0;
}

footer > .container > div[style*="display: grid"][style*="grid-template-columns"] h4[style*="text-transform: uppercase"] {
    display: block !important;
    min-height: 18px;
    margin: 0 0 16px !important;
    line-height: 1.35 !important;
}

footer > .container > div[style*="display: grid"][style*="grid-template-columns"] ul[style*="flex-direction: column"] {
    gap: 10px !important;
}

footer > .container > div[style*="display: grid"][style*="grid-template-columns"] ul li,
footer > .container > div[style*="display: grid"][style*="grid-template-columns"] ul a {
    line-height: 1.45 !important;
}

footer > .container > div[style*="padding-top: 30px"][style*="justify-content: space-between"] {
    align-items: center !important;
    gap: 14px 24px !important;
}

footer > .container > div[style*="padding-top: 30px"][style*="justify-content: space-between"] > div[style*="display: flex"] {
    flex-wrap: wrap !important;
    gap: 12px 22px !important;
}

/* Sri Lanka home footer: Maldives-style layout with Sri Lanka forest/gold colors. */
body[data-cms-page="home"] footer {
    background: #45dfed !important;
    color: #d9e6de !important;
    border-top: 2px solid #c39d67 !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

body[data-cms-page="home"] footer h3,
body[data-cms-page="home"] footer h4 {
    color: #d4af68 !important;
}

body[data-cms-page="home"] footer p,
body[data-cms-page="home"] footer li,
body[data-cms-page="home"] footer a {
    color: #dce9e0 !important;
}

body[data-cms-page="home"] footer a:hover {
    color: #ffffff !important;
}

body[data-cms-page="home"] footer a[style*="width: 36px"] {
    border-color: rgba(212, 175, 104, 0.36) !important;
    background: rgba(212, 175, 104, 0.06) !important;
    color: #ffffff !important;
}

body[data-cms-page="home"] footer a[style*="width: 36px"]:hover {
    background: linear-gradient(135deg, #b88d4a, #d4af68) !important;
    border-color: #d4af68 !important;
}

body[data-cms-page="home"] footer > .container > div[style*="padding-top: 30px"] {
    background: #6f5a34 !important;
    border-top-color: rgba(212, 175, 104, 0.26) !important;
    color: #b9cfc3 !important;
    margin-left: calc((100vw - 100%) / -2) !important;
    margin-right: calc((100vw - 100%) / -2) !important;
    padding-left: calc((100vw - 100%) / 2) !important;
    padding-right: calc((100vw - 100%) / 2) !important;
    padding-bottom: 18px !important;
}

.footer-top {
    padding: 90px 0 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 45px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 22px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(200, 169, 126, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 25px;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.footer-contact li {
    margin-bottom: 18px;
}

.footer-contact li strong {
    display: block;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 4px;
}

.footer-contact li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact li a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(200, 169, 126, 0.15);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Wishlist sidebar (dark forest panel — inquiry page) */
.wishlist-panel .wishlist-panel-empty {
    text-align: center;
    padding: 28px 12px;
}

.wishlist-panel .wishlist-panel-empty p {
    color: rgba(252, 250, 247, 0.98);
    opacity: 1;
    font-weight: 400;
}

.wishlist-panel .wishlist-panel-empty p:first-child {
    font-size: 16px;
    font-weight: 600;
    color: #fcfaf7;
}

.wishlist-panel .wishlist-panel-empty p:last-child {
    font-size: 14px;
    margin-top: 12px;
    color: rgba(212, 188, 148, 0.98);
    line-height: 1.55;
}

/* Contact Panel Refinement */
.contact-panel {
    background: var(--forest);
    padding: 35px;
    color: var(--off-white);
    margin-top: 30px;
}

.contact-panel h3 {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
}

.contact-item-icon {
    font-size: 20px;
}

.contact-item-info strong {
    display: block;
    font-size: 11px;
    color: var(--gold-pale);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-item-info a, .contact-item-info span {
    font-size: 14px;
    color: var(--off-white);
    transition: var(--transition-fast);
}

.contact-item-info a:hover {
    color: var(--gold);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1200px) {
    .destination-card,
    .activity-card,
    .package-card,
    .hotel-card,
    .resort-card {
        min-width: calc(50% - 15px);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    footer > .container > div[style*="display: grid"][style*="grid-template-columns"] {
        grid-template-columns: minmax(240px, 1.25fr) repeat(2, minmax(150px, 1fr)) !important;
        column-gap: 30px !important;
    }

    .intro-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-links, .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    footer > .container > div[style*="display: grid"][style*="grid-template-columns"] {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        column-gap: 28px !important;
    }

    footer > .container > div[style*="display: grid"][style*="grid-template-columns"] > div:first-child {
        grid-column: 1 / -1;
    }

    .specialized-grid {
        grid-template-columns: 1fr;
    }

    .specialized-card {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 90px 0;
    }

    .destination-card,
    .activity-card,
    .package-card,
    .hotel-card,
    .resort-card {
        min-width: 100%;
    }

    .package-card h3 {
        font-size: 34px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    footer > .container > div[style*="display: grid"][style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        row-gap: 26px !important;
    }

    footer > .container > div[style*="display: grid"][style*="grid-template-columns"] > div:first-child {
        grid-column: auto;
    }

    footer > .container > div[style*="display: grid"][style*="grid-template-columns"] > div:nth-child(n+2),
    footer > .container > div[style*="display: grid"][style*="grid-template-columns"] > div:nth-child(2) {
        padding: 0;
        border-left: 0;
    }

    footer > .container > div[style*="padding-top: 30px"][style*="justify-content: space-between"] {
        align-items: flex-start !important;
    }

    .intro-stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .specialized-card {
        grid-template-columns: 1fr;
    }

    .specialized-card .specialized-image {
        min-height: 220px;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form .form-group input {
        width: 100%;
        max-width: 320px;
    }

    .wishlist-floating {
        bottom: 20px;
        right: 20px;
    }

    .wishlist-floating .wishlist-btn {
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 650px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-outline-light,
    .btn-outline-dark,
    .btn-gold,
    .btn-turquoise {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 16px 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   REVERTED GRID LAYOUTS
   ======================================== */
.destinations-grid, .packages-3-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100% !important;
}

@media (max-width: 992px) {
    .destinations-grid, .packages-3-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .destinations-grid, .packages-3-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PACKAGE CARD GRID STYLES (MODERNIZED)
   ======================================== */
.package-card-new {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-image-wrapper {
    position: relative;
    height: 260px;
}

.package-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-badge-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #c39d67;
    color: #fff;
    padding: 6px 15px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.package-info-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-info-content h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    color: #0f2a1d;
    margin-bottom: 15px;
}

.package-info-content p {
    font-size: 13px;
    color: #666;
    margin-bottom: 25px;
}

.package-btn-action {
    display: block;
    text-align: center;
    border: 1px solid #0f2a1d;
    padding: 12px;
    font-size: 10px;
    text-decoration: none;
    color: #0f2a1d;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: auto;
    transition: all 0.3s ease;
}

.package-btn-action:hover {
    background: #0f2a1d;
    color: #fff;
}

/* REVERT DESTINATION CARD TRANSFORMS */
.destination-card .card-content {
    transform: translateY(0) !important;
    padding: 30px 25px !important;
}

.destination-card .card-description,
.destination-card .card-meta,
.destination-card .card-link {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.destination-card:hover .card-content {
    transform: translateY(-5px) !important;
}

/* REVERT PACKAGE HIGHLIGHTS DISPLAY */
.package-card .package-highlights {
    display: block !important;
    list-style: none;
    padding: 0;
    margin: 15px 0 25px 0;
}

.package-card h3 {
    font-size: 28px !important;
    line-height: 1.2;
}


/* FULL CARD CLICKABLE FIX */
.activity-listing-card, 
.listing-card, 
.package-listing-card, 
.destination-card, 
.package-card, 
.hotel-card,
.destination-listing-card {
    position: relative;
}

.activity-listing-card .btn-card::after,
.listing-card .btn-view::after,
.package-listing-card .btn-package::after,
.destination-card .card-link::after,
.package-card .btn-package::after,
.hotel-card .btn-hotel::after,
.destination-listing-card .btn-view::after,
.package-card .btn-package::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.wishlist-heart, .package-badge, .activity-card-badge, .listing-card-rating {
    z-index: 10 !important;
} 
/* ========================================
   FINAL FIX: FLOATING ICON SIZE + ALIGNMENT
   Put this at the very bottom of styles.css
======================================== */

/* Same fixed position line */
.wishlist-floating,
.whatsapp-floating {
    position: fixed !important;
    right: 30px !important;
    left: auto !important;
    width: 62px !important;
    height: 62px !important;
    z-index: 9999 !important;
    box-sizing: border-box !important;
}

/* Wishlist above WhatsApp */
.wishlist-floating {
    bottom: 104px !important;
}

/* WhatsApp below Wishlist */
.whatsapp-floating {
    bottom: 30px !important;
}

/* Same circle size for both buttons */
.wishlist-floating .wishlist-btn,
.whatsapp-floating .whatsapp-btn {
    width: 62px !important;
    height: 62px !important;
    min-width: 62px !important;
    min-height: 62px !important;
    max-width: 62px !important;
    max-height: 62px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    line-height: 1 !important;
}

/* Same SVG icon size inside both */
.wishlist-floating .wishlist-btn svg,
.whatsapp-floating .whatsapp-btn svg {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

/* Keep wishlist count badge properly placed */
.wishlist-floating .wishlist-count {
    position: absolute !important;
    top: -6px !important;
    right: -6px !important;
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    font-size: 12px !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
}

/* Mobile view */
@media (max-width: 768px) {
    .wishlist-floating,
    .whatsapp-floating {
        right: 20px !important;
        width: 58px !important;
        height: 58px !important;
    }

    .wishlist-floating {
        bottom: 96px !important;
    }

    .whatsapp-floating {
        bottom: 24px !important;
    }

    .wishlist-floating .wishlist-btn,
    .whatsapp-floating .whatsapp-btn {
        width: 58px !important;
        height: 58px !important;
        min-width: 58px !important;
        min-height: 58px !important;
        max-width: 58px !important;
        max-height: 58px !important;
    }

    .wishlist-floating .wishlist-btn svg,
    .whatsapp-floating .whatsapp-btn svg {
        width: 26px !important;
        height: 26px !important;
        min-width: 26px !important;
        min-height: 26px !important;
        max-width: 26px !important;
        max-height: 26px !important;
    }
}

/* Remove blue/teal outlines around activity, package and hotel cards */
.activity-listing-card,
.activity-card-new,
.package-card,
.pkg-card,
.hotel-card,
.featured-hotel,
.resort-card {
    border-color: transparent !important;
    box-shadow: 0 14px 40px rgba(15, 42, 29, 0.08) !important;
}

.activity-listing-card:hover,
.activity-card-new:hover,
.package-card:hover,
.pkg-card:hover,
.hotel-card:hover,
.featured-hotel:hover,
.resort-card:hover {
    border-color: transparent !important;
    box-shadow: 0 22px 56px rgba(15, 42, 29, 0.12) !important;
}

.activity-card-new .btn-outline-activity,
.premium-activities .btn-outline-activity,
.packages .btn-outline-activity,
#resorts .btn-outline-activity {
    background: linear-gradient(135deg, var(--gold), #f1df9a) !important;
    border-color: var(--gold) !important;
    color: #111 !important;
}

.activity-card-new .btn-outline-activity:hover,
.premium-activities .btn-outline-activity:hover,
.packages .btn-outline-activity:hover,
#resorts .btn-outline-activity:hover {
    filter: brightness(0.98) !important;
}
