/* ============================================
   GRACED BY FED - CUSTOM STYLES
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --primary-gold: #9D735c;
    --primary-gold-dark: #A67C2E;
    --primary-maroon: #7A1E2B;
    --primary-maroon-dark: #9D735c;
    --text-dark: #9D735c;
    --text-muted: #6B6B6B;
    --bg-cream: #EDE6DE;
    --bg-light: #EDE6DE;
    --white: #FFFFFF;
    /* Global border tint (maroon theme) */
    --border-color: rgba(122, 30, 43, 0.28);
    /* Logo sizing */
    --logo-height: 110px;
    --logo-height-centered: 210px;
    --logo-height-mobile: 86px;
    --logo-height-centered-mobile: 130px;
    /* Space to clear the absolute centered-logo navbar */
    --nav-clearance-desktop: calc(var(--logo-height-centered) + 80px);
    --nav-clearance-mobile: calc(var(--logo-height-centered-mobile) + 80px);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background-color: var(--bg-cream);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand .logo {
    height: var(--logo-height);
    width: auto;
}

.navbar-toggler {
    border-color: var(--primary-maroon);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(122, 30, 43, 0.25);
}

.navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%237A1E2B' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Center-logo navbar (matches provided reference) */
.navbar.navbar-centered-logo {
    background-color: transparent !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 34px 0 26px;
}

.navbar.navbar-centered-logo.scrolled {
    background-color: transparent !important;
    backdrop-filter: none;
    box-shadow: none;
}

.navbar.navbar-centered-logo .navbar-brand .logo {
    height: var(--logo-height-centered);
}

.navbar.navbar-centered-logo .navbar-brand-centered {
    padding-top: 4px;
}

.navbar.navbar-centered-logo .navbar-brand-mobile {
    display: flex;
}

.navbar.navbar-centered-logo .navbar-brand-desktop {
    display: none;
}

.navbar.navbar-centered-logo .navbar-right-wrap {
    display: flex;
    align-items: center;
}

.navbar.navbar-centered-logo .navbar-nav {
    gap: 0;
}

.navbar.navbar-centered-logo .navbar-nav .nav-link {
    color: var(--primary-maroon);
    font-size: 17px;
    font-weight: 500;
    padding: 0;
    letter-spacing: 0.2px;
	background-color: transparent !important;
    transition: color 0.3s ease !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.navbar.navbar-centered-logo .navbar-nav .nav-link:hover,
.navbar.navbar-centered-logo .navbar-nav .nav-link:focus {
    color: var(--primary-maroon-dark) !important;
    background-color: transparent !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
}

.navbar.navbar-centered-logo .navbar-nav .nav-link:hover {
    color: var(--primary-maroon-dark);
}

.navbar.navbar-centered-logo .navbar-nav .nav-link.active {
    color: var(--primary-maroon-dark);
    font-weight: 600;
	background-color: transparent !important;
}

.navbar.navbar-centered-logo .btn-book-now.navbar-book-btn {
    background-color: var(--primary-maroon);
    color: var(--white);
    border: none;
    border-radius: 999px;
    padding: 12px 26px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
}

.navbar.navbar-centered-logo .btn-book-now.navbar-book-btn:hover {
    background-color: var(--primary-maroon-dark);
    color: var(--white);
    transform: translateY(-1px);
}

/* Centered logo + split nav groups */
.navbar-brand-centered {
    display: flex;
    align-items: center;
}

.navbar-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Booking page spacing to clear centered navbar */
.booking-page-section {
    padding-top: var(--nav-clearance-desktop);
    padding-bottom: 80px;
}

@media (max-width: 991.98px) {
    .booking-page-section {
        padding-top: var(--nav-clearance-mobile);
        padding-bottom: 64px;
    }
}

@media (min-width: 992px) {
    .navbar.navbar-centered-logo .navbar-brand-mobile {
        display: none;
    }

    .navbar.navbar-centered-logo .navbar-brand-desktop {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 0;
        margin: 0;
    }

    .navbar.navbar-centered-logo .navbar-collapse {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        align-items: center;
        column-gap: 34px;
        width: 100%;
    }

    .navbar.navbar-centered-logo .navbar-nav-left {
        justify-self: end;
        justify-content: flex-end;
        gap: 34px;
    }

    .navbar.navbar-centered-logo .navbar-brand-desktop {
        justify-self: center;
    }

    .navbar.navbar-centered-logo .navbar-right-wrap {
        justify-self: start;
        justify-content: flex-start;
        gap: 16px;
    }

    .navbar.navbar-centered-logo .navbar-nav-right {
        align-items: center;
        gap: 20px;
    }

    .navbar.navbar-centered-logo .navbar-book-btn {
        margin-left: 0;
    }
}

@media (max-width: 991.98px) {
    .navbar-brand .logo {
        height: var(--logo-height-mobile);
    }

    .navbar.navbar-centered-logo {
        background-color: transparent !important;
        padding: 18px 0 12px;
    }

    .navbar.navbar-centered-logo .navbar-brand .logo {
        height: var(--logo-height-centered-mobile);
    }

    .navbar.navbar-centered-logo .navbar-brand-desktop {
        display: none;
    }

    .navbar.navbar-centered-logo .navbar-collapse {
        display: none !important;
    }

    .navbar.navbar-centered-logo .navbar-right-wrap {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .navbar.navbar-centered-logo .navbar-collapse {
        background-color: transparent;
        border: none;
        border-radius: 14px;
        padding: 14px;
        margin-top: 12px;
    }

    .navbar.navbar-centered-logo .navbar-book-btn {
        width: 100%;
        margin-top: 12px;
        padding: 12px 0;
    }

    .navbar.navbar-centered-logo .navbar-nav-left,
    .navbar.navbar-centered-logo .navbar-nav-right {
        gap: 12px;
    }
}

/* ============================================
   MOBILE MENU SIDEBAR
   ============================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-cream);
    z-index: 1030;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 20px;
    display: none;
    flex-direction: column;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #dfd1cc;
    z-index: -1;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-maroon);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    color: var(--primary-maroon-dark);
    transform: rotate(90deg);
}

.mobile-menu-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(122, 30, 43, 0.1);
}

.mobile-menu-logo img {
    height: 80px;
    width: auto;
}

.mobile-menu-nav {
    margin-top: 20px;
    flex: 1;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-link {
    display: block;
    padding: 16px 0;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid rgba(122, 30, 43, 0.1);
    transition: all 0.3s ease;
}

.mobile-menu-link:hover {
    color: var(--primary-gold);
    padding-left: 10px;
}

.mobile-menu-book-btn {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 14px 0;
    background-color: var(--primary-maroon);
    color: var(--white);
    text-align: center;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-menu-book-btn:hover {
    background-color: var(--primary-maroon-dark);
}

@media (max-width: 991.98px) {
    .mobile-menu {
        display: block;
    }
}

/* Back to top button */
.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #5A3A2A;
    color: var(--white);
    display: grid;
    place-items: center;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
    z-index: 2000;
}

.back-to-top:hover {
    background: #4A2D1F;
    color: var(--white);
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.navbar-nav {
    gap: 10px;
}

.navbar-nav .nav-link {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 15px;
    color: var(--text-dark);
    padding: 8px 20px;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-gold);
}

.btn-book-now {
    background-color: var(--primary-gold);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 15px;
    border: none;
}

.btn-book-now:hover {
    background-color: var(--primary-gold-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    padding: 160px 0 100px;
    padding-top: max(160px, var(--nav-clearance-desktop));
    background: url('../images/hero-bg-1.jpg') right center / cover no-repeat, var(--bg-cream);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}



.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--bg-cream) 0%, transparent 100%);
    z-index: 1;
}

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

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero-title em {
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 35px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background-color: var(--primary-gold);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 15px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-custom:hover {
    background-color: var(--primary-maroon-dark);
    color: var(--white);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--primary-maroon-dark);
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 15px;
    border: 2px solid var(--primary-maroon-dark);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-custom:hover {
    background-color: var(--primary-maroon-dark);
    color: var(--white);
}

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

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.hero-mobile-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top;
    z-index: 0;
}

