@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;500;600&display=swap');

:root {
    --bg-dark: #121212;
    --bg-light: #1c1c1c;
    --bg-box: #161616;
    --text-main: #f5f5f5;
    --text-muted: #aaaaaa;
    --gold: #dcb37b;
    --gold-hover: #c49c63;
    --border: #333333;
    --font: 'Prompt', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    overflow-y: scroll; /* Force vertical scrollbar to prevent layout shift */
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: var(--gold) var(--bg-dark); /* Firefox */
}

/* Custom Luxury Scrollbar */
::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}
::-webkit-scrollbar-track {
    background: #0d0d0f;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(220, 179, 123, 0.7) 0%, rgba(196, 156, 99, 0.5) 100%);
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    transition: background 0.3s;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #f5d7aa 0%, var(--gold) 100%);
    box-shadow: 0 0 10px rgba(220, 179, 123, 0.6);
}
::-webkit-scrollbar-corner {
    background: #0d0d0f;
}

body {
    font-family: var(--font);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.5;
    font-size: 14px;
    overflow-x: hidden;
    padding-top: 70px; /* Space for fixed header */
}

button, input, select, textarea {
    font-family: var(--font);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Buttons */
.btn-primary {
    font-family: var(--font);
    background-color: var(--gold);
    color: #111;
    border: 1px solid var(--gold);
    border-radius: 4px;
    display: inline-block;
    text-align: center;
    font-weight: 500;
}
.btn-primary:hover {
    background-color: var(--gold-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--text-main);
    border-radius: 4px;
    display: inline-block;
    text-align: center;
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.large {
    padding: 10px 30px;
    font-size: 16px;
}
.small {
    padding: 5px 15px;
    font-size: 12px;
}

/* Section Title */
.section-title {
    text-align: center;
    color: var(--gold);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 40px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.section-title::before,
.section-title::after {
    content: '';
    height: 1px;
    width: 30px;
    background-color: var(--border);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}
.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.loader-circle {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(220, 179, 123, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.loader-text {
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 4px;
    animation: pulse 1.5s infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Header */
.header {
    background-color: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(220, 179, 123, 0.7);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    transition: all 0.3s ease;
}
.header.scrolled {
    background-color: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid rgba(220, 179, 123, 0.7);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 30px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    margin-right: auto;
    transition: transform 0.3s ease;
}
.logo:hover {
    transform: scale(1.02);
}
.logo i {
    font-size: 28px;
    color: var(--gold);
    filter: drop-shadow(0 0 10px rgba(220, 179, 123, 0.4));
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.brand-name {
    font-size: 19px;
    font-weight: 600;
    background: linear-gradient(135deg, #ffffff 15%, #faecd5 45%, #dcb37b 85%, #c49c63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    letter-spacing: 0.5px;
}
.brand-sub {
    font-size: 9.5px;
    letter-spacing: 1.5px;
    color: var(--gold);
    opacity: 0.85;
    margin-top: 2px;
}
.nav-links {
    display: flex;
    gap: 5px;
    font-size: 15px; /* Increased from 13px */
    font-weight: 400;
}
.nav-links a {
    color: var(--text-main);
    padding: 6px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}
.nav-links a.active {
    background-color: rgba(220, 179, 123, 0.2);
    color: var(--gold);
}
.nav-links a:hover {
    color: var(--gold);
    background-color: rgba(220, 179, 123, 0.1);
}

/* Navigation Dropdown Menu */
.nav-item-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.nav-item-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: rgba(18, 18, 24, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(220, 179, 123, 0.35);
    border-radius: 12px;
    padding: 8px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
    pointer-events: none;
}
.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(6px);
    pointer-events: auto;
}
.nav-item-dropdown .dropdown-item {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 10px 18px !important;
    color: #ddd !important;
    font-size: 13.5px !important;
    border-radius: 0 !important;
    background: transparent !important;
    transition: all 0.2s ease;
    text-decoration: none;
    text-align: left;
}
.nav-item-dropdown .dropdown-item:hover {
    color: var(--gold) !important;
    background: rgba(220, 179, 123, 0.12) !important;
    padding-left: 22px !important;
}
.nav-item-dropdown .dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 6px 0;
}

/* Header Booking Button - Attention Glowing & Flashing Light Effect */
.nav-container > .btn-primary,
.header .btn-primary {
    position: relative;
    border-radius: 25px !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #e8c695 0%, #dcb37b 50%, #c49c63 100%);
    box-shadow: 0 0 12px rgba(220, 179, 123, 0.5);
    animation: navBookingPulse 1.8s infinite ease-in-out;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Light Sheen Sweep Effect */
.nav-container > .btn-primary::before,
.header .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: navBookingShine 2.4s infinite;
    pointer-events: none;
}

/* Pause animations on Hover */
.nav-container > .btn-primary:hover,
.header .btn-primary:hover {
    animation-play-state: paused;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 25px rgba(220, 179, 123, 0.95), 0 0 45px rgba(220, 179, 123, 0.5);
    background: linear-gradient(135deg, #f5d7aa 0%, #e0b982 50%, #cca268 100%);
}

.nav-container > .btn-primary:hover::before,
.header .btn-primary:hover::before {
    animation-play-state: paused;
}

@keyframes navBookingPulse {
    0% {
        box-shadow: 0 0 6px rgba(220, 179, 123, 0.4), 0 0 0 0 rgba(220, 179, 123, 0.7);
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        box-shadow: 0 0 22px rgba(220, 179, 123, 0.9), 0 0 35px rgba(220, 179, 123, 0.45), 0 0 0 6px rgba(220, 179, 123, 0);
        transform: scale(1.04);
        filter: brightness(1.18);
    }
    100% {
        box-shadow: 0 0 6px rgba(220, 179, 123, 0.4), 0 0 0 0 rgba(220, 179, 123, 0);
        transform: scale(1);
        filter: brightness(1);
    }
}

@keyframes navBookingShine {
    0% {
        left: -75%;
    }
    45% {
        left: 125%;
    }
    100% {
        left: 125%;
    }
}


/* Hero */
.hero {
    position: relative;
    min-height: calc(100vh - 90px);
    margin-top: -70px;
    padding-top: 70px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-slider {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.hero-slide.active {
    opacity: 1;
    z-index: 2;
}
.slide-bg, .hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center center;
    transform: scale(1.05);
    transition: transform 4s linear;
}
.hero-slide.active .slide-bg,
.hero-slide.active .hero-bg {
    transform: scale(1);
}
.slide-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(17, 17, 17, 0.6);
}
.hero-content {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 3;
    text-align: center;
}
.slide-title {
    font-size: clamp(32px, 5.2vw, 68px);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 22px;
    color: #ffffff;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.85), 0 0 35px rgba(220, 179, 123, 0.35);
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    filter: blur(10px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s;
    letter-spacing: 0.5px;
}

.hero-slide.active .slide-title {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Gold Gradient Shimmer for Title Subtexts / Spans */
@keyframes goldShine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.slide-title span {
    background: linear-gradient(120deg, #ffffff 0%, var(--gold) 35%, #fff1d6 55%, var(--gold) 75%, #ffffff 100%);
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShine 5s ease-in-out infinite;
    display: inline-block;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5));
}

.slide-desc {
    color: rgba(245, 245, 245, 0.9);
    font-size: clamp(14px, 1.8vw, 17px);
    margin-bottom: 35px;
    line-height: 1.85;
    opacity: 0;
    transform: translateY(30px);
    filter: blur(6px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.45s;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.65s;
}

.hero-buttons a,
.hero-buttons .btn-primary,
.hero-buttons .btn-outline {
    border-radius: 30px !important;
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #e8c695 0%, #dcb37b 50%, #c49c63 100%);
    color: #111;
    border: 1px solid var(--gold);
    box-shadow: 0 4px 15px rgba(220, 179, 123, 0.3);
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #f5d7aa 0%, #e0b982 50%, #cca268 100%);
    box-shadow: 0 6px 25px rgba(220, 179, 123, 0.55);
    transform: translateY(-2px) scale(1.03);
}

.hero-buttons .btn-outline {
    background: rgba(18, 18, 18, 0.4);
    border: 1px solid rgba(220, 179, 123, 0.6);
    color: var(--text-main);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-buttons .btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(220, 179, 123, 0.15);
    box-shadow: 0 6px 20px rgba(220, 179, 123, 0.3);
    transform: translateY(-2px) scale(1.03);
}

.hero-slide.active .slide-title,
.hero-slide.active .slide-desc,
.hero-slide.active .hero-buttons {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Hero Controls (Arrows & Dots) */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(18, 18, 18, 0.45);
    border: 1px solid rgba(220, 179, 123, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--text-main);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.hero-arrow:hover {
    background: var(--gold);
    color: #111;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(220, 179, 123, 0.6);
    transform: translateY(-50%) scale(1.1);
}
.hero-arrow.prev {
    left: 25px;
}
.hero-arrow.next {
    right: 25px;
}
.hero-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
    align-items: center;
    background: rgba(18, 18, 18, 0.4);
    padding: 6px 14px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(220, 179, 123, 0.2);
}
.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.hero-dot.active {
    width: 24px;
    border-radius: 10px;
    background: var(--gold);
    box-shadow: 0 0 10px rgba(220, 179, 123, 0.6);
}

@media (max-width: 768px) {
    .hero-arrow {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }
    .hero-arrow.prev { left: 10px; }
    .hero-arrow.next { right: 10px; }
    .hero-dots { bottom: 15px; }
}

/* Features Bar */
.features-bar {
    position: relative;
    z-index: 10;
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(220, 179, 123, 0.3);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    min-height: 90px;
    display: flex;
    align-items: center;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 10px;
}
.feature-item i {
    font-size: 28px;
    color: var(--gold);
    flex-shrink: 0;
}
.feature-item h4 {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 2px;
}
.feature-item p {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Sections */
.section {
    padding: 60px 0;
}

/* Portfolio - Vertical Album Layout */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.portfolio-card {
    position: relative;
    background-color: var(--bg-box);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

.portfolio-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(220, 179, 123, 0.3);
}

/* Portrait Image Container (แนวตั้ง 3:4) */
.portfolio-card .portfolio-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: #141414;
}

.portfolio-card .portfolio-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.4s ease;
    filter: brightness(0.92);
}

.portfolio-card:hover .portfolio-img-wrap img {
    transform: scale(1.08);
    filter: brightness(1.03);
}

/* Badges on Portrait Card */
.portfolio-card .portfolio-badge-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(220, 179, 123, 0.4);
    color: var(--gold);
    font-size: 11px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    z-index: 2;
    transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-badge-cat {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.portfolio-card .portfolio-badge-count {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-muted);
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

/* Card Overlay & Content at bottom */
.portfolio-card .portfolio-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 16px 16px;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.75) 60%, rgba(10, 10, 10, 0) 100%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
    transition: background 0.4s ease;
}

.portfolio-card:hover .portfolio-card-overlay {
    background: linear-gradient(to top, rgba(5, 5, 5, 0.99) 0%, rgba(5, 5, 5, 0.85) 70%, rgba(5, 5, 5, 0) 100%);
}

.portfolio-card .portfolio-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    transition: color 0.3s ease;
}

.portfolio-card:hover .portfolio-title {
    color: var(--gold);
}

.portfolio-card .portfolio-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 10px;
    margin-top: 4px;
    font-size: 12px;
}

.portfolio-card .portfolio-location {
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 11px;
}

.portfolio-card .portfolio-location i {
    font-size: 11px;
}

.portfolio-card .portfolio-btn-view {
    color: var(--text-muted);
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-btn-view {
    color: var(--gold);
    transform: translateX(3px);
}

.portfolio-label {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}

/* Quick Availability Checker */
.quick-checker-section {
    position: relative;
    z-index: 5;
    padding: 0 0 50px 0;
    background: transparent;
    border: none;
}
.quick-checker-card {
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(220, 179, 123, 0.3);
    border-radius: 14px;
    padding: 24px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(220, 179, 123, 0.1);
}
.quick-checker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 10px;
}
.quick-checker-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-main);
    margin: 0;
}
.quick-checker-title i {
    color: var(--gold);
    font-size: 18px;
}
.quick-checker-subtitle {
    font-size: 12px;
    color: var(--gold);
    background: rgba(220, 179, 123, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(220, 179, 123, 0.25);
}
.quick-checker-grid {
    display: grid;
    grid-template-columns: 1.4fr 1.1fr 1.3fr auto;
    gap: 15px;
    align-items: flex-end;
}
.quick-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.quick-field label {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.quick-field label i {
    color: var(--gold);
    font-size: 11px;
}
.quick-input,
.quick-select {
    width: 100%;
    height: 44px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0 14px;
    color: var(--text-main);
    font-family: var(--font);
    font-size: 13px;
    transition: all 0.3s ease;
    outline: none;
}
.quick-input:focus,
.quick-select:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 15px rgba(220, 179, 123, 0.2);
}
.quick-select option {
    background: var(--bg-dark);
    color: var(--text-main);
}
.quick-btn-check {
    font-family: var(--font);
    font-weight: 500;
    height: 44px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(220, 179, 123, 0.35);
    transition: all 0.3s ease;
}
.quick-btn-check i {
    font-size: 15px;
}

@media (max-width: 991px) {
    .quick-checker-grid {
        grid-template-columns: 1fr 1fr;
    }
    .quick-btn-check {
        grid-column: 1 / -1;
    }
}
@media (max-width: 600px) {
    .quick-checker-section {
        margin-top: 20px;
    }
    .quick-checker-grid {
        grid-template-columns: 1fr;
    }
    .quick-checker-card {
        padding: 18px 16px;
    }
}

/* Live Availability Result Styles */
.availability-result-box {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed rgba(220, 179, 123, 0.25);
    animation: fadeInResult 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes fadeInResult {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.result-card-inner {
    background: rgba(37, 211, 102, 0.06);
    border: 1px solid rgba(37, 211, 102, 0.35);
    border-radius: 12px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.result-card-inner.booked {
    background: rgba(239, 68, 68, 0.06);
    border-color: rgba(239, 68, 68, 0.35);
}

.result-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.live-pulse-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25d366;
    font-size: 20px;
    position: relative;
    flex-shrink: 0;
}

.live-pulse-badge.booked {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

.live-pulse-badge::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: pulseGlow 1.8s infinite;
    opacity: 0.6;
}

.live-pulse-badge.booked::after {
    border-color: #ef4444;
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

.result-text h4 {
    color: #25d366;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.result-text p {
    color: var(--text-muted);
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

.result-text strong {
    color: var(--text-main);
}

.result-action-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-lock-line {
    background: #06C755;
    color: #fff !important;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
}

.btn-lock-line:hover {
    background: #05a847;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.45);
}

.btn-lock-phone {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    color: var(--text-main) !important;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-lock-phone:hover {
    border-color: var(--gold);
    color: var(--gold) !important;
    background: rgba(220, 179, 123, 0.1);
    transform: translateY(-2px);
}

.btn-reset-check {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 12px;
    cursor: pointer;
    padding: 6px 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}

.btn-reset-check:hover {
    color: var(--gold);
}

@media (max-width: 768px) {
    .result-card-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .result-action-buttons {
        width: 100%;
    }
    .btn-lock-line,
    .btn-lock-phone {
        flex: 1;
        justify-content: center;
        text-align: center;
    }
}

/* Homepage Portfolio Category Filters */
.home-portfolio-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.portfolio-filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.portfolio-filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 179, 123, 0.2);
}
.portfolio-filter-btn.active {
    background: var(--gold);
    color: #111 !important;
    border-color: var(--gold);
    font-weight: 600;
    box-shadow: 0 4px 18px rgba(220, 179, 123, 0.35);
    transform: translateY(-2px);
}

.portfolio-card.filter-hide {
    display: none !important;
}
.portfolio-card.filter-anim {
    animation: portfolioFadeIn 0.4s ease forwards;
}
@keyframes portfolioFadeIn {
    from { opacity: 0; transform: scale(0.96) translateY(8px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 650px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
.service-box {
    background: rgba(22, 22, 22, 0.75);
    border: 1px solid rgba(220, 179, 123, 0.18);
    border-radius: 14px;
    padding: 0;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.service-box:hover {
    background: rgba(28, 28, 28, 0.95);
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(220, 179, 123, 0.22);
}
.service-img-wrap {
    position: relative;
    width: 100%;
    height: 155px;
    overflow: hidden;
    background: #111;
}
.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease, filter 0.4s ease;
    filter: brightness(0.9);
}
.service-box:hover .service-img-wrap img {
    transform: scale(1.08);
    filter: brightness(1);
}
.service-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(22,22,22,0.85) 100%);
    pointer-events: none;
}
.service-icon-badge {
    position: absolute;
    bottom: -17px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: rgba(22, 22, 22, 0.95);
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 14px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}
.service-box:hover .service-icon-badge {
    background: var(--gold);
    color: #111;
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 0 15px rgba(220, 179, 123, 0.6);
}
.service-content {
    padding: 24px 16px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    justify-content: space-between;
}
.service-box > i {
    font-size: 34px;
    color: var(--gold);
    margin-bottom: 16px;
    transition: transform 0.35s ease;
}
.service-box:hover > i {
    transform: scale(1.15) translateY(-2px);
}
.service-box h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
}
.service-box p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.65;
    flex-grow: 1;
}

/* Service Booking Button */
.service-box .service-btn,
.service-box .btn-primary,
.service-box .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px 22px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 25px;
    background: linear-gradient(135deg, #e8c695 0%, #dcb37b 50%, #c49c63 100%);
    color: #111 !important;
    border: 1px solid var(--gold);
    box-shadow: 0 4px 14px rgba(220, 179, 123, 0.35);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    cursor: pointer;
}

.service-box .service-btn:hover,
.service-box .btn-primary:hover,
.service-box .btn-outline:hover {
    background: linear-gradient(135deg, #f5d7aa 0%, #e0b982 50%, #cca268 100%);
    box-shadow: 0 6px 24px rgba(220, 179, 123, 0.65);
    transform: translateY(-2px) scale(1.04);
    border-color: var(--gold);
    color: #000 !important;
}

.service-box .service-btn i,
.service-box .btn-outline i {
    font-size: 11px;
    margin: 0;
    color: #111;
    transition: transform 0.3s ease;
}

.service-box:hover .service-btn i,
.service-box:hover .btn-outline i {
    transform: translateX(3px);
}

/* Packages */
.packages {
    background-color: var(--bg-light);
}
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.package-card {
    display: flex;
    background-color: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}
.pkg-img {
    width: 40%;
}
.pkg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pkg-content {
    width: 60%;
    padding: 20px 15px;
}
.pkg-content h4 {
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 8px;
}
.pkg-content p {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* Steps */
.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}
.step-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.step-icon {
    width: 35px;
    height: 35px;
    background-color: var(--gold);
    color: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}
.step-text h4 {
    font-size: 13px;
    color: var(--text-main);
}
.step-text p {
    font-size: 11px;
    color: var(--text-muted);
}
.step-arrow {
    color: var(--border);
    font-size: 20px;
}

/* Reviews Section & Infinite Marquee */
.section.reviews {
    overflow: hidden;
    position: relative;
}
.reviews-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0 35px;
    mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.reviews-marquee {
    display: flex;
    user-select: none;
    padding: 10px 0;
}
.reviews-track {
    display: flex;
    flex-shrink: 0;
    gap: 25px;
    padding: 10px 0;
    animation: scroll-reviews 32s linear infinite;
    align-items: stretch;
}
.reviews-marquee:hover .reviews-track {
    animation-play-state: paused;
}
@keyframes scroll-reviews {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.review-box {
    background-color: var(--bg-box);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px;
    width: 360px;
    min-width: 360px;
    max-width: 360px;
    min-height: 210px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-sizing: border-box;
}
.review-box:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(220, 179, 123, 0.2);
}
.stars {
    color: var(--gold);
    font-size: 13px;
    margin-bottom: 12px;
    display: flex;
    gap: 3px;
}
.review-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 8px;
}
.review-text {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}
.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}
.reviewer img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border);
}
.reviewer h5 {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 2px;
}
.reviewer span {
    font-size: 11px;
    color: var(--gold);
}
.carousel-dots {
    text-align: center;
}
.carousel-dots span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--border);
    border-radius: 50%;
    margin: 0 5px;
}
.carousel-dots span.active {
    background-color: var(--gold);
}

/* FAQ & Blog */
.faq-blog {
    background-color: var(--bg-light);
}
.faq-blog-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-item {
    display: flex;
    flex-direction: column;
    padding: 15px 25px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background-color: var(--bg-main);
    cursor: pointer;
    margin-bottom: 15px;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    margin-top: 15px;
    opacity: 1;
}
.faq-item i {
    color: var(--gold);
    transition: transform 0.3s ease;
}
.faq-item.active i {
    transform: rotate(180deg);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 1024px) {
    .blog-grid,
    #homeBlogGrid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}
@media (max-width: 600px) {
    .blog-grid,
    #homeBlogGrid {
        grid-template-columns: 1fr !important;
    }
}
.blog-card {
    background-color: var(--bg-box);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(220, 179, 123, 0.2);
}
.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.4s ease;
    filter: brightness(0.9);
}
.blog-card:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}
.blog-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-content h4 {
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 1.5;
}
.blog-content h4 a {
    transition: color 0.3s ease;
}
.blog-card:hover .blog-content h4 a {
    color: var(--gold);
}
.blog-content p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
}
.blog-content .btn-outline {
    margin-top: auto;
    align-self: flex-start;
    transition: all 0.3s ease;
}
.blog-card:hover .btn-outline {
    background-color: var(--gold);
    border-color: var(--gold);
    color: #000;
}

