:root {
    --bg-color: #F9F8F6;        /* Cream */
    --bg-contrast: #EFECE8;     /* Soft Beige */
    --text-main: #333333;
    --text-muted: #777777;
    --accent: #D2B48C;          /* Champagne */

    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
}

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

html { 
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    font-weight: 300;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* ---------------- GLOBAL ENHANCEMENTS ---------------- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    z-index: 1002;
    background: linear-gradient(90deg, var(--accent), #c9a876, var(--text-main));
    box-shadow: 0 2px 8px rgba(210,180,140,0.4);
    transition: width 0.12s linear;
}

.section {
    scroll-margin-top: 90px;
}

@keyframes softShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(25px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 400;
}

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

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 40px;
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        max-width: 100%;
    }
}

.small-container {
    max-width: 720px;
}

.section {
    padding: 120px 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

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

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

.bg-contrast {
    background-color: var(--bg-contrast);
}

/* ---------------- NAVBAR ---------------- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 100;
    padding: 20px 40px;
    background: rgba(249, 248, 246, 0.92);
    backdrop-filter: blur(10px);

    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.navbar.scrolled {
    padding-top: 12px;
    padding-bottom: 12px;
    background: rgba(249, 248, 246, 0.97);
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
}

.logo img {
    height: 60px;
    mix-blend-mode: multiply;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-main);
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* ---------------- HAMBURGER ---------------- */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 102;
    padding: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 2px solid rgba(0,0,0,0.1);
}

.hamburger.active {
    background: rgba(0, 0, 0, 0.9);
}

.dash {
    display: block;
    width: 24px;
    height: 2px;
    background: #000;
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
    border-radius: 1px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    font-size: 0;
    line-height: 0;
    position: relative;
}

.dash::before {
    content: '—';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: 900;
    color: #000;
    line-height: 1;
    letter-spacing: 0;
}

.hamburger.active .dash {
    background: transparent;
    box-shadow: none;
}

.hamburger.active .dash::before {
    color: #fff;
}

.hamburger.active .dash:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .dash:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active .dash:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ---------------- FLOATING CTA ---------------- */
.floating-book-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 101;

    background: var(--text-main);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;

    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;

    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    animation: pulseBookBtn 2s ease-in-out infinite;
    overflow: hidden;
}

.floating-book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
}

.floating-book-btn:hover::before {
    left: 140%;
}

@keyframes pulseBookBtn {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    }
}

.floating-book-btn:hover {
    background: var(--accent);
    transform: translateY(-3px) scale(1.05);
    animation: none;
}

@media (max-width: 768px) {
    .floating-book-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 24px;
        font-size: 0.75rem;
    }
}

/* ---------------- HERO ---------------- */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    isolation: isolate;
}

.hero-image-container {
    position: absolute;
    inset: 0;
    z-index: -1;
    animation: heroImageZoom 20s ease-in-out infinite;
}

@keyframes heroImageZoom {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.hero-image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
    animation: gradientShift 15s ease-in-out infinite;
}

.hero-ambient {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(210,180,140,0.3), transparent 36%),
        radial-gradient(circle at 78% 72%, rgba(255,255,255,0.16), transparent 30%),
        radial-gradient(circle at 60% 10%, rgba(210,180,140,0.18), transparent 24%);
    animation: ambientShift 18s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ambientShift {
    0%, 100% {
        transform: scale(1) translate3d(0, 0, 0);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.06) translate3d(-10px, 10px, 0);
        opacity: 1;
    }
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    animation: imageFade 25s ease-in-out infinite;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-particles .particle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, rgba(210,180,140,0.2) 60%, transparent 100%);
    filter: blur(0.2px);
    animation: particleFloat 14s ease-in-out infinite;
}

