﻿/* ===== HEADER STYLES ===== */
body {
    padding-top: 0;
}

.header {
    background-color: var(--white);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

/* ===== LOGO ===== */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    gap: 15px; /* Khoáº£ng cÃ¡ch giá»¯a logo vÃ  text */
}

.logo-img {
    height: 60px; /* TÄƒng nháº¹ kÃ­ch thÆ°á»›c logo Ä‘á»ƒ dá»… cÄƒn chá»‰nh text */
    width: auto;
    display: block;
    transition: var(--transition);
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(0, 0, 0, 0.1); /* Má»™t Ä‘Æ°á»ng káº» má» ngÄƒn cÃ¡ch */
    padding-left: 15px;
}

.text-line-1 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-line-2 {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    color: #888;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

/* ===== NAVIGATION MENU ===== */
.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-list li {
    position: relative;
}

.nav-list li a {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-heading) !important; /* Playfair Display - Forced */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 0;
    display: block;
    transition: var(--transition);
}

.nav-list li a:hover {
    color: var(--primary-gold);
}

.nav-list li.current-menu-item a,
.nav-list li.current_page_item a {
    color: var(--primary-gold);
}

/* ===== HEADER CTA ===== */
.header-cta {
    margin-left: 20px;
}

.header-cta .btn-primary {
    padding: 10px 24px;
    font-size: 14px;
    border-radius: 50px; /* Pill shape */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-cta .btn-primary i {
    font-size: 18px;
    margin-right: 5px;
}

/* ===== MOBILE MENU TOGGLE ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin-left: 15px;
    position: relative;
    z-index: 1002;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background-color: var(--primary-gold);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background-color: var(--primary-gold);
}

/* ===== OFFCANVAS OVERLAY ===== */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .nav-list {
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -320px; /* Slide-out sidebar */
        width: 300px;
        height: 100vh;
        background-color: var(--white);
        z-index: 1001;
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        padding: 80px 30px 40px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        transform: translateX(-320px);
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-bottom: 15px;
    }

    .nav-link {
        font-size: 18px;
        padding: 5px 0;
    }

    .header-cta {
        display: none; /* Can be moved inside the sidebar if needed */
    }

    /* Logo Text Adjustments for Tablet */
    .logo-img {
        height: 50px;
    }
    .text-line-1 {
        font-size: 16px;
    }
    .text-line-2 {
        font-size: 10px;
    }
    .logo-link {
        gap: 10px;
    }
    .logo-text-group {
        padding-left: 10px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 40px;
    }
    
    .nav-menu {
        width: 100%; /* Full screen on small mobile */
        right: -100%;
    }
    
    .nav-menu.active {
        transform: translateX(-100%);
    }

    /* Logo Text Adjustments for Mobile */
    .logo-img {
        height: 40px;
    }
    .text-line-1 {
        font-size: 14px;
        letter-spacing: 0.5px;
    }
    .text-line-2 {
        display: none; /* Hide subtitle on very small screens */
    }
    .logo-link {
        gap: 8px;
    }
    .logo-text-group {
        padding-left: 8px;
    }
}
/* ===== HERO SECTION STYLES ===== */

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/hero-background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    transition: background-image 1.5s ease-in-out;
}

.hero-slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}

.hero-slider-bg.fade-in {
    opacity: 1;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    background: var(--hero-overlay, linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(26, 26, 26, 0.6) 100%));
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    width: 100%;
    padding: 40px 20px;
}

