/* ============================================================
   Close to Heaven — Luxury Cottage CSS
   Font: Playfair Display + Poppins
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #faf9f6;
  color: #2d2d2d;
  overflow-x: hidden;
  line-height: 1.65;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  outline: none;
}

/* ---- CSS VARIABLES ---- */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dim: #a07c2d;
  --cream: #faf9f6;
  --cream-dark: #f0ece3;
  --deep: #1a1208;
  --dark: #2d2416;
  --mid: #5a4a2a;
  --text: #3a3020;
  --text-light: #7a6a4a;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.1);
  --radius: 18px;
  --radius-sm: 10px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ======================================================
   HEADER
   ====================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 2rem;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(26, 18, 8, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
  padding: 0 2rem;
}

.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--gold);
  box-shadow: 0 0 16px rgba(201, 168, 76, 0.4);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.35s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--deep);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 26px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
  transition: var(--transition);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 5px;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

.mobile-menu-overlay.active {
  display: block;
}

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

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1.15);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
      rgba(10, 6, 2, 0.35) 0%,
      rgba(10, 6, 2, 0.55) 50%,
      rgba(10, 6, 2, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: badgeFade 1s ease 0.3s both;
}

@keyframes badgeFade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  animation: slideFade 1s ease 0.5s both;
}

.hero-title .gold {
  color: var(--gold);
  font-style: italic;
}

@keyframes slideFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255, 255, 255, 0.8);
  margin: 1.2rem 0 2.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  animation: slideFade 1s ease 0.7s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideFade 1s ease 0.9s both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--deep);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 38px;
  border-radius: 50px;
  box-shadow: 0 6px 30px rgba(201, 168, 76, 0.5);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.65);
  color: var(--deep);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 16px 38px;
  border-radius: 50px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease infinite;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

.hero-stats {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  z-index: 2;
  display: flex;
  gap: 2rem;
  animation: slideFade 1.2s ease 1.2s both;
}

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  opacity: 0.75;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ======================================================
   SECTION STYLES
   ====================================================== */
section {
  padding: 100px 2rem;
}

.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.section-tag::before {
  content: '— ';
}

.section-tag::after {
  content: ' —';
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

.section-title .italic {
  font-style: italic;
  color: var(--gold-dim);
}

.section-desc {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 580px;
  margin-top: 0.8rem;
}

.section-header {
  margin-bottom: 3.5rem;
}

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

.section-header.center .section-desc {
  margin: 0.8rem auto 0;
}

/* ======================================================
   COTTAGE CARDS
   ====================================================== */
.cottages-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.cottage-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
}

.cottage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

.card-img-wrap {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cottage-card:hover .card-img-wrap img {
  transform: scale(1.1);
}

.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(26, 18, 8, 0.75);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.card-wishlist {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #e91e63;
  border: none;
  transition: var(--transition);
}

.card-wishlist:hover {
  background: #e91e63;
  color: white;
  transform: scale(1.1);
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.card-desc {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.card-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1.2rem;
}

.amenity-tag {
  background: var(--cream-dark);
  color: var(--mid);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
}

.card-price .orig {
  font-size: 0.78rem;
  text-decoration: line-through;
  color: var(--text-light);
}

.card-price .current {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-dim);
}

.card-price .per {
  font-size: 0.75rem;
  color: var(--text-light);
}

.card-guests {
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-guests i {
  color: var(--gold);
}

.btn-book {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--deep);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 50px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.45);
  color: var(--deep);
}

/* ======================================================
   FEATURED SECTION (home)
   ====================================================== */
.featured-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 5rem;
}

.featured-row.reverse {
  direction: rtl;
}

.featured-row.reverse>* {
  direction: ltr;
}

.featured-imgs {
  position: relative;
}

.fi-main {
  border-radius: var(--radius);
  height: 420px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.fi-thumb {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 140px;
  height: 140px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-card);
}

.featured-info .price-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--deep);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.featured-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.featured-info p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.feat-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2rem;
}

.feat-amenity {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--mid);
}

.feat-amenity i {
  color: var(--gold);
  font-size: 0.9rem;
}

/* ======================================================
   EXPERIENCE SECTION
   ====================================================== */
.experience-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--deep) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.experience-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.experience-section .section-title {
  color: var(--white);
}

.experience-section .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.exp-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: var(--transition);
}

.exp-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, 0.5);
}

.exp-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.05));
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 auto 1.2rem;
}

.exp-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.exp-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ======================================================
   TESTIMONIALS
   ====================================================== */
