/* ===================================
   Hotel Template CSS - Modern Boutique
   site.kapadokyastudio.com
   White + Cream/Beige + Gold Design
   =================================== */

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    color: #4a4a4a;
    line-height: 1.7;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    font-size: 15px;
}

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

a {
    color: #4a4a4a;
    text-decoration: none;
    transition: color .3s;
}

a:hover {
    color: var(--accent, #c9a96e);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: #2c2c2c;
    line-height: 1.25;
    font-weight: 700;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-sm {
    max-width: 800px;
}

/* Section Spacing */
.section {
    padding: 5rem 0;
}

.section:nth-child(even) {
    background: #faf8f5;
}

/* ================================= */
/* Buttons                           */
/* ================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .85rem 2rem;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .35s ease;
    text-decoration: none;
    line-height: 1.4;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--accent, #c9a96e);
    color: #fff;
    border-color: var(--accent, #c9a96e);
}

.btn-primary:hover {
    background: #3a3a3a;
    border-color: #3a3a3a;
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: #3a3a3a;
    border-color: #d0c8bc;
}

.btn-outline:hover {
    background: var(--accent, #c9a96e);
    color: #fff;
    border-color: var(--accent, #c9a96e);
}

.btn-white {
    background: #fff;
    color: #3a3a3a;
    border-color: #fff;
}

.btn-white:hover {
    background: var(--accent, #c9a96e);
    color: #fff;
    border-color: var(--accent, #c9a96e);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: .9rem;
}

.btn-sm {
    padding: .55rem 1.25rem;
    font-size: .78rem;
}

/* ================================= */
/* Top Bar                           */
/* ================================= */
.top-bar {
    background: #faf8f5;
    color: #777;
    font-size: .8rem;
    padding: .5rem 0;
    letter-spacing: .3px;
    border-bottom: 1px solid #f0ece5;
}

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

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-left a {
    color: #666;
    display: flex;
    align-items: center;
    gap: .4rem;
}

.top-bar-left a:hover {
    color: var(--accent, #c9a96e);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.top-bar-social a {
    color: #999;
    transition: color .3s;
}

.top-bar-social a:hover {
    color: var(--accent, #c9a96e);
}

/* ================================= */
/* Site Header / Navbar              */
/* ================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, .6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    transition: all .4s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, .08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Header: Transparent mode */
.site-header.header-transparent {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: none;
}

.site-header.header-transparent .site-nav ul a,
.site-header.header-transparent .logo-text,
.site-header.header-transparent .header-phone span {
    color: #fff;
}

.site-header.header-transparent .menu-toggle span {
    background: #fff;
}

.site-header.header-transparent.scrolled {
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.site-header.header-transparent.scrolled .site-nav ul a,
.site-header.header-transparent.scrolled .logo-text,
.site-header.header-transparent.scrolled .header-phone span {
    color: #2c2c2c;
}

.site-header.header-transparent.scrolled .menu-toggle span {
    background: #333;
}

/* Header: Dark mode */
.site-header.header-dark {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.site-header.header-dark .site-nav ul a,
.site-header.header-dark .logo-text,
.site-header.header-dark .header-phone span {
    color: #fff;
}

.site-header.header-dark .menu-toggle span {
    background: #fff;
}

/* Top bar promo text */
.top-bar-promo {
    font-weight: 500;
    margin-right: .5rem;
}

.top-bar-promo i {
    margin-right: .35rem;
    opacity: .8;
}

.site-header.scrolled .top-bar {
    display: none;
}

.site-header .container,
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
}

/* Logo */
.site-logo,
.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo img,
.navbar-logo img {
    height: 52px;
    transition: height .3s;
}

.site-header.scrolled .site-logo img,
.site-header.scrolled .navbar-logo img {
    height: 42px;
}

.logo-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c2c2c;
    transition: color .3s;
    letter-spacing: 1px;
}

.site-header.scrolled .logo-text {
    color: #2c2c2c;
}

/* Nav menu */
.site-nav ul,
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav ul a,
.navbar-menu a {
    font-size: .82rem;
    font-weight: 600;
    color: #4a4a4a;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: .5rem 0;
    position: relative;
    transition: color .3s;
}

.site-header.scrolled .site-nav ul a,
.site-header.scrolled .navbar-menu a {
    color: #4a4a4a;
}

.site-nav ul a:hover,
.site-nav ul a.active,
.navbar-menu a:hover,
.navbar-menu a.active {
    color: var(--accent, #c9a96e);
}

.site-nav ul a::after,
.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent, #c9a96e);
    transition: width .35s ease;
}

.site-nav ul a:hover::after,
.site-nav ul a.active::after,
.navbar-menu a:hover::after,
.navbar-menu a.active::after {
    width: 100%;
}

/* Header actions */
.header-actions,
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Nav Dropdown */
.site-nav ul>li {
    position: relative;
}

.has-dropdown>a {
    display: flex;
    align-items: center;
}

.has-dropdown>a i.fa-chevron-down {
    font-size: .55em;
    margin-left: .35em;
    opacity: .5;
    transition: transform .3s ease;
}

.has-dropdown:hover>a i.fa-chevron-down {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
    border-radius: 8px;
    padding: .5rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .3s ease;
    z-index: 100;
    border: 1px solid #f0ece5;
}

.site-nav ul>li:hover>.nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown li a {
    display: block;
    padding: .6rem 1.25rem !important;
    font-size: .82rem !important;
    color: #4a4a4a !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    white-space: nowrap;
    border-bottom: none !important;
}

.nav-dropdown li a:hover,
.nav-dropdown li a.active {
    color: var(--accent, #c9a96e) !important;
    background: #faf8f5;
}

.nav-dropdown li a::after {
    display: none !important;
}

/* Hide mobile-only elements on desktop */
.mobile-nav-header,
.mobile-nav-footer {
    display: none;
}

.header-phone,
.navbar-phone {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #4a4a4a;
    font-weight: 500;
    font-size: .85rem;
}

.site-header.scrolled .header-phone,
.site-header.scrolled .navbar-phone {
    color: #4a4a4a;
}

.navbar-book {
    font-size: .82rem;
}

/* Hamburger */
.menu-toggle,
.navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: .25rem;
    width: 32px;
    height: 32px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #4a4a4a;
    margin: 5px auto;
    transition: all .3s;
    border-radius: 2px;
}

.site-header.scrolled .menu-toggle span {
    background: #4a4a4a;
}

.navbar-toggle svg {
    stroke: #4a4a4a;
    transition: stroke .3s;
}

.site-header.scrolled .navbar-toggle svg {
    stroke: #4a4a4a;
}

/* Mobile Nav */
@media (max-width: 991px) {

    /* ======= Hamburger Button ======= */
    .menu-toggle,
    .navbar-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        padding: 0;
    }

    .menu-toggle span {
        width: 22px;
        height: 2px;
        margin: 3px auto;
    }

    /* ======= Drawer ======= */
    .site-nav {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        height: 100dvh;
        background: #fff;
        display: flex;
        flex-direction: column;
        box-shadow: -8px 0 40px rgba(0, 0, 0, .15);
        transition: right .35s cubic-bezier(.4, 0, .2, 1);
        z-index: 1001;
        overflow: hidden;
    }

    .site-nav.open {
        right: 0;
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        height: 100dvh;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        gap: 0;
        box-shadow: -8px 0 40px rgba(0, 0, 0, .15);
        transition: right .35s cubic-bezier(.4, 0, .2, 1);
        z-index: 1001;
        overflow-y: auto;
    }

    .navbar-menu.open {
        right: 0;
    }

    /* ======= Menu List (UL) ======= */
    .site-nav ul {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        box-shadow: none !important;
        flex: 1;
        padding: 0;
        overflow-y: auto;
        list-style: none;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    /* ======= Header ======= */
    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 1.25rem;
        border-bottom: 1px solid #eee;
        flex-shrink: 0;
        background: #fff;
    }

    .mobile-nav-logo {
        text-decoration: none;
        display: flex;
        align-items: center;
    }

    .mobile-nav-logo img {
        height: 34px;
        width: auto;
    }

    .mobile-nav-logo span {
        font-family: 'Cormorant Garamond', Georgia, serif;
        font-size: 1.15rem;
        font-weight: 700;
        color: #2c2c2c;
    }

    .mobile-nav-close {
        background: #f3f0eb;
        border: none;
        cursor: pointer;
        font-size: .95rem;
        color: #666;
        width: 34px;
        height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        transition: all .2s;
        flex-shrink: 0;
    }

    .mobile-nav-close:hover {
        background: #e8e3db;
        color: #333;
    }

    /* ======= Menu Items — RESET desktop styles ======= */
    .site-nav ul>li {
        position: relative;
        margin: 0;
        padding: 0;
    }

    .site-nav ul a,
    .site-nav ul>li>a,
    .navbar-menu a {
        color: #333 !important;
        padding: 14px 20px !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        text-decoration: none !important;
        letter-spacing: .08em !important;
        text-transform: uppercase !important;
        transition: background .15s, color .15s !important;
        border-bottom: 1px solid #f2f0ed !important;
        position: relative !important;
        gap: 0 !important;
    }

    /* KILL the desktop ::after underline on mobile */
    .site-nav ul a::after,
    .navbar-menu a::after {
        display: none !important;
        content: none !important;
        width: 0 !important;
        height: 0 !important;
    }

    .site-nav ul>li:last-child>a {
        border-bottom: none !important;
    }

    .site-nav ul a:hover,
    .site-nav ul a.active {
        color: var(--accent, #c9a96e) !important;
        background: #fcfaf7 !important;
    }

    /* ======= Dropdown Toggle (chevron) ======= */
    .has-dropdown>a {
        justify-content: space-between !important;
    }

    .has-dropdown>a i.fa-chevron-down {
        font-size: 9px !important;
        margin-left: auto !important;
        margin-right: 0 !important;
        opacity: 1 !important;
        transition: transform .3s ease, background .2s ease !important;
        flex-shrink: 0 !important;
        width: 28px !important;
        height: 28px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 6px !important;
        background: #f0ece5 !important;
        color: #999 !important;
    }

    .has-dropdown.open>a {
        color: var(--accent, #c9a96e) !important;
        background: #fcfaf7 !important;
    }

    .has-dropdown.open>a i.fa-chevron-down {
        transform: rotate(180deg) !important;
        background: var(--accent, #c9a96e) !important;
        color: #fff !important;
    }

    /* ======= Submenu ======= */
    .nav-dropdown {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        background: #f8f6f2 !important;
        min-width: 0 !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
    }

    .has-dropdown.open>.nav-dropdown {
        max-height: 600px;
    }

    .nav-dropdown li {
        margin: 0 !important;
        padding: 0 !important;
    }

    .nav-dropdown li a {
        padding: 12px 20px 12px 44px !important;
        font-size: 12px !important;
        font-weight: 500 !important;
        color: #666 !important;
        text-transform: none !important;
        letter-spacing: .02em !important;
        border-bottom: 1px solid #efece7 !important;
    }

    .nav-dropdown li:last-child a {
        border-bottom: none !important;
    }

    .nav-dropdown li a::before {
        content: '' !important;
        display: block !important;
        position: absolute !important;
        left: 22px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 6px !important;
        height: 6px !important;
        border-radius: 50% !important;
        background: var(--accent, #c9a96e) !important;
        opacity: .35 !important;
        transition: opacity .2s !important;
    }

    .nav-dropdown li a:hover,
    .nav-dropdown li a.active {
        color: var(--accent, #c9a96e) !important;
        background: #f0ece5 !important;
    }

    .nav-dropdown li a:hover::before,
    .nav-dropdown li a.active::before {
        opacity: 1 !important;
    }

    /* ======= Footer ======= */
    .mobile-nav-footer {
        padding: 16px 20px;
        border-top: 1px solid #eee;
        margin-top: auto;
        flex-shrink: 0;
        background: #faf8f5;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .mobile-nav-phone {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--accent, #c9a96e);
        font-weight: 600;
        font-size: 13px;
        text-decoration: none;
    }

    .mobile-nav-phone i {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        background: rgba(201, 169, 110, .1);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        color: var(--accent, #c9a96e);
    }

    .mobile-nav-email {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #777;
        font-size: 12px;
        text-decoration: none;
    }

    .mobile-nav-email i {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        background: #f0ece5;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        color: #999;
    }

    .mobile-nav-social {
        display: flex;
        gap: 6px;
        margin-top: 4px;
    }

    .mobile-nav-social a {
        width: 34px;
        height: 34px;
        border-radius: 8px;
        border: 1px solid #e8e3db;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #999;
        font-size: 13px;
        transition: all .2s;
        text-decoration: none;
    }

    .mobile-nav-social a:hover {
        background: var(--accent, #c9a96e);
        border-color: var(--accent, #c9a96e);
        color: #fff;
    }

    /* Kill ::after on social links too */
    .mobile-nav-social a::after,
    .mobile-nav-phone::after,
    .mobile-nav-email::after,
    .mobile-nav-cta::after {
        display: none !important;
        content: none !important;
    }

    .mobile-nav-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: var(--accent, #c9a96e);
        color: #fff;
        padding: 11px 16px;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        transition: background .2s;
        margin-top: 4px;
    }

    .mobile-nav-cta:hover {
        background: #b8944f;
    }

    .header-actions,
    .navbar-actions {
        display: none;
    }

    /* ======= Overlay ======= */
    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .35);
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s;
    }

    .mobile-overlay.open {
        opacity: 1;
        pointer-events: auto;
    }

    .top-bar {
        display: none;
    }
}

/* ================================= */
/* Hero Section                      */
/* ================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}

@media (max-width: 991px) {
    .hero-section {
        min-height: 75vh;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .4) 0%, rgba(0, 0, 0, .15) 40%, rgba(0, 0, 0, .5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content .hero-title,
.hero-content h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 4rem;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 25px rgba(0, 0, 0, .25);
    letter-spacing: 2px;
    font-weight: 700;
}

.hero-content .hero-subtitle,
.hero-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    opacity: .92;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 10px rgba(0, 0, 0, .2);
    letter-spacing: .5px;
    font-weight: 300;
}

/* Decorative Script Text (Caveat) */
.hero-script,
.script-text {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: var(--accent, #c9a96e);
    display: block;
    margin-bottom: .75rem;
    letter-spacing: 1px;
}

/* Scroll indicator */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, .35);
    border-radius: 13px;
    z-index: 2;
}

.hero-section::before {
    content: '';
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, .7);
    border-radius: 2px;
    z-index: 3;
    animation: scrollBounce 2s infinite;
    margin-bottom: 10px;
}

@keyframes scrollBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(12px);
    }

    60% {
        transform: translateX(-50%) translateY(6px);
    }
}

/* ================================= */
/* Hero Slider Mode                  */
/* ================================= */
.hero-slider-mode {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

@media (max-width: 991px) {
    .hero-slider-mode {
        min-height: 75vh;
    }
}

.hero-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
}

.hero-slider-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    opacity: 0;
    transition: opacity .8s ease;
    pointer-events: none;
}

.hero-slider-slide.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

/* Animation: Slide (kayma) */
.hero-slider-mode[data-animation="slide"] .hero-slider-slide {
    opacity: 1;
    transform: translateX(100%);
    transition: transform .8s ease;
}

.hero-slider-mode[data-animation="slide"] .hero-slider-slide.active {
    transform: translateX(0);
}

.hero-slider-mode[data-animation="slide"] .hero-slider-slide.slide-exit {
    transform: translateX(-100%);
}

/* Animation: Zoom */
.hero-slider-mode[data-animation="zoom"] .hero-slider-slide {
    transition: opacity .8s ease, transform .8s ease;
    transform: scale(1.1);
}

.hero-slider-mode[data-animation="zoom"] .hero-slider-slide.active {
    transform: scale(1);
}

/* Animation: Ken Burns */
@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.12) translate(-1%, -1%);
    }

    100% {
        transform: scale(1) translate(0, 0);
    }
}

.hero-slider-mode[data-animation="kenburns"] .hero-slider-slide.active {
    animation: kenBurns 12s ease-in-out infinite;
}

/* Slider video background */
.hero-video-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-video-bg iframe,
.hero-video-bg video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content styles */
.hero-style-minimal .hero-title {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-style-minimal .hero-subtitle {
    font-size: 1rem;
    letter-spacing: 2px;
    opacity: .85;
}

.hero-style-bold .hero-title {
    font-size: 5rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-style-bold .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
}

.hero-style-elegant .hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 4.5rem;
    font-weight: 400;
    font-style: italic;
}

.hero-style-elegant .hero-subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    font-style: italic;
}

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

    .hero-style-elegant .hero-title {
        font-size: 2.8rem;
    }
}

