/* ================================================
   SHEHANA SPA — PREMIUM DESIGN SYSTEM
   Inspired by: Luxury Wellness & Spa Aesthetics
   ================================================ */

@font-face {
    font-family: 'Alexandria';
    src: url('../fonts/Alexandria-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* === DESIGN TOKENS === */
:root {
    /* Brand Colors — Shehana Premium Spa */
    --primary: #DCBAA3;
    /* Nude/Beige */
    --secondary: #C6C6BA;
    /* Sage/Natural */
    --accent: #A18F90;
    /* Muted Rose */
    --primary-dark: #c5a38d;
    --primary-light: #f8f4f1;

    /* Legacy Green Mapping (for compatibility during transition) */
    --green: var(--primary);
    --green-dark: var(--accent);
    --green-light: var(--primary-light);

    --black: #1a1a1a;
    --white: #ffffff;

    /* Neutrals */
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-400: #bdbdbd;
    --gray-600: #8d8d8d;
    --gray-800: #4a4a4a;

    /* Semantic */
    --text: #111111;
    --text-muted: #757575;
    --border: #ebebeb;
    --bg: #ffffff;

    /* Elevation */
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.07);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.14);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.18);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.25s var(--ease);
    --transition-slow: all 0.45s var(--ease);
}

/* === RESET & BASE === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Global 90% Container */
.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Alexandria', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure Alexandria for all form and interactive elements */
button,
input,
select,
textarea,
optgroup,
.lang-label,
.lang-item,
.sth-title,
.site-title {
    font-family: 'Alexandria', sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Alexandria', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--green);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* === HEADER TOP BAR === */
.header-top-bar {
    background: linear-gradient(90deg, var(--green-dark) 0%, var(--green) 50%, var(--green-dark) 100%);
    background-size: 200% auto;
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    animation: topBarShine 4s linear infinite, topBarSlideDown 0.6s var(--ease) forwards;
}

.top-bar-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.top-bar-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-content i {
    font-size: 16px;
    animation: topBarSparkle 2s ease-in-out infinite;
}

.top-bar-close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 18px;
    opacity: 0.7;
    transition: var(--transition);
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

[dir="rtl"] .top-bar-close {
    right: auto;
    left: 0;
}

.top-bar-close:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

@keyframes topBarShine {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

@keyframes topBarSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes topBarSparkle {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

img {
    max-width: 100%;
    display: block;
}

/* ================================================
   HEADER
   ================================================ */

.site-header {
    position: fixed;
    top: 56px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(82% - 48px);
    max-width: 95%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-xl);
    padding: 14px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    transition: top 0.4s var(--ease), width 0.4s var(--ease), border-radius 0.4s var(--ease), padding 0.4s var(--ease), background 0.4s var(--ease);
}

body.top-bar-closed .site-header {
    top: 16px;
}

.mobile-menu-close {
    display: none;
    /* Hide on desktop by default */
}

.site-header.scrolled {
    top: 0 !important;
    width: 100%;
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 12px 40px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
}

/* Logo */
.header-logo a.site-title {
    font-size: 22px;
    font-weight: 900;
    color: var(--black);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.brand-logo {
    max-height: 60px;
    /* Premium sleek sizing */
    width: auto;
    object-fit: contain;
}

.header-logo .site-title span,
.footer-logo span {
    color: var(--green);
}

.footer-brand-logo {
    max-height: 90px;
    /* Balanced footer presence */
    width: auto;
    object-fit: contain;
    margin-bottom: 25px;
}


/* Nav */
.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}

.main-navigation ul li {
    position: relative;
}

.main-navigation ul li a {
    font-family: 'Alexandria', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    padding: 8px 14px;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

/* Language Switcher */
/* Language Switcher — Premium Dropdown */
.lang-switch-dropdown {
    position: relative;
    display: inline-block;
}

.lang-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid var(--border);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    cursor: pointer;
    transition: var(--transition);
}

.lang-dropdown-toggle:hover {
    background: var(--white);
    border-color: var(--green);
    box-shadow: var(--shadow-sm);
}

.lang-dropdown-toggle i {
    font-size: 11px;
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.lang-switch-dropdown.active .lang-dropdown-toggle i {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 180px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1000;
    pointer-events: none;
}

[dir="rtl"] .lang-dropdown-menu {
    right: auto;
    left: 0;
}

.lang-switch-dropdown.active .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.lang-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    color: var(--text);
    transition: var(--transition);
    text-decoration: none;
}

.lang-item:hover {
    background: var(--green-light);
    color: var(--green);
}

.lang-item.active {
    background: var(--green);
    color: var(--white);
}

.lang-item .flag {
    font-size: 18px;
}

.lang-item .name {
    font-size: 14px;
    font-weight: 600;
    flex: 1;
}

.lang-item .code {
    font-size: 11px;
    font-weight: 700;
    opacity: 0.5;
    text-transform: uppercase;
}




.main-navigation ul li a:hover {
    color: var(--green);
    background: var(--green-light);
}

/* Mega Menu Support */
.main-navigation ul li.mega-menu-item {
    position: static;
    /* Required for full-width or large dropdowns relative to header */
}

.main-navigation ul li.mega-menu-item ul {
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 600px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 20px;
}

[dir="rtl"] .main-navigation ul li.mega-menu-item ul {
    left: 50%;
    right: auto;
}

.main-navigation ul li.mega-menu-item:hover>ul {
    transform: translateX(-50%) translateY(0);
}

.main-navigation ul li.mega-menu-item ul li a {
    padding: 15px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    font-weight: 700;
}

.main-navigation ul li.mega-menu-item ul li a:hover {
    background: var(--green-light);
    color: var(--green);
}

/* Dropdown styling */
.main-navigation ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    padding: 8px;
    flex-direction: column;
    gap: 0;
}

[dir="rtl"] .main-navigation ul li ul {
    left: auto;
    right: 0;
}

.main-navigation ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation ul li ul li {
    width: 100%;
}

.main-navigation ul li ul li a {
    padding: 10px 15px;
    width: 100%;
    font-size: 13px;
}

.main-navigation ul li.menu-item-has-children>a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Pro', 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    transition: var(--transition);
}

.main-navigation ul li.menu-item-has-children:hover>a::after {
    transform: rotate(180deg);
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    width: 30px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Header Actions — Positioning on Mobile */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-trigger {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    color: var(--text-muted);
    background: transparent;
    transition: var(--transition);
    font-size: 17px;
}

.header-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(220, 186, 163, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
    border: 1.5px solid transparent;
}

.header-cta-btn i {
    font-size: 18px;
}

.header-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: all 0.6s;
}

