/* ====================================================
   SRI SUBHAM HOME STAY — Premium Luxury CSS
   Author: Sri Subham Homestay
   Version: 2.0
   ==================================================== */

/* ===== CSS VARIABLES ===== */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #9a7328;
  --cream: #faf6ef;
  --cream-deep: #f0e8d8;
  --brown-dark: #2a1a0e;
  --brown-mid: #4a2c0e;
  --brown-light: #7a4a2a;
  --green: #4a6741;
  --green-light: #6a8f5e;
  --beige: #d4bfa0;
  --text-dark: #1a0e08;
  --text-mid: #4a3020;
  --text-light: #8a6a50;
  --white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);

  --font-display: "Playfair Display", Georgia, serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Jost", sans-serif;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 4px 20px rgba(42, 26, 14, 0.08);
  --shadow-md: 0 8px 40px rgba(42, 26, 14, 0.14);
  --shadow-lg: 0 20px 60px rgba(42, 26, 14, 0.2);
  --shadow-gold: 0 8px 30px rgba(201, 168, 76, 0.3);
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
input,
textarea,
select {
  font-family: var(--font-sans);
  outline: none;
}

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

.section-pad {
  padding: 100px 0;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.section-eyebrow.light {
  color: var(--gold-light);
}
.section-eyebrow.light::before {
  background: var(--gold-light);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--brown-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--gold-dark);
  font-weight: 400;
}
.section-title.light {
  color: var(--cream);
}
.section-title.light em {
  color: var(--gold-light);
}

.section-desc {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 600px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-eyebrow {
  justify-content: center;
}
.section-header .section-desc {
  margin: 0 auto;
}

.mt-2 {
  margin-top: 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.45);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--brown-dark);
  border-color: var(--white);
}

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
}
.navbar.scrolled {
  background: rgba(42, 26, 14, 0.96);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  flex: 100px;
}
.logo-icon {
  font-size: 1.8rem;
  width: 12%;
  height: 12%;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-primary {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
}
.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: color 0.3s;
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:not(.nav-cta):hover {
  color: var(--gold-light);
}
.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}
.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 500;
}
.nav-cta:hover {
  background: var(--gold-dark) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--brown-dark);
}

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

/* Cinematic warm Indian landscape gradient */
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 80% at 20% 80%,
      rgba(201, 168, 76, 0.35) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 60% at 80% 20%,
      rgba(74, 42, 14, 0.5) 0%,
      transparent 60%
    ),
    linear-gradient(160deg, #1a0a04 0%, #3a200a 30%, #5a3015 55%, #2a1505 100%);
}

/* Decorative pattern overlay */
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle 1px at 50% 50%,
    rgba(201, 168, 76, 0.2) 1px,
    transparent 0
  );
  background-size: 40px 40px;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 120px 24px 80px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeSlideUp 0.9s ease 0.5s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: rgba(250, 246, 239, 0.8);
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeSlideUp 0.9s ease 0.7s forwards;
}
.desktop-br {
  display: none;
}
@media (min-width: 768px) {
  .desktop-br {
    display: block;
  }
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeSlideUp 0.9s ease 0.9s forwards;
}

.hero-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.9s ease 1.1s forwards;
}
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}
.hero-scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* Traditional kolam decorative element */
.hero-kolam {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle at center,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.1);
  z-index: 1;
}
.hero-kolam::before,
.hero-kolam::after {
  content: "";
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.08);
}
.hero-kolam::after {
  inset: 60px;
}

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--brown-dark);
  padding: 40px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 48px;
  gap: 4px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold-light);
  line-height: 1;
  display: inline;
}
.stat-unit {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
}

/* ===== ABOUT ===== */
.about {
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-stack {
  position: relative;
  height: 500px;
}
.img-main {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-1 {
  top: 0;
  left: 0;
  width: 80%;
  height: 80%;
  background:
    linear-gradient(
      160deg,
      rgba(42, 26, 14, 0.5) 0%,
      rgba(74, 42, 14, 0.3) 100%
    ),
    url("image/frontside2.jpg");
  background-size: cover;
  background-position: center;
}
.about-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(74, 103, 65, 0.4) 0%, transparent 60%),
    url("image/frontside2.jpg") center/cover;
  box-shadow: var(--shadow-lg);
}
.img-overlay-text {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 168, 76, 0.9);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.about-tag-card {
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  padding: 16px 22px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  z-index: 10;
}
.about-tag-card i {
  font-size: 1.4rem;
  color: var(--gold);
}
.about-tag-card strong {
  display: block;
  font-size: 0.85rem;
  color: var(--brown-dark);
  font-family: var(--font-sans);
}
.about-tag-card span {
  font-size: 0.75rem;
  color: var(--text-light);
}

.about-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 16px;
}
.about-text strong {
  color: var(--brown-dark);
  font-weight: 600;
}
.about-text em {
  color: var(--gold-dark);
  font-style: italic;
}