/* Bottom CTA */
.bottom-cta {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}
.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cta-text-box h2 {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 20px;
}
.cta-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-line {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.contact-line i {
    color: var(--gold);
}
.social-links {
    display: flex;
    gap: 15px;
    font-size: 16px;
    margin-top: 10px;
    align-items: center;
}
.social-links i {
    color: var(--gold);
}

/* Footer */
.footer {
    position: relative;
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border);
    padding: 40px 0;
    overflow: hidden;
}
.footer-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8vw;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    letter-spacing: 5px;
    width: 100%;
    text-align: center;
    overflow: hidden;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 20px;
}
.footer-brand p {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 10px;
}
.footer-links h4 {
    font-size: 13px;
    margin-bottom: 15px;
}
.footer-links ul li {
    margin-bottom: 10px;
}
.footer-links a {
    font-size: 11px;
    color: var(--text-muted);
}
.footer-social h4 {
    font-size: 13px;
    margin-bottom: 15px;
}
.footer-social .icons {
    display: flex;
    gap: 15px;
    color: var(--gold);
    margin-bottom: 20px;
}
.copyright {
    font-size: 10px;
    color: var(--text-muted);
}

/* ==========================================================================
   Album Page Styles (Image 2)
   ========================================================================== */

.page-container {
    padding-top: 100px;
    padding-bottom: 60px;
}
.breadcrumbs {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 30px;
}
.breadcrumbs a {
    color: var(--text-muted);
}
.breadcrumbs a:hover {
    color: var(--gold);
}
.breadcrumbs .separator {
    margin: 0 8px;
}
.page-header {
    text-align: center;
    margin-bottom: 40px;
}
.page-title {
    font-size: 32px;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 5px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}