.header-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 186, 163, 0.4);
    background: var(--white);
    color: var(--primary);
    border-color: var(--primary);
}

.header-cta-btn:hover::before {
    left: 100%;
}

.header-cta-btn:active {
    transform: translateY(-1px);
}

.search-trigger:hover {
    background: var(--gray-100);
    color: var(--text);
}

/* Mobile Navigation — Premium Overhaul */
@media (max-width: 991px) {
    .site-header {
        width: 100%;
        max-width: 100%;
        top: 45px !important;
        /* Move down for top bar on mobile */
        border-radius: 0;
        padding: 12px 20px;
        border-bottom: 1px solid var(--border);
        background: rgba(255, 255, 255, 0.98);
    }

    .brand-logo {
        max-height: 38px;
        /* Slightly smaller for mobile bars */
    }

    body.top-bar-closed .site-header {
        top: 0 !important;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }

    .header-logo {
        order: 1;
    }

    .header-actions {
        order: 2;
        margin-left: auto;
        margin-right: 15px;
        gap: 8px;
    }

    [dir="rtl"] .header-actions {
        margin-left: 15px;
        margin-right: auto;
        order: 1 !important;
        /* Move actions (lang switch) to far right/left of container */
    }

    .lang-dropdown-toggle {
        padding: 6px 12px;
        gap: 6px;
    }

    .lang-dropdown-toggle .lang-label {
        display: none;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        z-index: 2000;
        transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        padding: 40px 40px;
        display: flex !important;
        flex-direction: column;
        justify-content: flex-start;
        overflow-y: auto;
        visibility: hidden;
    }

    .mobile-menu-close {
        display: flex;
        /* Show on mobile */
        align-self: flex-end;
        background: var(--gray-100);
        border: none;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: var(--black);
        cursor: pointer;
        margin-bottom: 20px;
        transition: var(--transition);
    }

    .mobile-menu-close:hover {
        background: var(--green-light);
        color: var(--green);
        transform: rotate(90deg);
    }


    [dir="rtl"] .main-navigation {
        right: auto;
        left: -100%;
    }

    .main-navigation.active {
        transform: translateX(-100%);
        visibility: visible;
    }

    [dir="rtl"] .main-navigation.active {
        transform: translateX(100%);
    }

    .main-navigation ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .main-navigation ul li {
        width: 100%;
        border-bottom: 1px solid var(--gray-100);
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .main-navigation.active ul li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered animation */
    .main-navigation.active ul li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .main-navigation.active ul li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .main-navigation.active ul li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .main-navigation.active ul li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .main-navigation.active ul li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .main-navigation ul li a {
        font-size: 24px;
        font-weight: 700;
        padding: 20px 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: var(--black);
    }

    .main-navigation ul li a:hover {
        color: var(--green);
        background: transparent;
    }

    .main-navigation ul li ul {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 20px 20px;
        display: none;
    }

    [dir="rtl"] .main-navigation ul li ul {
        padding: 0 20px 20px 0;
    }

    .main-navigation ul li ul li {
        border-bottom: none;
    }

    .main-navigation ul li ul li a {
        font-size: 18px;
        font-weight: 500;
        padding: 10px 0;
        color: var(--text-muted);
    }

    .main-navigation ul li.menu-item-has-children>a::after {
        content: "\f107";
        font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 14px;
        transition: transform 0.3s ease;
    }

    .main-navigation ul li.submenu-open>a::after {
        transform: rotate(180deg);
    }

    .btn-book {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* BOOK NOW Button */
.btn-book {
    font-family: 'Alexandria', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--black);
    color: var(--white);
    padding: 11px 22px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
    border: 2px solid var(--black);
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn-book:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 170, 108, 0.35);
}

.btn-book i {
    font-size: 16px;
}

/* =========================================
   HOME: ABOUT US SECTION
   ========================================= */
.home-about {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.chp-about {
    margin-bottom: 30px;
    text-align: right;
    align-items: flex-start;
}

[dir="ltr"] .chp-about {
    text-align: left;
}

.chp-about .chp-title {
    font-size: 42px;
    line-height: 1.3;
}

.chp-about .chp-desc {
    font-size: 18px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.af-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.af-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 170, 108, 0.1);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.af-text strong {
    display: block;
    font-size: 18px;
    color: var(--primary);
}

.about-image {
    position: relative;
    z-index: 1;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--green);
    color: var(--white);
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 170, 108, 0.3);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 2;
}

[dir="rtl"] .experience-badge {
    left: auto;
    right: -30px;
}

.eb-number {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
}

.eb-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .chp-about .chp-title {
        font-size: 32px;
    }

    .experience-badge {
        bottom: 20px;
        left: 20px;
    }

    [dir="rtl"] .experience-badge {
        right: 20px;
        left: auto;
    }
}

@media (max-width: 768px) {
    .about-features {
        flex-direction: column;
        gap: 20px;
    }
}

/* ================================================
   HERO SECTION — CINEMATIC PREMIUM
   ================================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--black);
    background-image: url('../img/hero-bg.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 120px 24px 80px;
}

/* Dark overlay for readability */
.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-section::before {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.40) 50%,
            rgba(0, 0, 0, 0.70) 100%);
    z-index: 1;
}

.hero-section::after {
    background: radial-gradient(circle at 60% 40%, rgba(0, 170, 108, 0.18) 0%, transparent 55%);
    z-index: 2;
}

/* Dot Grid Overlay */
.hero-section .hero-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 170, 108, 0.15);
    border: 1px solid rgba(0, 170, 108, 0.4);
    color: var(--green);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 28px;
    animation: fadeInUp 0.7s var(--ease) both;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.6);
        opacity: 0.5;
    }
}

.hero-title {
    font-size: clamp(40px, 7.5vw, 88px);

    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -3px;
    animation: fadeInUp 0.8s var(--ease) 0.15s both;
}

.hero-title .highlight {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.6);
}

.hero-title .green {
    color: var(--green);
}

.hero-subtitle {
    font-size: clamp(16px, 1.8vw, 20px);
    color: rgba(255, 255, 255, 0.6);
    max-width: 640px;
    margin: 0 auto 48px;
    font-weight: 400;
    line-height: 1.7;
    animation: fadeInUp 0.8s var(--ease) 0.3s both;
}