.about-features-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}
.mini-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-mid);
}
.mini-feat i {
  color: var(--green);
  font-size: 0.9rem;
}

/* ===== HIGHLIGHTS ===== */
.highlights {
  background: linear-gradient(160deg, var(--cream-deep) 0%, var(--beige) 100%);
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 36px 28px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.9);
}
.highlight-card:hover::before {
  transform: scaleX(1);
}

.card-icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-gold);
}
.card-icon-wrap i {
  font-size: 1.3rem;
  color: var(--white);
}

.highlight-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--brown-dark);
  margin-bottom: 10px;
  font-weight: 600;
}
.highlight-card p {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ========================= */
/* GALLERY SECTION */
/* ========================= */

.gallery{
  width:100%;
  background:#1a120b;
  padding:60px 15px;
}

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

/* ========================= */
/* HEADER */
/* ========================= */

.section-header{
  text-align:center;
  margin-bottom:35px;
}

.section-eyebrow{
  color:#d4a762;
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:8px;
}

.section-title{
  color:#fff;
  font-size:clamp(2rem,4vw,3.2rem);
  font-weight:700;
  margin-bottom:12px;
  line-height:1.2;
}

.section-title em{
  color:#d4a762;
  font-style:normal;
}

.section-desc{
  color:rgba(255,255,255,0.7);
  max-width:600px;
  margin:auto;
  line-height:1.6;
  font-size:15px;
}

/* ========================= */
/* COMPACT GRID */
/* ========================= */

.gallery-grid{
  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

  grid-auto-rows:220px;

  gap:14px;

  grid-auto-flow:dense;
}

/* ========================= */
/* CARD */
/* ========================= */

.gal-item{
  position:relative;
  overflow:hidden;
  border-radius:18px;
  background:#111;
  cursor:pointer;

  transition:.35s ease;
}

/* Compact Sizes */

.gal-wide{
  grid-column:span 2;
}

.gal-tall{
  grid-row:span 2;
}

/* ========================= */
/* IMAGE */
/* ========================= */

.gal-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;

  transition:transform .7s ease;
}

/* ========================= */
/* OVERLAY */
/* ========================= */

.gal-item::before{
  content:"";
  position:absolute;
  inset:0;

  background:linear-gradient(
    to top,
    rgba(0,0,0,.65),
    rgba(0,0,0,.1)
  );

  z-index:1;
}

/* ========================= */
/* TEXT */
/* ========================= */

.gal-content{
  position:absolute;
  left:14px;
  bottom:14px;
  z-index:2;
}

.gal-content span{
  color:#fff;
  font-size:14px;
  font-weight:500;

  padding:8px 14px;

  border-radius:12px;

  background:rgba(255,255,255,0.12);

  backdrop-filter:blur(6px);
}

/* ========================= */
/* HOVER */
/* ========================= */

.gal-item:hover{
  transform:translateY(-4px);
}

.gal-item:hover img{
  transform:scale(1.06);
}

/* ========================= */
/* TABLET */
/* ========================= */

@media(max-width:900px){

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

  .gal-wide{
    grid-column:span 2;
  }
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:600px){

  .gallery{
    padding:50px 12px;
  }

  .gallery-grid{
    grid-template-columns:1fr;
    grid-auto-rows:240px;
    gap:12px;
  }

  .gal-item,
  .gal-wide,
  .gal-tall{
    grid-column:span 1;
    grid-row:span 1;
  }

  .section-header{
    margin-bottom:28px;
  }

  .section-title{
    font-size:2rem;
  }

  .section-desc{
    font-size:14px;
  }
}

/* ===== EXPERIENCE ===== */
.experience {
  background: var(--cream);
}
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.exp-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  background: var(--white);
}
.exp-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.exp-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.exp-img-1 {
  background-image: url("https://www.naturesafariindia.com/wp-content/uploads/2025/07/Brihadeeswarar-Temple-in-Thanjavur_.webp");
  background-size: cover;
  background-position: center;
}
.exp-img-2 {
  background-image: url("https://www.laurewanders.com/wp-content/uploads/2022/12/Maratha-Palace-Thanjavur-00007.jpg");
  background-size: cover;
  background-position: center;
}
.exp-img-3 {
  background-image: url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRyYfvnzwTTmuwAlYDSTuZiVjAGRio2SUrdRg&s");
  background-size: cover;
  background-position: center;
}

.exp-img::after {
  content: attr(class);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exp-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  z-index: 2;
}

.exp-content {
  padding: 24px 28px 28px;
}
.exp-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--brown-dark);
  margin-bottom: 10px;
}
.exp-content p {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}
.exp-distance {
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.experience-extra {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.extra-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-deep);
  border: 1px solid var(--beige);
  color: var(--text-mid);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  transition: var(--transition);
}
.extra-tag:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.extra-tag i {
  color: var(--gold);
  font-size: 0.9rem;
}
.extra-tag:hover i {
  color: var(--white);
}

