@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-primary: #1F3A2E;         /* Deep Forest Green */
    --color-primary-light: #2c5342;
    --color-primary-dark: #12241c;
    --color-accent: #C8A96B;          /* Safari Gold */
    --color-accent-hover: #b09156;
    --color-accent-light: rgba(200, 169, 107, 0.15);
    --color-bg: #F4E8D0;              /* Sand Beige */
    --color-text: #1B1B1B;            /* Charcoal Black */
    --color-text-muted: #554e43;
    --color-secondary: #6B4F3A;       /* Earth Brown */
    --color-secondary-light: #836249;
    --color-white: #ffffff;
    --color-dark: #0f1c16;            /* Very deep green-black */
    
    /* Transparent layers */
    --color-glass-dark: rgba(15, 28, 22, 0.85);
    --color-glass-light: rgba(244, 232, 208, 0.85);
    --color-glass-border: rgba(200, 169, 107, 0.25);
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    
    /* Transitions & Shadows */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    --shadow-premium: 0 20px 40px rgba(31, 58, 46, 0.08), 0 5px 15px rgba(0, 0, 0, 0.03);
    --shadow-premium-hover: 0 30px 60px rgba(31, 58, 46, 0.15), 0 10px 20px rgba(200, 169, 107, 0.1);
    --shadow-glow: 0 0 20px rgba(200, 169, 107, 0.4);
    
    /* Spacing & Borders */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border: 2px solid var(--color-bg);
    border-radius: var(--border-radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.25;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

/* Custom Gold Accent Underline */
h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
    border-radius: var(--border-radius-full);
}

h2.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    margin-bottom: 15px;
}

p {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

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

/* ==========================================================================
   COMMON LAYOUTS & CONTAINERS
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background-color: var(--color-primary-dark);
    color: var(--color-bg);
}

.section-dark h2, .section-dark h3, .section-dark h4 {
    color: var(--color-white);
}

.section-dark p {
    color: rgba(244, 232, 208, 0.75);
}

.section-subtitle {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 10px;
    display: block;
}

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

.mb-50 { margin-bottom: 50px; }
.mt-30 { margin-top: 30px; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(31, 58, 46, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

.btn-outline-gold {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn-outline-gold:hover {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 20px 0;
}

header.sticky {
    padding: 12px 0;
    background-color: rgba(31, 58, 46, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-bottom: 1px solid var(--color-glass-border);
}

header.sticky .logo-text {
    color: var(--color-white);
}

header.sticky .nav-links a {
    color: rgba(244, 232, 208, 0.85);
}

header.sticky .nav-links a:hover, header.sticky .nav-links a.active {
    color: var(--color-accent);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 50px;
    width: 50px;
    border-radius: var(--border-radius-full);
    border: 2px solid var(--color-accent);
    object-fit: cover;
    box-shadow: var(--shadow-glow);
    transition: var(--transition-smooth);
}

header.sticky .logo img {
    height: 42px;
    width: 42px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.logo-text span {
    color: var(--color-accent);
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-white);
    padding: 8px 0;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-smooth);
    border-radius: var(--border-radius-full);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--color-accent-hover);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    border: none;
    background: transparent;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--color-white);
    border-radius: var(--border-radius-full);
    transition: var(--transition-smooth);
}

header.sticky .mobile-toggle span {
    background-color: var(--color-white);
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================================================
   HERO / BANNER COMPONENT
   ========================================================================== */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--color-white);
    background-color: var(--color-primary-dark);
    overflow: hidden;
}

.hero-slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 28, 22, 0.85) 0%, rgba(15, 28, 22, 0.4) 45%, rgba(15, 28, 22, 0.1) 100%);
    z-index: 2;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.15);
    transition: opacity 1.8s ease-in-out, transform 10s cubic-bezier(0.16, 1, 0.3, 1);
    filter: brightness(0.95) contrast(1.05);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.02);
}

.hero-slide-1 {
    background-image: url('../../public/hero/1.jpg');
}

.hero-slide-2 {
    background-image: url('../../public/hero/3.jpg');
}

.hero-slide-3 {
    background-image: url('../../public/hero/5.jpg');
}

.hero .container {
    position: relative;
    z-index: 5;
}

.hero-content {
    max-width: 800px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.hero-tag {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-accent);
    margin-bottom: 20px;
    display: inline-block;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 4px;
}

.hero h1 {
    font-family: var(--font-heading);
    color: var(--color-white);
    margin-bottom: 24px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(244, 232, 208, 0.95);
    margin-bottom: 40px;
    max-width: 650px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* ==========================================================================
   PAGE BANNER (Inner pages)
   ========================================================================== */
.page-banner {
    height: 45vh;
    min-height: 350px;
    position: relative;
    background-color: var(--color-primary-dark);
    display: flex;
    align-items: center;
    color: var(--color-white);
    background-size: cover;
    background-position: center;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 28, 22, 0.7) 0%, rgba(15, 28, 22, 0.9) 100%);
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.banner-content {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.banner-title {
    color: var(--color-white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    list-style: none;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(244, 232, 208, 0.7);
}

.breadcrumb a:hover {
    color: var(--color-accent);
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: rgba(244, 232, 208, 0.4);
}

.breadcrumb li.active {
    color: var(--color-accent);
}

/* ==========================================================================
   GRID CARDS & HIGHLIGHTS (Home Page)
   ========================================================================== */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 30px;
}

.highlight-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    border: 1px solid rgba(200, 169, 107, 0.1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    opacity: 0;
    z-index: -1;
    transition: var(--transition-smooth);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium-hover);
    color: var(--color-bg);
}

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