.hero-slider-slide .hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-slider-slide .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    animation: heroFadeIn 1s ease-out;
}

.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}

.hero-slider-btn:hover {
    background: rgba(255, 255, 255, .3);
}

.hero-slider-prev {
    left: 2rem;
}

.hero-slider-next {
    right: 2rem;
}

.hero-slider-dots {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: .5rem;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .5);
    background: transparent;
    cursor: pointer;
    transition: all .3s;
    padding: 0;
}

.hero-slider-dot.active {
    background: #fff;
    border-color: #fff;
}

@media (max-width: 768px) {
    .hero-slider-btn {
        width: 36px;
        height: 36px;
    }

    .hero-slider-prev {
        left: 1rem;
    }

    .hero-slider-next {
        right: 1rem;
    }
}

/* ================================= */
/* Page Hero (sub-pages)             */
/* ================================= */
.page-hero {
    background: linear-gradient(135deg, #faf8f5 0%, #f0ece5 60%, #faf8f5 100%);
    color: #2c2c2c;
    padding: 9rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e8e0d4;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: #000;
    pointer-events: none;
    z-index: 0;
}

.page-hero[style*="background-image"] {
    color: #fff;
    border-bottom: none;
}

.page-hero[style*="background-image"] h1 {
    color: #fff;
}

.page-hero[style*="background-image"] .breadcrumb a {
    color: rgba(255, 255, 255, .7);
}

.page-hero[style*="background-image"] .breadcrumb a:hover {
    color: #fff;
}

.page-hero[style*="background-image"] .breadcrumb span {
    color: rgba(255, 255, 255, .5);
}

.page-hero[style*="background-image"] h1::after {
    background: rgba(255, 255, 255, .5);
}

.page-hero[style*="background-image"]::before {
    display: none;
}

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

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a96e' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.page-hero h1 {
    color: #2c2c2c;
    font-size: 2.75rem;
    position: relative;
    z-index: 1;
    font-family: 'Cormorant Garamond', Georgia, serif;
    letter-spacing: 2px;
}