/* Hero Title */
.hero-title {
    font-family: var(--font-heading);
    font-size: 85px;
    font-weight: 700;
    margin-bottom: 35px;
    text-transform: none;
    letter-spacing: 1px;
    line-height: 1.1;
    
    /* Luxury Gold Gradient */
    background: linear-gradient(
        to right, 
        #BF953F 0%, 
        #FCF6BA 25%, 
        #B38728 50%, 
        #FBF5B7 75%, 
        #AA771C 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Subtle glow */
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    
    /* Animations */
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards, 
               goldShimmer 6s infinite linear;
}

span.luxury-color {
    background: linear-gradient(to right, #D4AF37, #F7EF8A, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

/* Hero Statistics */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    animation: fadeInUp 1.2s ease;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.stat-label {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.5);
}

/* Hero Search */
.hero-search {
    animation: fadeInUp 1.4s ease;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    background-color: var(--white);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.search-container:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.search-input {
    flex: 1;
    padding: 18px 30px;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: var(--font-body);
    color: var(--charcoal);
}

.search-input::placeholder {
    color: var(--text-light);
}

.search-btn {
    background-color: var(--primary-gold);
    border: none;
    padding: 18px 30px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.search-btn:hover {
    background-color: var(--primary-gold-dark);
}

.search-btn svg {
    stroke: var(--white);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeIn 2s ease;
    cursor: pointer;
}

.scroll-text {
    color: var(--white);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

.scroll-arrow svg {
    stroke: var(--white);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes goldShimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero {
        height: 80vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 40px;
        margin-bottom: 30px;
    }

    .hero-stats {
        gap: 20px;
        margin-bottom: 40px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    .stat-divider {
        height: 40px;
    }

    .search-input {
        padding: 15px 20px;
        font-size: 14px;
    }

    .search-btn {
        padding: 15px 20px;
    }

    .scroll-indicator {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 70vh;
        min-height: 450px;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .hero-stats {
        flex-direction: row;
        gap: 15px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 11px;
    }

    .stat-divider {
        height: 35px;
    }

    .search-container {
        max-width: 90%;
    }

    .search-input {
        padding: 12px 15px;
        font-size: 13px;
    }

    .search-btn {
        padding: 12px 15px;
    }

    .search-btn svg {
        width: 18px;
        height: 18px;
    }
}
/* ===== SERVICES SECTION STYLES ===== */

/* ===== SERVICES SECTION ===== */
.services {
    padding: 80px 0;
    background-color: var(--white);
}

/* Services Header */
.services-header {
    margin-bottom: 50px;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Service Filters */
.service-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.service-filters .filter-btn {
    background: transparent;
    border: 1px solid #e0e0e0;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-filters .filter-btn:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.service-filters .filter-btn.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #000;
    box-shadow: 0 4px 12px rgba(181, 143, 85, 0.3);
}

.services-grid.loading {
    opacity: 0.4;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Primary Button */
.btn-primary {
    background-color: var(--primary-gold);
    color: var(--white);
    border: none;
    padding: 14px 35px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background-color: var(--primary-gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-primary svg {
    stroke: var(--white);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Service Card */
.service-card {
    position: relative;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Service Image */
.service-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

/* Service Content Overlay */
.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    z-index: 10;
    transition: var(--transition);
}

.service-card:hover .service-content {
    padding-bottom: 30px;
}

.service-title {
    font-size: 19px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    flex: 1;
}

.service-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.service-title a:hover {
    color: var(--primary-gold);
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.btn-book {
    background-color: var(--primary-gold);
    color: #000;
    border: none;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    opacity: 0.9;
}

.btn-book:hover {
    background-color: var(--white);
    color: var(--primary-gold);
    opacity: 1;
}

/* Services Footer */
.services-footer {
    text-align: center;
}

.btn-view-all {
    background-color: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    padding: 14px 40px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-view-all:hover {
    background-color: var(--primary-gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-view-all svg {
    stroke: currentColor;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .services-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
    }

    .services-grid::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

    .service-card {
        flex: 0 0 40%; /* Hiá»ƒn thá»‹ 2.5 má»¥c */
        scroll-snap-align: start;
        opacity: 1; /* Hiá»ƒn thá»‹ ngay Ä‘á»ƒ trÃ¡nh lá»—i animation khi scroll */
        animation: none;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }

    .services-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .services-grid {
        grid-template-columns: none; /* Ghi Ä‘Ã¨ grid cÅ© */
        gap: 15px;
    }

    .service-card {
        flex: 0 0 85%; /* Hiá»ƒn thá»‹ ~1.1 má»¥c */
    }

    .service-image {
        height: 250px;
    }

    .service-content {
        padding: 40px 15px 15px;
    }

    .service-title {
        font-size: 16px;
    }

    .btn-book {
        padding: 6px 12px;
        font-size: 11px;
    }

    .btn-primary,
    .btn-view-all {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 14px;
    }

    .btn-primary {
        padding: 12px 28px;
        font-size: 14px;
    }

    .service-image {
        height: 200px;
    }

    .service-content {
        padding: 20px 15px;
    }

    .service-title {
        font-size: 16px;
    }

    .btn-book {
        padding: 8px 18px;
        font-size: 13px;
    }

    .btn-view-all {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* ===== ANIMATION ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }
.service-card:nth-child(8) { animation-delay: 0.8s; }
.service-card:nth-child(9) { animation-delay: 0.9s; }
/* ===== VARIABLES ===== */
:root {
    --primary-color: #8B6F47;
    --secondary-color: #D4A574;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --bg-light: #f9f9f9;
    --overlay-dark: rgba(0, 0, 0, 0.7);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== GALLERY & AMENITIES SECTION ===== */
.gallery-amenities {
    padding: 80px 0;
    background-color: var(--bg-light);
}

/* Gallery Header */
.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* Gallery Item */
.gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, var(--overlay-dark) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    color: var(--white);
}

.gallery-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-desc {
    font-size: 14px;
    opacity: 0.9;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Gallery Footer */
.gallery-footer {
    text-align: center;
}

.btn-view-gallery {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 14px 35px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-view-gallery:hover {
    background-color: #6d5436;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 111, 71, 0.3);
}

.btn-view-gallery svg {
    stroke: var(--white);
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 20px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .gallery-amenities {
        padding: 60px 0;
    }

    .gallery-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 15px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery-title {
        font-size: 16px;
    }

    .gallery-desc {
        font-size: 13px;
    }

    .gallery-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 20px;
        font-size: 13px;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
    }

    .lightbox-counter {
        bottom: 20px;
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .gallery-amenities {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 14px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(to bottom, transparent 50%, var(--overlay-dark) 100%);
    }

    .gallery-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-btn {
        width: 100%;
    }

    .btn-view-gallery {
        width: 100%;
        justify-content: center;
    }

    .lightbox-image {
        max-width: 95%;
        max-height: 80%;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

/* ===== ANIMATION ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-item {
    animation: fadeIn 0.5s ease forwards;
    opacity: 0;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }
/* ===== VARIABLES ===== */
:root {
    --primary-color: #8B6F47;
    --secondary-color: #D4A574;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --bg-light: #f9f9f9;
    --bg-beige: #f5f1ed;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== VIDEO SECTION ===== */
.video-section {
    padding: 80px 0;
    background-color: var(--white);
}

/* Video Header */
.video-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* Video Container */
.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background-color: #000;
}

.video-player {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
}

/* Video Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-btn {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.play-btn:hover {
    transform: scale(1.1);
    background-color: var(--white);
}

.play-btn svg {
    margin-left: 5px;
}

/* Video Badge */
.video-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 80px 0;
    background-color: var(--bg-beige);
}

/* Testimonials Header */
.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Testimonials Slider */
.testimonials-slider {
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

/* Testimonial Card */
.testimonial-card {
    min-width: 100%;
    background-color: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-content {
    position: relative;
}

.quote-icon {
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
}

/* Testimonial Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--secondary-color);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.author-label {
    font-size: 14px;
    color: var(--text-light);
}

/* Author Rating */
.author-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.rating-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.stars {
    display: flex;
    gap: 2px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.slider-btn:hover svg {
    stroke: var(--white);
}

.slider-btn svg {
    stroke: var(--primary-color);
    transition: var(--transition);
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(139, 111, 71, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .video-section,
    .testimonials {
        padding: 60px 0;
    }

    .video-header,
    .testimonials-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 15px;
    }

    .play-btn {
        width: 60px;
        height: 60px;
    }

    .play-btn svg {
        width: 40px;
        height: 40px;
    }

    .video-badge {
        top: 15px;
        left: 15px;
        font-size: 11px;
        padding: 6px 12px;
    }

    .testimonial-card {
        padding: 30px 25px;
        gap: 25px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
    }

    .author-name {
        font-size: 16px;
    }

    .author-label {
        font-size: 13px;
    }

    .rating-number {
        font-size: 18px;
    }

    .stars svg {
        width: 14px;
        height: 14px;
    }

    .slider-controls {
        margin-top: 30px;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .video-section,
    .testimonials {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 14px;
    }

    .play-btn {
        width: 50px;
        height: 50px;
    }

    .play-btn svg {
        width: 30px;
        height: 30px;
    }

    .video-badge {
        top: 10px;
        left: 10px;
        font-size: 10px;
        padding: 5px 10px;
    }

    .testimonial-card {
        padding: 25px 20px;
        gap: 20px;
    }

    .quote-icon svg {
        width: 30px;
        height: 30px;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.7;
    }

    .testimonial-author {
        flex-wrap: wrap;
    }

    .author-avatar {
        width: 45px;
        height: 45px;
        border-width: 2px;
    }

    .author-name {
        font-size: 15px;
    }

    .author-label {
        font-size: 12px;
    }

    .author-rating {
        width: 100%;
        justify-content: space-between;
        margin-top: 10px;
    }

    .rating-number {
        font-size: 16px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .slider-btn svg {
        width: 20px;
        height: 20px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 25px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card {
    animation: fadeInUp 0.6s ease;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.play-btn {
    animation: pulse 2s infinite;
}
/* ===== VARIABLES ===== */
:root {
    --primary-color: #8B6F47;
    --secondary-color: #D4A574;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --footer-bg: #2c2416;
    --footer-text: #d4c5b0;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 0 0;
    position: relative;
}

/* Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* Footer Brand Column */
.footer-brand {
    max-width: 350px;
}

.footer-logo img {
    height: 80px;
    width: auto;
    border-radius: 50%;
    /* margin-bottom: 20px; */
    /* filter: brightness(0) invert(1); */
}

.footer-tagline {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--footer-text);
    margin-bottom: 25px;
    opacity: 0.9;
}

/* Footer Social Media */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(212, 165, 116, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--secondary-color);
}

.footer-contact span {
    color: var(--footer-text);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 14px;
    color: var(--footer-text);
    opacity: 0.8;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom-links a {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

.separator {
    color: rgba(212, 165, 116, 0.3);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.back-to-top svg {
    stroke: var(--white);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-logo img {
        height: 40px;
    }

    .footer-tagline {
        font-size: 12px;
    }

    .footer-description {
        font-size: 13px;
    }

    .footer-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-links,
    .footer-contact {
        gap: 10px;
    }

    .footer-links a,
    .footer-contact li {
        font-size: 13px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .copyright {
        font-size: 13px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo img {
        height: 35px;
    }

    .footer-social {
        justify-content: center;
    }

    .social-link {
        width: 38px;
        height: 38px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-title {
        font-size: 15px;
    }

    .footer-links {
        align-items: center;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-contact li {
        justify-content: center;
        text-align: left;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .copyright {
        font-size: 12px;
    }

    .footer-bottom-links {
        font-size: 12px;
        gap: 10px;
    }

    .footer-bottom-links a {
        font-size: 12px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }

    .back-to-top svg {
        width: 18px;
        height: 18px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-column {
    animation: fadeInUp 0.6s ease;
    opacity: 0;
    animation-fill-mode: forwards;
}

.footer-column:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-column:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-column:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-column:nth-child(4) {
    animation-delay: 0.4s;
}

.footer-column:nth-child(5) {
    animation-delay: 0.5s;
}
/* Comments Section Styles */
.comments-area {
    margin-top: 60px;
    padding: 60px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.comments-title {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    color: #222;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.comments-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--primary-color);
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-list .comment {
    margin-bottom: 30px;
    padding: 30px;
    background: #fdfdfd;
    border-radius: 15px;
    border: 1px solid #f5f5f5;
    transition: 0.3s;
}

.comment-list .comment:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.03);
    border-color: #eee;
}

.comment-body {
    display: flex;
    gap: 20px;
}

.comment-author .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-author-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-author-name {
    font-weight: 700;
    color: #222;
    font-size: 1.1rem;
}

.comment-author-name a {
    color: inherit;
    text-decoration: none;
}

.comment-metadata {
    font-size: 0.85rem;
    color: #aaa;
}

.comment-text {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

.reply {
    margin-top: 15px;
}

.reply a {
    display: inline-block;
    padding: 8px 18px;
    background: #f0f0f0;
    color: #444;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    transition: 0.3s;
}

.reply a:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Children Comments */
.comment-list .children {
    list-style: none;
    padding-left: 60px;
    margin-top: 25px;
}

@media (max-width: 768px) {
    .comment-list .children {
        padding-left: 20px;
    }
    .comments-area {
        padding: 30px;
    }
}

/* Comment Form Styles */
.comment-respond {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px dashed #f0f0f0;
}

.comment-reply-title {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    color: #222;
    margin-bottom: 30px;
}

.comment-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.comment-form .comment-form-comment {
    grid-column: 1 / -1;
}

.comment-form .form-submit {
    grid-column: 1 / -1;
}

.comment-form label {
    display: block;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #f9f9f9;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.comment-form input:focus,
.comment-form textarea:focus {
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.1);
}

.comment-form .submit {
    padding: 15px 40px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comment-form .submit:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.3);
}

/* Honeypot Field - CRITICAL FOR ANTI-SPAM */
.hvd-hp-field {
    display: none !important;
    visibility: hidden !important;
}

/* Toast Messenger UI */
.hvd-toast-container {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 350px;
}

.hvd-toast {
    padding: 15px 25px;
    background: #fff;
    color: #333;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(120%);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 5px solid #ccc;
    position: relative;
    overflow: hidden;
}

.hvd-toast.show {
    transform: translateX(0);
}

.hvd-toast-success { border-left-color: #2ecc71; }
.hvd-toast-error { border-left-color: #e74c3c; }
.hvd-toast-info { border-left-color: #3498db; }

.hvd-toast-icon {
    font-size: 24px;
    display: flex;
    align-items: center;
}

.hvd-toast-success .hvd-toast-icon { color: #2ecc71; }
.hvd-toast-error .hvd-toast-icon { color: #e74c3c; }
.hvd-toast-info .hvd-toast-icon { color: #3498db; }

.hvd-toast-content {
    flex: 1;
}

.hvd-toast-title {
    font-weight: 700;
    margin-bottom: 3px;
    font-size: 1rem;
}

.hvd-toast-message {
    font-size: 0.9rem;
    color: #666;
}

.hvd-toast-close {
    cursor: pointer;
    color: #aaa;
    transition: 0.3s;
}

.hvd-toast-close:hover {
    color: #333;
}

.hvd-toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: rgba(0,0,0,0.05);
}

.hvd-toast-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: inherit;
    animation: progress 5s linear forwards;
}

@keyframes progress {
    100% { width: 0; }
}

@media (max-width: 480px) {
    .hvd-toast-container {
        top: 20px;
        right: 20px;
        left: 20px;
        max-width: none;
    }
}
/* ===== ARCHIVE & SINGLE TEMPLATES STYLES ===== */

/* ===== COMMON ARCHIVE LAYOUT ===== */
.archive-header {
    padding: 80px 0 40px;
    background-color: var(--white);
    text-align: center;
}

.archive-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.archive-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
    line-height: 1.6;
}

.archive-content {
    padding: 40px 0 80px;
    background-color: #fbfbfb;
}

/* Custom Grid */
.hvd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===== SINGLE LAYOUT ===== */
.site-main {
    background-color: var(--white);
}

.hvd-single-hero {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.hvd-single-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hvd-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px 0;
    color: var(--white);
}

.hvd-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
}


.single-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;

    /* Luxury Gold Gradient */
    background: linear-gradient(to right,
            #BF953F 0%,
            #FCF6BA 25%,
            #B38728 50%,
            #FBF5B7 75%,
            #AA771C 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Subtle glow */
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));

    /* Animations */
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards,
        goldShimmer 6s infinite linear;
}

.single-meta-info {
    display: inline-flex;
    gap: 20px;
    font-size: 16px;
    opacity: 0.9;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    background-color: rgba(163, 161, 161, 0.5);
}

.single-content-wrap {
    padding: 80px 0;
}

.single-main-columns {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.single-entry-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
}

.single-entry-content p {
    margin-bottom: 25px;
}

/* Sidebar Box */
.single-sidebar-box {
    background-color: #fdfaf6;
    border: 1px solid #e1d7c3;
    padding: 35px;
    border-radius: 8px;
    position: sticky;
    top: 100px;
}

.sidebar-title {
    font-size: 22px;
    color: var(--primary-gold);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-gold);
    display: inline-block;
}

.info-item {
    margin-bottom: 20px;
}

.info-label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 5px;
}

.info-value {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 500;
}

.price-box {
    margin: 25px 0;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-gold);
}

/* Concept Section for Locations */
.concepts-section {
    padding: 10px 0;
    background-color: var(--white);
}

.concepts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.concept-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.concept-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.concept-img {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.concept-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.concept-card:hover .concept-img img {
    transform: scale(1.1);
}

.concept-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 15px 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
    pointer-events: none;
}

.concept-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--primary-gold);
    color: #000;
    padding: 5px 40px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.concept-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 1);
}

.concept-price {
    color: var(--primary-gold);
    font-size: 14px;
    font-weight: 600;
}

/* Product Gallery */
.product-gallery {
    margin-bottom: 40px;
}

.gallery-main-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: var(--shadow-medium);
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thumb-item {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
}

.thumb-item.active {
    border-color: var(--primary-gold);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 1024px) {
    .hvd-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .single-main-columns {
        grid-template-columns: 1fr;
    }

    .concepts-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .concepts-grid::-webkit-scrollbar {
        display: none;
    }

    .concept-card {
        flex: 0 0 calc(40% - 12px);
        /* Hiá»ƒn thá»‹ ~2.5 má»¥c */
        scroll-snap-align: start;
    }
}

@media (max-width: 600px) {
    .hvd-grid {
        grid-template-columns: 1fr;
    }

    .hvd-single-hero {
        height: 300px;
    }

    .single-title {
        font-size: 32px;
    }

    .archive-title {
        font-size: 32px;
    }

    .concepts-grid {
        gap: 15px;
    }

    .concept-card {
        flex: 0 0 85%;
        /* Hiá»ƒn thá»‹ ~1.1 má»¥c */
    }
}

/* ===== POPUP FORM MODAL ===== */
body.hvd-modal-open {
    overflow: hidden;
}

.hvd-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    /* Controlled by JS */
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hvd-popup-container {
    background: #fff;
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--primary-gold);
}

@keyframes hvdPopupIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hvd-popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: var(--primary-gold);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    transition: background 0.3s ease;
}

.hvd-popup-close:hover {
    background: var(--primary-gold-dark);
}

.hvd-popup-body {
    padding: 30px;
}

/* Customizing SmartCRM form - Luxury Style (Popups & Contact Page) */
.hvd-popup-body .smartcrm-lead-container,
.contact-form-card .smartcrm-lead-container {
    background: transparent !important;
    padding: 0 !important;
}

.hvd-popup-body .smartcrm-lead-form-wrapper,
.contact-form-card .smartcrm-lead-form-wrapper {
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    background: transparent !important;
}

.hvd-popup-body .smartcrm-header,
.contact-form-card .smartcrm-header {
    margin-bottom: 25px;
}

.hvd-popup-body .smartcrm-title,
.contact-form-card .smartcrm-title {
    color: var(--primary-gold) !important;
    font-family: var(--font-heading) !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    margin-bottom: 5px !important;
    text-align: center;
    letter-spacing: 1px;
}

.hvd-popup-body .smartcrm-subtitle,
.contact-form-card .smartcrm-subtitle {
    text-align: center;
    color: #888;
    font-size: 13px;
    margin-bottom: 30px;
    font-style: italic;
}

.hvd-popup-body .smartcrm-input-group,
.contact-form-card .smartcrm-input-group {
    margin-bottom: 18px;
}

/* Gender Selection Toggle Slide Styling */
.hvd-popup-body .gender-group,
.contact-form-card .gender-group {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.hvd-popup-body .gender-toggle-wrapper,
.contact-form-card .gender-toggle-wrapper {
    position: relative;
    display: inline-flex;
    background: #f1f1f1;
    padding: 2px;
    border-radius: 50px;
    width: 200px;
    height: 40px;
    overflow: hidden;
}

.hvd-popup-body .gender-toggle-wrapper input[type="radio"],
.contact-form-card .gender-toggle-wrapper input[type="radio"] {
    display: none !important;
}

.hvd-popup-body .gender-toggle-wrapper label,
.contact-form-card .gender-toggle-wrapper label {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #888;
    cursor: pointer;
    transition: color 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hvd-popup-body .gender-toggle-wrapper .gender-slider,
.contact-form-card .gender-toggle-wrapper .gender-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    z-index: 1;
    width: calc(50% - 2px);
    height: calc(100% - 4px);
    background: var(--primary-gold);
    border-radius: 50px;
    transition: transform 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    box-shadow: 0 2px 8px rgba(181, 143, 85, 0.3);
}

.hvd-popup-body .gender-toggle-wrapper input[value="female"]:checked~label[for^="gender-female"],
.hvd-popup-body .gender-toggle-wrapper input[value="male"]:checked~label[for^="gender-male"],
.contact-form-card .gender-toggle-wrapper input[value="female"]:checked~label[for^="gender-female"],
.contact-form-card .gender-toggle-wrapper input[value="male"]:checked~label[for^="gender-male"] {
    color: #fff;
}

.hvd-popup-body .gender-toggle-wrapper input[value="male"]:checked~.gender-slider,
.contact-form-card .gender-toggle-wrapper input[value="male"]:checked~.gender-slider {
    transform: translateX(100%);
}

.hvd-popup-body .smartcrm-input-group input,
.hvd-popup-body .smartcrm-input-group textarea,
.contact-form-card .smartcrm-input-group input,
.contact-form-card .smartcrm-input-group textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    font-family: inherit;
    font-size: 15px;
    background-color: transparent;
    transition: border-color 0.3s ease;
}

.hvd-popup-body .smartcrm-input-group input:focus,
.hvd-popup-body .smartcrm-input-group textarea:focus,
.contact-form-card .smartcrm-input-group input:focus,
.contact-form-card .smartcrm-input-group textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-gold);
}

.hvd-popup-body .smartcrm-input-group input::placeholder,
.hvd-popup-body .smartcrm-input-group textarea::placeholder,
.contact-form-card .smartcrm-input-group input::placeholder,
.contact-form-card .smartcrm-input-group textarea::placeholder {
    color: #aaa;
    font-style: italic;
    font-size: 14px;
}

.hvd-popup-body .smartcrm-submit-btn,
.contact-form-card .smartcrm-submit-btn {
    background: var(--primary-gold) !important;
    color: #fff !important;
    border: none !important;
    width: 100% !important;
    padding: 16px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-top: 15px !important;
    box-shadow: 0 4px 15px rgba(181, 143, 85, 0.3);
}

.hvd-popup-body .smartcrm-submit-btn:hover,
.contact-form-card .smartcrm-submit-btn:hover {
    background: var(--primary-gold-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(181, 143, 85, 0.4);
}

.hvd-popup-body .smartcrm-submit-btn:active,
.contact-form-card .smartcrm-submit-btn:active {
    transform: translateY(0);
}

.hvd-popup-body .smartcrm-loader,
.contact-form-card .smartcrm-loader {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: hvd-spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

@keyframes hvd-spin {
    to {
        transform: rotate(360deg);
    }
}

.hvd-popup-body .smartcrm-message,
.contact-form-card .smartcrm-message {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    padding: 12px;
    border-radius: 4px;
    font-weight: 500;
}

.hvd-popup-body .smartcrm-message.success,
.contact-form-card .smartcrm-message.success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.hvd-popup-body .smartcrm-message.error,
.contact-form-card .smartcrm-message.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

@media (max-width: 480px) {
    .hvd-popup-body {
        padding: 40px 15px 20px;
    }

    .hvd-popup-close {
        top: 0;
        left: 50%;
        right: auto;
        transform: translateX(-50%) translateY(-70%);
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

/* Responsive CTA Button for Single Pages */
@media (max-width: 1024px) {
    .hvd-single-hero {
        overflow: visible !important;
        /* Cho phÃ©p hiá»ƒn thá»‹ nÃºt lÆ¡ lá»­ng */
        margin-bottom: 30px;
        /* BÃ¹ trá»« khÃ´ng gian Ä‘á»ƒ nÃºt khÃ´ng Ä‘Ã¨ vÃ o ná»™i dung dÆ°á»›i */
    }

    .hvd-responsive-cta-btn {
        display: flex !important;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 50%);
        /* 50% Inside, 50% Outside */
        background: var(--white);
        color: var(--text-dark);
        border: 2px solid var(--primary-gold);
        padding: 5px 5px 5px 25px;
        border-radius: 50px;
        align-items: center;
        gap: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        z-index: 99;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 14px;
        letter-spacing: 1px;
    }

    .hvd-responsive-cta-btn:hover {
        background: var(--primary-gold);
        color: #fff;
    }

    .cta-icon-wrap {
        width: 45px;
        height: 45px;
        background: var(--primary-gold);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(181, 143, 85, 0.3);
    }

    .cta-icon-wrap i {
        font-size: 18px;
    }

    .hvd-responsive-cta-btn:hover .cta-icon-wrap {
        background: #fff;
        color: var(--primary-gold);
    }
}

/* ===== NAVIGATION & PAGINATION ===== */
.pagination {
    margin-top: 50px;
    text-align: center;
}

.pagination .nav-links {
    display: inline-flex;
    gap: 10px;
    justify-content: center;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid #e0e0e0;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: var(--primary-gold);
    color: #000;
    border-color: var(--primary-gold);
    box-shadow: 0 4px 12px rgba(181, 143, 85, 0.3);
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pagination .page-numbers.prev .dashicons,
.pagination .page-numbers.next .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

@media (min-width: 1025px) {
    .hvd-responsive-cta-btn {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hvd-responsive-cta-btn {
        width: calc(100% - 40px);
        justify-content: space-between;
        padding: 5px 5px 5px 20px;
        font-size: 13px;
    }

    .cta-icon-wrap {
        width: 40px;
        height: 40px;
    }
}
.hvd-concept-slider-section {
    padding: 80px 0;
    overflow: hidden;
    background-color: var(--white);
    position: relative;
}

/* Concept Filters - Äá»“ng bá»™ layout vá»›i Services nhÆ°ng scoped cho section nÃ y */
.hvd-concept-slider-section .service-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
    justify-content: center;
}

.hvd-concept-slider-section .filter-btn {
    padding: 10px 25px;
    border-radius: 50px;
    background: #f8f8f8;
    border: 1px solid #eee;
    color: var(--charcoal);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hvd-concept-slider-section .filter-btn:hover,
.hvd-concept-slider-section .filter-btn.active {
    background: var(--primary-gold);
    color: var(--white);
    border-color: var(--primary-gold);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.concept-slider-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0 40px;
    perspective: 1500px;
    transition: opacity 0.4s ease;
}

.concept-slider-container.loading {
    opacity: 0.5;
    pointer-events: none;
}

.no-results {
    width: 100%;
    text-align: center;
    padding: 100px 0;
    color: #999;
    font-style: italic;
    font-size: 16px;
}

.concept-slider-wrapper {
    display: flex;
    align-items: center;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}

.concept-slide {
    flex: 0 0 420px;
    /* TÄƒng chiá»u rá»™ng cÆ¡ báº£n */
    padding: 0 35px;
    /* Táº¡o khoáº£ng há»Ÿ lá»›n hÆ¡n giá»¯a cÃ¡c táº¥m hÃ¬nh */
    perspective: 1000px;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0.4;
    transform: scale(0.7) rotateY(0deg);
    cursor: pointer;
}

.concept-slide.active-center {
    opacity: 1;
    transform: scale(1.1) rotateY(0deg);
    /* Má»¥c phÃ³ng to á»Ÿ giá»¯a */
    z-index: 10;
}

.concept-slide.side-left {
    opacity: 0.7;
    transform: scale(0.85) rotateY(25deg);
    /* NghiÃªng hiá»‡u á»©ng hÃ¬nh thang bÃªn trÃ¡i */
}

.concept-slide.side-right {
    opacity: 0.7;
    transform: scale(0.85) rotateY(-25deg);
    /* NghiÃªng hiá»‡u á»©ng hÃ¬nh thang bÃªn pháº£i */
}

.concept-slide-inner {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: #000;
}

.concept-slide-img {
    position: relative;
    height: 500px;
    /* Chiá»u cao slider */
}

.concept-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.concept-location-badge {
    position: absolute;
    top: 15px;
    right: 0;
    background: var(--primary-gold);
    color: #000;
    padding: 6px 15px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: -2px 4px 10px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    white-space: nowrap;
    text-align: center;
    border-radius: 4px 0 0 4px; /* Bo gÃ³c trÃ¡i Ä‘á»ƒ Ä‘áº¹p hÆ¡n */
}

.concept-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 100px 20px 25px;
    /* TÄƒng chiá»u cao vÃ¹ng Ä‘á»‡m cho gradient */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    color: #fff;
    text-align: center;
    transition: all 0.5s ease;
}

.concept-slide-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    color: white;
}

.concept-slide-more {
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--primary-gold);
    text-transform: uppercase;
}

/* Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--charcoal);
    padding: 0; /* Reset padding Ä‘á»ƒ cÄƒn giá»¯a chuáº©n */
}

/* ThÃªm vÃ²ng trÃ²n nhá» bÃªn trong cÃ³ border gold */
.slider-nav::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px; /* Nhá» hÆ¡n nÃºt chÃ­nh 60px */
    height: 44px;
    border: 1px solid var(--primary-gold);
    border-radius: 50%;
    transition: all 0.4s ease;
    pointer-events: none;
}

.slider-nav:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.slider-nav:hover::after {
    width: 50px;
    height: 50px; /* Äáº£m báº£o luÃ´n lÃ  hÃ¬nh trÃ²n */
    background: var(--primary-gold);
    border-color: var(--primary-gold);
}

.slider-nav:hover i {
    color: var(--white);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

.slider-nav i {
    font-family: dashicons;
    font-size: 32px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin: 0;
    line-height: 1;
    font-style: normal;
    font-weight: normal;
}

/* Responsive */
@media (max-width: 991px) {
    .concept-slide {
        flex: 0 0 300px;
    }

    .concept-slide-img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .concept-slider-container {
        perspective: none;
        /* Táº¯t 3D trÃªn mobile cho dá»… nhÃ¬n */
    }

    .concept-slide {
        flex: 0 0 85%;
        /* 1 má»¥c to chÃ­nh giá»¯a trÃªn mobile */
        opacity: 0.3;
        transform: scale(0.9);
    }

    .concept-slide.active-center {
        opacity: 1;
        transform: scale(1);
    }

    .concept-slide.side-left,
    .concept-slide.side-right {
        transform: scale(0.9) rotateY(0deg);
    }

    .concept-slide-img {
        height: 450px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
    }
}
/* ===== CONTACT PAGE STYLES ===== */

.contact-page {
    padding-bottom: 0; /* Map will be at bottom */
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: -50px; /* Pull up into hero space if needed, or just stay standard */
    position: relative;
    z-index: 10;
    margin-bottom: 60px;
}

.contact-info-item {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.15);
    border-color: var(--primary-gold);
}

.info-icon-wrap {
    width: 70px;
    height: 70px;
    background: #fdfaf6;
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    border: 1px solid var(--primary-gold);
}

.info-item-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.info-item-text a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

.info-item-text a:hover {
    color: var(--primary-gold);
}

/* Contact Main Section */
.contact-main-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    padding-bottom: 80px;
}

.contact-left h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.contact-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* Contact Working Hours */
.contact-hours-box {
    background: #fdfaf6;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary-gold);
}

.contact-hours-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.contact-hours-text {
    font-size: 15px;
    color: var(--text-dark);
}

/* Social Grid */
.contact-social-grid {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 45px;
    height: 45px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: 0.3s;
    font-size: 18px;
}

.social-btn:hover {
    background: var(--primary-gold);
    color: #fff;
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

/* Contact Form Right */
.contact-form-card {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

/* Map Section */
.contact-map-section {
    height: 500px;
    width: 100%;
    background: #eee;
}

.contact-map-section iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0;
    filter: grayscale(0.2) contrast(1.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-main-row {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 0;
        padding-top: 50px;
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-card {
        padding: 30px 20px;
    }
    
    .contact-left h2 {
        font-size: 28px;
    }
    
    .contact-map-section {
        height: 350px;
    }
}
