﻿:root {
  color-scheme: light;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-title: "Playfair Display", Georgia, "Times New Roman", Times, serif;
  
  /* Theme Colors */
  --color-primary: #2e221b;
  --color-gold: #bc9459;
  --color-background: #e7e6e2;
  --color-text: #2e221b;
}

body {
  font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6,
.villa-title {
  font-family: var(--font-title);
}

/* ========================
   SPECIAL TEXT STYLES
   ======================== */
/* Regular font - for numbers/data in headings */
.font-regular {
    font-family: var(--font-body) !important;
    font-weight: 400;
    font-size: 1rem !important;
}

/* Regular italic - for notices, quotes, special emphasis */
.text-italic,
.notice-text,
.special-text {
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 400;
}

/* Bold italic - for important notices, emphasized quotes */
.text-italic-bold,
.notice-text-bold,
.special-text-bold {
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 700;
}

/* Optional: Add subtle styling for notices */
.notice-text,
.notice-text-bold {
  color: var(--color-text);
  line-height: 1.6;
}

/* ========================
   END SPECIAL TEXT STYLES
   ======================== */


.skip-link {
  position: absolute;
  left: -999px;
  top: 0.75rem;
  z-index: 1100;
  padding: 0.5rem 0.75rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.5rem;
}

.skip-link:focus {
  left: 0.75rem;
}

.tracking-wide {
  letter-spacing: 0.12em;
}

.min-vh-50 {
  min-height: 50vh;
}

.min-vh-60 {
  min-height: 60vh;
}

.section-pad {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}

/* Hero Swiper Slider */
.hero-swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.55));
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

/* Hero Content Overlay */
.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  pointer-events: none;
}

.hero-content .container {
  display: flex;
  pointer-events: none;
  width: 100%;
}

.hero-content .container > .row {
  flex: 1 1 auto;
  pointer-events: none;
  width: 100%;
}

.hero-content button,
.hero-content a {
  pointer-events: auto;
}

/* Hero Key Logo - Small and at the top */
.hero-key-logo {
  display: block;
  margin: 0 auto 2rem auto;
  height: 200px;
  width: auto;
  opacity: 0.15;
  pointer-events: none;
  filter: brightness(0) saturate(100%) invert(77%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(98%) contrast(92%);
}

@media (max-width: 768px) {
  .hero-key-logo {
    height: 180px;
    margin-bottom: 1.5rem;
  }
}

/* Hero Subtitle - "Houses" */
.hero-subtitle {
  color: #c4c4c4;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 18px;
  }
}

/* Hero Main Title - "Villas To Rent" */
.hero-main-title {
  font-family: var(--font-title);
  color: #c4c4c4;
  font-size: 100px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1400px) {
  .hero-main-title {
    font-size: 120px;
  }
}

@media (max-width: 992px) {
  .hero-main-title {
    font-size: 80px;
  }
}

@media (max-width: 768px) {
  .hero-main-title {
    font-size: 48px;
    letter-spacing: 0.05em;
  }
}

@media (max-width: 576px) {
  .hero-main-title {
    font-size: 36px;
  }
}

/* Swiper Navigation Arrows */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
  color: rgba(255, 255, 255, 1);
}

/* Swiper Pagination */
.hero-swiper .swiper-pagination {
  bottom: 2rem;
}

.hero-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.6);
  opacity: 1;
  width: 10px;
  height: 10px;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 1);
  width: 12px;
  height: 12px;
}

@media (max-width: 768px) {
  .hero-swiper .swiper-button-next,
  .hero-swiper .swiper-button-prev {
    display: none;
  }
  
  .hero-swiper .swiper-pagination {
    bottom: 1rem;
  }
}