.page-hero h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent, #c9a96e);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.page-hero.small {
    padding: 8rem 0 2.5rem;
}

.page-hero.small h1 {
    font-size: 2.25rem;
}

/* Banner height variants */
.page-hero.banner-small {
    padding: 7.5rem 0 2rem;
}

.page-hero.banner-small h1 {
    font-size: 2rem;
}

.page-hero.banner-large {
    padding: 10rem 0 5rem;
}

.page-hero.banner-large h1 {
    font-size: 3.25rem;
}

.page-hero .breadcrumb {
    color: #999;
    justify-content: center;
    padding: 0 0 1rem;
    position: relative;
    z-index: 1;
}

.page-hero .breadcrumb a {
    color: #666;
}

.page-hero .breadcrumb a:hover {
    color: var(--accent, #c9a96e);
}

.page-hero .breadcrumb span {
    color: #bbb;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    color: #999;
    padding: 1.25rem 0;
    flex-wrap: wrap;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.breadcrumb a {
    color: #555;
}

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

/* ================================= */
/* Section Title                     */
/* ================================= */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2,
h2.section-title {
    margin-bottom: .75rem;
    position: relative;
    display: inline-block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    letter-spacing: 1px;
}

.section-title h2::after,
h2.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent, #c9a96e);
    margin: .75rem auto 0;
    border-radius: 2px;
}

.section-title.left h2::after,
h2.section-title.left::after {
    margin-left: 0;
}

.section-title p,
.section-subtitle {
    color: #888;
    font-size: .95rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* ================================= */
/* Image & Text                      */
/* ================================= */
.image-text,
.image-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.image-text.reverse,
.image-text-grid.reverse {
    direction: rtl;
}

.image-text.reverse>*,
.image-text-grid.reverse>* {
    direction: ltr;
}

.image-text img,
.image-text-img img {
    border-radius: 12px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
}

.image-text-content h2 {
    margin-bottom: 1rem;
}

.image-text-content p,
.text-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* ================================= */
/* Room Cards                        */
/* ================================= */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.room-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .04);
    transition: transform .4s ease, box-shadow .4s ease;
    border: 1px solid #f0ece5;
}