.page-title::before,
.page-title::after {
    content: '';
    height: 1px;
    width: 30px;
    background-color: var(--border);
}
.page-subtitle {
    font-size: 14px;
    color: var(--text-main);
}
.filters {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 10px;
    margin: 0 auto 10px auto;
    width: max-content;
    max-width: 100%;
    overflow-x: auto;
    padding: 10px 5px 35px 5px; /* Added padding top/bottom/sides for shadows */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}
.filters::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    border-radius: 30px;
    font-family: var(--font);
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-shrink: 0;
}
.filter-btn i {
    font-size: 12px;
    opacity: 0.7;
    transition: all 0.4s ease;
}
.filter-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    color: var(--bg-dark);
    border-color: transparent;
    font-weight: 500;
    box-shadow: 0 8px 20px rgba(220, 179, 123, 0.25);
    transform: translateY(-2px);
}
.filter-btn.active i {
    color: var(--bg-dark);
    opacity: 1;
}
.filter-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
.filter-btn:hover:not(.active) i {
    color: var(--gold);
    opacity: 1;
}

.album-grid-complex {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 20px;
    margin-bottom: 40px;
}
.album-featured {
    position: relative;
    border: 1px solid var(--gold);
    border-radius: 6px;
    overflow: hidden;
    height: 100%;
}
.featured-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0; left: 0;
    z-index: 0;
    filter: brightness(0.6);
}
.featured-overlay {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(to right, rgba(17,17,17,0.9) 0%, rgba(17,17,17,0) 100%);
}
.featured-badge {
    background-color: var(--gold);
    color: #111;
    display: inline-block;
    padding: 5px 12px;
    font-size: 10px;
    border-radius: 2px;
    align-self: flex-start;
    font-weight: 500;
}
.featured-content h5 {
    color: var(--gold);
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 5px;
}
.featured-content h2 {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 15px;
}
.featured-content p {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}
.featured-meta {
    font-size: 11px;
    margin-bottom: 25px;
}
.featured-meta i {
    margin-right: 5px;
}
.featured-btn {
    padding: 8px 25px;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.featured-inset-img {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 140px;
    height: 140px;
    border: 2px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    z-index: 2;
}
.featured-inset-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-grid-small {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
}
.album-item {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    background-color: var(--bg-box);
}
.album-item:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(220, 179, 123, 0.25);
}
.album-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.4s ease;
    filter: brightness(0.95);
}
.album-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}
.album-item.split {
    display: flex;
}
.album-item.split img {
    width: 50%;
}
.album-item-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(17,17,17,0.95) 0%, rgba(17,17,17,0.4) 60%, rgba(17,17,17,0) 100%);
    transition: background 0.4s ease;
    z-index: 2;
}
.album-item:hover .album-item-overlay {
    background: linear-gradient(to top, rgba(10,10,10,0.98) 0%, rgba(10,10,10,0.6) 70%, rgba(10,10,10,0) 100%);
}
.album-item-overlay .cat {
    color: var(--text-main);
    font-size: 10px;
}
.album-item-overlay h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}
.album-item:hover .album-item-overlay h3 {
    color: var(--gold);
}
.album-item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 10px;
}
.album-item-bottom .meta {
    font-size: 10px;
    color: var(--text-muted);
}
.btn-outline-arrow {
    font-size: 10px;
    padding: 4px 10px;
    border: 1px solid var(--border);
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}
.album-item:hover .btn-outline-arrow,
.btn-outline-arrow:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: #000;
}

