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

:root {
    --green:   #3A7D44;
    --green-d: #2d6235;
    --gold:    #C8961E;
    --gold-d:  #a87a14;
    --gold-l:  rgba(200,150,30,0.15);
    --brown:   #6B4226;
    --brown-d: #4e2f1a;
    --dark:    #1A1A1A;
    --dark2:   #111111;
    --dark3:   #222222;
    --cream:   #F5F0E8;
    --cream2:  #ede7db;
    --white:   #ffffff;
    --text:    #333333;
    --text-light: #666666;
    --border:  rgba(200,150,30,0.25);
    --shadow:  0 8px 32px rgba(0,0,0,0.18);
    --radius:  6px;
    --transition: 0.3s ease;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body:    'Lato', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

/* UTILITIES */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.center { text-align: center; }
.mt-40  { margin-top: 40px; }

.section { padding: 90px 0; }
.section-light { background: var(--cream); }
.section-dark  { background: var(--dark);  color: var(--cream); }

.section-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: inherit;
    margin-bottom: 16px;
    position: relative;
}

.section-light .section-title { color: var(--brown); }
.section-dark  .section-title { color: var(--white); }

.section-desc {
    font-size: 1.05rem;
    max-width: 600px;
    color: var(--text-light);
    margin: 0 auto;
}
.section-dark .section-desc { color: rgba(245,240,232,0.7); }
.section-header.center { text-align: center; margin-bottom: 56px; }

/* KEYFRAME ANIMATIONS */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(36px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.88); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(9px); }
}
@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}
@keyframes shimmerGold {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 4px 16px rgba(200,150,30,0.4); }
    50%       { box-shadow: 0 4px 28px rgba(200,150,30,0.75); }
}
@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes lineGrow {
    from { width: 0; }
    to   { width: 60px; }
}
@keyframes countUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* SCROLL REVEAL SYSTEM */
.reveal-el {
    opacity: 0;
    transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1),
                transform 0.75s cubic-bezier(0.4,0,0.2,1);
    will-change: opacity, transform;
}
.reveal-up    { transform: translateY(36px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(0.9); opacity: 0; }
.reveal-el.is-visible {
    opacity: 1;
    transform: none !important;
}

/* SCROLL PROGRESS BAR */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--green), var(--gold), var(--brown));
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(200,150,30,0.6);
}

/* MOBILE NAV OVERLAY */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(3px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}
.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

/* Ripple effect base */
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.12);
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.4s ease;
}
.btn:active::after { transform: scale(3); opacity: 0; }

.btn-gold {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-d);
    border-color: var(--gold-d);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(200,150,30,0.4);
}