.room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
}

.room-card-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.room-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

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

.room-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0ece5 0%, #e8e0d4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 3rem;
}

.room-card-price {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--accent, #c9a96e);
    color: #fff;
    padding: .5rem 1.25rem;
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .5px;
    border-radius: 6px;
}

.room-card-body {
    padding: 1.75rem;
}

.room-card-body h3 {
    font-size: 1.4rem;
    margin-bottom: .5rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.room-card-meta {
    display: flex;
    gap: 1.25rem;
    font-size: .8rem;
    color: #999;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    letter-spacing: .3px;
}

.room-card-meta span {
    display: flex;
    align-items: center;
    gap: .4rem;
}

.room-card-body p {
    color: #777;
    font-size: .88rem;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.7;
}

.room-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #f0ece5;
    margin-top: .75rem;
}

.room-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent, #c9a96e);
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.room-price small {
    font-weight: 400;
    font-size: .75rem;
    color: #999;
    font-family: 'Montserrat', sans-serif;
}

/* ================================= */
/* Room Detail                       */
/* ================================= */

/* Mosaic Gallery */
.room-gallery-mosaic {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: .75rem;
    border-radius: 16px;
    overflow: hidden;
    max-height: 480px;
}

.room-gallery-main-wrap {
    overflow: hidden;
}

.room-gallery-main-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform .4s;
}

.room-gallery-main-wrap img:hover {
    transform: scale(1.03);
}

.room-gallery-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: .75rem;
    position: relative;
}

.room-gallery-side-img {
    overflow: hidden;
}

.room-gallery-side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform .4s;
}

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

.room-gallery-more {
    position: absolute;
    bottom: .75rem;
    right: .75rem;
    background: rgba(0, 0, 0, .65);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: .5rem 1rem;
    cursor: pointer;
    font-size: .85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .4rem;
    transition: background .3s;
}

.room-gallery-more:hover {
    background: rgba(0, 0, 0, .85);
}

/* Detail Layout */
.room-detail-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

.room-detail-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: .5rem;
    line-height: 1.2;
}

.room-detail-subtitle {
    color: #888;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Features */
.room-detail-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.room-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #faf8f5;
    border-radius: 12px;
    border: 1px solid #f0ece5;
}

.room-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent, #c9a96e);
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}

.room-feature span {
    display: block;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #999;
}

.room-feature strong {
    display: block;
    color: #2c2c2c;
    font-size: .92rem;
}

/* Description */
.room-detail-desc-section {
    margin-bottom: 2rem;
}

.room-detail-desc-section h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    margin-bottom: .75rem;
    color: #2c2c2c;
}

.room-detail-desc-text {
    color: #666;
    line-height: 1.9;
    font-size: .92rem;
}

/* Amenities */
.room-detail-amenities-section {
    margin-bottom: 2rem;
}

.room-detail-amenities-section h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.room-amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .6rem;
}

.room-amenity-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .6rem .8rem;
    font-size: .88rem;
    color: #555;
    background: #faf8f5;
    border-radius: 8px;
}

.room-amenity-item i {
    color: var(--accent, #c9a96e);
    font-size: .8rem;
}

/* Booking Sidebar */
.room-detail-sidebar {
    position: sticky;
    top: 5.5rem;
}

.room-booking-card {
    background: #fff;
    border: 1px solid #f0ece5;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
}

.room-booking-price {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0ece5;
}

.room-booking-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent, #c9a96e);
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.room-booking-per {
    color: #999;
    font-size: .9rem;
}

.room-booking-highlights {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-bottom: 1.5rem;
}

.room-booking-highlight {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .85rem;
    color: #555;
}

.room-booking-highlight i {
    color: var(--accent, #c9a96e);
    width: 18px;
    text-align: center;
}

.room-booking-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    margin-bottom: .75rem;
    border-radius: 10px;
    font-size: .9rem;
    padding: .85rem 1rem;
}

.room-booking-whatsapp {
    background: #25d366;
    color: #fff;
    border: none;
}

.room-booking-whatsapp:hover {
    background: #1da851;
    color: #fff;
}

.room-booking-note {
    font-size: .78rem;
    color: #999;
    line-height: 1.5;
    margin-top: .5rem;
    text-align: center;
}

.room-booking-note i {
    margin-right: .3rem;
}

/* Room card price overlay */
.room-card-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent, #c9a96e);
    color: #fff;
    padding: .35rem .85rem;
    border-radius: 20px;
    font-size: .82rem;
    font-weight: 700;
}