.hero-particles .particle:nth-child(1) { left: 10%; top: 82%; width: 8px; height: 8px; animation-delay: 0s; }
.hero-particles .particle:nth-child(2) { left: 24%; top: 75%; width: 12px; height: 12px; animation-delay: 2s; }
.hero-particles .particle:nth-child(3) { left: 43%; top: 88%; width: 9px; height: 9px; animation-delay: 4s; }
.hero-particles .particle:nth-child(4) { left: 62%; top: 80%; width: 14px; height: 14px; animation-delay: 1.5s; }
.hero-particles .particle:nth-child(5) { left: 79%; top: 86%; width: 10px; height: 10px; animation-delay: 3.5s; }
.hero-particles .particle:nth-child(6) { left: 90%; top: 78%; width: 8px; height: 8px; animation-delay: 5s; }

@keyframes particleFloat {
    0% {
        transform: translate3d(0, 0, 0) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    70% {
        opacity: 0.4;
    }
    100% {
        transform: translate3d(0, -280px, 0) scale(1.4);
        opacity: 0;
    }
}

.hero-image-container img.loaded {
    animation: imageFade 25s ease-in-out infinite, heroImageReveal 1s ease-out both;
}

@keyframes heroImageReveal {
    from {
        transform: scale(1.05);
        opacity: 0.5;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes imageFade {
    0%, 100% {
        filter: brightness(0.7) saturate(1);
    }
    50% {
        filter: brightness(0.75) saturate(1.1);
    }
}

/* Floating decorative elements */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(210, 180, 140, 0.1);
    z-index: 0;
    animation: float 20s ease-in-out infinite;
}

.hero::before {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.hero::after {
    width: 200px;
    height: 200px;
    bottom: 15%;
    right: 15%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.1;
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.15;
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
        opacity: 0.12;
    }
}

.hero-text-box {
    background: rgba(249,248,246,0.92);
    backdrop-filter: blur(12px);
    padding: 60px;
    max-width: 600px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
    animation: textBoxFadeIn 1s ease-out;
    border-radius: 4px;
    overflow: hidden;
}

@keyframes textBoxFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent), transparent, var(--accent));
    border-radius: 4px;
    z-index: -1;
    opacity: 0.3;
    animation: borderGlow 3s ease-in-out infinite;
}

.hero-text-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 25%, rgba(255,255,255,0.35) 50%, transparent 75%);
    transform: translateX(-130%);
    animation: textBoxSweep 5.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes textBoxSweep {
    0%, 60% {
        transform: translateX(-130%);
    }
    100% {
        transform: translateX(130%);
    }
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.4;
    }
}

.subtitle {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: subtitleSlide 1s ease-out 0.3s both;
    color: var(--text-muted);
    position: relative;
    display: inline-block;
}

@keyframes subtitleSlide {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero h1 {
    font-size: 4rem;
    margin: 15px 0 20px;
    line-height: 1;
    animation: titleFadeIn 1s ease-out 0.5s both;
    position: relative;
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 i {
    font-weight: 300;
    display: inline-block;
    animation: italicPulse 3s ease-in-out infinite;
}

@keyframes italicPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.description {
    color: var(--text-muted);
    margin-bottom: 30px;
    animation: descriptionFadeIn 1s ease-out 0.7s both;
    line-height: 1.8;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
    animation: descriptionFadeIn 1s ease-out 0.8s both;
}

.hero-tags span {
    font-size: 0.72rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #4b433b;
    background: rgba(210,180,140,0.2);
    border: 1px solid rgba(210,180,140,0.55);
    padding: 7px 12px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

@keyframes descriptionFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-line {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--text-main);
    padding-bottom: 5px;
    display: inline-block;
    position: relative;
    animation: btnLineFadeIn 1s ease-out 0.9s both;
    transition: all 0.3s ease;
}

@keyframes btnLineFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-line::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.4s ease;
}

.btn-line:hover {
    color: var(--accent);
    border-color: transparent;
    transform: translateY(-2px);
}

.btn-line:hover::after {
    width: 100%;
}

.hero-scroll-cue {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 46px;
    border: 1.5px solid rgba(255,255,255,0.9);
    border-radius: 999px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 8px;
    z-index: 1;
    box-shadow: 0 6px 25px rgba(0,0,0,0.25);
    background: rgba(0,0,0,0.2);
}

.hero-scroll-cue span {
    width: 5px;
    height: 9px;
    border-radius: 999px;
    background: #fff;
    animation: scrollCue 1.8s ease-in-out infinite;
}

@keyframes scrollCue {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    25% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(18px);
    }
}