/* Hero Buttons */
.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--ease) 0.45s both;
}

/* ================================================
   HERO SEARCH BOX — Premium Airbnb Style
   ================================================ */

.hero-search-box {
    position: relative;
    z-index: 20;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 8px 8px 8px 8px;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s var(--ease) 0.45s both;
}

/* Tabs */
.hero-search-tabs {
    display: flex;
    gap: 4px;
    padding: 8px 8px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 8px;
}

.search-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: transparent;
    border: none;
    border-radius: 12px;
    font-family: 'Alexandria', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: var(--transition);
}

.search-tab i {
    font-size: 16px;
}

.search-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
}

.search-tab.active {
    background: rgba(0, 170, 108, 0.18);
    color: var(--green);
    border: 1px solid rgba(0, 170, 108, 0.25);
}

/* Fields Row */
.hero-search-fields {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 16px;
    padding: 6px;
}

.search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 12px;
    transition: var(--transition);
}

.search-field:hover {
    background: var(--gray-100);
}

.search-field>i {
    font-size: 22px;
    color: var(--green);
    flex-shrink: 0;
}

.search-field-inner {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
}

.search-field-inner label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    cursor: pointer;
}

.search-field-inner select,
.search-field-inner input {
    font-family: 'Alexandria', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text);
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    cursor: pointer;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
}

.search-field-inner input::placeholder {
    color: var(--gray-400);
    font-weight: 400;
}

.search-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    flex-shrink: 0;
}

/* Search Button */
/* =========================================
   HERO SEARCH BAR (Simplified)
========================================= */
.hero-search-box {
    background: var(--white);
    padding: 15px;
    border-radius: var(--radius-full);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: -40px auto 40px;
}

.hero-search-form {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-search-form .search-field {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 20px;
}

.hero-search-form .search-field i {
    font-size: 24px;
    color: var(--green);
}

.hero-search-form .search-input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 18px;
    font-weight: 500;
    color: var(--text);
    padding: 15px 0;
    font-family: inherit;
    outline: none;
}

.hero-search-form .search-input::placeholder {
    color: var(--text-muted);
}

.hero-search-form .search-btn {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    border: none;
    padding: 16px 40px;
    border-radius: var(--radius-full);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(0, 170, 108, 0.3);
}

.hero-search-form .search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 170, 108, 0.4);
}

@media (max-width: 768px) {
    .hero-search-box {
        border-radius: 20px;
        padding: 10px;
    }

    .hero-search-form {
        flex-direction: column;
        gap: 10px;
    }

    .hero-search-form .search-field {
        padding: 10px;
    }

    .hero-search-form .search-input {
        font-size: 16px;
    }

    .hero-search-form .search-btn {
        width: 100%;
        padding: 15px;
    }
}

.btn-secondary {
    font-family: 'Alexandria', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    padding: 14px 36px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: var(--transition);
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* ================================================
   CUSTOM SELECT DROPDOWNS
   ================================================ */

.custom-select {
    position: relative;
    width: 100%;
    user-select: none;
}

/* The visible "selected" pill */
.cs-selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    cursor: pointer;
}

.cs-value {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px;
}

.cs-value.placeholder {
    color: var(--gray-400);
    font-weight: 400;
}

.cs-arrow {
    font-size: 11px;
    color: var(--text-muted);
    transition: transform 0.2s var(--ease);
    flex-shrink: 0;
}

.custom-select.open .cs-arrow {
    transform: rotate(180deg);
}

/* Dropdown Panel */
.cs-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: -20px;
    min-width: 280px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 9999;
    opacity: 0;
    transform: translateY(-8px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.cs-dropdown--right {
    left: auto;
    right: -20px;
}

.cs-dropdown--center {
    left: 50%;
    transform: translateX(-50%) translateY(-8px) scale(0.97);
}

.custom-select.open .cs-dropdown {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.custom-select.open .cs-dropdown--center {
    transform: translateX(-50%) translateY(0) scale(1);
}

/* Destination Options */
.cs-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid var(--gray-100);
}

.cs-option:last-child {
    border-bottom: none;
}

.cs-option:hover {
    background: var(--green-light);
}

.cs-option.selected {
    background: var(--green-light);
}

.cs-option>i {
    font-size: 24px;
    color: var(--green);
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}

.cs-option-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cs-option-info strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.cs-option-info span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400;
}

/* ---- Guests Counter Panel ---- */
.cs-guests-counter {
    padding: 20px;
}

.cs-guest-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
}

.cs-guest-row:last-of-type {
    border-bottom: none;
}

.cs-guest-label strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}

.cs-guest-label span {
    font-size: 12px;
    color: var(--text-muted);
}

.cs-counter {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cs-count-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--white);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    line-height: 1;
}

.cs-count-btn:hover:not(:disabled) {
    border-color: var(--text);
    color: var(--text);
}

.cs-count-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.cs-count-val {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    min-width: 18px;
    text-align: center;
}

.cs-apply-btn {
    width: 100%;
    margin-top: 16px;
    padding: 12px;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-family: 'Alexandria', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.cs-apply-btn:hover {
    background: var(--green-dark);
}

/* ---- Premium Date Input (Replaced by Custom Calendar) ---- */
.custom-calendar {
    width: 320px;
    padding: 20px;
}

.cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.cal-btn {
    background: var(--gray-50);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text);
    font-size: 16px;
    transition: var(--transition);
}

.cal-btn:hover {
    background: var(--gray-100);
    border-color: var(--text-muted);
}

.cal-month-year {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}

.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.cal-day:hover:not(.disabled) {
    background: var(--green-light);
    color: var(--green);
}

.cal-day.disabled {
    color: var(--gray-400);
    cursor: not-allowed;
    opacity: 0.5;
}

.cal-day.selected {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 170, 108, 0.4);
}

.cal-day.today:not(.selected) {
    border: 1.5px solid var(--green);
    color: var(--green);
}

/* Search field active state */
.search-field.is-open {
    background: var(--green-light);
    border-radius: var(--radius-md);
}



/* Hero Stats Strip */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: center;
    gap: 0;
    z-index: 1;
    animation: fadeInUp 0.8s var(--ease) 0.6s both;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 60px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    cursor: default;
    transition: var(--transition);
}

.hero-stat:last-child {
    border-right: none;
}

.hero-stat:hover {
    background: rgba(255, 255, 255, 0.04);
}

.hero-stat i {
    font-size: 26px;
    color: var(--green);
    flex-shrink: 0;
}