@media (max-width: 991px) {
    .room-gallery-mosaic {
        grid-template-columns: 1fr;
        max-height: none;
    }

    .room-gallery-side {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .room-detail-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .room-detail-sidebar {
        position: static;
    }

    .room-detail-features {
        grid-template-columns: 1fr 1fr;
    }

    .room-detail-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .room-detail-features {
        grid-template-columns: 1fr;
    }

    .room-amenities-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================= */
/* Service / Feature Cards           */
/* ================================= */
.services-grid,
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card,
.feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .04);
    transition: transform .4s ease, box-shadow .4s ease;
    border: 1px solid #f0ece5;
}

.service-card:hover,
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .07);
}

.service-card-icon,
.service-icon,
.feature-card-icon,
.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent, #c9a96e), #d4b680);
    color: #fff;
}

.service-card-icon svg,
.service-icon svg,
.feature-card-icon svg,
.feature-icon svg,
.service-card-icon i,
.service-icon i,
.feature-card-icon i,
.feature-icon i {
    color: #fff;
    font-size: 1.5rem;
}

.service-card h3,
.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: .75rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.service-card p,
.feature-card p {
    color: #888;
    font-size: .88rem;
    line-height: 1.7;
}

/* ================================= */
/* Gallery                           */
/* ================================= */
.gallery-filters,
.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
    margin-bottom: 2.5rem;
}

.gallery-filter-btn,
.filter-btn {
    padding: .55rem 1.5rem;
    border: 2px solid #e0dbd3;
    background: transparent;
    color: #666;
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    border-radius: 6px;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active,
.filter-btn:hover,
.filter-btn.active {
    background: var(--accent, #c9a96e);
    color: #fff;
    border-color: var(--accent, #c9a96e);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.gallery-grid.large {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

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

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .35s;
}

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

.gallery-item-overlay svg {
    stroke: #fff;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .94);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 1.75rem;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent, #c9a96e);
    border-color: var(--accent, #c9a96e);
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

/* ================================= */
/* Blog                              */
/* ================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .04);
    transition: transform .4s ease, box-shadow .4s ease;
    border: 1px solid #f0ece5;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .07);
}

.blog-card-image {
    height: 230px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

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

.blog-card-body {
    padding: 1.75rem;
}

.blog-card-date {
    font-size: .78rem;
    color: #aaa;
    margin-bottom: .5rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.blog-card-body h3 {
    font-size: 1.3rem;
    margin-bottom: .5rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.blog-card-body h3 a {
    color: #2c2c2c;
}

.blog-card-body h3 a:hover {
    color: var(--accent, #c9a96e);
}

.blog-card-body p {
    color: #888;
    font-size: .88rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.7;
}

/* Blog Detail */
.blog-detail {
    padding: 3rem 0 5rem;
}

.blog-detail-layout {
    padding: 3rem 0 4rem;
}

.blog-detail-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}

.blog-detail-main {
    min-width: 0;
}

.blog-detail-header {
    margin-bottom: 2.5rem;
}

.blog-detail-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.blog-detail-meta {
    display: flex;
    gap: 1.5rem;
    font-size: .82rem;
    color: #999;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: .4rem;
}

.blog-detail-meta time {
    color: #999;
    font-size: .82rem;
}

.blog-detail-image {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.blog-detail-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.blog-detail-content {
    font-size: 1.02rem;
    line-height: 1.9;
    color: #555;
}

.blog-detail-content h2,
.blog-detail-content h3 {
    margin: 2rem 0 1rem;
}

.blog-detail-content p {
    margin-bottom: 1.25rem;
}

.blog-detail-content img {
    border-radius: 8px;
    margin: 1.5rem 0;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.blog-detail-content blockquote {
    border-left: 4px solid var(--accent, #c9a96e);
    padding: 1.25rem 1.75rem;
    margin: 1.5rem 0;
    background: #faf8f5;
    font-style: italic;
    color: #666;
}

.blog-tags,
.blog-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 2rem;
}

.blog-detail-tags {
    padding-top: 1.5rem;
    border-top: 1px solid #f0ece5;
    margin-top: 2.5rem;
}

.blog-tags span,
.blog-tag {
    background: #faf8f5;
    color: var(--accent, #c9a96e);
    padding: .35rem 1rem;
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .3px;
    text-transform: uppercase;
    border: 1px solid #e8e0d4;
    border-radius: 2px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--accent, #c9a96e);
    font-weight: 600;
    font-size: .82rem;
    margin-top: .75rem;
    transition: gap .3s;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.blog-read-more:hover {
    gap: .7rem;
}

.blog-read-more::after {
    content: '\2192';
}

/* Blog Categories */
.blog-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
    margin-bottom: 2.5rem;
}

.blog-category-tag {
    padding: .45rem 1.25rem;
    background: #faf8f5;
    color: #666;
    font-size: .8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s;
    border: 1px solid #f0ece5;
    letter-spacing: .3px;
    border-radius: 6px;
}

.blog-category-tag:hover,
.blog-category-tag.active {
    background: var(--accent, #c9a96e);
    color: #fff;
    border-color: var(--accent, #c9a96e);
}

/* ================================= */
/* Testimonials                      */
/* ================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.25rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .04);
    position: relative;
    border: 1px solid #f0ece5;
    transition: transform .3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1.25rem;
    right: 1.75rem;
    font-size: 4.5rem;
    color: var(--accent, #c9a96e);
    opacity: .15;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: .2rem;
    margin-bottom: 1rem;
}

.testimonial-stars svg {
    fill: var(--accent, #c9a96e);
    stroke: var(--accent, #c9a96e);
    width: 16px;
    height: 16px;
}

.testimonial-stars svg.empty {
    fill: #e0dbd3;
    stroke: #e0dbd3;
}

.testimonial-content,
.testimonial-text {
    color: #666;
    font-size: .92rem;
    font-style: italic;
    margin-bottom: 1.25rem;
    line-height: 1.75;
}

.testimonial-author {
    font-weight: 600;
    color: #2c2c2c;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.05rem;
}

.testimonial-source {
    font-size: .78rem;
    color: #aaa;
    margin-top: .15rem;
    letter-spacing: .3px;
}

/* ================================= */
/* FAQ Accordion                     */
/* ================================= */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #f0ece5;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.35rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #2c2c2c;
    text-align: left;
    transition: color .3s;
}

.faq-question:hover {
    color: var(--accent, #c9a96e);
}

.faq-question svg,
.faq-question i {
    transition: transform .35s ease;
    flex-shrink: 0;
    margin-left: 1rem;
    color: var(--accent, #c9a96e);
}

.faq-item.open .faq-question svg,
.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
    color: #777;
    font-size: .92rem;
    line-height: 1.75;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding-bottom: 1.25rem;
}

/* ================================= */
/* CTA Banner                        */
/* ================================= */
.cta-section {
    padding: 5rem 0;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 40, 35, .75);
}

.cta-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 650px;
    margin: 0 auto;
}

.cta-content h2,
.cta-title {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    letter-spacing: 1px;
}

.cta-content p,
.cta-subtitle {
    opacity: .9;
    margin-bottom: 2rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, .85);
}

/* ================================= */
/* Map & Video                       */
/* ================================= */
.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ================================= */
/* Contact                           */
/* ================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: .2rem;
    color: var(--accent, #c9a96e);
}

.contact-item h4 {
    margin-bottom: .25rem;
    font-family: 'Montserrat', sans-serif;
    font-size: .78rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    color: #555;
}

.contact-item a {
    color: #555;
}

.contact-item a:hover {
    color: var(--accent, #c9a96e);
}

.contact-form-wrap {
    background: #faf8f5;
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid #f0ece5;
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: #666;
    margin-bottom: .4rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: .85rem 1rem;
    border: 1px solid #e0dbd3;
    border-radius: 0;
    font-size: .9rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color .3s;
    background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent, #c9a96e);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ================================= */
/* Slider                            */
/* ================================= */
.slider-section {
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform .6s ease;
}

.slider-slide {
    min-width: 100%;
    position: relative;
    height: 650px;
}

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

.slider-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .1) 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 4rem 2rem;
}

.slider-slide-caption {
    color: #fff;
    text-align: center;
}

.slider-slide-caption h2 {
    color: #fff;
    font-size: 2.75rem;
    margin-bottom: .5rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    letter-spacing: 1px;
}

.slider-slide-caption p {
    font-size: 1.05rem;
    opacity: .9;
    font-weight: 300;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}

.slider-btn:hover {
    background: var(--accent, #c9a96e);
    border-color: var(--accent, #c9a96e);
}

.slider-prev {
    left: 1.5rem;
}

.slider-next {
    right: 1.5rem;
}

.slider-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .6rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    border: 1px solid rgba(255, 255, 255, .5);
    cursor: pointer;
    transition: all .35s;
}

.slider-dot.active {
    background: var(--accent, #c9a96e);
    border-color: var(--accent, #c9a96e);
    transform: scale(1.25);
}

/* ================================= */
/* Text Block                        */
/* ================================= */
.text-block {
    max-width: 800px;
    margin: 0 auto;
}

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

.text-block.text-left {
    text-align: left;
}

.text-block.text-right {
    text-align: right;
}

.text-block h2 {
    margin-bottom: 1rem;
}

.text-block p {
    color: #666;
    line-height: 1.85;
}

/* ================================= */
/* Booking Bar (New Section)         */
/* ================================= */
.booking-bar {
    background: #fff;
    padding: 1.5rem;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .08);
    border: 1px solid #f0ece5;
}

.booking-bar-inner {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
}

.booking-bar .form-group {
    flex: 1;
}

.booking-bar label {
    display: block;
    color: #999;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: .4rem;
    font-weight: 600;
}

.booking-bar input,
.booking-bar select {
    width: 100%;
    padding: .75rem 1rem;
    border: 1px solid #e0dbd3;
    background: #faf8f5;
    color: #4a4a4a;
    font-size: .88rem;
    font-family: 'Montserrat', sans-serif;
}

.booking-bar input::placeholder {
    color: #bbb;
}

.booking-bar .btn {
    white-space: nowrap;
}

/* ================================= */
/* Experience Cards (New Section)    */
/* ================================= */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.experience-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 320px;
    cursor: pointer;
}

.experience-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

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

.experience-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, .1) 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.75rem;
    transition: background .3s;
}

.experience-card:hover .experience-card-overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .2) 60%);
}

