/*
Theme Name: Kiriakos02
Theme URI: https://kiriakosvilla.gr
Author: Kiriakos Villa
Author URI: https://kiriakosvilla.gr
Description: A luxury villa rental theme for Kiriakos Villa — a beautifully renovated Greek stone villa with modern interiors, pool, and panoramic views.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kiriakos-villa
Tags: one-page, villa, luxury, rental, greek
*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --sand: #E8DDD3;
  --sand-light: #F5F0EB;
  --sand-dark: #C4B5A5;
  --terracotta: #C4724E;
  --terracotta-deep: #A85A3A;
  --olive: #6B7B5E;
  --olive-dark: #4A5840;
  --sea: #5B8A9A;
  --sea-deep: #3D6B7A;
  --navy: #1A2634;
  --cream: #FAF7F4;
  --white: #FFFFFF;
  --gold: #C9A96E;
  --gold-light: #DFC89A;
  --charcoal: #2C2C2C;
  --text: #3A3A3A;
  --text-light: #7A7A7A;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* PRELOADER */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--gold);
  letter-spacing: 8px;
  text-transform: uppercase;
  font-weight: 300;
}

.preloader-bar {
  width: 200px;
  height: 1px;
  background: rgba(201, 169, 110, 0.2);
  position: relative;
  overflow: hidden;
}

.preloader-bar::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: preload 1.5s ease forwards;
}

@keyframes preload {
  to {
    left: 100%;
  }
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s ease;
  background: rgba(26, 38, 52, 0.85);
  backdrop-filter: blur(12px);
}

nav.scrolled {
  background: rgba(26, 38, 52, 0.98);
  backdrop-filter: blur(20px);
  padding: 16px 48px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 6px;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: transparent !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 10px 24px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 0.7rem !important;
  letter-spacing: 3px !important;
  cursor: pointer;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

/* MOBILE NAV */
.nav-hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
  background: none;
  border: none;
  padding: 8px;
}

.nav-hamburger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

.nav-hamburger span {
  width: 28px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s;
}

/* HERO */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a3040 0%, #0d1f2d 40%, #1a2634 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(91, 138, 154, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(196, 114, 78, 0.1) 0%, transparent 50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  animation: fadeUp 1.2s ease 1.6s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  font-size: 0.7rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 400;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 48px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-block;
  padding: 16px 48px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: all 0.4s;
  font-weight: 500;
}

.hero-cta:hover {
  background: var(--gold);
  color: var(--navy);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: fadeUp 1.2s ease 2s both;
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 60px;
  background: rgba(201, 169, 110, 0.4);
  margin: 0 auto 8px;
  position: relative;
  overflow: hidden;
}

.hero-scroll span::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% {
    top: -100%
  }

  50% {
    top: 0
  }

  100% {
    top: 100%
  }
}