.testimonials-section {
  background: var(--cream-dark);
}

.testimonials-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: var(--transition);
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.testi-quotes {
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: Georgia, serif;
}

.testi-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

.testi-text {
  font-size: 0.9rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--deep);
  font-weight: 700;
}

.testi-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}

.testi-loc {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ======================================================
   GALLERY SECTION
   ====================================================== */
.gallery-section {
  padding: 100px 2rem;
}

.gallery-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 8, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  background: rgba(26, 18, 8, 0.4);
}

.gallery-overlay i {
  color: var(--white);
  font-size: 2rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
  opacity: 1;
  transform: scale(1.2);
}

/* ======================================================
   CONTACT PAGE
   ====================================================== */
.contact-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--deep) 60%, #0e0804 100%);
  padding: 140px 2rem 80px;
  text-align: center;
  color: var(--white);
}

.contact-hero .section-title {
  color: var(--white);
}

.contact-grid {
  max-width: 1100px;
  margin: -3rem auto 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.contact-info-card,
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
}

.contact-info-card h3,
.contact-form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.ci-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.ci-item:last-child {
  border-bottom: none;
}

.ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--deep);
  flex-shrink: 0;
}

.ci-text strong {
  display: block;
  font-weight: 600;
  color: var(--dark);
  font-size: 0.9rem;
}

.ci-text a,
.ci-text span {
  color: var(--text-light);
  font-size: 0.88rem;
}

.ci-text a:hover {
  color: var(--gold-dim);
}

/* ======================================================
   FORMS
   ====================================================== */
.form-group {
  margin-bottom: 1.2rem;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--mid);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

select.form-control {
  appearance: none;
  cursor: pointer;
}

/* ======================================================
   COTTAGE DETAIL PAGE
   ====================================================== */
.detail-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  overflow: hidden;
}

.detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 6, 2, 0.8) 100%);
}

.detail-hero-text {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  padding: 0 3rem;
  color: var(--white);
}

.detail-hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.detail-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
}

.detail-gallery {}

.gallery-swiper {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
  height: 420px;
}

.gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.gallery-thumb {
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.gallery-thumb.active,
.gallery-thumb:hover {
  border-color: var(--gold);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-info {}

.detail-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.detail-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.meta-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--cream-dark);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--mid);
}

.meta-chip i {
  color: var(--gold);
}

.price-display {
  background: linear-gradient(135deg, var(--dark), var(--deep));
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.price-display .price-main {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
}

.price-display .price-info {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

.booking-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  position: sticky;
  top: 100px;
}

.booking-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--cream-dark);
}

.avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.avail-badge.available {
  background: #e8f5e9;
  color: #2e7d32;
}

.avail-badge.unavailable {
  background: #fce4ec;
  color: #c62828;
}

.avail-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 1.5s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

/* ======================================================
   PAGE HERO (inner pages)
   ====================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--deep) 100%);
  padding: 140px 2rem 80px;
  text-align: center;
  color: var(--white);
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.8rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.breadcrumb a {
  color: var(--gold);
}

.breadcrumb span {
  opacity: 0.6;
}

/* ======================================================
   ALERT MESSAGES
   ====================================================== */
.alert {
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 10px;
  align-items: center;
}

.alert-success {
  background: #e8f5e9;
  color: #2e7d32;
  border-left: 4px solid #4caf50;
}

.alert-error {
  background: #fce4ec;
  color: #c62828;
  border-left: 4px solid #e91e63;
}

/* ======================================================
   FOOTER
   ====================================================== */
.site-footer {
  background: linear-gradient(175deg, var(--dark) 0%, var(--deep) 100%);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 2rem 0;
  position: relative;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-logo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid var(--gold);
}

.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 1.2rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-btn.whatsapp {
  background: #25D366;
  color: white;
}

.social-btn.insta {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.social-btn.fb {
  background: #1877f2;
  color: white;
}

.social-btn:hover {
  transform: translateY(-3px) scale(1.1);
}

.footer-links h4,
.footer-contact h4,
.footer-map h4 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a i {
  font-size: 0.7rem;
  color: var(--gold);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.footer-contact li i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact a:hover {
  color: var(--gold);
}

.map-embed {
  margin-bottom: 1rem;
}

.whatsapp-float-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
}

.whatsapp-float-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  animation: fabPop 0.5s ease 2s both;
}

.whatsapp-fab:hover {
  transform: scale(1.15) translateY(-3px);
  color: white;
}

@keyframes fabPop {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ======================================================
   AMENITIES LIST (detail page)
   ====================================================== */
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin: 1.5rem 0;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text);
}