.highlight-card:hover h3 {
    color: var(--color-white);
}

.highlight-card:hover p {
    color: rgba(244, 232, 208, 0.85);
}

.highlight-icon {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 25px;
    display: inline-block;
    transition: var(--transition-smooth);
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.15) rotate(5deg);
    color: var(--color-accent);
}

/* ==========================================================================
   ABOUT US SUMMARY BLOCK (Home split)
   ========================================================================== */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-box {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.about-img-box img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-premium);
    z-index: 2;
    position: relative;
    border: 4px solid var(--color-white);
}

.about-img-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 75%;
    height: 75%;
    background-color: var(--color-accent-light);
    border: 2px dashed var(--color-accent);
    border-radius: var(--border-radius-lg);
    z-index: 1;
    transition: var(--transition-smooth);
}

.about-img-box:hover::after {
    transform: translate(10px, 10px) rotate(2deg);
}

.about-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.about-list li {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-primary);
}

.about-list li svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

/* ==========================================================================
   PACKAGES DYNAMIC LISTING
   ========================================================================== */
.packages-filter-bar {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 20px 30px;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    border: 1px solid rgba(200, 169, 107, 0.1);
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 10px;
}

.filter-btn {
    padding: 10px 20px;
    border-radius: var(--border-radius-full);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    background: transparent;
    border: 2px solid transparent;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    color: var(--color-primary);
    background-color: var(--color-accent-light);
    border-color: var(--color-accent);
}

.search-box {
    position: relative;
    min-width: 250px;
    flex-grow: 1;
    max-width: 400px;
}

.search-box input {
    width: 100%;
    padding: 12px 20px;
    padding-right: 50px;
    border: 2px solid rgba(31, 58, 46, 0.1);
    background-color: var(--color-bg);
    border-radius: var(--border-radius-full);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    color: var(--color-primary);
    transition: var(--transition-smooth);
}

.search-box input:focus {
    border-color: var(--color-accent);
    background-color: var(--color-white);
    box-shadow: 0 0 10px rgba(200, 169, 107, 0.15);
}

.search-box svg {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: var(--color-primary);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 350px), 1fr));
    gap: 40px;
}

.package-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    border: 1px solid rgba(200, 169, 107, 0.1);
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium-hover);
}

.package-img {
    height: 250px;
    position: relative;
    overflow: hidden;
}

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

.package-card:hover .package-img img {
    transform: scale(1.1);
}

.package-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--color-primary);
    color: var(--color-accent);
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--border-radius-full);
    border: 1px solid var(--color-accent);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.package-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}

.package-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-meta {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(31, 58, 46, 0.08);
    padding-bottom: 15px;
    margin-bottom: 20px;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.package-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.package-meta-item svg {
    color: var(--color-accent);
}

.package-card h3 {
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.package-card:hover h3 {
    color: var(--color-accent-hover);
}

.package-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.package-inclusions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.inclusion-pill {
    font-size: 0.75rem;
    background-color: var(--color-bg);
    color: var(--color-secondary);
    padding: 4px 10px;
    border-radius: var(--border-radius-full);
    font-weight: 600;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(31, 58, 46, 0.08);
    padding-top: 20px;
    margin-top: 20px;
}

.package-price {
    display: flex;
    flex-direction: column;
}

.package-price span:first-child {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-price span:last-child {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-primary);
}

/* ==========================================================================
   SUSTAINABILITY HIGHLIGHT BLOCK (Home Page)
   ========================================================================== */
.sustainability-box {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.sus-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.metric-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 169, 107, 0.15);
    padding: clamp(15px, 4vw, 30px);
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition-smooth);
}

.metric-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--color-accent);
    transform: translateY(-5px);
}

.metric-num {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--color-accent);
    display: block;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   TESTIMONIALS (Slider styling)
   ========================================================================== */
#testimonials-section {
    background-image: url('../../public/7.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

#testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 28, 22, 0.85);
    z-index: -1;
}

#testimonials-section #reviews-subtitle,
#testimonials-section #reviews-title {
    color: var(--color-white);
}

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

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    text-align: center;
    box-sizing: border-box;
}

.testimonial-rating {
    color: var(--color-accent);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--color-white);
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-text::before {
    content: '“';
    font-size: 5rem;
    font-family: var(--font-heading);
    color: rgba(200, 169, 107, 0.2);
    position: absolute;
    top: -40px;
    left: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-full);
    border: 2px solid var(--color-accent);
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 700;
    color: var(--color-accent);
    font-size: 1.1rem;
    display: block;
}

.author-country {
    font-size: 0.85rem;
    color: rgba(244, 232, 208, 0.85);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--border-radius-full);
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active {
    background-color: var(--color-accent);
    width: 30px;
}

/* ==========================================================================
   GALLERY GRID (Interactive Category & Lightbox)
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow-premium);
    cursor: pointer;
    border: 1px solid rgba(200, 169, 107, 0.15);
    background-color: var(--color-primary-dark);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 60%, rgba(15, 28, 22, 0.8) 100%);
    opacity: 1;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: var(--color-white);
}

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

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(180deg, transparent 50%, rgba(15, 28, 22, 0.9) 100%);
}

.gallery-tag {
    color: var(--color-white);
    -webkit-text-stroke: 0.5px var(--color-accent);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
}

/* GALLERY LIGHTBOX */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 28, 22, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: var(--border-radius-md);
    border: 3px solid var(--color-accent);
    box-shadow: var(--shadow-glow);
    object-fit: contain;
}