.hero-scroll p {
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* SECTIONS COMMON */
section {
  padding: 120px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-badge {
  font-size: 0.65rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
  font-weight: 500;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 600px;
  font-weight: 300;
}

/* INTRO */
.intro {
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-images {
  position: relative;
  height: 550px;
}

.intro-img {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.intro-img:hover img {
  transform: scale(1.05);
}

.intro-img-1 {
  width: 65%;
  height: 70%;
  top: 0;
  left: 0;
  z-index: 2;
}

.intro-img-2 {
  width: 55%;
  height: 55%;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.intro-accent {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 1px solid var(--gold-light);
  bottom: 15%;
  left: 55%;
  z-index: 0;
  border-radius: 2px;
}

.intro-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--terracotta);
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}

/* GALLERY */
.gallery {
  background: var(--navy);
  padding: 120px 0;
}

.gallery .section-badge {
  color: var(--gold);
}

.gallery .section-title {
  color: var(--white);
}

.gallery .section-desc {
  color: rgba(255, 255, 255, 0.5);
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.gallery-filters {
  display: flex;
  gap: 24px;
}

.gallery-filter {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px 0;
  transition: color 0.3s;
  border-bottom: 1px solid transparent;
}

.gallery-filter.active,
.gallery-filter:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  grid-auto-rows: 260px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  color: white;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
  padding: 20px;
}

.lightbox-nav:hover {
  opacity: 1;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* VIDEO */
.video-section {
  background: var(--sand-light);
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 60px;
}

.video-wrapper {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--navy);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FULL TOUR */
.tour-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.tour-card {
  text-align: center;
}

.tour-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
}

/* LANGUAGE TOGGLE */
.lang-toggle {
  background: rgba(201, 169, 110, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 14px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s;
  font-family: 'Montserrat', sans-serif;
}

.lang-toggle:hover {
  background: var(--gold);
  color: var(--navy);
}

.nav-right-mobile {
  display: none;
  align-items: center;
  gap: 12px;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: rgba(26, 38, 52, 0.6);
  backdrop-filter: blur(10px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}

.video-play-btn:hover {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--gold);
  margin-left: 4px;
}

.video-play-btn:hover svg {
  fill: var(--navy);
}

/* AMENITIES */
.amenities {
  background: var(--cream);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.amenity-card {
  padding: 40px 32px;
  background: var(--white);
  border-radius: 4px;
  transition: all 0.4s;
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.amenity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.amenity-card:hover::before {
  transform: scaleX(1);
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.amenity-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}

.amenity-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.amenity-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-light);
  font-weight: 300;
}

/* DETAILS BAR */
.details-bar {
  background: var(--terracotta);
  padding: 60px 0;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.detail-item {
  color: var(--white);
}

.detail-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
}

.detail-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 8px;
}

/* EXPERIENCE / LOCATION */
.experience {
  background: var(--white);
}

.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.exp-list {
  list-style: none;
}

.exp-list li {
  padding: 24px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.exp-list li:last-child {
  border-bottom: none;
}

.exp-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--terracotta);
  min-width: 36px;
}

.exp-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.exp-text p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 300;
}

.exp-map {
  border-radius: 6px;
  overflow: hidden;
  height: 450px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  background: var(--sand);
}

.exp-map-placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, var(--sea) 0%, var(--sea-deep) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}

.exp-map-placeholder svg {
  width: 48px;
  height: 48px;
  fill: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.exp-map-placeholder p {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.7;
}

/* REVIEWS */
.reviews {
  background: var(--sand-light);
}

.reviews-slider {
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s ease;
}

.review-card {
  min-width: calc(50% - 15px);
  padding: 48px;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 24px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--terracotta);
  font-weight: 600;
}

.review-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 2px;
}

.reviews-nav {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  justify-content: center;
}

.reviews-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--sand-dark);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: var(--navy);
}

.reviews-nav button:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}

/* PRICING */
.pricing {
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.pricing-card {
  padding: 48px 36px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s;
  position: relative;
  background: var(--cream);
}

.pricing-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  transform: scale(1.03);
}

.pricing-card.featured .pricing-season,
.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-per,
.pricing-card.featured .pricing-features li {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-card.featured .pricing-price {
  color: var(--gold);
}

.pricing-card:hover:not(.featured) {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.pricing-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  font-weight: 600;
}

.pricing-season {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 8px;
  font-weight: 500;
}

.pricing-card.featured .pricing-season {
  color: var(--gold);
}

.pricing-months {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 24px;
}

.pricing-card.featured .pricing-months {
  color: var(--white);
}

.pricing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 500;
  color: var(--navy);
}

.pricing-per {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--olive);
  font-weight: 600;
  font-size: 0.85rem;
}

.pricing-card.featured .pricing-features li::before {
  color: var(--gold);
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border: 1px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  text-decoration: none;
}

.pricing-btn:hover {
  background: var(--navy);
  color: white;
}

.pricing-card.featured .pricing-btn {
  border-color: var(--gold);
  color: var(--gold);
}

.pricing-card.featured .pricing-btn:hover {
  background: var(--gold);
  color: var(--navy);
}