.btn-brown {
    background: var(--brown);
    color: var(--white);
    border-color: var(--brown);
}
.btn-brown:hover {
    background: var(--brown-d);
    border-color: var(--brown-d);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(107,66,38,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn.full-width { width: 100%; justify-content: center; }

/* IMAGE PLACEHOLDERS */
.img-placeholder {
    background: linear-gradient(135deg, #c8b89a, #a89070, #8a7258, #c8b89a);
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}
.img-placeholder.dark {
    background: linear-gradient(135deg, #2d4a2d, #1e3520, #162a16, #2d4a2d);
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
}
.placeholder-label {
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}
.placeholder-label i { font-size: 2rem; }

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.4s ease;
    background: transparent;
}
.navbar.scrolled {
    background: rgba(17,17,17,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.nav-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 56px;
    width: auto;
    transition: height 0.4s ease;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.navbar.scrolled .nav-logo img { height: 44px; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    color: rgba(255,255,255,0.85);
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: all var(--transition);
    text-transform: uppercase;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 50%; right: 50%;
    height: 1px;
    background: var(--gold);
    transition: left 0.3s ease, right 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after { left: 14px; right: 14px; }
.nav-link.nav-cta::after { display: none; }

.nav-link:hover, .nav-link.active { color: var(--gold); }

.nav-link.nav-cta {
    background: var(--gold);
    color: var(--dark);
    padding: 8px 20px;
    margin-left: 8px;
}
.nav-link.nav-cta:hover {
    background: var(--gold-d);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(200,150,30,0.4);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.35s ease;
    transform-origin: center;
}
/* Animate to X */
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #061406 0%, #0d2b0d 25%, #1a3a1a 55%, #0f2a0f 80%, #061406 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    will-change: transform;
}
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Decorative particles */
.hero-bg::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,150,30,0.08) 0%, transparent 70%);
    top: 20%; left: 15%;
    animation: floatIcon 8s ease-in-out infinite;
}
.hero-bg::after {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(58,125,68,0.1) 0%, transparent 70%);
    bottom: 25%; right: 18%;
    animation: floatIcon 10s ease-in-out infinite reverse;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(6,20,6,0.6) 0%,
        rgba(6,20,6,0.3) 45%,
        rgba(6,20,6,0.65) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 24px;
    max-width: 820px;
}

/* Hero entrance animations */
.hero-tagline {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    animation: fadeInDown 0.9s cubic-bezier(0.4,0,0.2,1) 0.2s both;
}
.hero-tagline::before, .hero-tagline::after {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
    animation: lineGrow 1s ease 0.5s both;
}
.hero-tagline::after { background: linear-gradient(90deg, var(--gold), transparent); }

.hero-title {
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 22px;
    color: var(--white);
    animation: fadeInUp 1s cubic-bezier(0.4,0,0.2,1) 0.45s both;
}
.hero-title span {
    color: var(--gold);
    font-style: italic;
    background: linear-gradient(90deg, #C8961E, #f0c050, #C8961E, #a87a14);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s cubic-bezier(0.4,0,0.2,1) 0.45s both,
               shimmerGold 4s linear 1.5s infinite;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 38px;
    animation: fadeInUp 1s cubic-bezier(0.4,0,0.2,1) 0.65s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s cubic-bezier(0.4,0,0.2,1) 0.85s both;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: fadeIn 1s ease 1.4s both;
}
.hero-scroll-indicator a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px; height: 46px;
    border: 1px solid rgba(200,150,30,0.5);
    border-radius: 50%;
    color: var(--gold);
    font-size: 0.85rem;
    animation: bounce 2.5s ease-in-out infinite;
    transition: all var(--transition);
}
.hero-scroll-indicator a:hover {
    background: rgba(200,150,30,0.15);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(200,150,30,0.3);
}

/* HIGHLIGHTS BAR */
.highlights-bar {
    background: var(--dark2);
    padding: 26px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.highlights-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}
.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cream);
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 8px 28px;
    border-right: 1px solid var(--border);
    transition: color var(--transition);
}
.highlight-item:last-child { border-right: none; }
.highlight-item:hover { color: var(--gold); }
.highlight-item i {
    color: var(--gold);
    font-size: 1.1rem;
    transition: transform var(--transition);
    animation: floatIcon 4s ease-in-out infinite;
}
.highlight-item:nth-child(2) i { animation-delay: 0.5s; }
.highlight-item:nth-child(3) i { animation-delay: 1s; }
.highlight-item:nth-child(4) i { animation-delay: 1.5s; }
.highlight-item:nth-child(5) i { animation-delay: 2s; }
.highlight-item:hover i { transform: scale(1.2); animation: none; }

/* ABOUT */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-image-block { position: relative; }

.about-img-main {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.about-img-main img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.about-img-main:hover img { transform: scale(1.04); }

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 48%;
    aspect-ratio: 1;
    border-radius: 10px;
    border: 5px solid var(--cream);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    transition: transform 0.5s ease;
}
.about-img-accent:hover { transform: scale(1.03); }
.about-img-accent img {
    width: 100%; height: 100%;
    object-fit: cover;
}

/* Gold decorative corner */
.about-image-block::before {
    content: '';
    position: absolute;
    top: -16px; left: -16px;
    width: 80px; height: 80px;
    border-top: 3px solid var(--gold);
    border-left: 3px solid var(--gold);
    border-radius: 4px 0 0 0;
    opacity: 0.6;
    pointer-events: none;
}

.about-content .section-label { display: block; }

.section-text {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.85;
}

.about-stats {
    display: flex;
    gap: 24px;
    margin: 32px 0;
    padding: 24px 0;
    border-top: 1px solid var(--cream2);
    border-bottom: 1px solid var(--cream2);
}
.stat { text-align: center; flex: 1; }
.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    animation: countUp 0.6s ease both;
}
.stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 6px;
    display: block;
}