/* ============================================
   OUR WORK SECTION
   ============================================ */
.our-work-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--white);
    color: var(--text-dark);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 400;
    font-size: 14px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-maroon-dark);
    color: var(--white);
    border-color: var(--primary-maroon-dark);
}

.gallery-grid {
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: var(--fade-delay, 0ms);
}

.gallery-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

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

/* Homepage: Our Work images are display-only (no lightbox, no zoom). */
.home-page .our-work-section .gallery-item {
    cursor: default;
}

.home-page .our-work-section .gallery-item img {
    transform: none;
    transition: none;
    pointer-events: none;
}

.home-page .our-work-section .gallery-item:hover img {
    transform: none;
}

.home-page .our-work-section .gallery-item-tall img {
    height: 500px;
}

/* Homepage hover swipe/shine effect */
.home-page .our-work-section .gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        transparent 0%,
        rgba(255, 255, 255, 0.0) 35%,
        rgba(255, 255, 255, 0.28) 50%,
        rgba(255, 255, 255, 0.0) 65%,
        transparent 100%
    );
    transform: translateX(-120%) skewX(-18deg);
    opacity: 0;
    pointer-events: none;
    transition: transform 650ms ease, opacity 220ms ease;
}

.home-page .our-work-section .gallery-item:hover::after {
    transform: translateX(120%) skewX(-18deg);
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .home-page .our-work-section .gallery-item::after {
        transition: none;
        opacity: 0;
    }
}

.gallery-item-tall img {
    height: 540px;
}

/* ============================================
   ALBUM GALLERY SYSTEM
   ============================================ */
.album-gallery-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.albums-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) ;
    gap: 30px;
    margin-top: 40px;
    max-width: 1400px !important;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.album-featured {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 3 / 4;
    background-color: #f5f5f5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
}

.album-featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.album-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.album-featured:hover img {
    transform: scale(1.05);
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-featured:hover .album-overlay {
    opacity: 1;
}

.album-open-btn {
    background-color: var(--primary-gold);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.album-open-btn:hover {
    background-color: var(--primary-gold-dark);
    transform: scale(1.05);
}

/* Album Detail Page */
.album-detail-hero {
    padding: 140px 0 40px;
    background-color: var(--bg-light);
}

.album-detail-header {
    position: relative;
    z-index: 2;
}

.album-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.album-back-link:hover {
    color: var(--primary-gold);
    gap: 12px;
}

.album-detail-section {
    padding: 40px 0 80px;
    background-color: var(--bg-light);
    position: relative;
    margin-top: var(--nav-clearance-desktop);
}

.album-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.album-image-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 3 / 4;
    background-color: #f5f5f5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.album-image-item img,
.album-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.album-image-item:hover img,
.album-image-item:hover .album-image {
    transform: scale(1.08);
}

.album-detail-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 3 / 4;
    background-color: #f5f5f5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.album-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.album-detail-image:hover img {
    transform: scale(1.08);
}

/* Album Lightbox */
.album-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.album-lightbox-content {
    width: 90%;
    height: 90vh;
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#albumLightboxImage {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.album-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    padding: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.album-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.4);
}

.album-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    z-index: 10;
}

.album-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.4);
}

.album-lightbox-prev {
    left: 20px;
}

.album-lightbox-next {
    right: 20px;
}

.album-lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    z-index: 10;
}

/* Project Navigation */
.project-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    visibility: visible;
    opacity: 1;
    gap: 20px;
}

.project-nav-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 8px;
}

.project-nav-btn:hover {
    color: var(--primary-gold);
    background-color: rgba(196, 153, 61, 0.1);
}

.project-nav-arrow {
    font-size: 1.3rem;
}

.project-prev {
    justify-self: flex-start;
}

.project-prev:hover .project-nav-arrow {
    transform: translateX(-3px);
}

.project-next {
    justify-self: flex-end;
}

.project-next:hover .project-nav-arrow {
    transform: translateX(3px);
}

.project-nav-arrow {
    transition: transform 0.3s ease;
}

@media (max-width: 1200px) {
    .albums-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 25px;
    }
}

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

@media (max-width: 768px) {
    .album-gallery-section {
        padding: 60px 0;
    }

    .albums-grid {
         grid-template-columns: repeat(2, 1fr) !important;
        gap: 18px;
        padding: 0 15px;
    }

    .album-featured {
        aspect-ratio: 3 / 4;
    }

    .album-detail-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .album-lightbox-content {
        width: 95%;
        height: 95vh;
    }

    .album-lightbox-nav {
        padding: 10px 15px;
        font-size: 1.5rem;
    }

    .album-lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .albums-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 12px;
		max-width: 100% !important;
    }

    .album-featured {
        aspect-ratio: 3 / 4;
    }

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

    .album-open-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 420px) {
    .albums-grid {
         grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 10px;
    }

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

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--bg-cream);
}

.testimonial-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    --t-card-w: 380px;
    --t-gap: 20px;
}

.testimonial-track {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: var(--t-gap);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 20px 0 80px;
    padding-inline: max(20px, calc((100% - var(--t-card-w)) / 2));
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

.testimonial-nav {
    position: absolute;
    bottom: 10px;
    width: 46px;
    height: 46px;
    border: 2px solid var(--primary-maroon-dark);
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-maroon-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    cursor: pointer;
}

.testimonial-nav:hover {
    background: var(--primary-maroon-dark);
    color: var(--white);
    transform: scale(1.1);
}

.testimonial-prev {
    left: 50%;
    transform: translateX(calc(-50% - 40px));
}

.testimonial-prev:hover {
    transform: translateX(calc(-50% - 40px)) scale(1.1);
}

.testimonial-next {
    right: 50%;
    transform: translateX(calc(50% + 40px));
}

.testimonial-next:hover {
    transform: translateX(calc(50% + 40px)) scale(1.1);
}

.testimonial-card {
    background: var(--white);
    border: 2px solid var(--primary-maroon-dark);
    border-radius: 16px;
    padding: 36px 32px;
    /* box-shadow: 0 8px 24px rgba(165, 49, 49, 0.425); */
    min-width: var(--t-card-w);
    flex: 0 0 var(--t-card-w);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.5;
    transform: scale(0.85);
    scroll-snap-align: center;
    scroll-snap-stop: always;
}

.testimonial-card.featured {
    opacity: 1;
    transform: scale(1);
    border-color: var(--primary-maroon-dark);
    /* box-shadow: 0 16px 40px rgba(165, 49, 49, 0.226); */
}

@media (max-width: 1024px) {
    .testimonial-carousel {
        --t-card-w: 360px;
    }
    .testimonial-card {
        min-width: var(--t-card-w);
        flex: 0 0 var(--t-card-w);
    }
}

@media (max-width: 768px) {
    .testimonial-carousel {
        --t-card-w: 300px;
        --t-gap: 50px;
        padding: 60px 0;
    }
    .testimonial-track {
        padding: 20px 0 60px;
        padding-inline: calc((100% - var(--t-card-w)) / 2);
        gap: var(--t-gap);
    }
    
    .testimonial-card {
        min-width: var(--t-card-w);
        flex: 0 0 var(--t-card-w);
        padding: 28px 24px;
        opacity: 0.6;
        transform: scale(0.9);
    }
    
    .testimonial-card.featured {
        opacity: 1;
        transform: scale(1);
    }
    
    .testimonial-prev,
    .testimonial-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 20px;
    }
    
    .testimonial-prev {
        left: 50%;
        transform: translateX(calc(-50% - 33px));
    }
    
    .testimonial-prev:hover {
        transform: translateX(calc(-50% - 33px)) scale(1.1);
    }
    
    .testimonial-next {
        right: 50%;
        left: auto;
        bottom: 20px;
        transform: translateX(calc(50% + 33px));
    }
    
    .testimonial-next:hover {
        transform: translateX(calc(50% + 33px)) scale(1.1);
    }
}