.lightbox-caption {
    color: var(--color-bg);
    margin-top: 20px;
    text-align: center;
}

.lightbox-caption h3 {
    color: var(--color-accent);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--color-white);
    background: transparent;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--color-accent);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-white);
    background: rgba(31, 58, 46, 0.6);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--border-radius-full);
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.lightbox-nav:hover {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
}

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

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

/* ==========================================================================
   CONTACT US / BOOKINGS
   ========================================================================== */
.contact-split {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
}

.contact-info-panel {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    border-radius: var(--border-radius-lg);
    padding: 50px 40px;
    color: var(--color-bg);
    border: 1px solid rgba(200, 169, 107, 0.2);
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-panel h3 {
    color: var(--color-white);
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

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

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon-box {
    background-color: var(--color-accent-light);
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-text-box h4 {
    color: var(--color-accent);
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-text-box p {
    color: rgba(244, 232, 208, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

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

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: var(--border-radius-md);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 169, 107, 0.2);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-btn:hover {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.booking-form-box {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 50px 45px;
    border: 1px solid rgba(200, 169, 107, 0.1);
    box-shadow: var(--shadow-premium);
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

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

.form-group-full {
    grid-column: span 2;
}

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

.form-group input, .form-group select, .form-group textarea {
    padding: 14px 20px;
    border: 2px solid rgba(31, 58, 46, 0.1);
    border-radius: var(--border-radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-primary);
    background-color: var(--color-bg);
    outline: none;
    transition: var(--transition-smooth);
    width: 100%;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--color-accent);
    background-color: var(--color-white);
    box-shadow: 0 0 12px rgba(200, 169, 107, 0.15);
}

.form-group textarea {
    resize: none;
    height: 120px;
}

/* ==========================================================================
   SUCCESS CARD (submit_contact.php)
   ========================================================================== */
.success-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 40px 0;
}

.success-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--color-accent);
    box-shadow: var(--shadow-premium-hover);
    padding: 60px 45px;
    text-align: center;
    max-width: 650px;
    width: 100%;
    animation: fadeInUp 0.8s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--color-accent-light);
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    border-radius: var(--border-radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 30px;
    box-shadow: var(--shadow-glow);
}

.success-card h2 {
    color: var(--color-primary);
    font-family: var(--font-heading);
    margin-bottom: 15px;
}

.success-details {
    margin: 30px auto;
    padding: 20px 25px;
    background-color: var(--color-bg);
    border-radius: var(--border-radius-md);
    text-align: left;
    border: 1px solid rgba(200, 169, 107, 0.15);
}

.success-details-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 0.95rem;
}

.success-details-row:not(:last-child) {
    border-bottom: 1px dashed rgba(31, 58, 46, 0.1);
}

.success-details-label {
    font-weight: 700;
    color: var(--color-primary);
}

.success-details-value {
    color: var(--color-secondary);
    font-weight: 600;
}

/* ==========================================================================
   GLOBAL FOOTER
   ========================================================================== */
footer {
    background-color: var(--color-primary-dark);
    color: var(--color-bg);
    padding: 80px 0 30px 0;
    border-top: 3px solid var(--color-accent);
    position: relative;
    overflow: hidden;
}

footer::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    border: 2px dashed rgba(200, 169, 107, 0.1);
    border-radius: var(--border-radius-full);
    pointer-events: none;
}

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

.footer-col h4 {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-accent);
}