.cta-box-container {
    padding-bottom: 60px;
}
.cta-box {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background-color: var(--bg-box);
}
.cta-box-bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 30%;
}
.cta-box-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    mask-image: linear-gradient(to right, black, transparent);
    -webkit-mask-image: linear-gradient(to right, black, transparent);
}
.cta-box-content {
    position: relative;
    z-index: 1;
    text-align: center;
}
.cta-box-content h2 {
    color: var(--gold);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 5px;
}
.cta-box-content p {
    font-size: 13px;
    color: var(--text-main);
}
.cta-btn {
    position: relative;
    z-index: 1;
    padding: 10px 25px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ==========================================================================
   Album Detail Page Styles (Image 4)
   ========================================================================== */

.detail-page .page-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}
.header-badge {
    border: 1px solid var(--border);
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 11px;
    color: var(--gold);
    margin-bottom: 15px;
}
.large-title {
    font-size: 42px;
}
.detail-sub {
    font-size: 12px;
    color: var(--text-muted);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border);
}
.category-tabs a {
    font-size: 12px;
    color: var(--text-muted);
    padding-bottom: 10px;
    position: relative;
}
.category-tabs a.active {
    color: var(--gold);
}
.category-tabs a.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--gold);
}
.category-tabs a:hover {
    color: var(--gold);
}

.detail-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 30px;
}
.gallery-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.gallery-main {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    background-color: #000;
}
.gallery-main-img {
    width: 100%;
    height: 600px;
    object-fit: contain;
}
.gallery-controls {
    position: absolute;
    top: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}
.gallery-control-btn {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-family: var(--font);
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-main);
    font-family: var(--font);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    z-index: 10;
}
.gallery-nav.prev {
    left: 20px;
}
.gallery-nav.next {
    right: 20px;
}
.nav-circle {
    width: 35px;
    height: 35px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(17,17,17,0.5);
    transition: 0.2s;
}
.gallery-nav:hover .nav-circle {
    border-color: var(--gold);
    color: var(--gold);
}
.gallery-nav span {
    font-size: 10px;
    color: var(--text-muted);
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
}
.thumb-item {
    border: 1px solid var(--border);
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    height: 80px;
}
.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
    filter: brightness(0.5);
}
.thumb-item.active {
    border-color: var(--gold);
}
.thumb-item.active img {
    filter: brightness(1);
}
.thumb-num {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: var(--text-muted);
}