.testimonial-stars {
    color: var(--primary-maroon);
    font-size: 1.1rem;
    margin-bottom: 18px;
    display: flex;
    gap: 6px;
    justify-content: center;
}

.testimonial-quote {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-client {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.client-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.client-service {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   IMAGE LIGHTBOX
   ============================================ */
.image-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 2000;
    padding: 24px;
}

.image-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 95vw;
    max-height: 90vh;
    overflow: auto;
}

.lightbox-content img {
    display: block;
    max-width: 95vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.35);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.35);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-maroon-dark) 100%);
    text-align: center;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary-custom {
    background-color: var(--white);
    color: var(--primary-gold);
    font-size: 1.1rem;
    padding: 16px 40px;
}

.cta-section .btn-primary-custom:hover {
    background-color: var(--bg-cream);
    color: var(--primary-maroon);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-cream) 0%, rgb(250 220 154 / 27%) 70%, var(--bg-cream) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--bg-cream) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.about-section::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 20% 70%, rgba(196, 153, 61, 0.10) 0%, rgba(196, 153, 61, 0.00) 55%),
        radial-gradient(ellipse at 80% 40%, rgba(196, 153, 61, 0.08) 0%, rgba(196, 153, 61, 0.00) 60%);
    opacity: 0.9;
}

.about-section > * {
    position: relative;
    z-index: 2;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-description {
    font-size: 1.1rem;
    color: var(--primary-maroon-dark);
    margin-bottom: 30px;
    line-height: 1.8;
}

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

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.about-features li i {
    color: var(--primary-maroon-dark);
    font-size: 1.2rem;
}

.before-after-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 70px;
    z-index: 1;
}

.before-after-container::before,
.before-after-container::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-heading);
    font-size: 4.5rem;
    color: var(--primary-gold);
    opacity: 0.28;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.before-after-container::before {
    content: '“';
    left: 18px;
    top: 42%;
}

.before-after-container::after {
    content: '”';
    right: 18px;
    top: 63%;
}

.before-after-images {
    display: flex;
    gap: 14px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
}

.ba-image {
    position: relative;
    width: 230px;
}

.ba-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 18px;
    border: 6px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
    transform-origin: center;
}

.ba-image:nth-child(1) img {
    transform: rotate(-1.6deg);
}

.ba-image:nth-child(2) img {
    transform: rotate(1.6deg);
}

.ba-image:nth-child(3) img {
    transform: rotate(-0.8deg);
}

.ba-label {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background: rgba(255, 255, 255, 0.88);
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(232, 224, 216, 0.9);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.10);
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
    font-family: var(--font-heading);
    color: rgba(45, 45, 45, 0.92);
}

/* Homepage About section: 3-image layout */
.home-page .ba-image {
    width: 200px;
}

/* ============================================
   BOOKING SECTION
   ============================================ */
.booking-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-cream) 100%);
}

.booking-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.booking-form .form-control,
.booking-form .form-select {
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 14px;
    background-color: var(--bg-light);
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(196, 153, 61, 0.15);
}

.booking-form .form-control::placeholder {
    color: var(--text-muted);
}