.footer-about p {
    color: rgba(244, 232, 208, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(244, 232, 208, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(244, 232, 208, 0.7);
}

.footer-contact-item svg {
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-newsletter p {
    color: rgba(244, 232, 208, 0.7);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-form input {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 169, 107, 0.25);
    border-radius: var(--border-radius-md);
    padding: 12px 18px;
    color: var(--color-white);
    outline: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.newsletter-form input:focus {
    border-color: var(--color-accent);
    background-color: rgba(255, 255, 255, 0.08);
}

.newsletter-form button {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
    padding: 12px;
    border: none;
    border-radius: var(--border-radius-md);
    font-family: var(--font-body);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.newsletter-form button:hover {
    background-color: var(--color-accent-hover);
    box-shadow: var(--shadow-glow);
}

.footer-bottom {
    border-top: 1px solid rgba(244, 232, 208, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: rgba(244, 232, 208, 0.5);
}

/* ==========================================================================
   ANIMATIONS & SCROLL REVEALS
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   MEDIA QUERIES (Responsive Design)
   ========================================================================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .contact-split {
        grid-template-columns: 1fr;
    }
    
    .about-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-img-box {
        padding-right: 0;
        padding-bottom: 0;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-img-box::after {
        display: none;
    }
    
    .lightbox-prev {
        left: 20px;
    }
    
    .lightbox-next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--color-primary-dark);
        border-left: 2px solid var(--color-accent);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        padding: 40px;
        transition: var(--transition-smooth);
        z-index: 999;
        box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        color: var(--color-bg);
        font-size: 1.2rem;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .booking-form {
        grid-template-columns: 1fr;
    }
    
    .form-group-full {
        grid-column: span 1;
    }
    
    .packages-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box {
        max-width: 100%;
    }
    
    .sustainability-box {
        grid-template-columns: 1fr;
    }
    
    .testimonial-slide {
        padding: 30px 20px;
    }
}

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

/* ==========================================================================
   INTERACTIVE DETAILS DRAWER (Safaris)
   ========================================================================== */
.btn-view-details {
    width: 100%;
    margin-top: 20px;
    padding: 12px 15px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary);
    background-color: var(--color-accent-light);
    border: 1px solid var(--color-accent);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.btn-view-details:hover {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
    box-shadow: var(--shadow-glow);
}

.btn-view-details i {
    transition: transform 0.3s ease;
}

.btn-view-details.active i {
    transform: rotate(180deg);
}

.package-details-drawer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: #FAF5EB;
    border-top: 1px solid rgba(200, 169, 107, 0.15);
}

.package-details-drawer.active {
    max-height: 2500px; /* High value for rich content height */
    border-bottom: 3px solid var(--color-accent);
}

.drawer-inner {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.details-subtitle {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(31, 58, 46, 0.08);
    padding-bottom: 6px;
}

.details-subtitle i {
    color: var(--color-accent);
}

/* Highlights & Sightings splits */
.highlights-sightings-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
}

.highlight-list, .sightings-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.highlight-list li, .sightings-list li {
    font-size: 0.9rem;
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
    color: var(--color-text-muted);
}

.highlight-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-size: 0.8rem;
}

.sightings-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--color-primary-light);
    font-size: 0.8rem;
}

.rest-stop-box {
    background-color: var(--color-white);
    border-left: 3px solid var(--color-accent);
    padding: 12px 18px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

/* Options Accordions */
.options-accordions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.option-accordion {
    background-color: var(--color-white);
    border: 1px solid rgba(200, 169, 107, 0.2);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.option-header-btn {
    width: 100%;
    background-color: var(--color-white);
    border: none;
    outline: none;
    padding: 18px 24px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

.option-accordion:hover .option-header-btn {
    background-color: var(--color-accent-light);
}

.option-header-btn .option-time-tag {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-secondary);
    background-color: var(--color-bg);
    padding: 4px 12px;
    border-radius: var(--border-radius-full);
    margin-left: auto;
    margin-right: 15px;
}

.option-header-btn i {
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

.option-header-btn.active i {
    transform: rotate(180deg);
}

.option-body-drawer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-top: 1px solid transparent;
}

.option-body-drawer.active {
    max-height: 800px;
    border-top: 1px solid rgba(200, 169, 107, 0.15);
}

.option-body-inner {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Rates Grid System */
.rates-flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 100px), 1fr));
    gap: 12px;
}

.rate-card {
    background-color: var(--color-bg);
    border: 1px solid rgba(200, 169, 107, 0.15);
    border-radius: var(--border-radius-sm);
    padding: 12px 8px;
    text-align: center;
    transition: var(--transition-fast);
}

.rate-card:hover {
    border-color: var(--color-accent);
    background-color: var(--color-white);
    box-shadow: 0 4px 10px rgba(200, 169, 107, 0.15);
}

.rate-pax {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}

.rate-price {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-primary);
}

.option-inclusions-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-primary);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.option-inclusions-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.option-inclusions-list li {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.option-inclusions-list li i {
    color: var(--color-primary-light);
    font-size: 0.75rem;
}

/* media queries adjustments */
@media (max-width: 768px) {
    .highlights-sightings-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .option-inclusions-list {
        grid-template-columns: 1fr;
    }
    
    .option-header-btn {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .option-header-btn .option-time-tag {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        text-align: center;
        order: 3;
    }
}

/* ==========================================================================
   YALA SHOWCASE BANNER
   ========================================================================== */
.yala-showcase {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    border: 2px solid var(--color-accent);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-premium-hover);
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    overflow: hidden;
}

.yala-showcase-img {
    position: relative;
    min-height: 450px;
}

.yala-showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.yala-showcase-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 28, 22, 0) 60%, rgba(15, 28, 22, 0.8) 100%);
}

.yala-showcase-content {
    padding: 50px 40px;
    color: var(--color-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.yala-badge {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
    padding: 6px 16px;
    border-radius: var(--border-radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    display: inline-block;
    box-shadow: var(--shadow-glow);
    align-self: flex-start;
}

.yala-showcase-content h3 {
    color: var(--color-white);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.yala-meta-tag {
    font-size: 0.9rem;
    color: var(--color-accent);
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.yala-showcase-content p {
    color: rgba(244, 232, 208, 0.85);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.why-yala-list {
    list-style: none;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-yala-list li {
    position: relative;
    padding-left: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text);
}

.why-yala-list li::before {
    content: none;
}

.yala-sightings-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-white);
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(244, 232, 208, 0.15);
    padding-bottom: 6px;
}

.yala-sightings-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.yala-sighting-tag {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 169, 107, 0.2);
    padding: 6px 12px;
    border-radius: var(--border-radius-full);
    font-size: 0.8rem;
    color: var(--color-bg);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.yala-sighting-tag:hover {
    background-color: var(--color-accent-light);
    border-color: var(--color-accent);
}

.yala-sighting-tag i {
    color: var(--color-accent);
    font-size: 0.75rem;
}

/* media queries adjustments */
@media (max-width: 1024px) {
    .yala-showcase {
        grid-template-columns: 1fr;
    }
    
    .yala-showcase-img {
        min-height: 300px;
        height: 300px;
    }
    
    .yala-showcase-img::after {
        background: linear-gradient(180deg, rgba(15, 28, 22, 0) 60%, rgba(15, 28, 22, 0.8) 100%);
    }
}

/* ==========================================================================
   DRAWER ACTIVE JEEP CARD STRETCHING
   ========================================================================== */
.package-card.drawer-active .package-content {
    flex-grow: 0;
}

.package-card.drawer-active .package-details-drawer.active {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-card.drawer-active .drawer-inner {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.drawer-book-btn-wrapper {
    text-align: right;
    margin-top: auto;
    padding-top: 25px;
}

/* ==========================================================================
   INTERACTIVE DETAILS DRAWER (Other Adventures / Cycling)
   ========================================================================== */
.other-drawer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
}

.itinerary-timeline {
    position: relative;
    padding-left: 24px;
    border-left: 2px dashed var(--color-accent);
    margin-top: 15px;
    max-height: 380px;
    overflow-y: auto;
    padding-right: 15px;
}

/* Custom Scrollbar for Itinerary Box */
.itinerary-timeline::-webkit-scrollbar {
    width: 6px;
}
.itinerary-timeline::-webkit-scrollbar-track {
    background: rgba(31, 58, 46, 0.05);
    border-radius: var(--border-radius-full);
}
.itinerary-timeline::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: var(--border-radius-full);
}
.itinerary-timeline::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-hover);
}

.timeline-day {
    position: relative;
    margin-bottom: 20px;
}
.timeline-day:last-child {
    margin-bottom: 0;
}
.timeline-day::before {
    content: '';
    position: absolute;
    left: -31px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-primary);
    border: 2px solid var(--color-accent);
    transition: var(--transition-fast);
    z-index: 2;
}
.timeline-day:hover::before {
    background-color: var(--color-accent);
    box-shadow: var(--shadow-glow);
}
.timeline-day-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}
.timeline-day-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--color-text-muted);
}