/* CONTACT / BOOKING */
.contact {
  background: var(--navy);
  padding: 120px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact .section-badge {
  color: var(--gold);
}

.contact .section-title {
  color: var(--white);
}

.contact .section-desc {
  color: rgba(255, 255, 255, 0.5);
}

.contact-info {
  margin-top: 40px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

.contact-label {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 300;
}

.contact-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.form-group select option {
  background: var(--navy);
  color: white;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  border: none;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
  border-radius: 4px;
}

.form-submit:hover {
  background: var(--gold-light);
}

/* FOOTER */
footer {
  background: #111D28;
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-logo span {
  color: var(--gold);
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  font-weight: 300;
}

.footer-heading {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 300;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
}

.footer-social a:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.5);
}

.footer-social a:hover svg {
  fill: var(--gold);
}

/* SCROLL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 1024px) {

  .intro-grid,
  .exp-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .intro-images {
    height: 400px;
  }
}

/* FORM MESSAGES & VALIDATION */
.form-message {
  margin-top: 16px;
  padding: 14px 20px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 400;
  text-align: center;
  animation: fadeUp 0.4s ease;
}

.form-message.success {
  background: rgba(107, 123, 94, 0.15);
  border: 1px solid var(--olive);
  color: var(--olive);
}

.form-message.error {
  background: rgba(196, 114, 78, 0.15);
  border: 1px solid var(--terracotta);
  color: var(--terracotta);
}

.field-error {
  border-color: var(--terracotta) !important;
  box-shadow: 0 0 0 2px rgba(196, 114, 78, 0.2) !important;
}

.form-submit:disabled {
  cursor: not-allowed;
}

/* ─── MOBILE ≤ 768px ───────────────────────────────────── */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  section {
    padding: 72px 0;
  }

  /* NAV */
  nav {
    padding: 14px 20px;
  }

  .nav-logo {
    font-size: 1.3rem;
    letter-spacing: 4px;
  }

  .nav-links {
    display: none;
  }

  .nav-right-mobile {
    display: flex;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Hamburger → X animation */
  .nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Mobile fullscreen menu */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(26, 38, 52, 0.98);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 1000;
    animation: fadeUp 0.3s ease;
  }

  .nav-links.open a {
    font-size: 1.1rem;
    letter-spacing: 4px;
    padding: 8px 0;
  }

  .nav-links.open .nav-cta {
    margin-top: 8px;
    padding: 14px 32px !important;
    font-size: 0.8rem !important;
  }

  .nav-links.open .lang-toggle {
    display: none;
  }

  /* HERO */
  .hero-title {
    font-size: clamp(2.4rem, 10vw, 4rem);
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 36px;
  }

  .hero-cta {
    padding: 14px 36px;
    font-size: 0.65rem;
  }

  .hero-scroll {
    bottom: 24px;
  }

  /* INTRO */
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro-images {
    height: 320px;
  }

  .section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .section-desc {
    font-size: 0.9rem;
  }

  /* DETAILS BAR */
  .details-bar {
    padding: 40px 0;
  }

  .details-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .detail-number {
    font-size: 2.2rem;
  }

  /* GALLERY */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 8px;
  }

  .gallery-header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 40px;
  }

  .gallery-filters {
    flex-wrap: wrap;
    gap: 12px;
  }

  .gallery-filter {
    font-size: 0.65rem;
    padding: 6px 4px;
  }

  /* VIDEO */
  .video-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .video-play-btn {
    width: 70px;
    height: 70px;
  }

  .video-play-btn svg {
    width: 18px;
    height: 18px;
  }

  /* TOUR */
  .tour-grid {
    grid-template-columns: 1fr;
  }

  /* AMENITIES */
  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .amenity-card {
    padding: 28px 24px;
  }

  /* LOCATION */
  .exp-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .exp-map {
    height: 300px;
  }

  /* PRICING */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card {
    padding: 36px 28px;
  }

  /* REVIEWS */
  .review-card {
    min-width: 100%;
    padding: 32px 24px;
  }

  .review-text {
    font-size: 1.1rem;
  }

  /* CONTACT */
  .contact {
    padding: 80px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 16px;
    font-size: 1rem;
  }

  .form-submit {
    padding: 18px;
    font-size: 0.8rem;
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .intro-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  /* LIGHTBOX */
  .lightbox img {
    max-width: 95vw;
    max-height: 80vh;
  }

  .lightbox-nav {
    font-size: 2rem;
    padding: 12px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .lightbox-close {
    top: 16px;
    right: 16px;
    font-size: 1.8rem;
  }
}

/* ─── SMALL MOBILE ≤ 480px ─────────────────────────────── */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  section {
    padding: 56px 0;
  }

  .hero-badge {
    font-size: 0.55rem;
    letter-spacing: 4px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 0.8rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .details-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .detail-number {
    font-size: 1.8rem;
  }

  .detail-label {
    font-size: 0.6rem;
  }

  .section-badge {
    font-size: 0.6rem;
  }

  .nav-logo {
    font-size: 1.1rem;
    letter-spacing: 3px;
  }

  .contact-form {
    padding: 24px 16px;
  }

  .pricing-card {
    padding: 32px 20px;
  }

  .pricing-price {
    font-size: 2.4rem;
  }

  .exp-map {
    height: 250px;
  }
}