.hero-stat-text strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-text span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

/* ================================================
   DYNAMIC TRIP CATEGORY WIDGETS
   ================================================ */
.trip-category-widget {
    padding: 80px 0;
    background: var(--bg);
}

.trip-category-widget:nth-child(odd) {
    background: var(--gray-50);
}

/* ================================================
   PREMIUM CATEGORY WIDGET HEADERS
   ================================================ */
.category-header-premium {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    gap: 40px;
}

.chp-content {
    max-width: 600px;
}

.chp-kicker {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.chp-title {
    font-size: 38px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.2;
    /* Gradient text */
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 15px;
}

.chp-title i {
    color: #FFB800;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
    font-size: 34px;
}

.chp-desc {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.chp-action {
    flex-shrink: 0;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--green);
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 15px;
    font-family: 'Alexandria', sans-serif;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(18, 38, 63, 0.15);
}

.btn-explore:hover {
    background: var(--green-hover, #008f5a);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(18, 38, 63, 0.25);
}

[dir="rtl"] .btn-explore i {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .category-header-premium {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 40px;
    }

    .chp-title {
        font-size: 28px;
    }
}


.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 15px;
}

.section-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title i {
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
    color: var(--gold);
    font-size: 32px;
}

.view-all-link {
    font-family: 'Alexandria', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    padding: 10px 20px;
    background: var(--white);
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.view-all-link:hover {
    color: var(--green);
    border-color: var(--green);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

[dir="rtl"] .view-all-link i {
    transform: rotate(180deg);
}



/* ================================================
   FOOTER
   ================================================ */

.site-footer {
    background: #0a0a0a;
    color: var(--white);
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 170, 108, 0.3), transparent);
}

.footer-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 80px;
}

.footer-column .footer-logo {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 25px;
    display: block;
}

.footer-about-text {
    color: #999;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--white);
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--green);
}

[dir="rtl"] .footer-title::after {
    left: auto;
    right: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    color: #999;
    font-size: 15px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a:hover {
    color: var(--green);
    transform: translateX(5px);
}

[dir="rtl"] .footer-links li a:hover {
    transform: translateX(-5px);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 170, 108, 0.2);
}

.contact-info li {
    display: flex !important;
    gap: 15px !important;
    color: #999 !important;
    font-size: 15px !important;
    align-items: flex-start !important;
}

.contact-info li i {
    color: var(--green);
    font-size: 18px;
    margin-top: 4px;
}

.footer-bottom {
    background: #050505;
    padding: 30px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    color: #555;
    font-size: 14px;
    margin: 0;
}

.footer-bottom a {
    color: var(--green);
    font-weight: 600;
}

@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand-logo {
        margin: 0 auto 25px;
    }

    .footer-title {
        text-align: center;
        margin-bottom: 24px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .footer-title::after,
    [dir="rtl"] .footer-title::after {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .footer-links li {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .contact-info li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        text-align: center;
    }

    .footer-bottom p {
        margin: 0;
        font-size: 13px;
    }
}

/* ================================================
   ANIMATIONS
   ================================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

/* --- Premium Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* Staggered Grid Reveal */
.reveal-stagger>* {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
}

.reveal-stagger.active>* {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* Add delays for stagger effect (up to 8 items) */
.reveal-stagger.active>*:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal-stagger.active>*:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal-stagger.active>*:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal-stagger.active>*:nth-child(4) {
    transition-delay: 0.4s;
}

.reveal-stagger.active>*:nth-child(5) {
    transition-delay: 0.5s;
}

.reveal-stagger.active>*:nth-child(6) {
    transition-delay: 0.6s;
}

.reveal-stagger.active>*:nth-child(7) {
    transition-delay: 0.7s;
}

.reveal-stagger.active>*:nth-child(8) {
    transition-delay: 0.8s;
}

/* Hero BG Ken Burns */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-size: cover;
    background-position: center;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

.hero-grid,
.hero-content,
.hero-stats {
    position: relative;
    z-index: 1;
}

/* ================================================
   RTL SUPPORT
   ================================================ */

[dir="rtl"] .footer-links a:hover {
    transform: translateX(-4px);
}

[dir="rtl"] .hero-stat:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

[dir="rtl"] .hero-stat:first-child {
    border-right: none;
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }

    .hero-stat {
        padding: 20px 30px;
    }

    .main-navigation {
        display: none;
    }

    .trips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-header {
        top: 12px;
        width: calc(100% - 24px);
        padding: 12px 20px;
        border-radius: var(--radius-lg);
    }

    .featured-trips {
        padding: 80px 20px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 32px;
    }

    .section-title {
        font-size: 26px;
    }

    .hero-title {
        letter-spacing: -1.5px;
    }

    .hero-stats {
        display: none;
    }

    .hero-section {
        padding: 100px 20px 60px;
    }
}

@media (max-width: 640px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .btn-book {
        font-size: 13px;
        padding: 10px 18px;
    }

    .trips-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================================
   SINGLE TRIP PAGE
   ================================================ */

/* ================================================
   SINGLE TRIP PAGE
   ================================================ */

.single-trip-hero {
    position: relative;
    width: 100%;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    height: 70vh;
    min-height: 550px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    --hero-gradient: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.5) 50%, rgba(10, 10, 10, 0) 100%);
}

.sth-content {
    max-width: 900px;
    padding: 0 50px;
    position: relative;
    z-index: 2;
}

.sth-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.sth-badges .badg {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.sth-badges .badg i {
    color: #FFB800;
}

.sth-badges .type-badg {
    background: var(--green);
    border-color: var(--green);
}

.sth-badges .rating-badg {
    background: rgba(255, 184, 0, 0.1);
    border-color: rgba(255, 184, 0, 0.3);
    color: #fff;
}

.sth-title {
    font-size: 34px;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -2px;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.sth-location {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.sth-location i {
    color: var(--green);
    font-size: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.single-trip-content {
    padding: 40px 0 120px;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.booking-alert {
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 700;
    font-size: 16px;
}

.booking-alert.success {
    background: rgba(0, 170, 108, 0.08);
    color: var(--green);
    border: 2px solid rgba(0, 170, 108, 0.15);
}

.booking-alert.error {
    background: rgba(220, 53, 69, 0.08);
    color: #dc3545;
    border: 2px solid rgba(220, 53, 69, 0.15);
}

.stc-grid {
    display: grid;
    grid-template-columns: 1.2fr 420px;
    gap: 60px;
    align-items: start;
}

/* Left Content Details */
.quick-facts {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.06);
    margin-bottom: 50px;
    flex-wrap: wrap;
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-top: -80px;
    /* Overlapping the hero slightly */
    position: relative;
    z-index: 10;
}

.qf-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 140px;
}

.qfi-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 170, 108, 0.1) 0%, rgba(0, 170, 108, 0.02) 100%);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 1px solid rgba(0, 170, 108, 0.1);
}