section[id] {
  scroll-margin-top: 5rem;
  overflow-x: hidden;
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* ========================
   NAVBAR STYLES
   ======================== */

/* Button Styles */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  border-radius: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.button:hover,
.button:focus {
  background-color: var(--color-gold);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.button i {
  font-size: 0.875rem;
}

/* Mobile Button Styles - Text Only */
@media (max-width: 991.98px) {
  .button-mobile {
    background-color: transparent;
    color: var(--color-primary);
    border: none;
    padding: 0.5rem 0;
    box-shadow: none;
    font-weight: 700;
    font-size: 1rem;
  }

  .button-mobile:hover,
  .button-mobile:focus {
    background-color: transparent;
    color: var(--color-gold);
    transform: none;
    box-shadow: none;
    text-decoration: underline;
  }

  .button-mobile:active {
    transform: none;
    box-shadow: none;
  }
}

.navbar-brand {
  position: relative;
  display: inline-block;
  padding: 0;
}

.navbar-logo {
  height: 50px;
  width: auto;
  display: block;
}

@media (max-width: 991.98px) {
  .navbar-logo {
    height: 50px;
  }
}

/* Nav Link Styles */
.navbar-plain .nav-link {
  color: var(--color-primary) !important;
  position: relative;
  transition: color 0.3s ease;
}

/* Underline effect for regular nav links (excluding dropdown) */
.navbar-plain .nav-link:not(.dropdown-toggle)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}

.navbar-plain .nav-link:not(.dropdown-toggle):hover::after,
.navbar-plain .nav-link:not(.dropdown-toggle):focus::after {
  width: 80%;
}

.navbar-plain .nav-link:hover,
.navbar-plain .nav-link:focus {
  color: var(--color-primary) !important;
}

/* Dropdown toggle specific styles */
.navbar-plain .dropdown-toggle {
  color: var(--color-primary) !important;
}

.navbar-plain .dropdown-toggle:hover,
.navbar-plain .dropdown-toggle:focus {
  color: var(--color-primary) !important;
}

.navbar-plain {
  --bs-navbar-padding-y: 0.6rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(2px);
  transition: background 180ms ease, box-shadow 180ms ease;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2846, 34, 27, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
  .navbar-plain {
    padding-top: 0.85rem !important;
    padding-bottom: 0.85rem !important;
    min-height: 70px !important;
    max-height: 70px !important;
    top: 0 !important;
    transform: translate3d(0, 0, 0) !important;
    transition: none !important;
    border-bottom: 1px solid rgba(46, 34, 27, 0.15) !important;
  }
  
  .navbar-plain .container-fluid {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    height: 100%;
    display: flex;
    align-items: center;
  }
  
  .navbar-plain * {
    transition: none !important;
  }
  
  body.offcanvas-backdrop,
  body.modal-open {
    padding-right: 0 !important;
  }
}

.navbar-plain .navbar-toggler {
  border: none;
}

.navbar-plain .navbar-toggler:focus {
  box-shadow: none;
}

.navbar-plain.is-solid {
  background: rgba(var(--bs-body-bg-rgb), 0.92);
  box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(2px);
}

@media (max-width: 991.98px) {
  .navbar-plain.is-solid {
    box-shadow: none !important;
  }
}

.navbar-plain.is-solid .nav-link {
  color: var(--color-primary) !important;
}

.navbar-plain.is-solid .nav-link:hover,
.navbar-plain.is-solid .nav-link:focus {
  color: var(--color-primary) !important;
}

.navbar-plain.is-solid {
  --bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.15);
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.65%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.villa-item {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  scroll-margin-top: 8rem;
}

/* ========================
   VILLA NAVIGATION TABS
   ======================== */
.villa-nav-tabs {
  padding: 1.5rem 1rem;
}

.villa-nav-tabs nav {
  line-height: 1.8;
}

.villa-nav-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}

/* Underline effect on hover */
.villa-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}

.villa-nav-link:hover::after,
.villa-nav-link:focus::after {
  width: 80%;
}

.villa-nav-link:hover,
.villa-nav-link:focus {
  color: var(--color-primary);
}

.villa-nav-separator {
  color: var(--color-primary);
  opacity: 0.3;
  font-weight: 300;
  user-select: none;
}

@media (max-width: 768px) {
  .villa-nav-tabs {
    padding: 1rem 0.5rem;
  }
  
  .villa-nav-link {
    font-size: 0.9rem;
  }
}

/* ========================
   END VILLA NAVIGATION TABS
   ======================== */


.villa-item .card-body {
  border-left: 1px solid rgba(0, 0, 0, 0.12);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 991.98px) {
  .villa-item .card-body {
    border-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
  }
}

.villa-photo {
  height: 100%;
  width: 100%;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 20% 30%, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.05)),
    linear-gradient(135deg, #e9ecef, #dee2e6);
  background-position: center;
  background-size: cover;
}

.villa-photo > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.villa-title {
  letter-spacing: -0.01em;
}