/* Price Callout Card */
.price-callout {
    background-color: var(--color-accent-light);
    border: 1px solid var(--color-accent);
    border-radius: var(--border-radius-md);
    padding: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--color-primary-dark);
}
.price-callout i {
    font-size: 1.5rem;
    color: var(--color-secondary);
}
.price-callout strong {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--color-primary);
    display: inline-block;
}

@media (max-width: 768px) {
    .other-drawer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}
/* ==========================================================================
   GLOBAL MOBILE RESPONSIVENESS OVERRIDES
   ========================================================================== */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    .hero {
        min-height: 500px;
    }
    .page-banner {
        min-height: 250px;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    .hero-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .package-content,
    .highlight-card {
        padding: 25px 20px;
    }
    .packages-filter-bar {
        padding: 15px;
        width: 100%;
        box-sizing: border-box;
    }
    .filter-tabs {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        width: 100%;
    }
    .filter-tabs li {
        flex: 1 1 auto;
    }
    .filter-btn {
        width: 100%;
        padding: 10px 15px;
        font-size: 0.85rem;
        white-space: normal;
        text-align: center;
        line-height: 1.4;
    }
    .search-box {
        width: 100%;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 40px 0;
    }
    h2 {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
    }
    .hero h1 {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    .testimonial-slide {
        padding: 30px 15px;
    }
    .drawer-book-btn-wrapper .btn,
    .package-footer .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .package-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    .price-callout {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .yala-showcase-content {
        padding: 30px 20px;
    }
}

/* Mobile Navigation Button Overrides */
.mobile-only-btn {
    display: none;
}
@media (max-width: 768px) {
    .btn-header-cta {
        display: none !important;
    }
    .mobile-only-btn {
        display: block;
    }
}

/* Contact Page Mobile Overrides */
@media (max-width: 768px) {
    .contact-info-panel, 
    .booking-form-box {
        padding: 30px 20px !important;
    }
    .contact-split {
        gap: 30px;
    }
    #map-mock-box {
        padding: 30px 15px !important;
    }
    #map-graphic-box {
        padding: 30px 15px !important;
    }
}
@media (max-width: 480px) {
    .contact-info-panel, 
    .booking-form-box {
        padding: 25px 15px !important;
    }
}

/* Specialized Contact Page Mobile Views */
@media (max-width: 768px) {
    #contact-info-panel-box {
        text-align: center;
    }
    #contact-info-subtitle, 
    #contact-info-title, 
    #contact-info-desc {
        text-align: center;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-details-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
    }
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    .contact-icon-box {
        margin: 0 auto;
    }
    
    #contact-social-heading {
        text-align: center;
        margin-top: 30px;
    }
    #contact-social-bar {
        justify-content: center;
    }

    #booking-form-wrapper {
        text-align: center;
    }
    #booking-form-subtitle,
    #booking-form-title {
        text-align: center;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    
    .booking-form {
        text-align: left;
    }
    .booking-form .form-group {
        text-align: left;
    }
    .form-group select {
        padding-right: 30px;
    }
}