.qfi-text span {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 4px;
}

.qfi-text strong {
    display: block;
    font-size: 18px;
    color: var(--text);
    font-weight: 800;
}

/* Share Bar */
.trip-share-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.tsb-label {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 12px;
}

.tsb-label i {
    color: var(--green);
}

.tsb-buttons {
    display: flex;
    gap: 12px;
}

.tsb-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tsb-btn i {
    transition: transform 0.3s ease;
}

.tsb-btn:hover i {
    transform: scale(1.15);
}

.tsb-btn.facebook {
    background: linear-gradient(135deg, #1877F2, #0d5cbf);
}

.tsb-btn.twitter {
    background: linear-gradient(135deg, #1DA1F2, #0d8bd6);
}

.tsb-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #1da851);
}

.tsb-btn.telegram {
    background: linear-gradient(135deg, #0088cc, #0077b5);
}

.tsb-btn.linkedin {
    background: linear-gradient(135deg, #0077b5, #005e93);
}

.tsb-btn.pinterest {
    background: linear-gradient(135deg, #E60023, #cc001f);
}

.tsb-btn.email {
    background: linear-gradient(135deg, #FFB800, #e6a600);
}

.tsb-btn.copy-link {
    background: linear-gradient(135deg, var(--text), var(--text-muted));
}

.tsb-btn:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}


.stc-section {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-bottom: 40px;
}

.stcs-title {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 12px;
}

.stcs-title i {
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
    color: var(--gold);
}

.stcs-body {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-muted);
    font-weight: 500;
}

.stcs-body p {
    margin-bottom: 20px;
}

.inc-exc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.inc-box,
.exc-box {
    background: var(--gray-50);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--gray-100);
}

.inc-box h3,
.exc-box h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.inc-box h3 {
    color: var(--green);
}

.exc-box h3 {
    color: #dc3545;
}

.inc-list,
.exc-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.inc-item,
.exc-item {
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    transition: var(--transition);
}

.inc-item {
    background: rgba(0, 170, 108, 0.05);
    color: var(--text);
    border: 1px solid rgba(0, 170, 108, 0.1);
}

.inc-item i {
    color: var(--green);
    font-size: 16px;
}

.exc-item {
    background: rgba(220, 53, 69, 0.05);
    color: var(--text);
    border: 1px solid rgba(220, 53, 69, 0.1);
}

.exc-item i {
    color: #dc3545;
    font-size: 16px;
}

.inc-item:hover,
.exc-item:hover {
    transform: translateX(5px);
}

[dir="rtl"] .inc-item:hover,
[dir="rtl"] .exc-item:hover {
    transform: translateX(-5px);
}

/* ================================================
   PAGE & POST TEMPLATES - PREMIUM
   ================================================ */

.page-header-premium {
    position: relative;
    height: 45vh;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    background-color: var(--black);
    overflow: hidden;
    margin-bottom: 60px;
    color: var(--white);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.page-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.page-hero-bg.default-bg {
    background-image: url('../img/hero-bg.jpeg');
}

.page-header-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
}

.page-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    line-height: 1.2;
    margin-top: 15px;
    letter-spacing: -1px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 6px 18px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full, 9999px);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.breadcrumb i {
    font-size: 9px;
    opacity: 0.6;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--green);
}

.page-content-wrapper,
.single-post-wrapper {
    background: var(--white);
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
}

.entry-content {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.entry-content p {
    margin-bottom: 25px;
}

.entry-content h2,
.entry-content h3 {
    margin: 40px 0 20px;
    color: var(--black);
}

/* Post Meta */
.post-meta-premium {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.post-meta-premium span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-meta-premium i {
    color: var(--green);
}

/* Post Footer */
.post-footer-premium {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--gray-100);
}

.post-tags-premium {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.post-tags-premium a {
    padding: 6px 16px;
    background: var(--gray-50);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
}

.post-tags-premium a:hover {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.post-share-bar {
    background: var(--gray-50);
}

@media (max-width: 768px) {
    .page-header-premium {
        height: 35vh;
        min-height: 300px;
        padding-bottom: 40px;
    }

    .page-title {
        font-size: 28px;
    }

    .post-meta-premium {
        flex-direction: column;
        gap: 10px;
    }
}

/* Right Sticky Sidebar */
.stc-sidebar {
    position: sticky;
    top: 100px;
    z-index: 10;
}

.booking-widget {
    margin-top: -80px;
    position: relative;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(0, 170, 108, 0.15);
}

.bw-header {
    background: linear-gradient(135deg, rgba(0, 170, 108, 0.1) 0%, rgba(0, 170, 108, 0.03) 100%);
    padding: 28px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 170, 108, 0.1);
}

.price-from span {
    display: block;
    font-size: 14px;
    color: var(--green-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-from strong {
    display: block;
    font-size: 34px;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
    margin-top: 4px;
}

.bw-badges .instant {
    background: var(--white);
    color: #FFB800;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.bw-badges .instant.closed {
    color: #dc3545;
}

.bw-disabled .bw-body {
    opacity: 0.5;
    pointer-events: none;
    filter: grayscale(100%);
}

.bw-body {
    padding: 30px 24px;
}

.bw-field {
    margin-bottom: 24px;
}

.bw-field label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
}

.bw-field label i {
    color: var(--green);
    font-size: 16px;
}

.bw-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-md);
    font-family: 'Alexandria', sans-serif;
    font-size: 15px;
    color: var(--text);
    font-weight: 600;
    transition: var(--transition);
    background: var(--gray-50);
}

.bw-input:focus {
    border-color: var(--green);
    background: var(--white);
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 170, 108, 0.1);
}

.bw-guests {
    margin-bottom: 30px;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 20px;
    background: var(--white);
}

.bw-guest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
}

.bw-guest-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.bw-guest-row:first-child {
    padding-top: 0;
}

.bwgr-info strong {
    display: block;
    font-size: 16px;
    color: var(--text);
    font-weight: 700;
    margin-bottom: 4px;
}