.feature-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.cta-band {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: 1rem;
  background:
    radial-gradient(900px 420px at 20% 20%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #111827 0%, #0b172a 100%);
}

/* Scroll reveal (respects reduced motion) */
[data-reveal] {
  opacity: 0;
  transform: translateY(10px);
}

.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 500ms ease, transform 500ms ease;
}

@media (prefers-reduced-motion: reduce) {
  .villa-item,
  .feature-card,
  .navbar-plain,
  .revealed {
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

@media (max-width: 991.98px) {
  html,
  body {
    scroll-behavior: auto !important;
    overflow-x: hidden;
    position: relative;
  }
  
  body {
    min-height: 100vh;
    min-height: 100svh;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* ========================
   PRELOADER STYLES
   ======================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 1;
    visibility: visible;
}

    .preloader.hidden {
        opacity: 0;
        visibility: hidden;
    }

.preloader__centered {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.preloader__container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    animation: preloaderFadeIn 0.6s ease-out;
}

.preloader__logo {
    max-width: 280px;
    width: 80%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(188, 148, 89, 0.3));
    animation: logoReveal 1.5s ease-out forwards, logoPulse 2s ease-in-out 1.5s infinite;
    transform-origin: center;
}

@media (max-width: 768px) {
    .preloader__logo {
        max-width: 200px;
    }
}

/* Loader Line Animation */
.preloader__line-mask {
    position: relative;
    width: 240px;
    height: 4px;
    background-color: rgba(188, 148, 89, 0.15);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(188, 148, 89, 0.2);
}

.preloader__line {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient( 90deg, transparent, var(--color-gold), rgba(188, 148, 89, 0.8), var(--color-gold), transparent );
    animation: preloaderLineMove 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    box-shadow: 0 0 15px var(--color-gold);
}

/* Loading text (optional - can be added to markup) */
.preloader__text {
    color: var(--color-gold);
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 1rem;
    opacity: 0;
    animation: textFadeIn 0.6s ease-out 0.8s forwards;
}

/* Preloader Animations */
@keyframes preloaderFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(-30px);
        filter: drop-shadow(0 0 0 rgba(188, 148, 89, 0));
    }

    60% {
        opacity: 1;
        transform: scale(1.05) translateY(0);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: drop-shadow(0 10px 30px rgba(188, 148, 89, 0.3));
    }
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 10px 30px rgba(188, 148, 89, 0.3));
    }

    50% {
        transform: scale(1.03);
        filter: drop-shadow(0 15px 40px rgba(188, 148, 89, 0.5));
    }
}

@keyframes preloaderLineMove {
    0% {
        left: -60%;
    }

    100% {
        left: 100%;
    }
}

@keyframes textFadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 0.7;
        transform: translateY(0);
    }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .preloader__line,
    .preloader__logo {
        animation: none;
    }

    .preloader__logo {
        opacity: 1;
        transform: scale(1);
    }

    .preloader__text {
        opacity: 0.7;
    }
}

/* ========================
   END PRELOADER STYLES
   ======================== */

/* ========================
   ROOM PAGE STYLES
   ======================== */

/* Room Hero Banner */
.room-hero-banner {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  width: 100%;
}

/* Room Meta Information */
.room-meta {
  font-size: 1.1rem;
  color: var(--color-text);
  letter-spacing: 0.05em;
}

.room-meta span {
  display: inline-block;
}

@media (max-width: 576px) {
  .room-meta {
    font-size: 0.75rem;
  }
}

.room-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.room-hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.room-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  width: 100%;
  overflow: hidden;
}

.room-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    color: #c4c4c4;
    letter-spacing: 2px;
}

.room-hero-title {
    font-family: var(--font-title);
    color: #c4c4c4;
    font-size: 100px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.01em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.room-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  max-width: 100%;
}

.room-detail-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  backdrop-filter: blur(10px);
}

.room-detail-item i {
  font-size: 24px;
}

/* Room Gallery Section */
.room-gallery {
  background: #ffffff;
  overflow: hidden;
  width: 100%;
}

.room-gallery .section-subtitle {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text);
  /*margin-bottom: 0.5rem;*/
  opacity: 0.7;
}

.room-gallery .section-title {
  font-family: var(--font-title);
  color: var(--color-text);
  margin-bottom: 0;
}

.room-gallery .container-fluid {
  max-width: 100%;
  overflow: hidden;
}