/* Sustainability Metrics Mobile View */
@media (max-width: 480px) {
    .sus-metrics {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Fix for mobile Book a Tour button inside Nav Links */
@media (max-width: 768px) {
    .nav-links .mobile-only-btn {
        width: 100%;
        margin-top: 15px;
        padding: 0 20px;
        box-sizing: border-box;
    }
    .nav-links .mobile-only-btn a {
        color: var(--color-primary-dark) !important;
        font-size: 1.1rem !important;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }
    .nav-links .mobile-only-btn a::after {
        display: none !important;
    }
}

/* Fix Hero image aggressive cropping/zooming on mobile */
@media (max-width: 768px) {
    .hero {
        height: auto !important; 
        min-height: 55vh !important;
        padding: 140px 0 70px 0 !important;
    }
    .hero-slide {
        transform: scale(1.03) !important; 
        background-position: center 30% !important; /* Bias slightly towards the top for wildlife shots */
    }
    .hero-slide.active {
        transform: scale(1) !important;
    }
}

/* ==========================================================================
   DESTINATION DETAILS PAGE STYLES (destination.php)
   ========================================================================== */

/* Showcase Gallery Grid */
.showcase-gallery-layout {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.dest-gallery-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dest-gallery-main {
    width: 100%;
    height: 480px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 2px solid var(--color-accent);
    box-shadow: var(--shadow-premium);
    background-color: var(--color-primary-dark);
}

.dest-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.dest-gallery-thumbs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.dest-gallery-thumbs::-webkit-scrollbar {
    height: 6px;
}

.dest-gallery-thumbs::-webkit-scrollbar-thumb {
    background-color: var(--color-accent);
    border-radius: var(--border-radius-full);
}

.thumb-wrapper {
    flex: 0 0 100px;
    height: 70px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
    opacity: 0.75;
}

.thumb-wrapper:hover,
.thumb-wrapper.active {
    border-color: var(--color-accent);
    opacity: 1;
    transform: scale(1.03);
}

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

/* Glassmorphic Quick Enquiry Form */
.dest-quick-enquiry {
    background: linear-gradient(135deg, rgba(31, 58, 46, 0.95) 0%, rgba(15, 28, 22, 0.98) 100%);
    border: 2px solid var(--color-accent);
    border-radius: var(--border-radius-lg);
    padding: 35px 30px;
    box-shadow: var(--shadow-premium), var(--shadow-glow);
    color: var(--color-white);
    backdrop-filter: blur(12px);
}

.dest-quick-enquiry h3 {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 1.35rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dest-quick-enquiry h3 i {
    color: var(--color-accent);
}

.dest-quick-enquiry p {
    font-size: 0.85rem;
    color: rgba(244, 232, 208, 0.75);
    margin-bottom: 25px;
    line-height: 1.5;
}

.quick-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 15px;
}

.quick-form-group label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-accent);
    letter-spacing: 0.5px;
}

.quick-form-group input,
.quick-form-group select,
.quick-form-group textarea {
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 169, 107, 0.25);
    border-radius: var(--border-radius-sm);
    color: var(--color-white);
    outline: none;
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
    width: 100%;
}

.quick-form-group select option {
    color: #1B1B1B !important;
    background-color: #ffffff !important;
}

.quick-form-group input:focus,
.quick-form-group select:focus,
.quick-form-group textarea:focus {
    border-color: var(--color-accent);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 8px rgba(200, 169, 107, 0.3);
}

.quick-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Mid Description Layout */
.dest-description-split {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 50px;
    align-items: flex-start;
}

/* Sequential Article-style Packages */
.packages-articles-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 40px;
}

.package-article {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(31, 58, 46, 0.08);
    box-shadow: var(--shadow-premium);
    padding: 40px;
    position: relative;
    transition: var(--transition-smooth);
}

.package-article:hover {
    box-shadow: var(--shadow-premium-hover);
    border-color: var(--color-accent);
    transform: translateY(-3px);
}

.article-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 2px solid var(--color-bg);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.article-header h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-top: 5px;
}

.article-category-badge {
    font-size: 0.7rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 4px 10px;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-right: 8px;
}

.article-tour-badge {
    font-size: 0.7rem;
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
    padding: 4px 10px;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.article-price-box {
    text-align: right;
    display: flex;
    flex-direction: column;
}

.price-from-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value-bold {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1.1;
    margin: 2px 0;
}

.price-pax-label {
    font-size: 0.65rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.article-meta-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.meta-pill {
    font-size: 0.85rem;
    background-color: var(--color-bg);
    color: var(--color-secondary);
    padding: 6px 14px;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.meta-pill i {
    color: var(--color-accent);
}

.article-body-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.article-section-heading {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 1.05rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-section-heading i {
    color: var(--color-accent);
}

.article-desc-text {
    line-height: 1.7;
    font-size: 0.95rem;
    color: var(--color-text);
}

.article-inclusions-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.article-inclusions-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--color-text);
}

.article-inclusions-list li i {
    color: var(--color-accent);
    margin-top: 3px;
    font-size: 0.9rem;
}

.article-footer-row {
    border-top: 2px solid var(--color-bg);
    padding-top: 25px;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

/* Adaptive Media Queries for Details Page */
@media (max-width: 1024px) {
    .showcase-gallery-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .dest-gallery-main {
        height: auto;
        aspect-ratio: 16 / 10;
    }
    .dest-description-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .dest-quick-enquiry {
        padding: 25px 20px;
    }
    .package-article {
        padding: 30px 20px;
    }
    .article-header {
        flex-direction: column;
        gap: 15px;
    }
    .article-price-box {
        text-align: left;
    }
    .article-body-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .article-inclusions-list {
        grid-template-columns: 1fr;
    }
    .article-footer-row {
        justify-content: stretch;
    }
    .article-footer-row .btn {
        flex: 1 1 50%;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .dest-gallery-main {
        height: auto;
        aspect-ratio: 16 / 10;
    }
    .quick-form-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .article-footer-row {
        flex-direction: column;
    }
}

/* ==========================================================================
   PREMIUM INTERACTIVE CARDS & ANIMATIONS (ADDITIONS)
   ========================================================================== */

/* 1. Premium Photo Cards (Hover Reveal Zoom effect) */
.premium-photo-card {
    position: relative;
    min-height: 320px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    border: 1px solid var(--color-glass-border);
    transition: var(--transition-smooth);
    cursor: pointer;
    box-shadow: var(--shadow-premium);
    background-color: var(--color-primary-dark);
}

.premium-photo-card .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
    z-index: 1;
}

.premium-photo-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 28, 22, 0.1) 0%, rgba(15, 28, 22, 0.85) 80%);
    transition: var(--transition-smooth);
    z-index: 2;
}