.sidebar-box {
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 30px 25px;
    background-color: var(--bg-box);
}
.sidebar-item {
    display: flex;
    gap: 15px;
}
.sidebar-icon {
    color: var(--gold);
    font-size: 18px;
    margin-top: 3px;
}
.sidebar-text h4 {
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}
.sidebar-text p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}
.sidebar-divider {
    height: 1px;
    background-color: var(--border);
    margin: 20px 0;
}
.sidebar-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    margin-top: 30px;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 4px;
    font-size: 14px;
    background: transparent;
    cursor: pointer;
    transition: 0.2s;
}
.sidebar-btn:hover {
    background-color: var(--gold);
    color: #111;
}

/* ==========================================================================
   Contact Page Styles (Image 5)
   ========================================================================== */

.contact-body {
    background-color: #0d0d0d;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.contact-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-bottom: 80px;
}
.contact-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}
.contact-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.7) 100%);
    z-index: 1;
}
.contact-header {
    position: relative;
    z-index: 2;
    padding: 30px 40px;
}
.contact-content-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    flex: 1;
    margin-top: 80px;
    margin-bottom: 80px;
}

/* Left: Contact Info */
.contact-info-col {
    padding-right: 20px;
}
.contact-title {
    font-size: 38px;
    font-weight: 400;
    color: var(--gold);
    line-height: 1.3;
    margin-bottom: 15px;
}
.title-divider {
    height: 1px;
    width: 60px;
    background-color: var(--gold);
    margin: 20px auto 20px 0;
}
.contact-subtitle {
    font-size: 15px;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 40px;
}
.contact-benefits {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}
.benefit-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.benefit-icon {
    width: 60px;
    height: 60px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 15px;
}
.benefit-item p {
    font-size: 12px;
    color: var(--text-muted);
}
.contact-details-box {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 30px;
    background-color: rgba(22,22,22,0.6);
    max-width: 320px;
}
.contact-details-box h4 {
    color: var(--gold);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}
.contact-details-box ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-main);
}
.contact-details-box ul li:last-child {
    margin-bottom: 0;
}
.contact-details-box ul li i {
    color: var(--gold);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Right: Contact Form Card */
.form-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 40px;
    color: var(--text-main);
}
.form-header {
    text-align: center;
    margin-bottom: 30px;
}
.form-header h2 {
    font-size: 28px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 5px;
}
.ornament {
    width: 30px;
    height: 1px;
    background-color: #d1c0a8;
    position: relative;
}
.ornament::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #d1c0a8;
    top: -1.5px;
}
.ornament.left::after { right: 0; }
.ornament.right::after { left: 0; }

.form-header p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Form Steps */
.form-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 10px;
}
.step-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
}
.step-num {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #d1c0a8;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
}
.step-point.active .step-num {
    background-color: var(--gold);
    color: #111;
}
.step-point span {
    font-size: 10px;
    color: var(--text-muted);
}
.step-point.active span {
    color: var(--gold);
    font-weight: 500;
}
.step-line {
    flex: 1;
    height: 1px;
    border-bottom: 1px dashed #d1c0a8;
    margin: -15px 10px 0;
}

/* Form Fields */
.booking-form {
    background-color: #222;
    padding: 30px;
    border-radius: 8px;
}
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
.form-control {
    flex: 1;
    background-color: #2a2a2a;
    border: 1px solid #3a3a3a;
    color: #fff;
    padding: 12px 15px;
    border-radius: 4px;
    font-family: var(--font);
    font-size: 13px;
    outline: none;
}
.form-control::placeholder {
    color: #888;
}
.form-control:focus {
    border-color: var(--gold);
}
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23888888%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 10px auto;
}

.btn-submit-gold {
    width: 100%;
    background-color: var(--gold);
    color: #111;
    border: none;
    padding: 15px;
    border-radius: 4px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.btn-submit-gold:hover {
    background-color: var(--gold-hover);
}
.privacy-note {
    text-align: center;
    color: #888;
    font-size: 10px;
    margin: 10px 0 20px;
}
.alt-contact-btns {
    display: flex;
    gap: 15px;
}
.btn-alt-outline {
    flex: 1;
    background: transparent;
    border: 1px solid #444;
    color: #fff;
    padding: 12px;
    border-radius: 4px;
    text-align: center;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}
.btn-alt-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.form-trust-review {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    align-items: center;
}
.form-trust-review img {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}
.trust-content .stars {
    color: var(--gold);
    font-size: 10px;
    margin-bottom: 5px;
}
.trust-title {
    color: #111;
    font-weight: 500;
    margin-left: 5px;
}
.trust-content .quote {
    font-size: 11px;
    color: #555;
    font-style: italic;
    margin-bottom: 2px;
}
.trust-content .author {
    font-size: 10px;
    color: #888;
}

/* Bottom Action Bar */
.contact-action-bar {
    position: fixed;
    bottom: 0; left: 0; width: 100%;
    background-color: #1a1a1a;
    border-top: 1px solid var(--border);
    padding: 15px 0;
    z-index: 100;
}
.action-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.action-text {
    display: flex;
    align-items: center;
    gap: 20px;
}
.action-text i {
    font-size: 32px;
    color: #333; /* Darker icon */
}
.action-text h4 {
    font-size: 16px;
    color: var(--text-main);
    font-weight: 500;
}
.action-text p {
    font-size: 12px;
    color: var(--text-muted);
}

/* ==========================================================================
   Blog Page Styles (Image 6)
   ========================================================================== */

.diamond-icon {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 5px;
}
.page-title.no-lines::before,
.page-title.no-lines::after {
    display: none;
}
.blog-filters {
    flex-wrap: wrap;
}

.blog-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.blog-featured-large {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    height: 400px;
    display: flex;
    align-items: center;
}
.blog-featured-large .bg-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
.blog-featured-large .overlay-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.8) 50%, rgba(13,13,13,0) 100%);
    z-index: 1;
}
.blog-featured-large .content {
    position: relative;
    z-index: 2;
    padding: 40px;
    width: 60%;
}
.badge-gold {
    background-color: var(--gold);
    color: #111;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 500;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 20px;
}
.blog-featured-large h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--text-main);
    line-height: 1.4;
}
.blog-featured-large p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}
.blog-featured-large .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    font-size: 13px;
}

.blog-featured-small-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.blog-featured-small {
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex;
    overflow: hidden;
    height: calc(200px - 10px);
    background-color: var(--bg-box);
}
.blog-featured-small .content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.blog-featured-small h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text-main);
    line-height: 1.4;
}
.read-more-link {
    color: var(--gold);
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.read-more-link:hover {
    color: var(--gold-hover);
}
.blog-featured-small .img-wrapper {
    width: 40%;
}
.blog-featured-small .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.blog-main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}
.blog-card-standard {
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    background-color: var(--bg-box);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}
.blog-card-standard:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(220, 179, 123, 0.2);
}
.blog-card-standard img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    filter: brightness(0.85);
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.4s ease;
}
.blog-card-standard:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}
.blog-card-standard .card-content {
    padding: 20px;
}
.blog-card-standard h4 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.4;
    height: 44px;
}
.blog-card-standard h4 a {
    transition: color 0.3s ease;
}
.blog-card-standard:hover h4 a {
    color: var(--gold);
}
.blog-card-standard .excerpt {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.meta-row .tag {
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 9px;
    padding: 2px 8px;
    border-radius: 15px;
}
.meta-row .date {
    font-size: 10px;
    color: var(--text-muted);
}
.action-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 15px;
}
.action-row .read-txt {
    font-size: 11px;
    color: var(--text-main);
    transition: color 0.3s ease;
}
.action-row .arrow-link {
    font-size: 11px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: transform 0.3s ease, color 0.3s ease;
}
.blog-card-standard:hover .action-row .arrow-link {
    transform: translateX(4px);
    color: var(--gold-hover);
}
.action-row .arrow-link i {
    font-size: 10px;
}
.action-row .arrow-link:hover {
    color: var(--gold-hover);
}