/* VILLA */
.villa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}
.villa-main-image {
    min-height: 480px;
    border-radius: 10px;
    position: sticky;
    top: 90px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.villa-main-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.7s ease;
}
.villa-main-image:hover img { transform: scale(1.03); }

.villa-features { display: flex; flex-direction: column; justify-content: center; gap: 16px; }

.villa-feature {
    display: flex;
    gap: 18px;
    padding: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(200,150,30,0.15);
    border-radius: 8px;
    transition: all 0.35s ease;
    cursor: default;
}
.villa-feature:hover {
    background: rgba(200,150,30,0.08);
    border-color: rgba(200,150,30,0.45);
    transform: translateX(6px);
    box-shadow: -3px 0 0 var(--gold);
}

.feature-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: rgba(200,150,30,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    transition: all 0.35s ease;
}
.villa-feature:hover .feature-icon {
    background: var(--gold);
    color: var(--dark);
    transform: rotate(10deg) scale(1.1);
}
.villa-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}
.villa-feature p {
    font-size: 0.87rem;
    color: rgba(245,240,232,0.6);
    line-height: 1.5;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--cream2);
    border-radius: 10px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}
/* Bottom border accent */
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 2px;
    background: var(--gold);
    transition: left 0.4s ease, right 0.4s ease;
    border-radius: 0 0 4px 4px;
}
.service-card:hover::after { left: 0; right: 0; }
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.13);
    border-color: rgba(200,150,30,0.3);
}

.service-icon {
    width: 68px; height: 68px;
    background: linear-gradient(135deg, rgba(200,150,30,0.14), rgba(200,150,30,0.04));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold);
    font-size: 1.5rem;
    border: 1px solid rgba(200,150,30,0.2);
    transition: all 0.4s ease;
}
.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    transform: rotateY(180deg);
    box-shadow: 0 6px 20px rgba(200,150,30,0.35);
}
.service-card h3 {
    font-size: 1.12rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 10px;
    transition: color var(--transition);
}
.service-card:hover h3 { color: var(--gold-d); }
.service-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* TOURS */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tour-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.tour-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200,150,30,0.5);
    box-shadow: 0 24px 56px rgba(0,0,0,0.4);
}

.tour-image { width: 100%; overflow: hidden; position: relative; }
.tour-image.small { aspect-ratio: 16/9; }
.tour-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.tour-card:hover .tour-image img { transform: scale(1.08); }

.tour-content { padding: 24px; }
.tour-badge {
    display: inline-block;
    background: rgba(200,150,30,0.18);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(200,150,30,0.3);
    margin-bottom: 12px;
}
.tour-content h3 {
    font-size: 1.12rem;
    color: var(--white);
    margin-bottom: 8px;
    transition: color var(--transition);
}
.tour-card:hover .tour-content h3 { color: var(--gold); }
.tour-content p {
    font-size: 0.87rem;
    color: rgba(245,240,232,0.6);
    line-height: 1.65;
    margin-bottom: 16px;
}
.tour-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: gap 0.3s ease;
}
.tour-link:hover { gap: 12px; }

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 240px);
    gap: 10px;
}

/* HOME GALLERY MOSAIC — 6 images, featured first */
.gallery-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 230px 170px;
    grid-auto-rows: 190px;
    gap: 10px;
}
.gallery-home-grid .gallery-item:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}
.gallery-home-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}
.gallery-home-empty i { font-size: 3rem; margin-bottom: 12px; display: block; }
.gallery-home-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 2rem;
    background: var(--cream2);
}
.gallery-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    background: var(--cream2);
}
.gallery-item.large { grid-column: span 2; }
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(200,150,30,0.15), rgba(26,26,26,0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    color: var(--white);
    font-size: 1.6rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i {
    background: rgba(200,150,30,0.2);
    border: 1px solid rgba(200,150,30,0.5);
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transform: scale(0.7);
    transition: transform 0.35s ease;
}
.gallery-item:hover .gallery-overlay i { transform: scale(1); }

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.94);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.25s ease;
}
.lightbox.active { display: flex; }
.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    animation: scaleIn 0.3s ease;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: var(--radius);
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    background: rgba(200,150,30,0.15);
    border: 1px solid rgba(200,150,30,0.4);
    color: var(--gold);
    width: 46px; height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
    background: var(--gold);
    color: var(--dark);
    transform: scale(1.1);
}
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { left: 24px;  top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover, .lightbox-next:hover { transform: translateY(-50%) scale(1.1); }

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
    align-items: start;
}
.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 28px;
    transition: transform var(--transition);
}
.contact-info-item:hover { transform: translateX(4px); }