@media (max-width: 768px) {
    .hero-tags {
        margin-bottom: 24px;
        gap: 8px;
    }

    .hero-tags span {
        font-size: 0.65rem;
        padding: 6px 10px;
    }

    .hero-scroll-cue {
        bottom: 22px;
    }
}

/* ---------------- PHILOSOPHY ---------------- */
.lead-text {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-style: italic;
    color: var(--accent);
    margin-bottom: 20px;
}

/* ---------------- SECTION HEADER ---------------- */
.section-header {
    text-align: center;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 60px;
}

/* ===============================
   MOBILE NAV OVERLAY & ANIMATION
================================ */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    z-index: 99;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Improve mobile nav animation */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 40px 40px;
        gap: 0;
        
        transform: translateX(0);
        transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
        z-index: 101;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        margin-bottom: 0;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.4s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }

    .nav-links a {
        display: block;
        padding: 15px 0;
        font-size: 1rem;
        letter-spacing: 3px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        width: 100%;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover {
        color: var(--accent);
        padding-left: 10px;
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* ---------------- SERVICES MENU ---------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: var(--accent);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(210,180,140,0.12) 50%, transparent 80%);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
    animation: softShimmer 1s linear;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-contrast);
}

.service-header h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-main);
    margin: 0;
    flex: 1;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent);
    font-family: var(--font-sans);
    white-space: nowrap;
    margin-left: 15px;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .service-card {
        padding: 25px;
    }

    .service-header h3 {
        font-size: 1.2rem;
    }

    .service-price {
        font-size: 1.1rem;
    }
}

/* ---------------- WHY CHOOSE US ---------------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 40px;
    text-align: center;
}

.why-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.why-card p {
    color: var(--text-muted);
}

/* ---------------- SOCIAL PROOF ---------------- */
.section.text-center p {
    max-width: 700px;
    margin: auto;
}

/* ---------------- OUR WORKS SECTION ---------------- */
.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.work-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1 / 1;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.work-item:hover {
    transform: scale(1.02);
}

.work-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.work-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

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

.work-overlay i {
    color: #fff;
    font-size: 2.5rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.work-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 8px;
    opacity: 0;
    transform: scale(0.92);
    transition: all 0.35s ease;
    pointer-events: none;
}

.work-item:hover::after {
    opacity: 1;
    transform: scale(1);
}

.work-item:hover .work-overlay i {
    transform: scale(1);
}

@media (max-width: 768px) {
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 40px;
    }

    .work-overlay i {
        font-size: 2rem;
    }
}

/* =====================================================
   LIGHTBOX MODAL
===================================================== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 1001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 1001;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 2.5rem;
        width: 45px;
        height: 45px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 85%;
        padding: 0 10px;
    }

    .lightbox-content img {
        max-height: 85vh;
    }
}

/* ---------------- GALLERY ---------------- */
.gallery-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.big-img img,
.small-imgs img {
    width: 100%;
    border-radius: 2px;
}

.small-imgs {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.text-block {
    padding: 40px;
    background: #fff;
    text-align: center;
}

.text-block h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.text-block a {
    color: var(--accent);
    text-decoration: underline;
}

/* ---------------- INSTAGRAM TEASER ---------------- */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
    margin-top: 40px;
}

.insta-grid div {
    background: #ddd;
    aspect-ratio: 1 / 1;
}

/* ---------------- MOBILE CTA STRIP ---------------- */
.mobile-cta {
    position: sticky;
    bottom: 0;
    background: var(--text-main);
    color: #fff;
    padding: 20px;
    text-align: center;
    z-index: 99;
}

.mobile-cta a {
    display: inline-block;
    margin-top: 10px;
    background: #fff;
    color: var(--text-main);
    padding: 12px 30px;
    border-radius: 30px;
}