.bwgr-info span {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.bwgr-counter {
    display: flex;
    align-items: center;
    gap: 12px;
}

.g-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--gray-100);
    background: var(--gray-50);
    font-size: 20px;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.g-btn:hover {
    border-color: var(--green);
    color: var(--white);
    background: var(--green);
}

.bwgr-counter input {
    width: 32px;
    text-align: center;
    border: none;
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    pointer-events: none;
    background: transparent;
}

.bw-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    margin-bottom: 24px;
    border-top: 2px dashed var(--gray-200);
    border-bottom: 2px dashed var(--gray-200);
}

.bw-total span {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
}

.bw-total strong {
    font-size: 32px;
    font-weight: 900;
    color: var(--green);
}

.bw-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-whatsapp,
.btn-direct,
.btn-submit-booking {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: var(--radius-md);
    font-family: 'Alexandria', sans-serif;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.4);
}

.bw-or {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 800;
    position: relative;
    margin: 10px 0;
}

.bw-or::before,
.bw-or::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 32%;
    height: 1px;
    background: var(--gray-200);
}

.bw-or::before {
    left: 0;
}

.bw-or::after {
    right: 0;
}

.btn-submit-booking {
    background: var(--green);
    color: var(--white);
    margin-top: 20px;
}

.btn-submit-booking:hover {
    background: var(--green-dark);
}

.bw-direct-form {
    margin-bottom: 20px;
}

.bw-direct-form h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-100);
    background: var(--gray-50);
    border-radius: var(--radius-md);
    font-family: 'Alexandria', sans-serif;
    font-size: 15px;
    color: var(--text);
    transition: var(--transition);
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--green);
    background: var(--white);
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 170, 108, 0.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   Archive & Search Pages (Luxurious Grid)
========================================= */

/* Hero Banner */
.archive-trip-page,
.search-results-page {
    background-color: var(--bg-color);
}

.archive-hero {
    position: relative;
    height: 400px;
    background: url('../images/pattern.svg') center/cover, linear-gradient(135deg, var(--green-dark), var(--green));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    margin-bottom: 60px;
}

.archive-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 50, 30, 0.6) 100%);
    backdrop-filter: blur(2px);
}

.archive-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.ah-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.ah-title span {
    color: var(--gold);
}

.ah-desc {
    font-size: 20px;
    font-weight: 500;
    opacity: 0.9;
}

/* Trip Grid */
.trip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.related-grid {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1200px) {
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* Premium Card */
.trip-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    display: flex;
    flex-direction: column;
}

.trip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 170, 108, 0.15);
}

.tc-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.tc-image img,
.fallback-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.fallback-img {
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
}

.trip-card:hover .tc-image img {
    transform: scale(1.08);
}

.tc-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--green-dark);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

html[dir="rtl"] .tc-badge {
    left: auto;
    right: 15px;
}

.tc-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tc-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.4;
}

.tc-title a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.tc-title a:hover {
    color: var(--green);
}

.tc-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
    flex-grow: 1;
}

.tc-meta span {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tc-meta i {
    color: var(--green);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.tc-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.tc-price .tpl {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tc-price .tpv {
    font-size: 24px;
    font-weight: 900;
    color: var(--green-dark);
}

.tc-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 170, 108, 0.3);
}

.tc-btn:hover {
    transform: scale(1.1) rotate(15deg);
    color: var(--white);
}

/* Pagination */
.trips-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0 80px;
}

.trips-pagination .page-numbers {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--white);
    color: var(--text);
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.trips-pagination .page-numbers.current,
.trips-pagination .page-numbers:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 170, 108, 0.3);
}

/* =========================================
   HOME: WHY CHOOSE US
========================================= */
.home-features {
    padding: 80px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 170, 108, 0.15);
    border-color: var(--green);
}

.fc-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(0, 170, 108, 0.1);
    color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: var(--transition);
}

.feature-card:hover .fc-icon {
    background: var(--green);
    color: var(--white);
    transform: scale(1.1);
}

.fc-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text);
}

.fc-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   HOME: TESTIMONIALS & TRUST
========================================= */
.home-testimonials {
    padding: 100px 0;
    background: var(--gray-50);
}

.trust-banner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.tb-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tb-stars {
    color: #FFB800;
    font-size: 18px;
}

.tb-icon {
    font-size: 24px;
}

.tb-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testi-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.t-rating {
    color: #FFB800;
    font-size: 14px;
    margin-bottom: 20px;
}

.t-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    font-style: italic;
    margin-bottom: 30px;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.ta-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.ta-info strong {
    display: block;
    font-size: 16px;
    color: var(--text);
}

.ta-info span {
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .trust-banner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
}

/* Archive & Search Hero — Cinematic Premium */
.archive-hero {
    position: relative;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--black);
    background-image: url('../img/hero-bg.jpeg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    /* Parallax effect */
    padding: 120px 24px 60px;
    overflow: hidden;
}

.archive-hero::before,
.archive-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.archive-hero::before {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.45) 50%,
            rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.archive-hero::after {
    background: radial-gradient(circle at 60% 40%, rgba(0, 170, 108, 0.2) 0%, transparent 60%);
    z-index: 2;
}

.archive-hero-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 3;
}

.archive-hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    width: 100%;
}

.ah-title {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -2px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ah-title span {
    color: var(--green);
}

.ah-desc {
    font-size: clamp(16px, 1.5vw, 20px);
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .archive-hero {
        min-height: 350px;
        padding-top: 140px;
    }
}

/* No Results & Empty State */
.no-results {
    text-align: center;
    background: var(--white);
    border-radius: 24px;
    padding: 80px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    margin-bottom: 80px;
}

.no-results i {
    font-size: 80px;
    color: var(--gray);
    margin-bottom: 20px;
}

.no-results h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 15px;
}

.no-results p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 30px;
}

.btn-return {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(0, 170, 108, 0.3);
    transition: all 0.3s ease;
}

.btn-return:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 170, 108, 0.4);
    color: var(--white);
}

/* =========================================
   SweetAlert2 Premium Styles
========================================= */
.premium-swal-popup {
    font-family: 'Alexandria', sans-serif !important;
    border-radius: 20px !important;
    padding: 2em !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
}

div:where(.swal2-container) h2:where(.swal2-title) {
    font-weight: 800 !important;
    color: var(--text) !important;
}