.contact-icon {
    flex-shrink: 0;
    width: 46px; height: 46px;
    background: rgba(200,150,30,0.1);
    border: 1px solid rgba(200,150,30,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    transition: all var(--transition);
}
.contact-info-item:hover .contact-icon {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}
.contact-info-item h4 {
    font-size: 0.73rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
    font-family: var(--font-body);
}
.contact-info-item a {
    color: rgba(245,240,232,0.75);
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color var(--transition);
}
.contact-info-item a:hover { color: var(--gold); }

.contact-social {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
}
.social-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.35s ease;
}
.social-btn.facebook    { background: rgba(66,103,178,0.12);  color: #4267B2; border: 1px solid rgba(66,103,178,0.35); }
.social-btn.instagram   { background: rgba(193,53,132,0.12);  color: #C13584; border: 1px solid rgba(193,53,132,0.35); }
.social-btn.youtube     { background: rgba(255,0,0,0.12);     color: #FF0000; border: 1px solid rgba(255,0,0,0.35); }
.social-btn.tiktok      { background: rgba(238,29,82,0.12);   color: #EE1D52; border: 1px solid rgba(238,29,82,0.35); }
.social-btn.tripadvisor { background: rgba(0,175,135,0.12);   color: #00AF87; border: 1px solid rgba(0,175,135,0.35); }
.social-btn.twitter     { background: rgba(255,255,255,0.07); color: #e0e0e0; border: 1px solid rgba(255,255,255,0.2); }
.social-btn.gmail       { background: rgba(234,67,53,0.12);   color: #EA4335; border: 1px solid rgba(234,67,53,0.35); }
.social-btn:hover       { transform: translateY(-4px) scale(1.1); box-shadow: 0 8px 20px rgba(0,0,0,0.3); }

/* CONTACT FORM */
/* MAP EMBED */
.contact-map-embed {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-top: 4px;
}
.contact-map-embed iframe {
    display: block;
    width: 100%;
    height: 220px;
    border-radius: 10px 10px 0 0;
    filter: grayscale(20%) contrast(1.05);
}
.contact-map-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 16px;
    background: rgba(200,150,30,0.08);
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background var(--transition);
    border-top: 1px solid var(--border);
}
.contact-map-link:hover { background: rgba(200,150,30,0.16); color: var(--gold); }

.contact-form-wrap { position: relative; }
.contact-form {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 36px;
    transition: border-color var(--transition);
}
.contact-form:focus-within { border-color: rgba(200,150,30,0.5); }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}
.form-group label {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(245,240,232,0.65);
    transition: color var(--transition);
}
.form-group:focus-within label { color: var(--gold); }
.form-group input,
.form-group textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(200,150,30,0.18);
    border-radius: var(--radius);
    padding: 12px 16px;
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition);
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,240,232,0.25); }
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 3px rgba(200,150,30,0.1);
}
.form-group input[type="date"] { color-scheme: dark; }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
    text-align: center;
    font-size: 0.78rem;
    color: rgba(245,240,232,0.35);
    margin-top: 12px;
}
.form-success {
    display: none;
    text-align: center;
    padding: 60px 36px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    animation: scaleIn 0.4s ease;
}
.form-success.active { display: block; }
.form-success i { font-size: 3.5rem; color: var(--green); margin-bottom: 16px; }
.form-success h3 { font-size: 1.4rem; color: var(--white); margin-bottom: 8px; }
.form-success p  { color: rgba(245,240,232,0.55); }