/* ---------------- FOOTER ---------------- */
.footer {
    background: linear-gradient(135deg, #fff 0%, var(--bg-contrast) 100%);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.success-content::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(210,180,140,0.15), transparent 40%);
    pointer-events: none;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
    color: var(--text-main);
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--accent);
}

.footer-col p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-address {
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(0,0,0,0.06);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    padding: 14px 16px;
}

.footer-col a {
    color: var(--text-muted);
    margin-bottom: 12px;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-social a {
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: translateX(-120%);
    transition: transform 0.45s ease;
}

.footer-social a:hover::before {
    transform: translateX(120%);
}

/* Stagger reveal on capable browsers */
@supports (animation-timeline: view()) {
    .service-card,
    .work-item,
    .why-card,
    .luxury-feature {
        animation: cardReveal 0.8s ease both;
        animation-timeline: view();
        animation-range: entry 10% cover 35%;
    }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ---------------- ANIMATIONS ---------------- */
.fade-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease-out;
}

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

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* ---------------- MOBILE OPTIMIZATION ---------------- */
@media (max-width: 768px) {

    .container {
        padding: 0 20px;
    }

    .hero {
        min-height: 100vh;
        height: auto;
        padding-top: 90px;
        padding-bottom: 30px;
    }

    .hero-text-box {
        padding: 40px 30px;
        margin: 0 15px;
        border-radius: 8px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero::before,
    .hero::after {
        display: none;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social a {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin: 0 8px;
    }

    .hamburger {
        display: flex !important;
    }

    .insta-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .section {
        padding: 60px 0;
    }

    .luxury-about-content h3 {
        font-size: 2rem;
    }

    .luxury-about-content p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .footer {
        padding: 50px 0 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-col {
        align-items: center;
        text-align: center;
    }

    .footer-social {
        margin-bottom: 25px;
        padding-bottom: 25px;
    }

    .footer-bottom {
        padding-top: 25px;
    }
}

/* =====================================================
   LUXURY ABOUT SECTION (EXTENSION)
===================================================== */
.luxury-about {
    position: relative;
    overflow: hidden;
}

.luxury-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, transparent, var(--accent), transparent);
}

.luxury-about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.luxury-about-content h3 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-main);
    line-height: 1.2;
}

.luxury-about-content p {
    text-align: justify;
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.luxury-about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.luxury-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.luxury-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(210,180,140,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.luxury-feature-content h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.luxury-feature-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

.luxury-about-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.luxury-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.luxury-about-image:hover img {
    transform: scale(1.05);
}

.luxury-about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(210,180,140,0.1) 0%, transparent 100%);
    pointer-events: none;
}

@media (max-width: 968px) {
    .luxury-about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .luxury-about-image {
        order: -1;
        max-height: 400px;
    }

    .luxury-about-features {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   BOOKING FORM (SINGLE SOURCE)
===================================================== */
#book {
    position: relative;
    overflow: hidden;
}

#book::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.booking-form {
    margin-top: 50px;
    display: grid;
    gap: 20px;
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.booking-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--text-main), var(--accent));
}

.booking-form input {
    width: 100%;
    padding: 18px 25px;
    border-radius: 50px;
    border: 2px solid #e8e8e8;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    background: #fafafa;
    transition: all 0.3s ease;
    color: var(--text-main);
}

.booking-form input::placeholder {
    color: #999;
}

.booking-form input:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(210,180,140,0.1);
    transform: translateY(-2px);
}

/* Form Field Groups for Date/Time */
.form-field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 5px;
    font-family: var(--font-sans);
}

.form-label i {
    color: var(--accent);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.field-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: -5px;
    margin-bottom: 5px;
    padding-left: 30px;
    line-height: 1.5;
    font-style: italic;
    opacity: 0.8;
}

.form-field-group input[type="date"],
.form-field-group input[type="time"] {
    padding: 18px 25px;
    border-radius: 50px;
    border: 2px solid #e8e8e8;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    background: #fafafa;
    transition: all 0.3s ease;
    color: var(--text-main);
    cursor: pointer;
}