.room-gallery-swiper {
  padding-bottom: 0;
  width: 100%;
  max-width: 100%;
  position: relative;
}

.room-gallery-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  cursor: pointer;
  height: 500px;
}

.room-gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.room-gallery-img-wrapper:hover img {
  transform: scale(1.05);
}

.room-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.room-gallery-overlay i {
  font-size: 2.5rem;
  color: white;
}

.room-gallery-img-wrapper:hover .room-gallery-overlay {
  opacity: 1;
}

/* Gallery Navigation - Simple Carets */
.room-gallery-navigation {
  display: inline-flex;
  align-items: center;
}

.room-gallery-prev,
.room-gallery-next {
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
  opacity: 0.7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.room-gallery-prev i,
.room-gallery-next i {
  display: block;
  line-height: 1;
}

.room-gallery-prev:hover,
.room-gallery-next:hover {
  opacity: 1;
  color: var(--color-gold);
  transform: scale(1.15);
}

.room-gallery-prev:active,
.room-gallery-next:active {
  transform: scale(1.05);
}

.room-gallery-prev:disabled,
.room-gallery-next:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Hide default swiper buttons */
.room-gallery-swiper .swiper-button-next,
.room-gallery-swiper .swiper-button-prev {
  display: none;
}

.room-gallery-swiper .swiper-pagination {
  display: none;
}

.room-gallery-swiper .swiper-pagination-bullet {
  display: none;
}

.room-gallery-swiper .swiper-pagination-bullet-active {
  display: none;
}

/* Other Rooms Section */
.room-other-rooms {
  background: var(--color-background);
  overflow: hidden;
  width: 100%;
}

.room-other-rooms-swiper {
  padding-bottom: 60px;
  width: 100%;
  max-width: 100%;
}

.room-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.room-card-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.room-card:hover .room-card-image img {
  transform: scale(1.12);
}

.room-card-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-card-info h5 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  flex: 1;
}

.room-card-info a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.room-card-info a:hover {
  color: var(--color-gold);
}

.room-card-subtitle {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  font-style: italic;
}

/* Swiper Navigation Buttons for Other Rooms */
.room-other-rooms-swiper .swiper-button-next,
.room-other-rooms-swiper .swiper-button-prev {
  color: var(--color-gold);
  background: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.room-other-rooms-swiper .swiper-button-next:after,
.room-other-rooms-swiper .swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
}

.room-other-rooms-swiper .swiper-button-next:hover,
.room-other-rooms-swiper .swiper-button-prev:hover {
  background: var(--color-gold);
  color: white;
  transform: scale(1.1);
}

.room-other-rooms-swiper .swiper-pagination-bullet {
  background: rgba(46, 34, 27, 0.3);
  opacity: 1;
}

.room-other-rooms-swiper .swiper-pagination-bullet-active {
  background: var(--color-gold);
  width: 30px;
  border-radius: 5px;
}

/* Room Details Section */
.room-page-details {
  padding: 4rem 0;
  overflow: hidden;
  width: 100%;
}

/* Room Amenities Section - Horizontal Scroll */
.room-amenities-section {
  padding: 50px 0;
  background: var(--color-background);
  overflow: hidden;
  width: 100%;
}

.room-amenities-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0;
}

.room-amenities-scroll-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.room-amenities-scroll-container {
  display: flex;
  gap: 4rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2rem 0 1.5rem 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #000 rgba(0, 0, 0, 0.1);
}

/* Custom minimal scrollbar for amenities - Black line */
.room-amenities-scroll-container::-webkit-scrollbar {
  height: 4px;
  background: transparent;
}

.room-amenities-scroll-container::-webkit-scrollbar-track {
  background: #000;
  border-radius: 0;
  height: 2px;
  margin: 1px 0;
}

.room-amenities-scroll-container::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 0;
  min-width: 50px;
}

.room-amenities-scroll-container::-webkit-scrollbar-thumb:hover {
  background: #000;
}

/* Hide all scrollbar arrows/buttons */
.room-amenities-scroll-container::-webkit-scrollbar-button {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

.room-amenities-scroll-container::-webkit-scrollbar-button:start:decrement,
.room-amenities-scroll-container::-webkit-scrollbar-button:end:increment {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.room-amenity-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-width: 140px;
  padding: 1rem;
  transition: transform 0.3s ease;
}

.room-amenity-item:hover {
  transform: translateY(-5px);
}

.room-amenity-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.room-amenity-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.room-amenity-item:hover .room-amenity-icon img {
  transform: scale(1.1);
}

.room-amenity-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  text-align: center;
  line-height: 1.4;
  max-width: 140px;
}