/* FOOTER CTA STRIP */
.footer-cta-strip {
    background: linear-gradient(135deg, #1a2e1a 0%, #0f1f0f 50%, #1a2a10 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}
.footer-cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(200,150,30,0.07) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(58,125,68,0.07) 0%, transparent 60%);
    pointer-events: none;
}
.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    z-index: 1;
}
.footer-cta-text h3 {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    color: var(--white);
    margin-bottom: 6px;
}
.footer-cta-text p {
    font-size: 0.95rem;
    color: rgba(245,240,232,0.6);
    max-width: 480px;
}
.footer-cta-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

/* FOOTER MAIN */
.footer {
    background: var(--dark2);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.1fr 1.6fr;
    gap: 48px;
    padding-bottom: 48px;
}

/* Brand */
.footer-logo {
    height: 64px;
    width: auto;
    margin-bottom: 18px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
    transition: transform var(--transition);
}
.footer-logo:hover { transform: scale(1.04); }

.footer-brand p {
    font-size: 0.87rem;
    color: rgba(245,240,232,0.48);
    line-height: 1.8;
    max-width: 290px;
    margin-bottom: 22px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.footer-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(200,150,30,0.07);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(245,240,232,0.5);
    font-size: 0.88rem;
    transition: all 0.35s ease;
}
.footer-social a:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(200,150,30,0.35);
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(58,125,68,0.12);
    border: 1px solid rgba(58,125,68,0.25);
    border-radius: 20px;
    padding: 6px 14px;
    color: var(--green);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.footer-badge i { font-size: 0.85rem; }

/* Columns heading */
.footer-links h4, .footer-contact h4 {
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
    font-family: var(--font-body);
    position: relative;
    padding-bottom: 12px;
}
.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 28px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
    opacity: 0.6;
}

/* Quick Links */
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a {
    color: rgba(245,240,232,0.48);
    font-size: 0.88rem;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0;
}
.footer-links ul li a::before {
    content: '›';
    color: var(--gold);
    margin-right: 0;
    width: 0;
    overflow: hidden;
    transition: width 0.3s ease, margin 0.3s ease;
    font-size: 1.1rem;
    line-height: 1;
}
.footer-links ul li a:hover {
    color: var(--cream);
    padding-left: 4px;
}
.footer-links ul li a:hover::before {
    width: 12px;
    margin-right: 4px;
}

/* Footer award badge */
.footer-award {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 12px 14px;
    background: rgba(200,150,30,0.07);
    border: 1px solid var(--border);
    border-radius: 8px;
}
.footer-award > i {
    color: var(--gold);
    font-size: 1.3rem;
    flex-shrink: 0;
}
.award-title {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 0.3px;
}
.award-sub {
    display: block;
    font-size: 0.72rem;
    color: rgba(245,240,232,0.45);
    margin-top: 2px;
}

/* Contact column */
.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    line-height: 1.5;
}
.footer-contact ul li > i {
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}
.footer-contact ul li div { display: flex; flex-direction: column; gap: 2px; }
.contact-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.8;
}
.footer-contact ul li a {
    color: rgba(245,240,232,0.5);
    font-size: 0.87rem;
    transition: color var(--transition);
    word-break: break-word;
}
.footer-contact ul li a:hover { color: var(--gold); }

/* Divider */
.footer-divider {
    position: relative;
    text-align: center;
    border-top: 1px solid var(--border);
    margin: 0 0 0;
}
.footer-divider-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--dark2);
    padding: 0 16px;
    color: var(--gold);
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Footer Bottom Bar */
.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    padding: 22px 0;
    margin-top: 1px;
    border-top: 1px solid rgba(200,150,30,0.12);
    font-size: 0.8rem;
}
.footer-bottom-copy p { color: rgba(245,240,232,0.35); }
.footer-bottom-legal {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.footer-bottom-legal a {
    color: rgba(245,240,232,0.4);
    font-size: 0.78rem;
    letter-spacing: 0.3px;
    transition: color var(--transition);
    white-space: nowrap;
}
.footer-bottom-legal a:hover { color: var(--gold); }
.footer-sep { color: rgba(200,150,30,0.3); font-size: 0.7rem; }
.footer-bottom-credit {
    text-align: right;
}
.footer-bottom-credit p { color: rgba(245,240,232,0.35); }
.footer-bottom-credit a {
    color: var(--gold);
    font-weight: 700;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.footer-bottom-credit a:hover {
    color: var(--cream);
    text-decoration: underline;
    text-decoration-color: var(--gold);
}
.footer-bottom-credit a i { font-size: 0.65rem; opacity: 0.7; }

/* BACK TO TOP */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 46px; height: 46px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    animation: pulseGlow 3s ease-in-out infinite;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover {
    background: var(--gold-d);
    transform: translateY(-4px);
}

/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 32px;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    font-size: 1.4rem;
    box-shadow: 0 4px 18px rgba(37,211,102,0.45);
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.25s ease, box-shadow 0.25s ease;
    animation: waPulse 2.8s ease-in-out infinite;
}
.whatsapp-float.visible {
    opacity: 1;
    pointer-events: all;
}
.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 28px rgba(37,211,102,0.6);
    color: #fff;
}