.form-field-group input[type="date"]:focus,
.form-field-group input[type="time"]:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(210,180,140,0.1);
    transform: translateY(-2px);
}

.form-field-group input[type="date"]:hover,
.form-field-group input[type="time"]:hover {
    border-color: #d0d0d0;
    background: #f5f5f5;
}

.booking-form button {
    margin-top: 15px;
    padding: 18px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, var(--text-main) 0%, #222 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.booking-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.booking-form button:hover::before {
    left: 100%;
}

.booking-form button:hover {
    background: linear-gradient(135deg, var(--accent) 0%, #c9a876 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(210,180,140,0.3);
}

.booking-form button:active {
    transform: translateY(-1px);
}

/* =====================================================
   SUCCESS MESSAGE
===================================================== */
.success-message {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    animation: fadeInOverlay 0.3s ease;
}

.success-message.active {
    display: flex;
}

@keyframes fadeInOverlay {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.success-content {
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideUpSuccess 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

@keyframes slideUpSuccess {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.success-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--text-main), var(--accent));
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleInIcon 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s both;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

@keyframes scaleInIcon {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon i {
    font-size: 2.5rem;
    color: #fff;
    animation: checkMark 0.6s ease 0.4s both;
}

@keyframes checkMark {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(5deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.success-content h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 15px;
    animation: fadeInText 0.5s ease 0.3s both;
}

.success-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1rem;
    animation: fadeInText 0.5s ease 0.4s both;
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-close {
    background: linear-gradient(135deg, var(--text-main) 0%, #222 100%);
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    animation: fadeInText 0.5s ease 0.5s both;
}

.success-close:hover {
    background: linear-gradient(135deg, var(--accent) 0%, #c9a876 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(210,180,140,0.3);
}

.success-close:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .success-content {
        padding: 40px 30px;
        max-width: 90%;
    }

    .success-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .success-icon i {
        font-size: 2rem;
    }

    .success-content h3 {
        font-size: 1.6rem;
    }

    .success-content p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .success-close {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* =====================================================
   SIDE ACTION ICONS (WHATSAPP / CALL / EMAIL)
===================================================== */
.side-actions {
    position: fixed;
    right: 12px;
    top: 40%;
    z-index: 98;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.side-actions a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.side-actions a:hover {
    transform: scale(1.1);
}

.side-actions .wa { background: #25D366; }
.side-actions .call { background: #111; }
.side-actions .mail { background: #555; }

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.12); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .side-actions {
        top: auto;
        bottom: 100px;
        right: 15px;
        flex-direction: column;
        gap: 12px;
        z-index: 97;
    }

    .side-actions a {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        animation: none;
    }
    
    .side-actions a:active {
        transform: scale(0.95);
    }
}

/* =====================================================
   SCROLL TO TOP BUTTON
===================================================== */
#scrollTop {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--text-main);
    color: #fff;
    border: none;
    display: none;
    cursor: pointer;
    z-index: 99;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

#scrollTop:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    #scrollTop {
        bottom: 20px;
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* =====================================================
   FOOTER SOCIAL ICONS (ENHANCED)
===================================================== */
.footer-social {
    margin-bottom: 40px;
    text-align: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    margin: 0 12px;
    color: var(--text-main);
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.footer-social a:hover {
    color: #fff;
    background: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(210,180,140,0.3);
    border-color: var(--accent);
}

/* =====================================================
   MOBILE POLISH
===================================================== */
@media (max-width: 768px) {

    .side-actions {
        right: 8px;
        top: 45%;
    }

    .booking-form {
        padding: 35px 25px;
        gap: 18px;
    }

    .booking-form input,
    .booking-form button {
        font-size: 0.9rem;
        padding: 16px 20px;
    }

    .form-label {
        font-size: 0.9rem;
        gap: 8px;
    }

    .form-label i {
        font-size: 1rem;
    }

    .field-hint {
        font-size: 0.8rem;
        padding-left: 28px;
        margin-top: -3px;
    }

    .form-field-group input[type="date"],
    .form-field-group input[type="time"] {
        padding: 16px 20px;
        font-size: 0.9rem;
    }
}