.premium-photo-card .card-content {
    position: relative;
    z-index: 3;
    color: var(--color-white);
    transition: var(--transition-smooth);
}

.premium-photo-card h3 {
    color: var(--color-white) !important;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-top: 10px;
    margin-bottom: 8px;
    transition: var(--transition-smooth);
}

.premium-photo-card p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.premium-photo-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium-hover);
    border-color: var(--color-accent);
}

.premium-photo-card:hover .card-bg {
    transform: scale(1.08);
}

.premium-photo-card:hover .card-overlay {
    background: linear-gradient(to bottom, rgba(15, 28, 22, 0.2) 0%, rgba(15, 28, 22, 0.95) 90%);
}

.premium-photo-card:hover p {
    max-height: 120px;
    opacity: 1;
    margin-top: 10px;
}

.premium-photo-card .highlight-icon {
    position: relative;
    z-index: 3;
    margin-bottom: auto; /* Push heading & text to the bottom */
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background: rgba(200, 169, 107, 0.2);
    color: var(--color-accent);
    font-size: 1.3rem;
    transition: var(--transition-smooth);
}

.premium-photo-card:hover .highlight-icon {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    transform: rotate(360deg);
}

/* 2. Premium Facts Cards */
.facts-card {
    position: relative;
    padding: 35px 25px;
    text-align: center;
    background: linear-gradient(145deg, rgba(31, 58, 46, 0.95), rgba(18, 36, 28, 0.98));
    border: 1px solid rgba(200, 169, 107, 0.2);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    overflow: hidden;
    z-index: 1;
}

.facts-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(200, 169, 107, 0.15), transparent 60%);
    z-index: -1;
    transition: var(--transition-smooth);
}

.facts-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--color-accent);
    transition: var(--transition-smooth);
    border-radius: var(--border-radius-full);
}

.facts-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 28, 22, 0.35), 0 0 30px rgba(200, 169, 107, 0.15);
    border-color: rgba(200, 169, 107, 0.5);
}

.facts-card:hover::before {
    opacity: 0.8;
}

.facts-card:hover::after {
    width: 80px;
}

/* Badge/Tag inside Fact Card */
.facts-card .facts-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-accent);
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0.85;
    transition: var(--transition-smooth);
}

.facts-card:hover .facts-tag {
    letter-spacing: 3px;
    opacity: 1;
}

/* Icon Styling inside Fact Card */
.facts-card .highlight-icon {
    width: 65px;
    height: 65px;
    line-height: 63px;
    text-align: center;
    border-radius: 50%;
    background: rgba(200, 169, 107, 0.08);
    border: 1px solid rgba(200, 169, 107, 0.3);
    color: var(--color-accent);
    font-size: 1.6rem;
    margin: 0 auto 20px auto;
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: 0 0 0 0 rgba(200, 169, 107, 0.2);
}

.facts-card:hover .highlight-icon {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    transform: rotate(360deg);
    border-color: var(--color-accent);
    box-shadow: 0 0 15px rgba(200, 169, 107, 0.4);
}

/* Typography inside card */
.facts-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--color-white) !important;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.facts-card:hover h4 {
    color: var(--color-accent) !important;
}

.facts-card p {
    font-size: 0.88rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.75) !important;
    line-height: 1.6;
    font-family: var(--font-body);
}

.facts-card .facts-divider {
    height: 1px;
    width: 30px;
    background: rgba(255, 255, 255, 0.15);
    margin: 12px auto;
    transition: var(--transition-smooth);
}

.facts-card:hover .facts-divider {
    width: 60px;
    background: rgba(200, 169, 107, 0.4);
}

.facts-card .fact-label {
    color: var(--color-accent);
    font-weight: 600;
}

/* Facts Grid Layout */
.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .facts-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }
}

/* 3. Modern Experience Cards */
.experience-card {
    position: relative;
    min-height: 290px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    border: 1px solid var(--color-glass-border);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
    background-color: var(--color-primary-dark);
}

.experience-card .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
    z-index: 1;
}

.experience-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 28, 22, 0.1) 0%, rgba(15, 28, 22, 0.88) 75%);
    transition: var(--transition-smooth);
    z-index: 2;
}

.experience-card .card-content {
    position: relative;
    z-index: 3;
    color: var(--color-white);
    transition: var(--transition-smooth);
}

.experience-card h3 {
    color: var(--color-white) !important;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-top: 12px;
    margin-bottom: 6px;
    transition: var(--transition-smooth);
}

.experience-card p {
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    transition: var(--transition-smooth);
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium-hover);
    border-color: var(--color-accent);
}

.experience-card:hover .card-bg {
    transform: scale(1.08);
}

.experience-card:hover .card-overlay {
    background: linear-gradient(to bottom, rgba(15, 28, 22, 0.2) 0%, rgba(15, 28, 22, 0.95) 85%);
}