/* ===== WHY CHOOSE US ===== */
.why-us {
  background: linear-gradient(
    135deg,
    var(--brown-dark) 0%,
    #3a1a08 50%,
    #2a1005 100%
  );
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-desc {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: rgba(250, 246, 239, 0.7);
  line-height: 1.8;
  margin-bottom: 32px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-icon i {
  color: var(--gold);
  font-size: 1rem;
}
.why-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 6px;
}
.why-item p {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: rgba(250, 246, 239, 0.6);
  line-height: 1.6;
}

/* Why Visual */
.why-card-stack {
  position: relative;
  height: 480px;
}
.why-testimonial-mini {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 28px;
  z-index: 2;
  max-width: 340px;
}
.wtm-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 14px;
}
.why-testimonial-mini p {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.why-testimonial-mini span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}
.why-img-block {
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 220px;
  height: 280px;
  border-radius: 16px;
  background: linear-gradient(160deg, #4a3020 0%, #8a6a50 100%);
  box-shadow: var(--shadow-lg);
}
.why-highlight-box {
  position: absolute;
  bottom: 0;
  left: 30px;
  background: var(--gold);
  color: var(--white);
  padding: 20px 24px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  box-shadow: var(--shadow-gold);
  z-index: 3;
}
.why-highlight-box i {
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.why-highlight-box strong {
  font-size: 0.9rem;
  font-family: var(--font-display);
}
.why-highlight-box span {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--cream-deep);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testi-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.testi-card.featured {
  background: linear-gradient(135deg, var(--brown-dark) 0%, #3a1a08 100%);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.testi-card.featured p,
.testi-card.featured .testi-author strong {
  color: var(--cream);
}
.testi-card.featured .testi-author span {
  color: rgba(250, 246, 239, 0.6);
}

.testi-quote {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 16px;
  font-style: italic;
}
.testi-card.featured .testi-quote {
  opacity: 0.6;
}

.testi-card > p {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 28px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--brown-dark);
  font-family: var(--font-sans);
}
.testi-author span {
  font-size: 0.75rem;
  color: var(--text-light);
}
.testi-stars {
  margin-left: auto;
  color: var(--gold);
  font-size: 0.8rem;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}
.contact-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.contact-card i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-card strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.contact-card a,
.contact-card span {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--brown-dark);
  line-height: 1.6;
}
.contact-card a:hover {
  color: var(--gold-dark);
}

.map-embed {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Booking Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
}
.booking-form h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--brown-dark);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full {
  margin-bottom: 24px;
}
.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 18px;
  border: 1.5px solid var(--beige);
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--brown-dark);
  background: var(--cream);
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
  background: var(--white);
}
.form-group textarea {
  resize: vertical;
}

.form-note {
  text-align: center;
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--text-light);
  font-family: var(--font-serif);
  font-style: italic;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--brown-dark);
}
.footer-top {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.4fr;
  gap: 60px;
}

.footer-brand p {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin: 20px 0 24px;
  max-width: 280px;
}
.footer-logo .logo-primary {
  color: var(--gold-light);
}

.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.footer-links-col h4,
.footer-contact-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}
.footer-links-col ul,
.footer-contact-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links-col a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s;
}
.footer-links-col a:hover {
  color: var(--gold-light);
}
.footer-contact-col li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}
.footer-contact-col i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-col a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}
.footer-contact-col a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}
.footer-bottom .fa-heart {
  color: var(--gold);
}

/* ===== FLOATING WHATSAPP ===== */
.float-whatsapp {
  position: fixed;
  bottom: 80px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}
.float-whatsapp i {
  font-size: 1.3rem;
}
.float-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
}
.float-label {
  font-family: var(--font-sans);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.scroll-top:hover {
  background: var(--gold-dark);
}

/* ===== SCROLL ANIMATIONS ===== */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
[data-aos="fade-right"] {
  transform: translateX(-40px);
}
[data-aos="fade-left"] {
  transform: translateX(40px);
}
[data-aos].animated {
  opacity: 1;
  transform: translate(0);
}

/* ===== KEYFRAMES ===== */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scrollPulse {
  0% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ===== FORM SUCCESS TOAST ===== */
.toast {
  position: fixed;
  top: 100px;
  right: 28px;
  z-index: 2000;
  background: var(--green);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  transform: translateY(-20px);
  opacity: 0;
  transition: var(--transition);
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-visual {
    display: none;
  }
  .why-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .why-visual {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(42, 26, 14, 0.98);
    padding: 24px;
    gap: 20px;
    backdrop-filter: blur(20px);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
  }
  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-divider {
    display: none;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gal-tall {
    grid-row: auto;
  }
  .gal-wide {
    grid-column: auto;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testi-card.featured {
    transform: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap {
    padding: 32px 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .float-whatsapp {
    bottom: 80px;
    right: 16px;
  }
  .scroll-top {
    bottom: 28px;
    right: 16px;
  }

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

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-badges {
    flex-direction: column;
    align-items: center;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .stat-item {
    padding: 16px 24px;
  }
}