.booking-form .btn-primary-custom {
    padding: 16px 40px;
    margin-top: 10px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: #5A3A2A;
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-logo {
    height: 150px;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

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

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

.social-links a {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-gold);
    transform: translateY(-3px);
}

.footer-divider {
    border-color:var(--bg-cream);
    margin: 30px 0;
}

.copyright {
    font-size: 14px;
    color:var(--bg-cream);
    margin-bottom: 0;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .navbar-collapse {
        background-color: var(--white);
        padding: 20px;
        margin-top: 15px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        padding-top: 250px;
        position: relative;
        z-index: 2;
    }
    
    .hero-content .hero-buttons {
        order: -1;
        margin-bottom: 30px;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        text-align: center;
    }
    
    .hero-section {
        min-height: 100vh;
        background: var(--bg-cream);
    }
    
    .hero-title .break-mobile::after {
        content: none;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .gallery-item img {
        height: 260px;
    }

    .our-work-section {
        padding: 0 0 80px 0;
    }

    .home-page .our-work-section .gallery-item-tall img {
        height: 260px;
    }
    
    .before-after-images {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
        justify-content: center;
        gap: 10px;
    }

    .ba-image {
        width: 100%;
        max-width: 160px;
        margin: 0 auto;
    }

    .ba-image:nth-child(3) {
        grid-column: 1 / -1;
        justify-self: center;
        width: 100%;
        max-width: 160px;
    }

    .ba-image img {
        height: 240px;
        border: 4px solid rgba(255, 255, 255, 0.95);
    }

    .footer {
        text-align: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .social-links {
        justify-content: center;
    }
    }

    .before-after-container {
        justify-content: center;
        margin-top: 24px;
        padding: 0;
    }

    .before-after-container::before,
    .before-after-container::after {
        content: none;
        display: none;
    }

    .before-after-images {
        padding: 0;
        border-radius: 0;
    }
    
    .quote-mark {
        font-size: 5rem;
    }
    
    .booking-form {
        padding: 25px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .filter-btn {
        padding: 8px 18px;
        font-size: 13px;
    }
}

@media (max-width: 390px) {
    .before-after-images {
        gap: 8px;
    }

    .ba-image {
        max-width: 145px;
    }

    .ba-image:nth-child(3) {
        max-width: 145px;
    }

    .ba-image img {
        height: 220px;
        border: 4px solid rgba(255, 255, 255, 0.95);
    }
}

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

.hero-content {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-image {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background-color: var(--primary-gold);
    color: var(--white);
}

/* ============================================
   POLICIES PAGE STYLES
   ============================================ */

/* ============================================
   POLICIES HERO SECTION
   ============================================ */
.policies-hero {
    padding: 140px 0 80px;
    padding-top: var(--nav-clearance-desktop);
    background: url('../images/background-2.jpg') center center / cover no-repeat;
    position: relative;
    overflow: hidden;
}

.policies-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.policies-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.policies-hero-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    max-width: 450px;
}

/* ============================================
   POLICIES CAROUSEL
   ============================================ */
.policies-carousel-container {
    position: relative;
    height: 602px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.policies-carousel {
    position: relative;
    width: 728px;
    height: 546px;
    transform: translateX(28px);
}

.carousel-slide {
    position: absolute;
    width: 238px;
    height: 364px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
    cursor: pointer;
    transition: transform 0.5s ease, left 0.5s ease, top 0.5s ease, width 0.5s ease, height 0.5s ease;
}

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

.carousel-label {
    position: absolute;
    bottom: 13px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    z-index: 5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.carousel-slide.pos-1 {
    left: 0;
    top: 76px;
    width: 257px;
    height: 393px;
    z-index: 1;
    opacity: 1;
    transform: scale(0.84);
}

.carousel-slide.pos-2 {
    left: 98px;
    top: 50px;
    width: 296px;
    height: 443px;
    z-index: 2;
    opacity: 1;
    transform: scale(0.9);
}

.carousel-slide.pos-3 {
    left: 196px;
    top: 0;
    width: 336px;
    height: 504px;
    z-index: 5;
    opacity: 1;
    transform: scale(1);
}

.carousel-slide.pos-4 {
    left: 420px;
    top: 50px;
    width: 296px;
    height: 443px;
    z-index: 3;
    opacity: 1;
    transform: scale(0.9);
}

.carousel-slide.pos-5 {
    left: 560px;
    top: 76px;
    width: 257px;
    height: 393px;
    z-index: 1;
    opacity: 1;
    transform: scale(0.84);
}

.carousel-slide.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.75);
}

.policies-carousel-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.policies-carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.policies-carousel-dots .dot:hover {
    background-color: var(--text-muted);
}

.policies-carousel-dots .dot.active {
    background-color: var(--primary-maroon);
    width: 22px;
    border-radius: 4px;
}

@media (max-width: 991.98px) {
    .policies-carousel {
        width: 460px;
        height: 360px;
        transform: translateX(10px);
    }
    
    .carousel-slide {
        width: 140px;
        height: 230px;
    }
    
    .carousel-slide.pos-1 {
        left: 0;
        top: 60px;
    }
    
    .carousel-slide.pos-2 {
        left: 55px;
        top: 30px;
    }
    
    .carousel-slide.pos-3 {
        left: 120px;
        top: 0;
        width: 200px;
        height: 300px;
    }
    
    .carousel-slide.pos-4 {
        left: 235px;
        top: 30px;
    }

    .carousel-slide.pos-5 {
        left: 320px;
        top: 60px;
    }
}

@media (max-width: 767.98px) {
    .policies-carousel-container {
        height: auto;
        margin-top: 40px;
    }
    
    .policies-carousel {
        width: 360px;
        height: 290px;
        transform: translateX(0);
    }
    
    .carousel-slide {
        width: 110px;
        height: 190px;
    }
    
    .carousel-slide.pos-1 {
        left: 0;
        top: 55px;
        width: 110px;
        height: 190px;
    }
    
    .carousel-slide.pos-2 {
        left: 40px;
        top: 28px;
        width: 130px;
        height: 220px;
    }
    
    .carousel-slide.pos-3 {
        left: 85px;
        top: 0;
        width: 160px;
        height: 260px;
    }
    
    .carousel-slide.pos-4 {
        left: 170px;
        top: 28px;
        width: 130px;
        height: 220px;
    }

    .carousel-slide.pos-5 {
        left: 230px;
        top: 55px;
        width: 110px;
        height: 190px;
    }
    
    .carousel-label {
        font-size: 10px;
    }
}

@media (max-width: 575.98px) {
    .policies-carousel {
        width: 320px;
        height: 260px;
    }
    
    .carousel-slide {
        width: 105px;
        height: 180px;
    }
    
    .carousel-slide.pos-1 {
        left: 0;
        top: 50px;
    }
    
    .carousel-slide.pos-2 {
        left: 35px;
        top: 24px;
    }
    
    .carousel-slide.pos-3 {
        left: 80px;
        top: 0;
        width: 150px;
        height: 220px;
    }
    
    .carousel-slide.pos-4 {
        left: 155px;
        top: 24px;
    }

    .carousel-slide.pos-5 {
        left: 215px;
        top: 50px;
    }
    
    .carousel-label {
        font-size: 9px;
        bottom: 10px;
    }
}

/* ============================================
   HERO CARD STACK
   ============================================ */
.policies-hero-cards {
    position: relative;
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-stack,
.card-carousel {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    position: absolute;
    width: 180px;
    height: 260px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

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

.hero-card .card-label {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ============================================
   CARD CAROUSEL STYLES
   ============================================ */
.card-carousel {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    perspective: 1000px;
}

.carousel-card {
    position: absolute;
    width: 160px;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    cursor: pointer;
}

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

.carousel-card .card-label {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    z-index: 5;
}

/* Card Positions - Stacked Layout */
.carousel-card.card-1 {
    left: 50%;
    top: 50%;
    width: 160px;
    height: 420px;
    z-index: 1;
    opacity: 0.85;
    transform: translate(-50%, -50%) translateX(-160px);
}

.carousel-card.card-2 {
    left: 50%;
    top: 50%;
    width: 175px;
    height: 430px;
    z-index: 2;
    opacity: 0.92;
    transform: translate(-50%, -50%) translateX(-80px);
}

.carousel-card.card-center {
    left: 50%;
    top: 50%;
    width: 240px;
    height: 450px;
    transform: translate(-50%, -50%);
    z-index: 10;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.carousel-card.card-4 {
    left: 50%;
    top: 50%;
    width: 175px;
    height: 430px;
    z-index: 2;
    opacity: 0.92;
    transform: translate(-50%, -50%) translateX(80px);
}

.carousel-card.card-5 {
    left: 50%;
    top: 50%;
    width: 160px;
    height: 420px;
    z-index: 1;
    opacity: 0.85;
    transform: translate(-50%, -50%) translateX(160px);
}

.carousel-card:hover {
    z-index: 12;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.carousel-card.card-1:hover {
    transform: translate(-50%, -50%) translateX(-160px) scale(1.05);
}

.carousel-card.card-2:hover {
    transform: translate(-50%, -50%) translateX(-80px) scale(1.05);
}

.carousel-card.card-center:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.carousel-card.card-4:hover {
    transform: translate(-50%, -50%) translateX(80px) scale(1.05);
}

.carousel-card.card-5:hover {
    transform: translate(-50%, -50%) translateX(160px) scale(1.05);
}

.card-carousel.dragging .carousel-card {
    transition: none;
}

.carousel-card {
    cursor: grab;
    user-select: none;
}

.carousel-card:active {
    cursor: grabbing;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 25px;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot:hover {
    background-color: var(--text-muted);
}

.carousel-dots .dot.active {
    background-color: var(--primary-gold);
    width: 24px;
    border-radius: 4px;
}

/* Legacy 4-card stack layout */
.card-stack .hero-card.card-1 {
    left: 5%;
    top: 30%;
    transform: rotate(-8deg);
    z-index: 1;
}

.card-stack .hero-card.card-2 {
    left: 25%;
    top: 10%;
    transform: rotate(-3deg);
    z-index: 2;
    width: 220px;
    height: 300px;
}

.card-stack .hero-card.card-3 {
    left: 48%;
    top: 5%;
    transform: rotate(2deg);
    z-index: 3;
    width: 230px;
    height: 320px;
}

.card-stack .hero-card.card-4 {
    right: 5%;
    top: 20%;
    transform: rotate(6deg);
    z-index: 2;
}

.hero-card:hover {
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

/* Carousel Responsive */
@media (max-width: 991.98px) {
    .card-carousel {
        height: 460px;
    }
    
    .carousel-card.card-1 {
        width: 140px;
        height: 390px;
        transform: translate(-50%, -50%) translateX(-140px);
    }
    
    .carousel-card.card-2 {
        width: 155px;
        height: 400px;
        transform: translate(-50%, -50%) translateX(-70px);
    }
    
    .carousel-card.card-center {
        width: 210px;
        height: 420px;
    }
    
    .carousel-card.card-4 {
        width: 155px;
        height: 400px;
        transform: translate(-50%, -50%) translateX(70px);
    }
    
    .carousel-card.card-5 {
        width: 140px;
        height: 390px;
        transform: translate(-50%, -50%) translateX(140px);
    }
}

@media (max-width: 767.98px) {
    .policies-hero-cards {
        margin-top: 40px;
    }
    
    .card-carousel {
        height: 420px;
    }
    
    .carousel-card.card-1 {
        width: 110px;
        height: 350px;
        transform: translate(-50%, -50%) translateX(-120px);
    }
    
    .carousel-card.card-2 {
        width: 125px;
        height: 360px;
        transform: translate(-50%, -50%) translateX(-60px);
    }
    
    .carousel-card.card-center {
        width: 170px;
        height: 380px;
    }
    
    .carousel-card.card-4 {
        width: 125px;
        height: 360px;
        transform: translate(-50%, -50%) translateX(60px);
    }
    
    .carousel-card.card-5 {
        width: 110px;
        height: 350px;
        transform: translate(-50%, -50%) translateX(120px);
    }
    
    .carousel-card .card-label {
        font-size: 10px;
        padding: 6px 12px;
    }
}

@media (max-width: 575.98px) {
    .policies-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .card-carousel {
        height: 360px;
    }
    
    .carousel-card {
        width: 85px;
        height: 150px;
    }
    
    .carousel-card.card-center {
        width: 130px;
        height: 330px;
    }
    
    .carousel-card.card-1 {
        left: 5%;
        width: 85px;
        height: 300px;
        transform: translate(-50%, -50%) translateX(-100px);
    }
    
    .carousel-card.card-2 {
        left: 28%;
        width: 95px;
        height: 310px;
        transform: translate(-50%, -50%) translateX(-50px);
    }
    
    .carousel-card.card-4 {
        right: 28%;
        width: 95px;
        height: 310px;
        transform: translate(-50%, -50%) translateX(50px);
    }
    
    .carousel-card.card-5 {
        right: 5%;
        width: 85px;
        height: 300px;
        transform: translate(-50%, -50%) translateX(100px);
    }
    
    .carousel-card .card-label {
        font-size: 9px;
        padding: 5px 10px;
        bottom: 10px;
    }
    
    .carousel-dots .dot {
        width: 6px;
        height: 6px;
    }
    
    .carousel-dots .dot.active {
        width: 18px;
    }
}

/* ============================================
   POLICIES CONTENT SECTION
   ============================================ */
.policies-content {
    padding: 60px 0 100px;
    background-color: var(--bg-cream);
}

.policies-section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

/* ============================================
   POLICY CATEGORY HEADERS
   ============================================ */
.policy-category {
    margin-bottom: 40px;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.category-line {
    flex: 1;
    max-width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.category-title {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
    white-space: nowrap;
}

/* ============================================
   POLICY ACCORDION STYLES
   ============================================ */
.policy-accordion-item {
    background-color: var(--white);
    border: 1px solid var(--border-color) !important;
    border-radius: 15px !important;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.policy-accordion-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.policy-accordion-item .accordion-button {
    background-color: transparent;
    padding: 20px 25px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    box-shadow: none !important;
    gap: 15px;
}

.policy-accordion-item .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--text-dark);
}

.policy-accordion-item .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C4993D'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 18px;
    height: 18px;
}

.policy-accordion-item .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C4993D'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.policy-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(196, 61, 61, 0.1);
    border-radius: 10px;
    color: var(--primary-maroon-dark);
    font-size: 18px;
}

.policy-title {
    flex: 1;
}

.policy-accordion-item .accordion-body {
    padding: 0 25px 25px 80px;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.policy-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
}

.policy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.policy-note {
    font-size: 14px;
    color: var(--primary-gold);
    margin: 0;
    font-style: italic;
}

/* ============================================
   POLICIES PAGE RESPONSIVE STYLES
   ============================================ */
@media (max-width: 991.98px) {
    .policies-hero {
        padding: 100px 0 40px;
    }

    .policies-hero-title {
        font-size: 2.5rem;
    }

    .policies-hero-cards {
        height: 350px;
        margin-top: 40px;
    }

    .card-stack {
        height: 300px;
    }

    .hero-card {
        width: 150px;
        height: 210px;
    }

    .hero-card.card-2 {
        width: 170px;
        height: 230px;
    }

    .hero-card.card-3 {
        width: 180px;
        height: 250px;
    }

    .hero-card .card-label {
        font-size: 9px;
        padding: 5px 10px;
    }

    .policies-hero .row {
        flex-direction: column;
    }

    .policies-hero .col-lg-5,
    .policies-hero .col-lg-7 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .policies-carousel-container {
        margin-top: 50px;
        height: auto;
    }

    .policies-carousel {
        width: 460px;
        height: 360px;
        transform: translateX(10px);
    }

    .carousel-slide {
        width: 140px;
        height: 230px;
    }

    .carousel-slide.pos-1 {
        left: 0;
        top: 60px;
        width: 140px;
        height: 230px;
    }

    .carousel-slide.pos-2 {
        left: 55px;
        top: 30px;
        width: 160px;
        height: 270px;
    }

    .carousel-slide.pos-3 {
        left: 120px;
        top: 0;
        width: 200px;
        height: 300px;
    }

    .carousel-slide.pos-4 {
        left: 235px;
        top: 30px;
        width: 160px;
        height: 270px;
    }

    .carousel-slide.pos-5 {
        left: 320px;
        top: 60px;
        width: 140px;
        height: 230px;
    }
}

@media (max-width: 767.98px) {
    .policies-hero {
        padding: 120px 0 60px;
        padding-top: var(--nav-clearance-mobile);
    }

    .policies-hero-title {
        font-size: 2rem;
    }

    .policies-section-title {
        font-size: 1.8rem;
    }

    .policies-hero-cards {
        height: 300px;
    }

    .card-stack {
        height: 250px;
    }

    .hero-card {
        width: 120px;
        height: 170px;
    }

    .hero-card.card-2 {
        width: 140px;
        height: 190px;
    }

    .hero-card.card-3 {
        width: 150px;
        height: 210px;
    }

    .hero-card.card-1 {
        left: 0%;
    }

    .hero-card.card-4 {
        right: 0%;
    }

    .category-line {
        max-width: 80px;
    }

    .category-title {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .policy-accordion-item .accordion-button {
        padding: 15px 20px;
        font-size: 14px;
    }

    .policy-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .policy-accordion-item .accordion-body {
        padding: 0 20px 20px 70px;
    }

    .policy-list li {
        font-size: 13px;
    }
}

@media (max-width: 575.98px) {
    .policies-hero-title {
        font-size: 1.75rem;
    }

    .policies-hero-cards {
        height: 280px;
    }

    .card-stack {
        height: 230px;
    }

    .hero-card {
        width: 100px;
        height: 150px;
    }

    .hero-card.card-2 {
        width: 120px;
        height: 170px;
    }

    .hero-card.card-3 {
        width: 130px;
        height: 180px;
    }

    .hero-card .card-label {
        font-size: 8px;
        padding: 4px 8px;
    }

    .policy-accordion-item .accordion-body {
        padding: 0 15px 20px 15px;
    }
}

/* ============================================
   POLICIES PAGE ANIMATIONS
   ============================================ */
@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-card.card-3 {
    animation: cardFloat 4s ease-in-out infinite;
}

.hero-card.card-2 {
    animation: cardFloat 4s ease-in-out 0.5s infinite;
}

.hero-card.card-1 {
    animation: cardFloat 4s ease-in-out 1s infinite;
}

.hero-card.card-4 {
    animation: cardFloat 4s ease-in-out 1.5s infinite;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* About Hero Section */
.about-hero {
    position: relative;
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: visible;
    margin-top: var(--nav-clearance-desktop);
}

.about-hero-image {
    position: relative;
    width: 100%;
    background-color: var(--bg-cream);
}

.about-hero-image img {
    width: 100%;
    display: block;
    height: auto;
}

.about-hero-cta {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.btn-book-now-lg {
    background-color: var(--primary-gold);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(196, 153, 61, 0.4);
    transition: all 0.3s ease;
}

.btn-book-now-lg:hover {
    background-color: var(--primary-gold-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(196, 153, 61, 0.5);
}

.about-hero-note {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 12px;
    font-style: italic;
}

/* Mission Section */
.mission-section {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, var(--bg-cream) 0%, rgba(196, 153, 61, 0.05) 100%);
    text-align: center;
}

.mission-header {
    margin-bottom: 40px;
}

.mission-logo-accent {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.mission-logo {
    height: 40px;
    opacity: 0.7;
}

.mission-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.mission-subtitle {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--primary-maroon-dark);
    font-style: italic;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-content p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.mission-content p:last-child {
    margin-bottom: 0;
}

/* Vision Section */
.vision-section {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, rgba(196, 153, 61, 0.05) 0%, var(--bg-cream) 100%);
    text-align: center;
}

.vision-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.divider-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.divider-swirl {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-gold);
    font-style: italic;
    line-height: 1;
}

.vision-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.vision-subtitle {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-style: italic;
}

.vision-content {
    max-width: 700px;
    margin: 0 auto;
}

.vision-content p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-muted);
}

.vision-end-swirl {
    margin-top: 40px;
    opacity: 0.8;
}

.end-swirl {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-gold);
    font-style: italic;
    line-height: 1;
}

/* About Footer */
.about-footer {
    background-color: transparent;
    padding: 30px 0;
}

.about-footer .copyright {
    color: var(--text-muted);
    font-style: italic;
}

/* About Page Responsive Styles */
@media (max-width: 991.98px) {
    .about-hero {
        height: auto;
        min-height: 0;
        max-height: none;
    }
    
    .mission-title,
    .vision-title {
        font-size: 2.5rem;
    }
    
    .mission-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 767.98px) {
    .about-hero {
        margin-top: var(--nav-clearance-mobile);
    }
    
    .about-hero-cta {
        bottom: 30px;
    }
    
    .btn-book-now-lg {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .mission-section {
        padding: 60px 0 40px;
    }
    
    .mission-title,
    .vision-title {
        font-size: 2rem;
    }
    
    .mission-subtitle {
        font-size: 1.1rem;
    }
    
    .vision-subtitle {
        font-size: 1rem;
    }
    
    .mission-content p,
    .vision-content p {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .divider-line {
        width: 60px;
    }
}

@media (max-width: 575.98px) {
    .about-hero {
        height: auto;
        min-height: 0;
        max-height: none;
    }
    
    .mission-title,
    .vision-title {
        font-size: 1.75rem;
    }
    
    .mission-subtitle {
        font-size: 1rem;
    }
}

/* ============================================
   BOOKING PAGE STYLES
   ============================================ */

/* Booking Hero */
.booking-hero {
    padding: 140px 0 40px;
    padding-top: var(--nav-clearance-desktop);
    background: linear-gradient(180deg, var(--bg-cream) 0%, rgba(196, 153, 61, 0.08) 100%);
    text-align: center;
}

.booking-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.booking-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.booking-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-item {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 400;
}

.feature-item i {
    color: var(--primary-gold);
    margin-right: 5px;
}

.feature-divider {
    color: var(--text-muted);
}

/* Booking Form Section */
.booking-form-section {
    padding: 40px 0 60px;
    background: linear-gradient(180deg, rgba(196, 153, 61, 0.08) 0%, var(--bg-cream) 50%, rgba(196, 153, 61, 0.05) 100%);
}

/* Step Indicator */
.step-indicator {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 30px;
    padding: 0 20px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--white);
}

.step.completed .step-number {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--white);
}

.step-label {
    font-size: 12px;
    color: var(--text-muted);
    max-width: 100px;
    transition: all 0.3s ease;
}

.step.active .step-label {
    color: var(--primary-gold);
    font-weight: 500;
}

.step-line {
    width: 60px;
    height: 2px;
    background-color: var(--border-color);
    margin-top: 20px;
    margin-left: 10px;
    margin-right: 10px;
}

/* Booking Form Card */
.booking-form-card {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.form-group {
    margin-bottom: 25px;
}

.form-label-custom {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-select-custom,
.form-control-custom {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-dark);
    background-color: var(--white);
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
}

.form-select-custom {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236B6B6B'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
    padding-right: 45px;
}

.form-select-custom:focus,
.form-control-custom:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(196, 153, 61, 0.15);
}

.form-hint {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
    margin-bottom: 0;
}

.form-hint.optional {
    color: var(--primary-gold);
}

textarea.form-control-custom {
    resize: vertical;
    min-height: 100px;
}

/* Next Step Button */
.btn-next-step {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.btn-next-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196, 153, 61, 0.4);
}

.btn-prev-step {
    padding: 16px 30px;
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-prev-step:hover {
    border-color: var(--text-dark);
    background-color: var(--text-dark);
    color: var(--white);
}

.step-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.step-buttons .btn-next-step {
    flex: 1;
    margin-bottom: 0;
}

.secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.secure-note i {
    color: var(--primary-gold);
}

/* Stylist Card */
.stylist-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    margin-top: 70px;
}

.stylist-image {
    position: relative;
}

.stylist-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.stylist-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    text-align: center;
}

.stylist-logo {
    height: 35px;
    filter: brightness(0) invert(1);
    margin-bottom: 10px;
}

.stylist-rating {
    color: var(--white);
    font-size: 14px;
    margin: 0;
    letter-spacing: 1px;
}

/* Questions Section */
.questions-section {
    padding: 60px 0;
    background-color: var(--bg-cream);
}

.questions-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.questions-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.questions-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Booking Footer */
.booking-footer {
    background-color: transparent;
    padding: 30px 0;
}

.booking-footer .copyright {
    color: var(--text-muted);
    font-style: italic;
}

/* Booking Page Responsive Styles */
@media (max-width: 991.98px) {
    .booking-title {
        font-size: 2.5rem;
    }
    
    .stylist-card {
        margin-top: 40px;
    }
    
    .stylist-image img {
        height: 400px;
    }
}

@media (max-width: 767.98px) {
    .booking-hero {
        padding: 120px 0 30px;
        padding-top: var(--nav-clearance-mobile);
    }
    
    .booking-title {
        font-size: 2rem;
    }
    
    .booking-subtitle {
        font-size: 1rem;
    }
    
    .step-indicator {
        padding: 0 10px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .step-label {
        font-size: 10px;
        max-width: 80px;
    }
    
    .step-line {
        width: 40px;
    }
    
    .booking-form-card {
        padding: 25px;
    }
    
    .stylist-card {
        margin-top: 30px;
    }
    
    .stylist-image img {
        height: 350px;
    }
    
    .questions-title {
        font-size: 1.8rem;
    }
    
    .step-buttons {
        flex-direction: column;
    }
    
    .btn-prev-step {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .booking-title {
        font-size: 1.75rem;
    }
    
    .booking-features {
        flex-direction: column;
        gap: 5px;
    }
    
    .feature-divider {
        display: none;
    }
    
    .step-line {
        width: 25px;
    }
    
    .step-label {
        font-size: 9px;
        max-width: 70px;
    }
    
    .btn-next-step {
        padding: 14px 25px;
        font-size: 15px;
    }
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

/* Services Hero */
.services-hero {
    padding: 140px 0 60px;
    padding-top: var(--nav-clearance-desktop);
    background: linear-gradient(180deg, var(--bg-cream) 0%, rgba(196, 153, 61, 0.08) 100%);
    text-align: center;
}

.services-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 500;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.services-subtitle {
    font-size: 1rem;
    color: var(--primary-maroon-dark);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

/* Services Grid Section */
.services-grid-section {
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(196, 153, 61, 0.08) 0%, var(--bg-cream) 50%, rgba(196, 153, 61, 0.05) 100%);
}

/* Service Card */
.service-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.8);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex: 1;
}

.service-list li {
    font-size: 14px;
    color: var(--text-muted);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.service-list li:last-child {
    border-bottom: none;
}

.btn-service-book {
    background-color: var(--primary-maroon-dark);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-service-book:hover {
    background-color: var(--primary-gold-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* Book CTA Section */
.book-cta-section {
    padding: 80px 0;
    background: url('../images/cta-bg.jpg') center center / cover no-repeat;
    position: relative;
}

.book-cta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--white);
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.book-cta-phone {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 25px;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.book-cta-phone:hover {
    color: var(--primary-gold-dark);
}

.book-cta-buttons {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.book-cta-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.book-cta-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.cta-icon:hover {
    background-color: var(--primary-gold);
    color: var(--white);
    transform: translateY(-3px);
}

.cta-divider {
    color: var(--text-muted);
    font-size: 1.5rem;
}

/* Services Footer */
.services-footer {
    background-color: var(--primary-maroon);
}

.services-footer .footer-logo {
    filter: brightness(0) invert(1);
}

.footer-address {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-hours {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li a:hover {
    color: var(--primary-gold);
}

.services-footer .copyright a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.services-footer .copyright a:hover {
    color: var(--primary-gold);
}

/* Services Page Responsive Styles */
@media (max-width: 991.98px) {
    .services-title {
        font-size: 2.5rem;
    }
    
    .book-cta-title {
        font-size: 2rem;
    }
    
    .book-cta-phone {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .services-hero {
        padding: 120px 0 40px;
        padding-top: var(--nav-clearance-mobile);
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .services-subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
    }
    
    .services-grid-section {
        padding: 40px 0;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .book-cta-section {
        padding: 60px 0;
    }
    
    .book-cta-title {
        font-size: 1.8rem;
    }
    
    .book-cta-phone {
        font-size: 1.3rem;
    }
}

@media (max-width: 575.98px) {
    .services-title {
        font-size: 1.75rem;
    }
    
    .service-card-title {
        font-size: 1.3rem;
    }
    
    .service-list li {
        font-size: 13px;
    }
}

/* ============================================
   FAQ PAGE STYLES
   ============================================ */

/* FAQ Hero */
.faq-hero {
    padding: 140px 0 60px;
    padding-top: var(--nav-clearance-desktop);
    text-align: center;
}

.faq-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: var(--primary-maroon-dark);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.8;
}

/* FAQ Content Section */
.faq-content-section {
    padding: 60px 0 80px;
}

/* FAQ Accordion Styles */
.faq-accordion-item {
    background-color: var(--white);
    border: 1px solid var(--border-color) !important;
    border-radius: 12px !important;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-accordion-item .accordion-button {
    background-color: transparent;
    padding: 22px 25px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-maroon-dark);
    box-shadow: none !important;
}

.faq-accordion-item .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--primary-maroon-dark);
}

.faq-accordion-item .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C4993D'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 18px;
    height: 18px;
}

.faq-accordion-item .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C4993D'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion-item .accordion-body {
    padding: 0 25px 25px 25px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Still Have Questions Section */
.still-questions-section {
    padding: 80px 0;
    background-color: var(--bg-cream);
}

.still-questions-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.still-questions-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.still-questions-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.still-questions-buttons .btn i {
    margin-right: 8px;
}

/* FAQ Page Responsive Styles */
@media (max-width: 991.98px) {
    .faq-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .faq-hero {
        padding: 120px 0 40px;
        padding-top: var(--nav-clearance-mobile);
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .faq-content-section {
        padding: 40px 0 60px;
    }
    
    .faq-accordion-item .accordion-button {
        padding: 18px 20px;
        font-size: 15px;
    }
    
    .faq-accordion-item .accordion-body {
        padding: 0 20px 20px 20px;
        font-size: 14px;
    }
    
    .still-questions-section {
        padding: 60px 0;
    }
    
    .still-questions-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 575.98px) {
    .faq-title {
        font-size: 1.75rem;
    }
    
    .faq-accordion-item .accordion-button {
        padding: 15px 18px;
        font-size: 14px;
    }
    
    .still-questions-buttons {
        flex-direction: column;
    }
    
    .still-questions-buttons .btn {
        width: 100%;
    }
}

/* ============================================
   UNIFIED PAGE BACKGROUND
   Uses the Services page base background for all pages,
   and removes section-by-section background fills.
   ============================================ */

/* Services page base background (already used on body, repeated for clarity) */
body {
    background-color: var(--bg-cream);
}

/* Make these sections inherit the global page background */


/* Remove the About section decorative glow overlay so the section doesn't look like a different background */


/* SEO text: visible to bots + screen readers, hidden visually */
.seo-visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.visually-hidden {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}

/* ============================================
   PRODUCTS PAGE STYLES
   ============================================ */

/* Products Hero Section */
.products-hero {
    background-color: var(--bg-cream);
    padding: 80px 20px;
    padding-top: max(120px, var(--nav-clearance-desktop));
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.products-title {
    font-size: 3rem;
    color: var(--primary-maroon);
    margin-bottom: 20px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.products-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Products Section */
.products-section {
    padding: 60px 20px;
    padding-top: max(80px, var(--nav-clearance-desktop));
    background-color: var(--bg-cream);
}

/* Product Card */
.product-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(122, 30, 43, 0.15);
}

/* Product Thumbnail */
.product-thumbnail {
    width: 100%;
    height: 300px;
    object-fit: cover;
    overflow: hidden;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

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

/* Product Placeholder Classes */
.product-placeholder-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.product-placeholder-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
}

.product-placeholder-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) !important;
}

.product-placeholder-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%) !important;
}

.product-placeholder-5 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%) !important;
}

.product-placeholder-6 {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%) !important;
}

.product-placeholder-text {
    color: white;
    font-size: 18px;
    text-align: center;
    padding: 20px;
    font-weight: 600;
}

.product-placeholder-6 .product-placeholder-text {
    color: #333 !important;
}

/* Product Content */
.product-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: var(--font-body);
    font-weight: 600;
}

.product-title a,
.product-card .product-title a {
    color: #5A3A2A !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.product-title a:hover,
.product-card .product-title a:hover {
    color: var(--primary-gold) !important;
    text-decoration: none !important;
}

/* Product Excerpt */
.product-excerpt {
    flex-grow: 1;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-family: var(--font-body);
}

.product-excerpt p {
    margin: 0;
}

/* Product Link / Button */
.product-link,
.product-card .product-link,
.product-btn {
    color: var(--primary-maroon-dark) !important;
    text-decoration: none !important;
    font-weight: 600;
    padding: 0;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    background-color: transparent !important;
}

.product-link:hover,
.product-card .product-link:hover,
.product-btn:hover {
    color: var(--primary-gold) !important;
    text-decoration: none !important;
    transform: translateX(5px);
}

.product-link i,
.product-card .product-link i,
.product-btn i {
    font-size: 0.8rem;
}

/* Product Meta */
.product-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-family: var(--font-body);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .products-title {
        font-size: 2rem;
    }

    .products-subtitle {
        font-size: 1rem;
    }

    .product-thumbnail {
        height: 250px;
    }

    .product-placeholder-text {
        font-size: 16px;
    }
}

/* ============================================
   CATEGORY FILTER STYLES
   ============================================ */

.category-filter-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    padding: 20px 0;
}

.category-filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.filter-btn {
    background-color: transparent;
    color: var(--primary-maroon-dark);
    border: 2px solid var(--primary-maroon-dark);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.filter-btn:hover {
    background-color: var(--primary-maroon-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.filter-btn.active {
    background-color: var(--primary-maroon-dark);
    color: var(--white);
}

.product-item {
    transition: all 0.3s ease;
}

.product-item.hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .category-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
}

/* ============================================
   BLOG DETAILS PAGE STYLES
   ============================================ */

/* Blog Detail Section */
.blog-detail-section {
    padding: 60px 20px;
    padding-top: max(80px, var(--nav-clearance-desktop));
    background-color: var(--bg-cream);
}

/* Blog Sidebar Alignment */
.blog-detail-section .col-lg-4 {
    padding-top: 40px;
}

/* Blog Detail Article */
.blog-detail {
    padding: 40px;
}

/* Category Badge */
.blog-category-badge {
    margin-bottom: 20px;
}

.badge-label {
    display: inline-block;
    padding: 6px 14px;
    background-color: var(--primary-maroon-dark);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: capitalize;
}

/* Blog Detail Featured Image */
.blog-detail-featured {
    margin: 40px 0;
    overflow: hidden;
    border-radius: 15px;
    height: 350px;
}

.blog-detail-featured img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Blog Video Section */
.blog-video-section {
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
}

.video-container .video-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* Multiple Videos Container */
.blog-videos-all {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Blog Detail Header */
.blog-detail-header {
    margin-bottom: 40px;
    padding-bottom: 25px;
}

.blog-detail-title {
    font-size: 3rem;
    color: #5A3A2A;
    font-family: var(--font-body);
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-detail-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0;
}

.blog-meta-date,
.blog-meta-author,
.blog-meta-category {
    font-size: 14px;
    color: #666;
}

.blog-meta-date {
    font-weight: 500;
    color: var(--primary-maroon-dark);
}

/* Share Post Section */
.share-post {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.share-post strong {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--primary-maroon-dark);
    white-space: nowrap;
}

.social-share-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-maroon-dark);
    border-radius: 50%;
    color: var(--primary-maroon-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.share-icon:hover {
    background-color: var(--primary-maroon-dark);
    color: white;
    transform: translateY(-2px);
}

/* Blog Detail Content */
.blog-detail-content {
    font-size: 1rem;
    line-height: 1.9;
    color: #5A3A2A !important;
    margin-bottom: 40px;
    font-family: var(--font-body);
}

.blog-detail-content p {
    margin-bottom: 20px;
}

.blog-detail-content h2,
.blog-detail-content h3 {
    color: #5A3A2A;
    font-family: var(--font-body);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.blog-detail-content h3 {
    font-size: 1.2rem;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin-bottom: 20px;
    margin-left: 20px;
}

.blog-detail-content li {
    margin-bottom: 10px;
}

.blog-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 25px 0;
}

/* Blog Product Promo Section */
.blog-product-promo-section {
    margin: 50px 0 40px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(196, 153, 61, 0.05) 0%, rgba(196, 153, 61, 0.02) 100%);
    border: 1px solid var(--border-color);
    border-radius: 15px;
}

.product-promo-title {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.product-promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.promo-product-card {
    background-color: var(--bg-cream);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-shadow: none;
    align-items: stretch;
}

.promo-product-card:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.promo-product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #f9f9f9;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 0;
}

.promo-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.promo-product-card:hover .promo-product-image img {
    transform: none;
}

.promo-product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 1;
    text-align: center;
}

.promo-product-name {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
    text-align: center;
}

.promo-product-description {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
    text-align: left;
}

.promo-product-description p {
    margin: 0;
    text-align: inherit;
}

.promo-product-description p:last-child {
    margin-bottom: 0;
}

.promo-product-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
    width: 100%;
}

.promo-product-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: #9D735c;
    color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    border: none;
}

.promo-product-button:hover {
    background-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 79, 79, 0.2);
}

.promo-product-button i {
    font-size: 0.75rem;
}

/* Blog Detail Footer */
.blog-detail-footer {
    padding-top: 25px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.blog-tags,
.tags-list {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tags-list strong {
    font-weight: 600;
    color: var(--primary-maroon-dark);
}

.tag-badge {
    display: inline-block;
    background-color: #f5f5f5;
    color: var(--primary-maroon-dark);
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tag-badge:hover {
    background-color: var(--primary-maroon-dark);
    color: var(--white);
}

.tag-badge a {
    color: inherit !important;
    text-decoration: none !important;
}

/* Post Navigation */
.blog-post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin: 40px 0;
    padding: 25px 0;
    flex-wrap: wrap;
}

.nav-link {
    color: #5A3A2A !important;
    font-weight: 600;
    text-decoration: none !important;
    padding: 10px 20px;
    border: 1px solid var(--primary-maroon-dark);
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover {
    background-color: #5A3A2A;
    color: var(--white) !important;
    transform: translateY(-2px);
}

/* ===== COMMENTS SECTION ===== */
.recent-comments-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 15px;
}

.comment-item {
    display: flex;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.comment-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.comment-author-avatar {
    flex-shrink: 0;
}

.comment-avatar {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
}

.comment-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.comment-author {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-maroon-dark);
    margin: 0;
}

.comment-text {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

.comment-date {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    color: var(--primary-gold);
}

.sidebar-comment-form {
    padding-top: 15px;
}

.comment-form-field {
    margin-bottom: 12px;
}

.comment-form-field input,
.comment-form-field textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #333;
}

.comment-form-field input::placeholder,
.comment-form-field textarea::placeholder {
    color: #999;
}

.comment-form-field input:focus,
.comment-form-field textarea:focus {
    outline: none;
    border-color: var(--primary-maroon-dark);
    box-shadow: 0 0 0 2px rgba(122, 30, 43, 0.1);
}

.comment-form-field textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-comment {
    transition: all 0.3s ease;
}

.submit-comment:hover {
    background-color: #5a3d3d !important;
    transform: translateY(-2px);
}

/* ===== SIDEBAR STYLES ===== */
.sidebar-box {
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

.sidebar-title {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-maroon-dark);
    margin-bottom: 20px;
    font-size: 18px;
}

/* The Journal Box */
.journal-box .journal-content {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.journal-box p {
    margin-bottom: 20px;
}

.btn-book-now {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: var(--primary-maroon-dark);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-book-now:hover {
    background-color: #5a3d3d;
    transform: translateY(-2px);
}

/* Recent Posts */
.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post-image {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
}

.recent-post-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.recent-post-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-maroon-dark);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.recent-post-title:hover {
    color: var(--primary-gold);
}

.recent-post-date {
    font-size: 12px;
    color: var(--primary-maroon-dark);
    font-family: var(--font-body);
}

/* Categories */
.categories-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-link {
    display: inline-block;
    padding: 6px 14px;
    background-color: transparent;
    color: var(--primary-maroon-dark);
    border: 1px solid var(--primary-maroon-dark);
    border-radius: 20px;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-family: var(--font-body);
}

.category-link:hover {
    background-color: var(--primary-maroon-dark);
    color: white;
}

/* Follow Us */
.social-follow-icons {
    display: flex;
    gap: 15px;
}

.follow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-maroon-dark);
    border-radius: 50%;
    color: var(--primary-maroon-dark);
    text-decoration: none;
    font-size: 22px;
    transition: all 0.3s ease;
}

.follow-icon:hover {
    background-color: var(--primary-maroon-dark);
    color: white;
    transform: translateY(-3px);
}

/* Appointment CTA */
.btn-appointment {
    display: block;
    width: 100%;
    padding: 16px;
    background-color: var(--primary-maroon-dark);
    color: white;
    border: none;
    border-radius: 25px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}


/* Responsive */
@media (max-width: 991px) {
    .blog-detail {
        padding: 30px;
    }

    .blog-detail-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-detail {
        padding: 25px;
    }

    .blog-detail-featured {
        margin: 0 -25px 30px -25px;
        border-radius: 15px;
        height: auto;
    }

    .blog-detail-featured img {
        height: auto;
    }

    .blog-video-section {
        margin: 30px -25px;
        border-radius: 15px;
    }

    .blog-detail-title {
        font-size: 1.6rem;
    }

    .blog-detail-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .share-post {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-post-navigation {
        flex-direction: column;
    }

    .nav-link {
        width: 100%;
        justify-content: center;
    }

    .blog-product-promo-section {
        margin: 40px -25px 30px -25px;
        padding: 25px;
        border-radius: 12px;
    }

    .product-promo-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .product-promo-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .promo-product-card {
        flex-direction: column;
        padding: 0;
        gap: 0;
        border-radius: 16px;
    }

    .promo-product-image {
        width: 100%;
        aspect-ratio: 1 / 1;
    }

    .promo-product-info {
        padding: 16px;
    }

    .promo-product-name {
        font-size: 1rem;
    }

    .promo-product-name {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .promo-product-button {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .sidebar-box {
        padding: 20px;
    }

    .recent-post-image {
        width: 60px;
        height: 60px;
    }
}