.experience-card-content {
    color: #fff;
}

.experience-card-content h3 {
    color: #fff;
    font-size: 1.35rem;
    margin-bottom: .35rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.experience-card-content p {
    font-size: .85rem;
    opacity: .85;
    font-weight: 300;
}

/* ================================= */
/* Dining Section (New Section)      */
/* ================================= */
.dining-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.dining-image {
    overflow: hidden;
}

.dining-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.dining-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: #faf8f5;
}

.dining-content h2 {
    margin-bottom: 1rem;
}

.dining-content p {
    color: #777;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.dining-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.dining-list li {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 0;
    border-bottom: 1px solid #e0dbd3;
    font-size: .9rem;
    color: #555;
}

.dining-list li svg,
.dining-list li i {
    color: var(--accent, #c9a96e);
}

/* ================================= */
/* Footer                            */
/* ================================= */
.site-footer {
    background: #faf8f5;
    color: #666;
    padding: 4.5rem 0 0;
    border-top: 1px solid #e8e0d4;
}

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

.footer-about p {
    margin-top: 1rem;
    font-size: .88rem;
    line-height: 1.75;
}

.footer-about img,
.footer-about .footer-logo {
    height: 42px;
    margin-bottom: .5rem;
}

.footer-brand {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: #2c2c2c;
    font-size: 1.5rem;
    margin-bottom: .5rem;
    letter-spacing: 1px;
}

.footer-social {
    display: flex;
    gap: .75rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #d0c8bc;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    color: #888;
}

.footer-social a:hover {
    background: var(--accent, #c9a96e);
    border-color: var(--accent, #c9a96e);
    color: #fff;
}

.footer-social a svg {
    stroke: #888;
    width: 18px;
    height: 18px;
}

.footer-social a i {
    color: inherit;
    font-size: .9rem;
}

.footer-links h4,
.footer-contact h4 {
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.75rem;
}

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

.footer-links li {
    margin-bottom: .65rem;
}

.footer-links a {
    color: #777;
    font-size: .88rem;
    transition: color .3s;
}

.footer-links a:hover {
    color: var(--accent, #c9a96e);
}

.footer-contact-item,
.footer-contact ul li {
    display: flex;
    gap: .65rem;
    margin-bottom: .85rem;
    font-size: .85rem;
    list-style: none;
}

.footer-contact-item svg,
.footer-contact ul li svg,
.footer-contact ul li i {
    flex-shrink: 0;
    opacity: .5;
    margin-top: .15rem;
    color: var(--accent, #c9a96e);
}

.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact a {
    color: #777;
    transition: color .3s;
}

.footer-contact a:hover {
    color: var(--accent, #c9a96e);
}

/* Newsletter */
.footer-newsletter h4 {
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.75rem;
}

.footer-newsletter p {
    font-size: .85rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: .75rem 1rem;
    border: 1px solid #d0c8bc;
    background: #fff;
    color: #4a4a4a;
    font-size: .85rem;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-form input::placeholder {
    color: #bbb;
}

.newsletter-form button {
    padding: .75rem 1.25rem;
    background: var(--accent, #c9a96e);
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: .85rem;
    font-weight: 600;
    transition: background .3s;
}

.newsletter-form button:hover {
    background: #b8954f;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #e0dbd3;
    padding: 1.75rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
    color: #aaa;
}

.footer-bottom a {
    color: #888;
}

.footer-bottom a:hover {
    color: var(--accent, #c9a96e);
}

/* ================================= */
/* WhatsApp FAB                      */
/* ================================= */
.whatsapp-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
    z-index: 999;
    transition: transform .3s;
}

.whatsapp-fab:hover {
    transform: scale(1.12);
}

.whatsapp-fab svg {
    fill: #fff;
    width: 28px;
    height: 28px;
}

/* ================================= */
/* Scroll to Top                     */
/* ================================= */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 6rem;
    width: 46px;
    height: 46px;
    background: var(--accent, #c9a96e);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(201, 169, 110, .4);
    z-index: 998;
    transition: all .3s;
}

.scroll-top.visible {
    display: flex;
}

.scroll-top:hover {
    background: #3a3a3a;
    transform: translateY(-3px);
}

/* ================================= */
/* Utilities                         */
/* ================================= */
.text-center {
    text-align: center;
}

.text-accent {
    color: var(--accent, #c9a96e);
}

.mt-1 {
    margin-top: .5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: .5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* ================================= */
/* Responsive                        */
/* ================================= */
@media (max-width: 991px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.85rem;
    }

    .hero-content h1,
    .hero-content .hero-title {
        font-size: 2.75rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .image-text,
    .image-text-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .image-text.reverse,
    .image-text-grid.reverse {
        direction: ltr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .room-gallery {
        grid-template-columns: 1fr;
    }

    .room-gallery-main img {
        height: 300px;
    }

    .room-gallery-thumbs {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .slider-slide {
        height: 480px;
    }

    .room-detail-grid {
        grid-template-columns: 1fr;
    }

    .room-detail-gallery {
        position: static;
    }

    .room-detail-main-img img {
        height: 300px;
    }

    .dining-section {
        grid-template-columns: 1fr;
    }

    .dining-content {
        padding: 2.5rem;
    }

    .booking-bar-inner {
        flex-wrap: wrap;
    }

    .booking-bar .form-group {
        flex: 1 1 45%;
    }

    .blog-detail-grid {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 1.85rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-content h1,
    .hero-content .hero-title {
        font-size: 2.25rem;
    }

    .section {
        padding: 2.5rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .rooms-grid,
    .blog-grid,
    .gallery-grid,
    .services-grid,
    .features-grid,
    .testimonials-grid,
    .experience-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: .5rem;
        text-align: center;
    }

    .contact-form-wrap {
        padding: 1.5rem;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .slider-slide {
        height: 380px;
    }

    .slider-slide-caption h2 {
        font-size: 1.85rem;
    }

    .page-hero {
        padding: 7rem 0 2.5rem;
    }

    .page-hero h1 {
        font-size: 1.85rem;
    }

    .room-detail-amenities ul {
        grid-template-columns: 1fr;
    }

    .booking-bar {
        margin-top: -1.5rem;
        padding: 1rem;
    }

    .booking-bar-inner {
        flex-direction: column;
    }

    .booking-bar .form-group {
        flex: 1 1 100%;
    }
}

/* ================================= */
/* Blog Sidebar                      */
/* ================================= */
.blog-sidebar {
    position: sticky;
    top: 6rem;
}

.sidebar-widget {
    background: #fff;
    border: 1px solid #f0ece5;
    border-radius: 12px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
}

.sidebar-widget h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid #f0ece5;
    color: #2c2c2c;
}

.sidebar-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-categories li {
    border-bottom: 1px solid #f8f6f3;
}

.sidebar-categories li:last-child {
    border-bottom: none;
}

.sidebar-categories a {
    display: block;
    padding: .65rem 0;
    color: #666;
    font-size: .88rem;
    transition: color .3s, padding-left .3s;
}

.sidebar-categories a:hover {
    color: var(--accent, #c9a96e);
    padding-left: .5rem;
}

.sidebar-recent {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-recent li {
    margin-bottom: 1rem;
}

.sidebar-recent li:last-child {
    margin-bottom: 0;
}

.sidebar-recent a {
    display: flex;
    gap: .75rem;
    align-items: center;
    color: #4a4a4a;
    transition: color .3s;
}

.sidebar-recent a:hover {
    color: var(--accent, #c9a96e);
}

.sidebar-recent img {
    width: 64px;
    height: 48px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.sidebar-recent-placeholder {
    width: 64px;
    height: 48px;
    border-radius: 6px;
    background: #f0ece5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ccc;
}

.sidebar-recent strong {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-recent time {
    display: block;
    font-size: .72rem;
    color: #aaa;
    margin-top: .15rem;
}

/* Blog Share */
.blog-share {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f0ece5;
}

.blog-share-label {
    font-size: .82rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.blog-share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #e0dbd3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    transition: all .3s;
    font-size: .9rem;
}

.blog-share-btn:hover {
    background: var(--accent, #c9a96e);
    border-color: var(--accent, #c9a96e);
    color: #fff;
}

/* ================================= */
/* Animations                        */
/* ================================= */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================= */
/* Stats Counter Section             */
/* ================================= */
.stats-section {
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem 1rem;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--accent, #c9a96e);
    margin-bottom: 1rem;
}

.stat-icon i {
    font-size: inherit;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary, #1a1a2e);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-suffix {
    font-size: 0.6em;
    vertical-align: super;
    margin-left: 2px;
}

.stat-label {
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .stat-number {
        font-size: 2.2rem;
    }
}

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

/* ================================= */
/* Team Members Section              */
/* ================================= */
.team-grid {
    display: grid;
    gap: 2rem;
}

.team-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.team-photo {
    aspect-ratio: 1;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.team-card:hover .team-photo img {
    transform: scale(1.05);
}

.team-info {
    padding: 1.25rem;
    text-align: center;
}

.team-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin: 0 0 0.25rem;
    color: #1a1a2e;
}

.team-role {
    font-size: 0.85rem;
    color: var(--accent, #c9a96e);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.team-desc {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Rounded style */
.team-style-rounded .team-card {
    background: transparent;
    box-shadow: none;
    text-align: center;
}

.team-style-rounded .team-card:hover {
    transform: none;
    box-shadow: none;
}

.team-style-rounded .team-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto;
    border: 4px solid var(--accent, #c9a96e);
}

.team-style-rounded .team-photo img {
    border-radius: 50%;
}

/* Overlay style */
.team-style-overlay .team-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 12px;
}

.team-style-overlay .team-photo {
    position: absolute;
    inset: 0;
}

.team-style-overlay .team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    padding: 2rem 1.25rem 1.25rem;
}

.team-style-overlay .team-name {
    color: #fff;
}

.team-style-overlay .team-role {
    color: var(--accent, #c9a96e);
}

.team-style-overlay .team-desc {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .team-style-rounded .team-photo {
        width: 120px;
        height: 120px;
    }
}

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

/* ================================= */
/* Pricing Table Section             */
/* ================================= */
.pricing-grid {
    display: grid;
    gap: 1.5rem;
    align-items: start;
}

.pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.pricing-featured {
    border-color: var(--accent, #c9a96e);
    transform: scale(1.03);
}

.pricing-featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: 16px;
    right: -32px;
    background: var(--accent, #c9a96e);
    color: #fff;
    padding: 4px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
}

.pricing-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0ede8;
    margin-bottom: 1.5rem;
}

.pricing-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #1a1a2e;
    margin: 0 0 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent, #c9a96e);
}

.pricing-period {
    font-size: 0.9rem;
    color: #6b7280;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features li i {
    color: var(--accent, #c9a96e);
    font-size: 0.8rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr !important;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-featured {
        transform: none;
    }
}

/* ================================= */
/* Logo / Partner Section            */
/* ================================= */
.logo-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s;
}

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

.logo-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-item img {
    max-height: 60px;
    max-width: 140px;
    object-fit: contain;
    transition: filter 0.3s, opacity 0.3s;
}

.logo-grayscale .logo-item img {
    filter: grayscale(100%);
    opacity: 0.6;
}

.logo-grayscale .logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.logo-name {
    font-size: 0.8rem;
    color: #6b7280;
    text-align: center;
    font-weight: 500;
}

@media (max-width: 768px) {
    .logo-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.5rem;
    }

    .logo-item img {
        max-height: 45px;
    }
}

@media (max-width: 480px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ================================= */
/* WhatsApp CTA                      */
/* ================================= */
.whatsapp-floating {
    position: fixed;
    bottom: 24px;
    z-index: 9999;
}

.whatsapp-right {
    right: 24px;
}

.whatsapp-left {
    left: 24px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--wa-color, #25d366);
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    flex-shrink: 0;
}

.whatsapp-text {
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.whatsapp-pulse .whatsapp-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50px;
    background: var(--wa-color, #25d366);
    opacity: 0;
    animation: waPulse 2s infinite;
    z-index: -1;
}

@keyframes waPulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.3);
    }
}

.whatsapp-bar {
    color: #fff;
}

.whatsapp-bar a {
    color: #fff !important;
}

.whatsapp-inline-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    text-decoration: none;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.whatsapp-inline-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .whatsapp-floating {
        bottom: 16px;
    }

    .whatsapp-right {
        right: 16px;
    }

    .whatsapp-left {
        left: 16px;
    }

    .whatsapp-text {
        display: none;
    }

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

/* ================================= */
/* Tabs Section                      */
/* ================================= */
.tabs-wrapper {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.tabs-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #f0ede8;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tab-btn {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn:hover {
    color: #1a1a2e;
}

.tab-btn.active {
    color: var(--accent, #c9a96e);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent, #c9a96e);
}

.tab-btn i {
    font-size: 1rem;
}

.tabs-content {
    padding: 2rem;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: tabFadeIn 0.3s ease;
}

.tab-pane-content {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #374151;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pills style */
.tabs-pills .tabs-nav {
    border-bottom: none;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
}

.tabs-pills .tab-btn {
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    background: #f5f3f0;
}

.tabs-pills .tab-btn.active {
    background: var(--accent, #c9a96e);
    color: #fff;
}

.tabs-pills .tab-btn.active::after {
    display: none;
}

/* Underline style */
.tabs-underline .tabs-nav {
    border-bottom: 1px solid #e5e7eb;
}

.tabs-underline .tab-btn.active::after {
    height: 3px;
    border-radius: 3px 3px 0 0;
}

/* Vertical style */
.tabs-vertical {
    display: grid;
    grid-template-columns: 220px 1fr;
}

.tabs-vertical .tabs-nav {
    flex-direction: column;
    border-bottom: none;
    border-right: 2px solid #f0ede8;
    padding: 1rem 0;
}

.tabs-vertical .tab-btn {
    padding: 0.75rem 1.25rem;
    text-align: left;
}

.tabs-vertical .tab-btn.active::after {
    bottom: 0;
    right: -2px;
    left: auto;
    top: 0;
    width: 2px;
    height: 100%;
}

@media (max-width: 768px) {
    .tabs-vertical {
        grid-template-columns: 1fr;
    }

    .tabs-vertical .tabs-nav {
        flex-direction: row;
        border-right: none;
        border-bottom: 2px solid #f0ede8;
        overflow-x: auto;
    }

    .tabs-vertical .tab-btn.active::after {
        bottom: -2px;
        right: 0;
        left: 0;
        top: auto;
        width: auto;
        height: 2px;
    }

    .tab-btn {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .tabs-content {
        padding: 1.25rem;
    }
}
}