div:where(.swal2-container) div:where(.swal2-html-container) {
    font-weight: 500 !important;
    color: var(--text-muted) !important;
    font-size: 16px !important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm {
    border-radius: var(--radius-full) !important;
    padding: 12px 32px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 15px rgba(0, 170, 108, 0.3) !important;
    transition: all 0.3s ease !important;
    background-color: var(--green) !important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 170, 108, 0.4) !important;
    background-color: var(--green-dark) !important;
}

@media (max-width: 1024px) {
    .stc-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .single-trip-hero {
        width: 100%;
        margin: 0;
        border-radius: 0;
        height: auto;
        min-height: 450px;
        padding-top: 100px;
        padding-bottom: 90px;
    }

    .sth-content {
        padding: 0 20px;
    }

    .sth-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .sth-badges {
        margin-bottom: 16px;
    }

    .single-trip-content {
        padding: 30px 0 80px;
        width: 95%;
    }

    .quick-facts {
        margin-top: -50px;
        padding: 20px;
        gap: 12px;
    }

    .qf-item {
        min-width: 100%;
    }

    .trip-share-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 20px;
    }

    .tsb-buttons {
        flex-wrap: wrap;
        gap: 10px;
    }

    .tsb-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .inc-exc-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ================================================
   TRIP RATING WIDGET (PREMIUM REDESIGN)
   ================================================ */
.stc-rating-widget {
    text-align: center;
    padding: 60px 40px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(18, 38, 63, 0.08);
    /* Luxurious soft shadow */
    border: 1px solid rgba(18, 38, 63, 0.05);
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.stc-rating-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--gold), #FFD700);
}

.stc-rating-widget .stcs-title {
    justify-content: center;
    border-bottom: none;
    margin-bottom: 15px;
    padding-bottom: 0;
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    /* Gradient luxury text */
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.stc-rating-body p {
    color: var(--text-muted);
    margin-bottom: 35px;
    font-size: 18px;
    font-weight: 500;
}

.trip-stars-interactive {
    display: flex;
    justify-content: center;
    gap: 16px;
    direction: ltr;
    /* Always keep stars LTR */
    background: var(--gray-50);
    padding: 25px 40px;
    border-radius: 100px;
    display: inline-flex;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border);
}

.trip-stars-interactive i {
    font-size: 48px;
    color: var(--border);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 0 rgba(255, 184, 0, 0));
}

.trip-stars-interactive i.active-hover,
.trip-stars-interactive i:hover {
    color: #FFB800;
    transform: scale(1.15) translateY(-5px);
    filter: drop-shadow(0 10px 15px rgba(255, 184, 0, 0.4));
}

@media (max-width: 768px) {
    .trip-stars-interactive {
        padding: 20px;
        gap: 12px;
    }

    .trip-stars-interactive i {
        font-size: 36px;
    }

    .stc-rating-widget {
        padding: 40px 20px;
    }

    .stc-rating-widget .stcs-title {
        font-size: 26px;
    }
}

/* Out of Stock Premium Styling */
.card-outofstock {
    opacity: 0.85;
    filter: grayscale(0.2);
}

.card-outofstock .tc-image img {
    filter: brightness(0.7);
}

.badge-outofstock {
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.bw-disabled {
    position: relative;
    overflow: hidden;
}

.bw-disabled .bwgr-counter,
.bw-disabled .bw-direct-form {
    pointer-events: none;
    opacity: 0.5;
    filter: grayscale(1);
}

.row-outofstock {
    opacity: 0.7;
    position: relative;
}

.row-outofstock .bwgr-counter {
    pointer-events: none;
    filter: grayscale(1);
    opacity: 0.5;
}

.outofstock-msg {
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

/* ================================================
   HOME: BLOG SECTION
   ================================================ */
.home-blog-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    border: 1px solid var(--border);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.bc-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.bc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .bc-image img {
    transform: scale(1.1);
}

.bc-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    color: var(--black);
}

[dir="rtl"] .bc-date {
    left: auto;
    right: 20px;
}

.bc-content {
    padding: 24px;
}

.bc-title {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.bc-title a:hover {
    color: var(--green);
}

.bc-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bc-more {
    font-size: 14px;
    font-weight: 700;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 8px;
}

.bc-more i {
    transition: var(--transition);
}

.bc-more:hover i {
    transform: translateX(5px);
}

[dir="rtl"] .bc-more:hover i {
    transform: translateX(-5px);
}

@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .home-blog-section {
        padding: 60px 0;
    }
}

/* ================================================
   HOME: FAQ SECTION
   ================================================ */
.home-faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-accordion {
    max-width: 900px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.faq-item {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    background: var(--white);
    border-color: var(--green);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
}

.faq-question i {
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition);
}

.faq-item.active .faq-question {
    color: var(--green);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--green);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    padding: 20px 24px;
    max-height: 500px;
    border-top-color: var(--border);
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .faq-accordion {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .home-faq-section {
        padding: 60px 0;
    }

    .faq-question {
        font-size: 15px;
        padding: 18px 20px;
    }
}

/* ================================================
   FLOATING UTILITY BUTTONS
   ================================================ */
.floating-utility-btns {
    position: fixed;
    bottom: 25px;
    z-index: 99999;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    pointer-events: none;
    width: 100%;
    left: 0;
    right: 0;
    padding: 0 25px;
}

.fub-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
}

.fub-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition-slow);
    position: relative;
    pointer-events: auto;
    text-decoration: none;
}

.fub-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.fub-btn i {
    font-size: 24px;
}

/* Tooltip adjustment */
.fub-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--black);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.fub-btn:hover .fub-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Layout Variations Handle by Order */
.layout-call-left .fub-group {
    order: 1;
}

.layout-call-left .btn-scroll {
    order: 2;
}

.layout-call-right .fub-group {
    order: 2;
}

.layout-call-right .btn-scroll {
    order: 1;
}

/* Styling nuances */
.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.btn-call {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.btn-call:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
}

.btn-scroll {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.btn-scroll.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Pulse Effect */
.pulse-effect::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    z-index: -1;
    animation: pulseBtn 2s infinite;
}

@keyframes pulseBtn {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .floating-utility-btns {
        bottom: 20px;
        padding: 0 15px;
    }

    .fub-btn {
        width: 50px;
        height: 50px;
    }

    .fub-btn i {
        font-size: 20px;
    }

    .btn-scroll {
        display: none !important;
        /* Hide scroll to top on mobile */
    }
}

/* ================================================
   PREMIUM BLOG UI (SINGLE POSTS)
   ================================================ */
.single-post-premium {
    background: var(--white);
    padding-bottom: 30px;
}

.post-header {
    margin-bottom: 30px;
}