/* Old amenities list - keeping for backward compatibility if needed */
.room-amenities-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.room-amenities-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  background: rgba(188, 148, 89, 0.05);
  border-radius: 4px;
  transition: background 0.3s ease;
}

.room-amenities-list li:hover {
  background: rgba(188, 148, 89, 0.1);
}

.room-amenities-list li img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* Responsive adjustments for Room Page */
@media (max-width: 992px) {
  .room-hero-banner {
    height: 80vh;
    min-height: 500px;
  }

  .room-hero-title {
    font-size: 2.5rem;
  }
  
  .room-gallery-img-wrapper {
    height: 400px;
  }

  .room-gallery-prev,
  .room-gallery-next {
    font-size: 1.75rem;
  }

  .room-amenities-title {
    font-size: 2rem;
  }

  .room-amenity-item {
    min-width: 120px;
  }

  .room-amenity-icon {
    width: 72px;
    height: 72px;
  }
}

@media (max-width: 768px) {
  .room-hero-banner {
    height: 70vh;
    min-height: 450px;
  }

  .room-hero-title {
    font-size: 2rem;
  }
  
  .room-hero-subtitle {
    font-size: 1rem;
  }
  
  .room-details {
    font-size: 0.9rem;
    gap: 1rem;
  }
  
  .room-detail-item {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
  
  .room-detail-item i {
    font-size: 20px;
  }
  
  .room-gallery .section-subtitle {
    font-size: 16px;
  }

  .room-gallery .section-title {
    font-size: 1.75rem;
  }
  
  .room-gallery-img-wrapper {
    height: 350px;
  }

  .room-gallery-prev,
  .room-gallery-next {
    font-size: 1.5rem;
  }

  .room-gallery-navigation {
    gap: 0.75rem;
  }

  .room-card-image {
    height: 200px;
  }

  .room-amenities-section {
    padding: 40px 0;
  }

  .room-amenities-title {
    font-size: 1.75rem;
  }

  .room-amenity-item {
    min-width: 110px;
    gap: 0.75rem;
  }

  .room-amenity-icon {
    width: 68px;
    height: 68px;
  }

  .room-amenity-name {
    font-size: 0.9rem;
  }

  .room-amenities-list {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

@media (max-width: 576px) {
  .room-hero-banner {
    height: 60vh;
    min-height: 400px;
  }

  .room-hero-title {
    font-size: 1.75rem;
  }

  .room-details {
    flex-direction: column;
    gap: 0.75rem;
  }

  .room-detail-item {
    width: 100%;
    justify-content: center;
  }

  .room-gallery .section-subtitle {
    font-size: 14px;
  }

  .room-gallery .section-title {
    font-size: 1.75rem;
  }

  .room-gallery .row.align-items-end {
    align-items: center !important;
  }

  .room-gallery .col-md-6 {
    flex: 1;
  }

  .room-gallery .col-md-6.text-end {
    text-align: right !important;
    flex: 0 0 auto;
    padding-left: 0.5rem;
  }
  
  .room-gallery-img-wrapper {
    height: 280px;
  }

  .room-gallery-prev,
  .room-gallery-next {
    font-size: 1.25rem;
    padding: 0.25rem;
  }

  .room-gallery-navigation {
    gap: 0.5rem;
  }

  .room-amenities-section {
    padding: 30px 0;
  }

  .room-amenities-title {
    font-size: 1.5rem;
  }

  .room-amenity-item {
    min-width: 100px;
    padding: 0.75rem;
  }

  .room-amenity-icon {
    width: 64px;
    height: 64px;
  }

  .room-amenity-name {
    font-size: 0.85rem;
  }

  .room-amenities-scroll-container {
    gap: 3rem;
  }

  .room-amenities-list {
    grid-template-columns: 1fr;
  }
}

/* ========================
   END ROOM PAGE STYLES
   ======================== */

/* ========================
   FOOTER STYLES
   ======================== */
.footer {
  background-color: var(--color-primary);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 1.5rem;
}

.footer .top {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
}

.footer h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer .logo {
  margin-bottom: 1.5rem;
}

.footer .logo img {
  max-width: 180px;
  height: auto;
}

.footer .phone a,
.footer .mail a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer .phone a:hover,
.footer .mail a:hover {
  color: var(--color-gold);
}

.footer .social-icons ul {
  display: flex;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer .social-icons li {
  display: inline-block;
}

.footer .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer .social-icons a:hover {
  background-color: var(--color-gold);
  transform: translateY(-3px);
}

.footer .bottom {
  padding-top: 1.5rem;
}

.footer .bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer .bottom a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer .bottom a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

.footer .terms-menu a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 0.5rem;
}

.footer .terms-menu a:hover {
  color: var(--color-gold);
}

.footer .mb-30 {
  margin-bottom: 1.875rem;
}

@media (max-width: 767.98px) {
  .footer .bottom {
    text-align: center !important;
  }
  
  .footer .links {
    justify-content: center;
  }
  
  .footer .logo img {
    max-width: 180px;
  }
}

/* ========================
   END FOOTER STYLES
   ======================== */


/* ========================
   EXTRA SERVICES SECTION
   ======================== */

/* Services Section Container */
.services-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: #e7e6e2;
}

.services-section-alt {
    background: var(--color-background);
}

/* Services Header */
.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.services-title {
    font-family: var(--font-title);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.services-description {
    color: rgba(46, 34, 27, 0.7);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Service Card */
.service-card {
    background: #ffffff;
    border: 1px solid rgba(46, 34, 27, 0.08);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.services-section-alt .service-card {
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(188, 148, 89, 0.2);
}

    .service-card:hover::before {
        transform: scaleX(1);
    }

/* Service Icon */
.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

    .service-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        /* If you want the icons to match your gold color, uncomment below */
        /* filter: brightness(0) saturate(100%) invert(62%) sepia(30%) saturate(497%) hue-rotate(358deg) brightness(92%) contrast(88%); */
    }

.service-card:hover .service-icon {
    transform: scale(1.1);
}

/* Service Content */
.service-name {
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.service-description {
    font-size: 0.9rem;
    color: rgba(46, 34, 27, 0.65);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: rgba(188, 148, 89, 0.1);
    border: 1px solid rgba(188, 148, 89, 0.25);
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    font-weight: 600;
}

/* Alternative: Horizontal Layout for Villa Pages */
.services-grid-horizontal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.service-card-compact {
    background: #ffffff;
    border: 1px solid rgba(46, 34, 27, 0.08);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    flex: 0 1 auto;
    min-width: 280px;
}

    .service-card-compact:hover {
        border-color: rgba(188, 148, 89, 0.3);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    }

    .service-card-compact .service-icon {
        width: 48px;
        height: 48px;
        margin: 0;
        flex-shrink: 0;
    }

    .service-card-compact .service-info {
        text-align: left;
    }

    .service-card-compact .service-name {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .service-card-compact .service-badge {
        font-size: 0.6rem;
        padding: 0.25rem 0.6rem;
    }

/* Services CTA (optional) */
.services-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.services-cta-text {
    color: rgba(46, 34, 27, 0.65);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.services-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gold);
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

    .services-cta-link:hover {
        color: var(--color-primary);
    }

    .services-cta-link span {
        transition: transform 0.3s ease;
    }

    .services-cta-link:hover span {
        transform: translateX(5px);
    }

/* ========================
   END EXTRA SERVICES SECTION
   ======================== */

/* ========================
   CONTACT PAGE STYLES
   ======================== */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a1510 100%);
    padding-top: 100px;
    overflow: hidden;
}

    .contact-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 50%, rgba(188, 148, 89, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(188, 148, 89, 0.05) 0%, transparent 40%);
        pointer-events: none;
    }

.contact-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

.contact-hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.contact-hero-title {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #f5f5f5;
    margin-bottom: 1rem;
}

.contact-hero-divider {
    width: 60px;
    height: 1px;
    background: var(--color-gold);
    margin: 2rem auto;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--color-background);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Info Card */
.contact-info-card {
    padding: 2.5rem;
    background: #ffffff;
    border: 1px solid rgba(46, 34, 27, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

    .contact-info-card h2 {
        font-family: var(--font-title);
        font-size: 1.75rem;
        font-weight: 500;
        margin-bottom: 2rem;
        color: var(--color-primary);
    }

.contact-info-item {
    margin-bottom: 2rem;
}

    .contact-info-item:last-of-type {
        margin-bottom: 0;
    }

.contact-info-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-info-value {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.7;
}

    .contact-info-value a {
        color: var(--color-text);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .contact-info-value a:hover {
            color: var(--color-gold);
        }

/* Contact Social Links */
.contact-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(46, 34, 27, 0.1);
}

.contact-social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(46, 34, 27, 0.15);
    color: var(--color-text);
    transition: all 0.3s ease;
    background: transparent;
}

    .contact-social-link:hover {
        border-color: var(--color-gold);
        background: var(--color-gold);
        color: #ffffff;
    }

    .contact-social-link svg {
        width: 18px;
        height: 18px;
    }

/* Contact Form */
.contact-form-card {
    padding: 2.5rem;
    background: #ffffff;
    border: 1px solid rgba(46, 34, 27, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

    .contact-form-card h2 {
        font-family: var(--font-title);
        font-size: 1.75rem;
        font-weight: 500;
        margin-bottom: 0.5rem;
        color: var(--color-primary);
    }

    .contact-form-card > p {
        color: rgba(46, 34, 27, 0.7);
        margin-bottom: 2rem;
        font-size: 0.95rem;
    }

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

@media (max-width: 576px) {
    .contact-form-row {
        grid-template-columns: 1fr;
    }
}

.contact-form-group {
    margin-bottom: 1.25rem;
}

    .contact-form-group label {
        display: block;
        font-family: var(--font-body);
        font-size: 0.7rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--color-gold);
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .contact-form-group input,
    .contact-form-group textarea,
    .contact-form-group select {
        width: 100%;
        padding: 0.875rem 1rem;
        background: var(--color-background);
        border: 1px solid rgba(46, 34, 27, 0.12);
        color: var(--color-text);
        font-family: var(--font-body);
        font-size: 0.95rem;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

        .contact-form-group input:focus,
        .contact-form-group textarea:focus,
        .contact-form-group select:focus {
            outline: none;
            border-color: var(--color-gold);
            box-shadow: 0 0 0 3px rgba(188, 148, 89, 0.1);
        }

    .contact-form-group textarea {
        min-height: 140px;
        resize: vertical;
    }

        .contact-form-group input::placeholder,
        .contact-form-group textarea::placeholder {
            color: rgba(46, 34, 27, 0.4);
        }

.contact-form-submit {
    padding: 1rem 2.5rem;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

    .contact-form-submit:hover:not(:disabled) {
        background: var(--color-gold);
        border-color: var(--color-gold);
    }

    .contact-form-submit:disabled {
        background: rgba(46, 34, 27, 0.5);
        border-color: rgba(46, 34, 27, 0.5);
        cursor: not-allowed;
        opacity: 0.7;
    }

    .contact-form-submit .spinner-border {
        width: 1rem;
        height: 1rem;
        border-width: 2px;
    }

/* Contact Map Section */
.contact-map-section {
    padding: 0;
    background: var(--color-background);
}

.contact-map-wrapper {
    position: relative;
    height: 450px;
    background: #ffffff;
    border: 1px solid rgba(46, 34, 27, 0.1);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

    .contact-map-wrapper iframe {
        width: 100%;
        height: 100%;
        filter: grayscale(30%) contrast(95%);
    }

.contact-map-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: #ffffff;
    border: 1px solid rgba(46, 34, 27, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

    .contact-map-overlay h3 {
        font-family: var(--font-title);
        font-size: 1.1rem;
        font-weight: 500;
        margin-bottom: 0.25rem;
        color: var(--color-primary);
    }

    .contact-map-overlay p {
        color: rgba(46, 34, 27, 0.7);
        font-size: 0.85rem;
        margin: 0;
    }

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-hero {
        min-height: 40vh;
        padding-top: 80px;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 1.75rem;
    }

    .contact-map-wrapper {
        height: 350px;
    }
}

/* ========================
   END CONTACT PAGE STYLES
   ======================== */

/* ========================
   GALLERY PAGE STYLES
   ======================== */

/* Gallery Hero Section with Logo */
.gallery-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a1510 100%);
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(188, 148, 89, 0.08) 0%, transparent 50%), 
                radial-gradient(circle at 80% 80%, rgba(188, 148, 89, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.gallery-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 1.5rem;
}

.gallery-hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    display: block;
}

.gallery-hero-title {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #f5f5f5;
    margin-bottom: 1rem;
}

.gallery-hero-divider {
    width: 60px;
    height: 1px;
    background: var(--color-gold);
    margin: 2rem auto;
}

.gallery-hero-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.gallery-hero-logo {
    max-width: 320px;
    width: 90%;
    height: auto;
    margin: 0 auto 3rem;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(188, 148, 89, 0.3));
    animation: logoFloatIn 1.2s ease-out forwards;
}

@keyframes logoFloatIn {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-hero-title {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #f5f5f5;
    text-align: center;
    margin: 0;
    animation: titleFadeIn 1.2s ease-out 0.3s forwards;
    opacity: 0;
}

@keyframes titleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Masonry Gallery Container */
.gallery-masonry-section {
    padding: 0;
    background: #ffffff;
    overflow: hidden;
}

.gallery-masonry-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Masonry Grid */
.gallery-masonry-grid {
    margin: 0;
    padding: 0;
}

.gallery-masonry-grid::after {
    content: '';
    display: block;
    clear: both;
}

/* Masonry Item - NO gaps, margins, or rounded corners */
.gallery-masonry-item {
    width: 50%;
    float: left;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

@media (max-width: 768px) {
    .gallery-masonry-item {
        width: 100%;
    }
}

.gallery-masonry-item-link {
    display: block;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
}

.gallery-masonry-item-link img {
    width: 100%;
    height: auto; /* Let image maintain natural aspect ratio */
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-masonry-item-link:hover img {
    transform: scale(1.08);
}

/* Image Overlay */
.gallery-masonry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(46, 34, 27, 0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gallery-masonry-item-link:hover .gallery-masonry-overlay {
    opacity: 1;
}

.gallery-masonry-overlay h3 {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0 0 0.35rem 0;
    color: #ffffff;
}

.gallery-masonry-overlay p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

/* Gallery CTA Section */
.gallery-cta-section {
    padding: 5rem 2rem;
    background: var(--color-background);
    text-align: center;
}

.gallery-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.gallery-cta-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.gallery-cta-text {
    color: rgba(46, 34, 27, 0.75);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.gallery-cta-btn {
    display: inline-block;
    padding: 1.1rem 2.75rem;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.gallery-cta-btn:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(188, 148, 89, 0.3);
}

/* GLightbox Customization */
.glightbox-container .gslide-image img {
    max-height: 90vh;
    object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-hero {
        min-height: 50vh;
        padding: 6rem 1.5rem 3rem;
    }

    .gallery-hero-logo {
        max-width: 220px;
        margin-bottom: 2rem;
    }
    
    .gallery-hero-subtitle {
        font-size: 0.7rem;
    }
    
    .gallery-hero-description {
        font-size: 0.95rem;
    }

    .gallery-cta-section {
        padding: 4rem 1.5rem;
    }

    .gallery-cta-title {
        font-size: 2rem;
    }
}

/* GSAP Animation Classes */
/* Don't hide elements by default - let them be visible */
/* GSAP will animate from these states if available */
.gsap-fade-in {
    opacity: 1;
    transform: translateY(0);
}

.gsap-slide-up {
    opacity: 1;
    transform: translateY(0);
}

/* Only apply initial hidden state if GSAP is confirmed loaded */
.gsap-ready .gsap-fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.gsap-ready .gsap-slide-up {
    opacity: 0;
    transform: translateY(50px);
}

/* ========================
   END GALLERY PAGE STYLES
   ======================== */

/* ========================
   FOOTER MENU COMPONENT
   ======================== */
.footer-menu-nav {
    width: 100%;
}

.footer-menu-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.footer-menu-item {
    margin: 0;
}

.footer-menu-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
}

/* Remove default underline on all states */
.footer-menu-link,
.footer-menu-link:hover,
.footer-menu-link:focus,
.footer-menu-link:active,
.footer-menu-link:visited {
    text-decoration: none !important;
}

.footer-menu-link:hover {
    color: var(--color-gold);
}

/* Custom animated underline */
.footer-menu-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}

.footer-menu-link:hover::after {
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .footer-menu-list {
        justify-content: center;
        gap: 0.5rem 1rem;
    }
    
    .footer-menu-link {
        font-size: 0.85rem;
    }
}

/* ========================
   END FOOTER MENU COMPONENT
   ======================== */