.experience-card .highlight-icon {
    position: relative;
    z-index: 3;
    margin-bottom: auto; /* Push heading & text to the bottom */
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background: rgba(200, 169, 107, 0.25);
    color: var(--color-accent);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.experience-card:hover .highlight-icon {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    transform: rotate(360deg);
}

/* 4. Left-Border Premium Advantage Cards */
.advantage-card {
    position: relative;
    padding: 40px 30px 40px 45px;
    background: linear-gradient(135deg, rgba(31, 58, 46, 0.96) 0%, rgba(18, 36, 28, 0.99) 100%);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(200, 169, 107, 0.2);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    overflow: hidden;
    z-index: 1;
}

.advantage-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-accent), var(--color-accent-hover));
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
    transition: var(--transition-smooth);
}

.advantage-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    transition: var(--transition-smooth);
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 28, 22, 0.35), 0 0 30px rgba(200, 169, 107, 0.15);
    border-color: rgba(200, 169, 107, 0.5);
}

.advantage-card:hover::before {
    width: 8px;
    background: linear-gradient(to bottom, var(--color-accent), #ffffff);
}

.advantage-card:hover::after {
    transform: scale(1.3);
    background: radial-gradient(circle, rgba(200, 169, 107, 0.15) 0%, transparent 70%);
}

/* Advantage Tag */
.advantage-card .advantage-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-accent);
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0.85;
    transition: var(--transition-smooth);
}

.advantage-card:hover .advantage-tag {
    letter-spacing: 3px;
    opacity: 1;
}

/* Icon box */
.advantage-card .highlight-icon {
    width: 55px;
    height: 55px;
    line-height: 53px;
    text-align: center;
    border-radius: 50%;
    background: rgba(200, 169, 107, 0.08);
    border: 1px solid rgba(200, 169, 107, 0.3);
    color: var(--color-accent);
    font-size: 1.4rem;
    transition: var(--transition-smooth);
    box-shadow: 0 0 0 0 rgba(200, 169, 107, 0.2);
}

.advantage-card:hover .highlight-icon {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    transform: rotate(360deg) scale(1.05);
    border-color: var(--color-accent);
    box-shadow: 0 0 15px rgba(200, 169, 107, 0.4);
}

/* Headings & Text */
.advantage-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 15px !important;
    margin-bottom: 12px;
    color: var(--color-white) !important;
    transition: var(--transition-smooth);
}

.advantage-card:hover h3 {
    color: var(--color-accent) !important;
}

.advantage-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.78) !important;
    line-height: 1.65;
    margin: 0;
}

/* ==========================================================================
   TERMS & CONDITIONS PAGE STYLES (terms.php)
   ========================================================================== */
.terms-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 50px;
}

/* Sticky Sidebar Table of Contents */
.terms-sidebar {
    position: sticky;
    top: 100px;
    background: var(--color-white);
    padding: 30px 25px;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(31, 58, 46, 0.06);
    box-shadow: var(--shadow-premium);
}

.terms-sidebar h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-bg);
}

.terms-toc {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.terms-toc li a {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.terms-toc li a:hover {
    color: var(--color-accent);
    transform: translateX(4px);
}

.terms-toc li a i {
    font-size: 0.75rem;
    color: var(--color-accent);
}

/* Terms Main Content */
.terms-content {
    background: var(--color-white);
    padding: 50px 45px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(31, 58, 46, 0.06);
    box-shadow: var(--shadow-premium);
}

.terms-section {
    margin-bottom: 45px;
    scroll-margin-top: 100px; /* Offset for sticky header when linking */
}

.terms-section:last-child {
    margin-bottom: 0;
}

.terms-section h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.terms-section h3 i {
    color: var(--color-accent);
    font-size: 1.1rem;
}

.terms-section p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
}

.terms-section p:last-child {
    margin-bottom: 0;
}

/* Bullet Points & Highlights */
.terms-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.terms-list li {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    padding-left: 25px;
    position: relative;
}

.terms-list li::before {
    content: '\f00c'; /* FontAwesome Checkmark */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--color-accent);
    font-size: 0.85rem;
}

.terms-highlight {
    background: rgba(200, 169, 107, 0.08);
    border-left: 3px solid var(--color-accent);
    padding: 15px 20px;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    margin: 20px 0;
}

.terms-highlight p {
    margin: 0;
    font-style: italic;
    font-size: 0.92rem;
    color: var(--color-secondary);
}

/* Cancellation Table */
.terms-table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(31, 58, 46, 0.08);
}

.terms-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    text-align: left;
}

.terms-table th,
.terms-table td {
    padding: 12px 18px;
    border-bottom: 1px solid rgba(31, 58, 46, 0.08);
}

.terms-table th {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.terms-table tr:last-child td {
    border-bottom: none;
}

.terms-table tr:nth-child(even) {
    background-color: rgba(244, 232, 208, 0.2);
}

.terms-table td strong {
    color: var(--color-primary);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .terms-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .terms-sidebar {
        position: static;
        padding: 20px;
    }
    .terms-content {
        padding: 35px 25px;
    }
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (PREMIUM & DYNAMIC)
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--color-white);
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float i {
    transition: transform 0.3s ease;
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    padding: 8px 14px;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--color-accent);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: var(--color-primary-dark);
    border-top: 1px solid var(--color-accent);
    border-right: 1px solid var(--color-accent);
}

/* Hover States */
.whatsapp-float:hover {
    background-color: #20ba5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    transform: scale(1.1) translateY(-3px);
}

.whatsapp-float:hover i {
    transform: scale(1.05) rotate(10deg);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* Dynamic Pulsing Animation */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
    .whatsapp-tooltip {
        display: none;
    }
}