.amenity-item i {
  color: var(--gold);
  font-size: 0.85rem;
}

/* ======================================================
   CALENDAR AVAILABILITY
   ====================================================== */
.avail-calendar {
  margin-top: 1rem;
}

.avail-calendar .legend {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  margin-bottom: 0.8rem;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  display: inline-block;
}

.legend-dot.avail {
  background: #c8e6c9;
}

.legend-dot.taken {
  background: #ffcdd2;
}

/* ======================================================
   ADMIN
   ====================================================== */
.admin-body {
  font-family: 'Poppins', sans-serif;
  background: #f0f2f5;
  min-height: 100vh;
}

.admin-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--deep) 100%);
}

.admin-login-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.admin-login-box .logo-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.admin-login-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.admin-login-box p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.admin-sidebar {
  width: 260px;
  background: var(--deep);
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  overflow-y: auto;
  z-index: 100;
  transition: var(--transition);
}

.admin-sidebar-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-sidebar-header img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.admin-sidebar-header .name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold);
}

.admin-sidebar-header .role {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}

.admin-nav {
  padding: 1rem 0;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.85rem 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  transition: var(--transition);
  cursor: pointer;
  border-left: 3px solid transparent;
}

.admin-nav-item:hover,
.admin-nav-item.active {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  border-left-color: var(--gold);
}

.admin-nav-item i {
  width: 18px;
  text-align: center;
}

.admin-content {
  margin-left: 260px;
  min-height: 100vh;
}

.admin-topbar {
  background: var(--white);
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 90;
}

.admin-topbar h1 {
  font-size: 1.3rem;
  color: var(--dark);
  font-family: 'Playfair Display', serif;
}

.admin-page {
  padding: 2rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-3px);
}

.stat-card .val {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-dim);
}

.stat-card .lbl {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 4px;
}

.stat-card .ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  float: right;
  margin-top: -0.5rem;
}

.admin-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.admin-card-header {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-card-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  background: var(--cream);
  text-align: left;
  padding: 0.9rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-table td {
  padding: 1rem 1.2rem;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--cream-dark);
  vertical-align: middle;
}

.admin-table tr:hover td {
  background: #fdf8ee;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
}

.badge-pending {
  background: #fff3e0;
  color: #e65100;
}

.badge-approved {
  background: #e8f5e9;
  color: #2e7d32;
}

.badge-rejected {
  background: #fce4ec;
  color: #c62828;
}

.badge-cancelled {
  background: #eeeeee;
  color: #616161;
}

.btn-admin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

.btn-admin-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--deep);
  border: none;
}

.btn-admin-primary:hover {
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
  transform: translateY(-1px);
}

.btn-admin-danger {
  background: #fce4ec;
  color: #c62828;
  border: 1px solid #ffcdd2;
}

.btn-admin-danger:hover {
  background: #e91e63;
  color: white;
}

.btn-admin-success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.btn-admin-success:hover {
  background: #4caf50;
  color: white;
}

.edit-img-preview {
  max-width: 200px;
  border-radius: 8px;
  margin-top: 8px;
}

.current-images-wrap {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 8px 0;
}

.current-img-item {
  position: relative;
}

.current-img-item img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}

.remove-img-btn {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: red;
  color: white;
  border: none;
  font-size: 0.65rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .detail-body {
    grid-template-columns: 1fr;
  }

  .booking-card {
    position: static;
  }

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

  .gallery-item:nth-child(1) {
    grid-column: span 1;
  }

  .gallery-item:nth-child(4) {
    grid-column: span 1;
  }

  .featured-row {
    grid-template-columns: 1fr;
  }

  .featured-row.reverse {
    direction: ltr;
  }

  .fi-thumb {
    display: none;
  }

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

  .admin-sidebar {
    transform: translateX(-100%);
  }

  .admin-content {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 1.2rem;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 280px;
    background: var(--deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 2rem 2rem;
    gap: 1.2rem;
    z-index: 999;
    transition: var(--transition);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .main-nav.open {
    right: 0;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-stats {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .testimonials-slider {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 4rem);
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .exp-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ======================================================
   UTILITY + ANIMATIONS
   ====================================================== */
.text-gold {
  color: var(--gold);
}

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

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
}

.section-divider {
  width: 80px;
  height: 2px;
  margin: 1rem auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-divider.left {
  margin: 1rem 0;
}

.spinner {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid var(--cream-dark);
  border-top-color: var(--gold);
  animation: spin 0.8s linear infinite;
  margin: 2rem auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}