/* Newsletter */
.newsletter-banner {
    background-color: #1a1a1a;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}
.newsletter-icon {
    width: 150px;
    height: 100px;
    border-radius: 4px;
    overflow: hidden;
}
.newsletter-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%) brightness(0.7);
}
.newsletter-text {
    flex: 1;
}
.newsletter-text h3 {
    font-size: 20px;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 5px;
}
.newsletter-text p {
    font-size: 12px;
    color: var(--text-main);
}
.newsletter-form-wrapper {
    width: 400px;
}
.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}
.newsletter-form input {
    flex: 1;
    background-color: #2a2a2a;
    border: 1px solid #3a3a3a;
    color: #fff;
    padding: 10px 15px;
    border-radius: 4px;
    font-family: var(--font);
    font-size: 12px;
    outline: none;
}
.newsletter-form input:focus {
    border-color: var(--gold);
}
.newsletter-form .btn-primary {
    padding: 10px 20px;
    font-size: 12px;
    border: none;
    cursor: pointer;
}
.disclaimer {
    font-size: 9px;
    color: #666;
}

/* Bottom CTA inside Blog */
.blog-bottom-cta {
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background-color: var(--bg-box);
    text-align: center;
}
.blog-bottom-cta .cta-text h2 {
    font-size: 20px;
    color: var(--text-main);
    font-weight: 400;
    margin-bottom: 5px;
}
.blog-bottom-cta .cta-text p {
    font-size: 12px;
    color: var(--text-muted);
}
.blog-bottom-cta .btn-primary {
    padding: 10px 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Universal Button Glow Effects
   ========================================================================== */
.btn-primary, .btn-outline, .btn-outline-arrow, .sidebar-btn, .btn-submit-gold, .btn-alt-outline {
    transition: all 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover, .btn-outline:hover, .btn-outline-arrow:hover, .sidebar-btn:hover, .btn-submit-gold:hover, .btn-alt-outline:hover {
    box-shadow: 0 0 20px rgba(220, 179, 123, 0.6);
}

/* ==========================================================================
   Floating Contact Widget
   ========================================================================== */
.floating-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.widget-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.widget-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.widget-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    text-decoration: none;
    color: var(--text-main);
}

.widget-item span {
    background: rgba(17, 17, 17, 0.9);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    border: 1px solid var(--border);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.widget-item:hover span {
    opacity: 1;
    transform: translateX(0);
}

.widget-item i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.widget-item.messenger i { background-color: #0084FF; }
.widget-item.line i { background-color: #00C300; }
.widget-item.phone i { background-color: var(--gold); color: #111; }

.widget-item:hover i {
    transform: scale(1.1);
}

.widget-item.phone:hover i {
    box-shadow: 0 0 20px rgba(220, 179, 123, 0.6);
}

.widget-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--gold);
    color: #111;
    border: none;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(220, 179, 123, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulseWidget 2s infinite;
}

@keyframes pulseWidget {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 179, 123, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(220, 179, 123, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 179, 123, 0);
    }
}

.widget-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(220, 179, 123, 0.8);
    animation: none;
}

.widget-toggle i {
    transition: transform 0.3s ease;
}

.floating-widget.open .widget-toggle i {
    transform: rotate(180deg) scale(0);
    opacity: 0;
}

.floating-widget.open .widget-toggle::after {
    content: '\f00d'; /* FontAwesome close icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    font-size: 22px;
    animation: rotateIn 0.3s ease forwards;
}

@keyframes rotateIn {
    0% { transform: rotate(-90deg) scale(0); opacity: 0; }
    100% { transform: rotate(0) scale(1); opacity: 1; }
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--gold);
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

@media (max-width: 768px) {
    /* Header & Navigation */
    .nav-container {
        justify-content: space-between;
        position: relative;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-dark);
        flex-direction: column;
        gap: 0;
        border-top: 1px solid var(--border);
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        width: 100%;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header .btn-primary {
        display: none;
    }

    /* Hero Section */
    .slide-title {
        font-size: 32px !important;
    }
    .slide-desc {
        font-size: 16px !important;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
    .hero-buttons .btn-primary {
        width: 100%;
        margin-bottom: 10px;
    }

    /* Grids & Layouts */
    .features-grid,
    .services-grid,
    .pricing-grid,
    .blog-grid,
    .album-grid-complex,
    .album-grid-small,
    .blog-top-grid,
    .blog-main-grid,
    .contact-content-grid,
    .contact-container,
    .album-gallery,
    .detail-grid {
        grid-template-columns: 1fr !important;
    }

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

    .category-tabs {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .gallery-thumbs {
        grid-template-columns: repeat(4, 1fr);
    }
    .gallery-main-img {
        height: 300px;
    }

    .section.about .container {
        flex-direction: column;
    }

    /* Blog Specific */
    .blog-featured-small {
        flex-direction: column;
        height: auto;
    }
    .blog-featured-small .img-wrapper {
        width: 100%;
        height: 200px;
    }
    .blog-featured-small .content {
        padding: 20px;
    }

    /* Contact Specific */
    .contact-benefits {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .contact-content-grid {
        gap: 30px;
    }
    .form-card {
        padding: 20px;
    }
    .booking-form {
        padding: 15px;
    }
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    .step-point span {
        font-size: 9px;
        text-align: center;
    }
    .step-line {
        margin: -15px 5px 0;
    }
    .contact-info-col {
        padding-right: 0;
        text-align: center;
    }
    .contact-details-box {
        margin: 0 auto;
    }
    .title-divider {
        margin: 20px auto;
    }
    
    /* Footer */
    .footer .container > div:first-child {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 30px;
    }
    
    .footer .container > div:first-child > div {
        text-align: center !important;
    }
    
    .footer .icons {
        justify-content: center !important;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}

/* Album Grid 4 Columns */
.album-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
@media (max-width: 991px) {
    .album-grid-4col {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .album-grid-4col {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .album-grid-4col {
        grid-template-columns: 1fr;
    }
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 50px 0 30px;
    flex-wrap: wrap;
}
.page-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-main);
    cursor: pointer;
    background: var(--bg-box);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 500;
}
.page-btn:hover:not(.disabled):not(.active) {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 4px 15px rgba(220, 179, 123, 0.25);
}
.page-btn.active {
    background: linear-gradient(135deg, #e8c695 0%, #dcb37b 50%, #c49c63 100%);
    color: #111 !important;
    border-color: var(--gold);
    font-weight: 600;
    box-shadow: 0 4px 18px rgba(220, 179, 123, 0.45);
    transform: scale(1.05);
}
.page-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.08);
}

/* Blog Section (Homepage & Cards) */
.blog-card {
    background: rgba(22, 22, 22, 0.75);
    border: 1px solid rgba(220, 179, 123, 0.18);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.blog-card:hover {
    background: rgba(28, 28, 28, 0.95);
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(220, 179, 123, 0.22);
}
.blog-card .blog-img-link {
    display: block;
    overflow: hidden;
    position: relative;
    background: #141414;
}
.blog-card .blog-img-link img,
.blog-card > a > img {
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.4s ease;
    filter: brightness(0.95);
}
.blog-card:hover .blog-img-link img,
.blog-card:hover > a > img {
    transform: scale(1.07);
    filter: brightness(1.03);
}
.blog-card .blog-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-card h4 a {
    color: var(--text-main);
    transition: color 0.3s ease;
}
.blog-card:hover h4 a {
    color: var(--gold);
}

/* Modern Read More Button */
.blog-read-btn,
.blog-card .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 22px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: 25px;
    background: rgba(220, 179, 123, 0.08);
    color: var(--gold) !important;
    border: 1px solid rgba(220, 179, 123, 0.4);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    cursor: pointer;
    font-family: var(--font);
    align-self: flex-start;
    margin-top: auto;
}

.blog-read-btn:hover,
.blog-card .btn-outline:hover {
    background: linear-gradient(135deg, #e8c695 0%, #dcb37b 50%, #c49c63 100%);
    color: #111 !important;
    border-color: var(--gold);
    box-shadow: 0 6px 20px rgba(220, 179, 123, 0.5);
    transform: translateY(-2px) scale(1.03);
}

.blog-read-btn i,
.blog-card .btn-outline i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.blog-read-btn:hover i,
.blog-card:hover .blog-read-btn i,
.blog-card .btn-outline:hover i {
    transform: translateX(4px);
}

/* Soft Pulsing Glow for "ดูผลงานทั้งหมด" & "อ่านบทความทั้งหมด" */
.btn-soft-glow {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #e8c695 0%, #dcb37b 50%, #c49c63 100%);
    color: #111 !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid var(--gold);
    box-shadow: 0 4px 15px rgba(220, 179, 123, 0.35);
    animation: softGoldPulse 2.6s infinite ease-in-out;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    cursor: pointer;
}

.btn-soft-glow:hover {
    animation-play-state: paused;
    background: linear-gradient(135deg, #f5d7aa 0%, #e0b982 50%, #cca268 100%);
    box-shadow: 0 6px 28px rgba(220, 179, 123, 0.75), 0 0 16px rgba(220, 179, 123, 0.4);
    transform: translateY(-3px) scale(1.03);
}

.btn-soft-glow i {
    transition: transform 0.3s ease;
}

.btn-soft-glow:hover i {
    transform: translateX(4px);
}

@keyframes softGoldPulse {
    0%, 100% {
        box-shadow: 0 4px 14px rgba(220, 179, 123, 0.3), 0 0 0 0 rgba(220, 179, 123, 0.5);
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        box-shadow: 0 6px 22px rgba(220, 179, 123, 0.7), 0 0 0 7px rgba(220, 179, 123, 0);
        transform: scale(1.025);
        filter: brightness(1.12);
    }
}

/* ==========================================
   CUSTOMER REVIEW MODAL & FORM
   ========================================== */
.customer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
}

.customer-modal.active {
    opacity: 1;
    visibility: visible;
}

.customer-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.customer-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(145deg, #1a1a1e 0%, #121215 100%);
    border: 1px solid rgba(220, 179, 123, 0.25);
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(220, 179, 123, 0.15);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
}

.customer-modal.active .customer-modal-dialog {
    transform: scale(1) translateY(0);
}

.customer-modal-content {
    padding: 35px 30px 30px;
    position: relative;
}

.customer-modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.customer-modal-close:hover {
    background: rgba(220, 179, 123, 0.2);
    color: var(--gold);
    border-color: var(--gold);
    transform: rotate(90deg);
}

.customer-modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.customer-modal-header .modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    background: rgba(220, 179, 123, 0.12);
    border: 1px solid rgba(220, 179, 123, 0.3);
    border-radius: 20px;
    color: var(--gold);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.customer-modal-header h3 {
    font-size: 24px;
    color: #ffffff;
    margin: 0 0 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.customer-modal-header p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.5;
}

/* Form Styles */
.rating-select-group {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 20px;
    text-align: center;
}

.rating-select-group label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-weight: 500;
}

.rating-select-group label .req,
.form-group-cust label .req {
    color: #ff5e5e;
}

.star-rating-picker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.star-pick {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: transform 0.15s ease, color 0.15s ease;
    user-select: none;
}

.star-pick:hover,
.star-pick.hover-active {
    color: #ffd166;
    transform: scale(1.2);
}

.star-pick.active {
    color: var(--gold);
}

.rating-text-label {
    margin-left: 12px;
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
    min-width: 100px;
    text-align: left;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

@media (max-width: 540px) {
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

.form-group-cust {
    margin-bottom: 16px;
}

.form-group-cust label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 6px;
    font-weight: 500;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 14px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    pointer-events: none;
    transition: color 0.3s;
}

.input-with-icon.textarea-icon i {
    top: 14px;
    transform: none;
}

.input-with-icon input,
.input-with-icon select,
.input-with-icon textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 11px 14px 11px 40px;
    font-size: 13px;
    color: #ffffff;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.input-with-icon select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.input-with-icon select option {
    background: #1a1a1e;
    color: #ffffff;
}

.input-with-icon textarea {
    resize: vertical;
    min-height: 90px;
    line-height: 1.5;
}

.input-with-icon input:focus,
.input-with-icon select:focus,
.input-with-icon textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 0 3px rgba(220, 179, 123, 0.15);
}

.input-with-icon input:focus + i,
.input-with-icon select:focus + i,
.input-with-icon textarea:focus + i {
    color: var(--gold);
}

/* File Upload Preview */
.cust-file-upload {
    border: 1.5px dashed rgba(220, 179, 123, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cust-file-upload:hover {
    border-color: var(--gold);
    background: rgba(220, 179, 123, 0.05);
}

.upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6);
}

.upload-placeholder i {
    font-size: 26px;
    color: var(--gold);
}

.upload-placeholder span {
    font-size: 13px;
    font-weight: 500;
}

.upload-placeholder small {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
}

.upload-preview {
    position: relative;
    display: inline-block;
    max-width: 120px;
}

.upload-preview img {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid var(--gold);
    display: block;
}

.upload-preview .remove-img-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ff4757;
    color: #fff;
    border: none;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Feedback message */
.cust-feedback {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.cust-feedback.success {
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.4);
    color: #75b798;
}

.cust-feedback.error {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.4);
    color: #ea868f;
}

/* Footer Buttons */
.customer-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-cancel {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.btn-submit-review {
    background: linear-gradient(135deg, #dcb37b 0%, #c49a5f 100%);
    border: none;
    color: #121212;
    font-weight: 600;
    padding: 10px 26px;
    border-radius: 30px;
    font-size: 13px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 179, 123, 0.3);
}

.btn-submit-review:hover {
    background: linear-gradient(135deg, #e8c48f 0%, #d4a96e 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 179, 123, 0.5);
}

.btn-submit-review:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Prompt Chips for Review Form */
.prompt-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11.5px;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(220, 179, 123, 0.08);
    border: 1px solid rgba(220, 179, 123, 0.25);
    color: #e0e0e0;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

.prompt-chip:hover {
    background: rgba(220, 179, 123, 0.25);
    border-color: var(--gold);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(220, 179, 123, 0.2);
}

.prompt-chip:active {
    transform: scale(0.96);
}

/* ===================================================
   ABOUT THE PHOTOGRAPHER - EXTENDED LUXURY STYLES
   =================================================== */
.about-photographer-section {
    position: relative;
    padding: 90px 0 80px;
    background: radial-gradient(circle at 10% 20%, rgba(220, 179, 123, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(220, 179, 123, 0.04) 0%, transparent 40%),
                var(--bg-dark);
    border-top: 1px solid rgba(220, 179, 123, 0.15);
    border-bottom: 1px solid rgba(220, 179, 123, 0.15);
    overflow: hidden;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(220, 179, 123, 0.1);
    border: 1px solid rgba(220, 179, 123, 0.35);
    border-radius: 30px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-main-title {
    font-size: 34px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.3;
    margin-bottom: 12px;
}

.about-main-title .gold-text {
    color: var(--gold);
    background: linear-gradient(135deg, #f5d7aa 0%, #dcb37b 50%, #c49a5f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-lead-desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    max-width: 820px;
    margin-bottom: 45px;
}

/* Profile Hero Grid */
.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-photo-wrapper {
    position: relative;
    border-radius: 16px;
    padding: 10px;
}

.about-photo-wrapper .gold-frame-deco {
    position: absolute;
    top: -8px;
    left: -8px;
    right: 8px;
    bottom: 8px;
    border: 2px solid rgba(220, 179, 123, 0.4);
    border-radius: 20px;
    z-index: 1;
    pointer-events: none;
    transition: all 0.4s ease;
}

.about-photo-wrapper:hover .gold-frame-deco {
    transform: translate(4px, 4px);
    border-color: var(--gold);
}

.about-main-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 14px;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease;
}

.about-photo-wrapper:hover .about-main-img {
    transform: scale(1.015);
}

.about-floating-badge {
    position: absolute;
    bottom: 25px;
    right: -10px;
    background: rgba(22, 22, 22, 0.92);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 179, 123, 0.4);
    border-radius: 12px;
    padding: 12px 18px;
    z-index: 3;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.about-floating-badge i {
    font-size: 24px;
    color: var(--gold);
}

.about-floating-badge .badge-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-floating-badge .badge-val {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
}

/* Story Content */
.about-quote {
    position: relative;
    padding: 18px 24px 18px 20px;
    background: rgba(220, 179, 123, 0.05);
    border-left: 3px solid var(--gold);
    border-radius: 0 10px 10px 0;
    margin-bottom: 22px;
    font-size: 15px;
    font-style: italic;
    color: #f0e6d6;
    line-height: 1.7;
}

.about-story-p {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-story-p strong {
    color: var(--text-main);
    font-weight: 500;
}

.about-cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

/* Stats Counter Row */
.about-stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 70px;
}

.about-stat-box {
    background: rgba(26, 26, 26, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.about-stat-box:hover {
    border-color: rgba(220, 179, 123, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(220, 179, 123, 0.1);
    background: rgba(30, 30, 30, 0.9);
}

.about-stat-icon {
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 10px;
    display: inline-block;
}

.about-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.1;
    margin-bottom: 6px;
    font-family: 'Prompt', sans-serif;
}

.about-stat-label {
    font-size: 13px;
    color: var(--text-main);
    font-weight: 500;
    margin-bottom: 4px;
}

.about-stat-sub {
    font-size: 11.5px;
    color: var(--text-muted);
}

/* Sub-section headers inside about */
.about-sub-header {
    text-align: center;
    margin-bottom: 35px;
}

.about-sub-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

.about-sub-header p {
    color: var(--text-muted);
    font-size: 13.5px;
}

/* BTS & In Action Gallery */
.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 70px;
}

.about-gallery-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg-box);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-gallery-card:hover {
    transform: translateY(-6px);
    border-color: rgba(220, 179, 123, 0.5);
    box-shadow: 0 14px 30px rgba(220, 179, 123, 0.15);
}

.about-gallery-img-wrap {
    position: relative;
    height: 270px;
    overflow: hidden;
}

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

.about-gallery-card:hover .about-gallery-img-wrap img {
    transform: scale(1.08);
}

.about-gallery-pill {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(220, 179, 123, 0.4);
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
}

.about-gallery-content {
    padding: 18px 20px;
}

.about-gallery-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 6px;
}

.about-gallery-desc {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Photography Style Pillars */
.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 70px;
}

.about-pillar-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.7) 0%, rgba(20, 20, 20, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 28px 24px;
    position: relative;
    transition: all 0.35s ease;
}

.about-pillar-card:hover {
    border-color: rgba(220, 179, 123, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(220, 179, 123, 0.12);
    border: 1px solid rgba(220, 179, 123, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 18px;
}

.about-pillar-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 10px;
}

.about-pillar-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Gear & Equipment Section */
.about-gear-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 70px;
}

.about-gear-card {
    background: rgba(24, 24, 24, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 24px 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.about-gear-card:hover {
    border-color: rgba(220, 179, 123, 0.4);
    background: rgba(28, 28, 28, 0.95);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(220, 179, 123, 0.08);
}

.about-gear-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.about-gear-top-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(220, 179, 123, 0.1);
    border: 1px solid rgba(220, 179, 123, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    flex-shrink: 0;
}

.about-gear-cat {
    font-size: 11px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.about-gear-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
}

.about-gear-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-gear-list li {
    font-size: 12.5px;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.about-gear-list li i {
    color: var(--gold);
    font-size: 11px;
    margin-top: 4px;
    flex-shrink: 0;
}

.about-gear-badge {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    font-size: 11.5px;
    color: #e5c088;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Work Highlights (จุดเด่นในการทำงาน) */
.about-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 70px;
}

.about-highlight-card {
    background: rgba(22, 22, 22, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 24px 20px;
    position: relative;
    transition: all 0.3s ease;
}

.about-highlight-card:hover {
    border-color: rgba(220, 179, 123, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.about-highlight-num {
    position: absolute;
    top: 15px;
    right: 18px;
    font-size: 24px;
    font-weight: 700;
    color: rgba(220, 179, 123, 0.15);
    font-family: 'Prompt', sans-serif;
}

.about-highlight-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(220, 179, 123, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
}

.about-highlight-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

.about-highlight-desc {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Service Area Box */
.about-service-area-box {
    background: linear-gradient(135deg, rgba(32, 28, 24, 0.8) 0%, rgba(20, 20, 20, 0.95) 100%);
    border: 1px solid rgba(220, 179, 123, 0.3);
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.about-area-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 25px;
}

.about-area-item {
    background: rgba(18, 18, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.about-area-item:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.about-area-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.about-area-desc {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .about-main-img {
        height: 380px;
    }
    .about-stats-container,
    .about-gear-grid,
    .about-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-gallery-grid,
    .about-pillars-grid,
    .about-area-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .about-photographer-section {
        padding: 60px 0 50px;
    }
    .about-main-title {
        font-size: 26px;
    }
    .about-stats-container,
    .about-gear-grid,
    .about-highlights-grid,
    .about-gallery-grid,
    .about-pillars-grid,
    .about-area-grid {
        grid-template-columns: 1fr;
    }
    .about-main-img {
        height: 320px;
    }
    .about-floating-badge {
        right: 10px;
        bottom: 10px;
        padding: 8px 12px;
    }
    .about-service-area-box {
        padding: 25px 18px;
    }
}