/* Tooltip — appears to the left since button is on right */
.whatsapp-float::before {
    content: 'Chat on WhatsApp';
    position: absolute;
    right: 58px;
    background: #111;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.whatsapp-float::after {
    content: '';
    position: absolute;
    right: 52px;
    border: 5px solid transparent;
    border-left-color: #111;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}
.whatsapp-float:hover::before,
.whatsapp-float:hover::after { opacity: 1; transform: translateX(0); }

@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 18px rgba(37,211,102,0.45); }
    50%       { box-shadow: 0 4px 28px rgba(37,211,102,0.75), 0 0 0 8px rgba(37,211,102,0.12); }
}

/* RESPONSIVE — 1200px */
@media (max-width: 1200px) {
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-grid > *:last-child { grid-column: span 3; }
    .footer-bottom { grid-template-columns: 1fr auto 1fr; }
}

/* RESPONSIVE — 1024px (Tablet Landscape) */
@media (max-width: 1024px) {
    .section { padding: 72px 0; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .about-image-block {
        max-width: 560px;
        margin: 0 auto;
    }
    .about-img-accent {
        bottom: -24px;
        right: -16px;
        width: 46%;
    }

    .villa-grid { grid-template-columns: 1fr; }
    .villa-main-image {
        position: static;
        min-height: 280px;
        aspect-ratio: 16/9;
        max-width: 560px;
        margin: 0 auto;
    }

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

    .tours-grid { grid-template-columns: repeat(2, 1fr); }
    .tours-grid .tour-card:nth-child(3) { grid-column: span 2; max-width: 500px; margin: 0 auto; width: 100%; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-grid > *:last-child { grid-column: span 1; }
}

/* RESPONSIVE — 768px (Tablet Portrait / Large Mobile) */
@media (max-width: 768px) {
    .section { padding: 56px 0; }
    .section-header.center { margin-bottom: 40px; }

    /* Navbar */
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: min(300px, 80vw);
        height: 100dvh;
        background: var(--dark2);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 48px 32px;
        transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
        box-shadow: -8px 0 32px rgba(0,0,0,0.5);
        gap: 2px;
        z-index: 1000;
        border-left: 1px solid var(--border);
        overflow-y: auto;
    }
    .nav-menu.open { right: 0; }
    .nav-link {
        font-size: 1rem;
        padding: 13px 0;
        width: 100%;
        border-bottom: 1px solid rgba(200,150,30,0.08);
    }
    .nav-link::after { display: none; }
    .nav-link.nav-cta {
        margin-left: 0;
        margin-top: 20px;
        text-align: center;
        border-bottom: none;
        padding: 12px 20px;
        border-radius: var(--radius);
    }

    /* Hero */
    .hero { min-height: 100svh; }
    .hero-title { font-size: clamp(2rem, 8vw, 3.2rem); }
    .hero-subtitle { font-size: 1rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 300px; justify-content: center; }

    /* Highlights */
    .highlights-bar .container { gap: 0; }
    .highlight-item {
        width: 50%;
        justify-content: center;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 14px 8px;
        font-size: 0.75rem;
    }
    .highlight-item:nth-last-child(-n+2) { border-bottom: none; }

    /* About */
    .about-stats { gap: 16px; }
    .stat-number { font-size: 1.8rem; }

    /* Villa */
    .villa-main-image { max-width: 100%; }

    /* Services */
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .service-card { padding: 28px 20px; }

    /* Tours */
    .tours-grid { grid-template-columns: 1fr; }
    .tours-grid .tour-card:nth-child(3) { grid-column: span 1; max-width: 100%; }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 8px;
    }
    .gallery-item { aspect-ratio: 1; }
    .gallery-item.large { grid-column: span 2; aspect-ratio: 16/9; }

    /* Home gallery mosaic tablet */
    .gallery-home-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 160px;
        grid-auto-rows: 160px;
        gap: 8px;
    }
    .gallery-home-grid .gallery-item:first-child {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 24px 20px; }

    /* Footer CTA strip */
    .footer-cta-inner { flex-direction: column; text-align: center; gap: 24px; }
    .footer-cta-actions { justify-content: center; flex-wrap: wrap; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid > *:last-child { grid-column: span 1; }
    .footer-brand p { max-width: 100%; }

    /* Footer bottom: stack vertically */
    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
        padding: 20px 0;
    }
    .footer-bottom-credit { text-align: center; }
    .footer-bottom-legal { flex-wrap: wrap; justify-content: center; }

    /* Back to top + WhatsApp */
    .back-to-top    { bottom: 20px; right: 20px; }
    .whatsapp-float { bottom: 78px; right: 20px; width: 44px; height: 44px; font-size: 1.25rem; }
    .whatsapp-float::before, .whatsapp-float::after { display: none; }
}