.post-meta-premium {
    margin-top: 15px;
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.post-meta-premium i {
    color: var(--green);
}

/* Table of Contents — Premium Design */
.article-toc {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.article-toc:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--green);
}

.toc-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--black);
}

.toc-title i {
    color: var(--green);
    font-size: 18px;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-item {
    margin-bottom: 12px;
}

.toc-item:last-child {
    margin-bottom: 0;
}

.toc-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
    padding: 4px 0;
}

.toc-link i {
    font-size: 12px;
    opacity: 0.4;
    transition: var(--transition);
}

.toc-link:hover {
    color: var(--green);
    transform: translateX(5px);
}

[dir="rtl"] .toc-link:hover {
    transform: translateX(-5px);
}

.toc-link:hover i {
    opacity: 1;
    color: var(--green);
}

.toc-h3 {
    padding-left: 25px;
}

[dir="rtl"] .toc-h3 {
    padding-left: 0;
    padding-right: 25px;
}

.single-post-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 0;
}

.entry-content {
    font-size: 19px;
    line-height: 1.9;
    color: #2c2c2c;
}

.entry-content p {
    margin-bottom: 25px;
}

.entry-content h2,
.entry-content h3 {
    margin: 45px 0 25px;
    padding: 15px 25px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    position: relative;
    color: var(--black);
    font-weight: 800;
}

.entry-content h2::before,
.entry-content h3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--green);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

[dir="rtl"] .entry-content h2::before,
[dir="rtl"] .entry-content h3::before {
    left: auto;
    right: 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.post-footer-premium {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

/* Post Share Bar */
.post-share-bar {
    margin-top: 30px;
    padding: 25px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

/* Comments Area */
.comments-area {
    max-width: 900px;
    margin: 30px auto 60px;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.comments-header-premium {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--green-light);
}

.comments-title {
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.comment-list-premium {
    list-style: none;
    margin-bottom: 60px;
}

.comment-list-premium .comment {
    margin-bottom: 30px;
}

.comment-list-premium .children {
    margin-left: 50px;
    list-style: none;
    border-left: 2px solid var(--green-light);
    padding-left: 20px;
}

[dir="rtl"] .comment-list-premium .children {
    margin-left: 0;
    margin-right: 50px;
    border-left: none;
    border-right: 2px solid var(--green-light);
    padding-left: 0;
    padding-right: 20px;
}

.comment-body {
    position: relative;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.comment-body:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.comment-author-vcard {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.comment-author-vcard img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--green-light);
}

.comment-author-vcard .fn {
    font-weight: 700;
    color: var(--black);
    font-style: normal;
}

.comment-metadata {
    font-size: 12px;
    color: var(--text-muted);
}

.comment-content {
    font-size: 15px;
    line-height: 1.6;
    margin-top: 10px;
}

.reply {
    margin-top: 15px;
}

.comment-reply-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
    background: var(--green-light);
    padding: 6px 16px;
    border-radius: var(--radius-full);
}

.comment-reply-link:hover {
    background: var(--green);
    color: var(--white);
}

/* Comment Form Premium */
.comment-respond {
    background: var(--gray-50);
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.comment-reply-title-premium {
    font-size: 22px;
    margin-bottom: 30px;
    color: var(--black);
}

.comment-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.comment-form-field input,
.comment-form-field textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
    background: var(--white);
}

.comment-form-field input:focus,
.comment-form-field textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 4px var(--green-light);
}

.textarea-field {
    margin-bottom: 30px;
}

.submit-comment-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    color: var(--white);
    padding: 15px 35px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.submit-comment-premium:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 170, 108, 0.3);
}

/* Rating in Blog */
.post-rating-widget {
    margin-top: 30px;
    padding: 30px;
    background: linear-gradient(135deg, var(--green-light) 0%, #fff 100%);
    border-radius: var(--radius-md);
    text-align: center;
}

.post-rating-widget .stcs-title {
    justify-content: center;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .comment-form-grid {
        grid-template-columns: 1fr;
    }

    .comments-area {
        padding: 20px;
    }

    .comment-list-premium .children {
        margin-left: 20px;
    }

    [dir="rtl"] .comment-list-premium .children {
        margin-right: 20px;
    }
}

/* Fix Footer Gap */
html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

#page {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

/* Premium Centered Footer Refinement */
.premium-centered-footer {
    background: #111111;
    color: var(--white);
    padding: 100px 24px 60px;
    text-align: center;
}

.footer-wrap {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-brand-section {
    margin-bottom: 40px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.footer-logo {
    display: block;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.footer-brand-logo {
    max-width: 180px;
    height: auto;
    margin: 0 auto 25px;
    display: block;
}

.footer-text-logo {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.footer-about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-social-section {
    margin-bottom: 50px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.footer-social a {
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary);
    transform: translateY(-5px);
}

.footer-nav-section {
    width: 100%;
    margin-bottom: 50px;
    padding: 35px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-horizontal-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 40px;
}

.footer-horizontal-menu li a {
    color: var(--white);
    font-weight: 500;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-horizontal-menu li a:hover {
    color: var(--primary);
}

.footer-copyright {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-copyright p {
    margin: 5px 0;
}

.agency-credit a {
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .premium-centered-footer {
        padding: 70px 20px 40px;
    }

    .footer-social {
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-horizontal-menu {
        gap: 15px 25px;
    }

    .footer-horizontal-menu li a {
        font-size: 0.95rem;
    }

    /* Services Grid Mobile Fix */
    .trip-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
}

/* ================================================
   LUXURY UI EFFECTS
   ================================================ */


/* About Image Luxury Effects */
.about-image {
    position: relative;
    z-index: 1;
    animation: softFloat 6s ease-in-out infinite;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(220, 186, 163, 0.45) 0%, transparent 70%);
    z-index: -1;
    border-radius: 40px;
    animation: glowPulse 4s ease-in-out infinite alternate;
}

@keyframes softFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes glowPulse {
    0% {
        opacity: 0.3;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Enhancing existing reveal animations delay for these spot */
.about-content.reveal.active {
    transition-delay: 0.2s;
}

.about-image.reveal.active {
    transition-delay: 0.4s;
}

.site-content {
    flex: 1 0 auto;
}

.site-footer {
    flex-shrink: 0;
}

/* Remove pulse from comment button unless hovered */
.submit-comment-premium::before {
    display: none;
}

.submit-comment-premium:hover::before {
    display: block;
    animation: pulseBtn 2s infinite;
}