/* RESPONSIVE — 480px (Small Mobile) */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section { padding: 48px 0; }

    .hero-tagline { font-size: 0.68rem; letter-spacing: 3px; }
    .hero-tagline::before, .hero-tagline::after { width: 24px; }

    .highlight-item { width: 100%; border-bottom: 1px solid var(--border); }
    .highlight-item:last-child { border-bottom: none; }

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

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .gallery-item, .gallery-item.large {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }

    /* Home gallery mosaic mobile */
    .gallery-home-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        grid-auto-rows: 140px;
    }
    .gallery-home-grid .gallery-item:first-child {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        aspect-ratio: 16/9;
        height: auto;
    }

    .contact-map-embed iframe { height: 180px; }

    .about-img-accent {
        bottom: -16px;
        right: -8px;
        width: 42%;
        border-width: 3px;
    }

    .contact-form { padding: 20px 16px; }

    .btn { padding: 12px 24px; font-size: 0.82rem; }

    .footer-grid { gap: 24px; }
    .footer-logo { height: 52px; }
}

/* RESPONSIVE — 360px (Very Small) */
@media (max-width: 360px) {
    .hero-title { font-size: 1.9rem; }
    .nav-menu { padding: 32px 16px; }
    .nav-link { font-size: 0.95rem; padding: 11px 0; }
    .hero-actions .btn { max-width: 100%; }
    .section-title { font-size: 1.6rem; }
    .btn { padding: 11px 18px; font-size: 0.8rem; }
    .highlight-item { width: 100%; }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1999;
    background: rgba(17,17,17,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 2px solid var(--gold);
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.cookie-banner.visible { transform: translateY(0); }

.cookie-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.cookie-banner-text { flex: 1; min-width: 0; }
.cookie-banner-text p {
    font-size: 0.88rem;
    color: rgba(245,240,232,0.8);
    line-height: 1.7;
    margin: 0;
}
.cookie-banner-text p strong {
    color: var(--gold);
    font-weight: 700;
}
.cookie-banner-text a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.cookie-banner-text a:hover { color: #fff; }

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}
.cookie-btn-accept {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.cookie-btn-accept:hover {
    background: var(--gold-d, #b07e16);
    transform: translateY(-1px);
}
.cookie-btn-decline {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background: transparent;
    color: rgba(245,240,232,0.55);
    border: 1px solid rgba(245,240,232,0.2);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}
.cookie-btn-decline:hover {
    border-color: rgba(245,240,232,0.5);
    color: rgba(245,240,232,0.85);
}

@media (max-width: 600px) {
    .cookie-banner-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
    .cookie-banner-actions { width: 100%; }
    .cookie-btn-accept, .cookie-btn-decline { flex: 1; justify-content: center; }
}
