/* ===== HOTEL SAI NEST — MAIN STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&family=Cormorant+Garamond:ital,wght@0,400;1,400;1,600&display=swap');

:root {
  --gold:       #8B6914;
  --gold-light: #D4A017;
  --gold-pale:  #F0E4C0;
  --green:      #2C5F2E;
  --green-light:#4A8B4C;
  --cream:      #F5F0E8;
  --cream-dark: #EDE5D4;
  --brown-dark: #1A1208;
  --brown-mid:  #4A3B1F;
  --text-main:  #2A2015;
  --text-muted: #7A6A50;
  --white:      #FFFFFF;
  --shadow-sm:  0 2px 12px rgba(139,105,20,0.10);
  --shadow-md:  0 6px 32px rgba(139,105,20,0.16);
  --shadow-lg:  0 16px 56px rgba(139,105,20,0.22);
  --radius:     4px;
  --transition: 0.32s cubic-bezier(0.4,0,0.2,1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Lato', sans-serif; background: var(--cream); color: var(--text-main); overflow-x: hidden; animation: pageFadeIn 0.6s ease both; }

@keyframes pageFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes gentleFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes shimmer { 0% { background-position: -120% 0; } 100% { background-position: 220% 0; } }

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

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.25; color: var(--brown-dark); }
h1 { font-size: clamp(1.8rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.4rem; }
.italic-accent { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--gold); font-size: 1.15em; }
.section-eyebrow { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; margin-bottom: 0.6rem; display: block; background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 45%, #fff3c4 50%, var(--gold-light) 55%, var(--gold) 100%); background-size: 250% 100%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: shimmer 5s linear infinite; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 32px; border-radius: 8px; font-family: 'Lato', sans-serif; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.06em; text-transform: uppercase; border: 2px solid transparent; cursor: pointer; transition: var(--transition); box-shadow: 0 1px 2px rgba(0,0,0,0.06); position: relative; overflow: hidden; }
.btn::before { content:''; position:absolute; top:0; left:-120%; width:60%; height:100%; background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent); transform: skewX(-20deg); transition: left 0.6s ease; }
.btn:hover::before { left: 130%; }
.btn:active { transform: translateY(0) scale(0.98); }
.btn:focus-visible { outline: 3px solid rgba(212,160,23,0.45); outline-offset: 2px; }
.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--gold); transform: translateY(-2px); }
.btn-green { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-green:hover { background: var(--green-light); border-color: var(--green-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ===== HEADER / NAV ===== */
#header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: var(--transition); background: rgba(26,18,8,0.95); }
#header.scrolled { background: var(--brown-dark); padding: 10px 0; box-shadow: var(--shadow-md); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark { width: 42px; height: 42px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; flex-shrink: 0; }
.logo-text { line-height: 1; }
.logo-text .name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--white); white-space: nowrap; }
.logo-text .tagline { font-size: 0.62rem; color: var(--gold-light); letter-spacing: 0.1em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.85); font-weight: 700; position: relative; transition: color var(--transition); white-space: nowrap; }
.nav-links a::after { content:''; position: absolute; bottom:-4px; left:0; right:0; height:2px; background: var(--gold-light); transform: scaleX(0); transition: transform var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; z-index: 1001; }
.hamburger span { width: 22px; height: 2px; background: var(--white); display: block; 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); }

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10,8,2,0.97);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 0;
    align-items: stretch;
    z-index: 1000;
    overflow-y: auto;
  }
  .nav-links a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-cta .btn { display: none; }
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #1A1208 0%, #2C1F0A 60%, #1A2B1B 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-pattern { position: absolute; inset: 0; opacity: 0.04; background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D4A017' fill-rule='evenodd'%3E%3Ccircle cx='40' cy='40' r='3'/%3E%3Ccircle cx='40' cy='40' r='20' fill='none' stroke='%23D4A017' stroke-width='1'/%3E%3Ccircle cx='40' cy='40' r='35' fill='none' stroke='%23D4A017' stroke-width='0.5'/%3E%3C/g%3E%3C/svg%3E"); background-size: 80px 80px; }
.hero-glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(212,160,23,0.15) 0%, transparent 70%); top: 50%; left: 60%; transform: translate(-50%,-50%); pointer-events: none; }

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(212,160,23,0.15); border: 1px solid rgba(212,160,23,0.3); border-radius: 100px; padding: 6px 16px; font-size: 0.72rem; color: var(--gold-light); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 20px; }
.hero-badge::before { content: '✦'; font-size: 0.6rem; }
.hero-content h1 { color: var(--white); margin-bottom: 12px; }
.hero-content h1 span { color: var(--gold-light); display: block; }
.hero-subtitle { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.2rem; color: rgba(255,255,255,0.65); margin-bottom: 28px; line-height: 1.6; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero image */
.hero-visual { position: relative; }
.hero-hotel-photo {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(0,0,0,0.5);
  border: 2px solid rgba(212,160,23,0.3);
  position: relative;
  background: #0E0C06;
}
.hero-hotel-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-photo-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(26,18,8,0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212,160,23,0.4);
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--white);
  animation: gentleFloat 4.5s ease-in-out infinite;
}
.hero-photo-badge .t1 { font-family: 'Playfair Display', serif; font-size: 0.9rem; font-weight: 700; }
.hero-photo-badge .t2 { color: var(--gold-light); font-size: 0.7rem; margin-top: 3px; }

/* ===== SECTION COMMONS ===== */
section { padding: 80px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-header p { color: var(--text-muted); font-size: 1rem; margin-top: 16px; line-height: 1.75; }
.divider-gold { width: 60px; height: 3px; background: var(--gold); margin: 20px auto; border-radius: 2px; }

/* ===== HIGHLIGHTS STRIP ===== */
#highlights { background: var(--brown-dark); padding: 48px 0; }
.highlights-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.highlight-item { padding: 36px 24px; border-right: 1px solid rgba(255,255,255,0.08); text-align: center; }
.highlight-item:last-child { border-right: none; }
.hi-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.hi-title { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1rem; margin-bottom: 6px; }
.hi-desc { color: rgba(255,255,255,0.45); font-size: 0.82rem; line-height: 1.6; }

/* ===== ABOUT SECTION ===== */
#about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; }
.about-img-main { border-radius: 12px; overflow: hidden; }
.about-img-main img { width: 100%; height: 480px; object-fit: cover; object-position: center top; display: block; }
.img-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--text-muted); height: 480px; width: 100%; background: var(--cream-dark); font-size: 0.85rem; }
.img-placeholder .emoji { font-size: 3rem; }
.about-badge { position: absolute; bottom: -28px; right: -28px; background: var(--gold); border-radius: 12px; padding: 24px; color: var(--white); text-align: center; min-width: 140px; }
.about-badge .num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; line-height: 1; }
.about-badge .lbl { font-size: 0.75rem; opacity: 0.85; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }
.about-content p { color: var(--text-muted); line-height: 1.85; margin-bottom: 20px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; }
.af-item { display: flex; align-items: flex-start; gap: 12px; }
.af-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-top: 7px; flex-shrink: 0; }
.af-text { font-size: 0.9rem; color: var(--text-main); font-weight: 700; }

/* ===== GALLERY ===== */
#gallery { background: var(--cream-dark); }
.gallery-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.tab-btn { padding: 8px 20px; border-radius: 100px; border: 1.5px solid var(--gold-pale); background: transparent; color: var(--text-muted); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: var(--transition); }
.tab-btn.active, .tab-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.gallery-item { border-radius: 12px; overflow: hidden; position: relative; cursor: pointer; background: var(--cream); aspect-ratio: 4/3; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: unset; }
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}
img.gallery-img { object-fit: cover; height: 100%; width: 100%; }
.gallery-item:hover .gallery-img { transform: scale(1.07); }

/* Beautiful placeholder cards (no images yet) */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
  transition: transform 0.4s ease;
  position: relative;
  overflow: hidden;
}
.gallery-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,105,20,0.08) 0%, transparent 60%);
}
.gallery-placeholder .ph-icon {
  font-size: 2.8rem;
  filter: drop-shadow(0 2px 8px rgba(139,105,20,0.3));
  position: relative;
  z-index: 1;
}
.gallery-placeholder .ph-label {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.gallery-placeholder .ph-cat {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.gallery-item:hover .gallery-placeholder { transform: scale(1.04); }

.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,18,8,0.88) 0%, transparent 55%); opacity: 0; transition: opacity var(--transition); display: flex; align-items: flex-end; padding: 18px; pointer-events: none; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label { color: var(--white); font-size: 0.88rem; font-weight: 700; font-family: 'Playfair Display', serif; }

/* ===== GOSHALA ===== */
#goshala { background: var(--cream); }
.goshala-hero { background: var(--green); border-radius: 16px; padding: 56px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 72px; overflow: hidden; position: relative; }
.goshala-hero::before { content: '🐄'; position: absolute; right: -20px; bottom: -20px; font-size: 10rem; opacity: 0.08; }
.goshala-hero h2 { color: var(--white); margin-bottom: 16px; }
.goshala-hero p { color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 24px; }
.goshala-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.gs { text-align: center; }
.gs .num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--white); font-weight: 700; }
.gs .lbl { font-size: 0.75rem; color: rgba(255,255,255,0.6); letter-spacing: 0.1em; text-transform: uppercase; }
.goshala-visual { border-radius: 12px; overflow: hidden; }
.goshala-visual img { width: 100%; height: 280px; object-fit: cover; border-radius: 12px; }
.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.product-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--cream-dark); }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-img { height: 180px; background: var(--cream-dark); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; overflow: hidden; }
.product-img img { transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.product-card:hover .product-img img { transform: scale(1.08); }
.product-body { padding: 20px; }
.product-tag { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green); font-weight: 700; }
.product-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin: 6px 0 10px; }
.product-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }

/* ===== TESTIMONIALS ===== */
#testimonials { background: var(--brown-dark); padding: 80px 0; }
.testimonials-wrap { position: relative; overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.5s ease; }
.testimonial { min-width: 100%; padding: 0 12px; }
.testimonial-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.quote-mark { font-family: 'Playfair Display', serif; font-size: 4.5rem; color: var(--gold); line-height: 0.5; display: block; margin-bottom: 20px; }
.testimonial-text { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.35rem; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 28px; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.author-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-weight: 700; color: var(--white); font-size: 1rem; }
.author-name { font-weight: 700; color: var(--white); font-size: 0.92rem; }
.author-loc { font-size: 0.75rem; color: var(--gold-light); }
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 36px; }
.t-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); cursor: pointer; transition: var(--transition); border: none; }
.t-dot.active { background: var(--gold-light); width: 24px; border-radius: 4px; }

/* ===== CONTACT ===== */
#contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; }
.contact-details { display: flex; flex-direction: column; gap: 18px; }
.cd-item { display: flex; align-items: flex-start; gap: 14px; }
.cd-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.cd-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-weight: 700; }
.cd-value { font-size: 0.92rem; color: var(--text-main); margin-top: 2px; }
.cd-value a { color: var(--text-main); }
.cd-value a:hover { color: var(--gold); }
.social-links { display: flex; gap: 10px; margin-top: 28px; }
.social-btn { width: 40px; height: 40px; border-radius: 8px; border: 1.5px solid var(--gold-pale); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: var(--transition); color: var(--text-muted); }
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.contact-form { background: var(--white); border-radius: 16px; padding: 36px; box-shadow: var(--shadow-md); }
.contact-form h3 { font-family: 'Playfair Display', serif; margin-bottom: 24px; color: var(--brown-dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--text-main); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 11px 14px; border: 1.5px solid var(--cream-dark); border-radius: var(--radius); font-family: 'Lato', sans-serif; font-size: 0.92rem; color: var(--text-main); background: var(--cream); transition: border-color var(--transition); outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-msg { padding: 10px 14px; border-radius: var(--radius); font-size: 0.85rem; margin-top: 12px; display: none; }
.form-msg.success { background: #d4edda; color: #155724; display: block; }
.form-msg.error { background: #f8d7da; color: #721c24; display: block; }

/* ===== FOOTER ===== */
#footer { background: #0E0C06; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo-text .name { font-size: 1.3rem; }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.86rem; line-height: 1.75; margin: 16px 0 24px; }
.footer-col h4 { font-family: 'Playfair Display', serif; color: var(--white); font-size: 0.95rem; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.4); font-size: 0.86rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; color: rgba(255,255,255,0.4); font-size: 0.83rem; }
.footer-contact-item span:first-child { color: var(--gold-light); flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.78rem; }

/* ===== POPUP AD ===== */
#popup-overlay { position: fixed; inset: 0; background: rgba(10,8,2,0.75); z-index: 9999; display: none; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; backdrop-filter: blur(4px); padding: 16px; }
#popup-overlay[style*="flex"] { display: flex !important; }
#popup-overlay.visible { opacity: 1; pointer-events: all; }
.popup-box { background: var(--white); border-radius: 16px; max-width: 500px; width: 100%; overflow: hidden; transform: scale(0.9) translateY(24px); transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1); box-shadow: var(--shadow-lg); position: relative; }
#popup-overlay.visible .popup-box { transform: scale(1) translateY(0); }
.popup-close { position: absolute; top: 12px; right: 12px; width: 30px; height: 30px; border-radius: 50%; background: rgba(0,0,0,0.12); border: none; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--white); z-index: 1; transition: background var(--transition); }
.popup-close:hover { background: rgba(0,0,0,0.25); }
.popup-img { height: 190px; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.popup-body { padding: 24px 28px 28px; }
.popup-body h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--brown-dark); margin-bottom: 10px; }

/* ===== GOSHALA DONATION MODAL ===== */
.donation-modal-overlay { position: fixed; inset: 0; background: rgba(10,8,2,0.75); z-index: 9999; display: none; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.35s ease; backdrop-filter: blur(4px); padding: 16px; }
.donation-modal-overlay.visible { display: flex; opacity: 1; pointer-events: all; }
.donation-modal-box { background: var(--white); border-radius: 16px; max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto; transform: scale(0.9) translateY(24px); transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1); box-shadow: var(--shadow-lg); position: relative; }
.donation-modal-overlay.visible .donation-modal-box { transform: scale(1) translateY(0); }
.donation-modal-close { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border-radius: 50%; background: var(--cream); border: none; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text-main); z-index: 1; transition: background var(--transition); }
.donation-modal-close:hover { background: var(--cream-dark); }
@media (max-width: 600px) {
  .donation-modal-box { max-height: 94vh; }
}
.popup-body p { color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; font-size: 0.92rem; }
.popup-footer-note { font-size: 0.7rem; color: var(--text-muted); text-align: center; margin-top: 12px; }

/* ===== LIGHTBOX ===== */
#lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 8888; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; padding: 20px; }
#lightbox.open { opacity: 1; pointer-events: all; }
.lb-img { max-width: 90vw; max-height: 88vh; border-radius: 8px; object-fit: contain; }
.lb-close { position: fixed; top: 16px; right: 24px; color: var(--white); font-size: 1.8rem; cursor: pointer; background: none; border: none; opacity: 0.7; }
.lb-close:hover { opacity: 1; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s 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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 52px; height: 52px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4); z-index: 999; transition: transform var(--transition); text-decoration: none; }
.whatsapp-float:hover { transform: scale(1.1); }

/* ===== BACK TO TOP ===== */
#back-top { position: fixed; bottom: 86px; right: 24px; width: 40px; height: 40px; background: var(--gold); border-radius: 50%; color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; cursor: pointer; opacity: 0; pointer-events: none; transition: var(--transition); border: none; z-index: 998; }
#back-top.show { opacity: 1; pointer-events: all; }
#back-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ===== MAP SECTION ===== */
.map-wrap { border-radius: 12px; overflow: hidden; height: 300px; background: var(--cream-dark); margin-top: 40px; border: 1.5px solid var(--cream-dark); }

/* ===== DEVANAGARI / HINDI TEXT ===== */
.hindi-shloka { font-family: 'Noto Sans Devanagari', 'Mangal', serif; }

/* ===== SVG LOGO MARK ===== */
.logo-mark-img { width: 52px; height: 52px; flex-shrink: 0; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #fffdf7, var(--cream) 70%); border: 1.5px solid var(--gold-light); box-shadow: var(--shadow-sm), inset 0 0 0 1px rgba(255,255,255,0.4); display:flex; align-items:center; justify-content:center; padding: 6px; transition: transform var(--transition), box-shadow var(--transition); }
.logo-mark-img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.logo:hover .logo-mark-img { transform: scale(1.08) rotate(-4deg); box-shadow: var(--shadow-md), inset 0 0 0 1px rgba(255,255,255,0.4); }

/* ===== POPUP WITH COW IMAGE ===== */
.popup-img-cow { height: 200px; background: linear-gradient(135deg, #1A3D1C 0%, #2C5F2E 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.popup-img-cow img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0.85; }
.popup-img-cow .popup-cow-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(26,61,28,0.2) 0%, rgba(26,18,8,0.6) 100%); display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding: 14px; }
.popup-cow-overlay .popup-shloka { font-family: 'Noto Sans Devanagari', 'Mangal', serif; font-size: 0.75rem; color: var(--gold-light); text-align: center; line-height: 1.7; font-weight: 600; text-shadow: 0 1px 4px rgba(0,0,0,0.8); }
.popup-body .popup-hindi-meaning { font-family: 'Noto Sans Devanagari', 'Mangal', serif; font-size: 0.75rem; color: var(--text-muted); line-height: 1.7; background: var(--cream); border-left: 3px solid var(--gold); padding: 8px 12px; border-radius: 0 6px 6px 0; margin-bottom: 14px; }
.popup-contact-strip { display: flex; gap: 10px; margin-top: 10px; flex-wrap: wrap; }
.popup-contact-strip a { flex: 1; min-width: 110px; display: flex; align-items: center; justify-content: center; gap: 6px; padding: 9px 10px; border-radius: 6px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; transition: var(--transition); }
.popup-contact-strip .pcs-call { background: var(--gold); color: var(--white); border: 1.5px solid var(--gold); }
.popup-contact-strip .pcs-wa { background: #25D366; color: var(--white); border: 1.5px solid #25D366; }
.popup-contact-strip a:hover { opacity: 0.88; transform: translateY(-1px); }

/* ===========================
   RESPONSIVE — TABLET (≤1024px)
   =========================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .goshala-hero { padding: 40px 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-preview-grid { grid-template-columns: 1fr !important; gap: 36px !important; }
}

/* ===========================
   RESPONSIVE — MOBILE (≤768px)
   =========================== */
@media (max-width: 768px) {
  section { padding: 56px 0; }
  .container { padding: 0 16px; }

  /* Safety net: any remaining inline 3-4 column grids collapse to 1 col on mobile */
  [style*="grid-template-columns:repeat(3"],
  [style*="grid-template-columns:repeat(4"],
  [style*="grid-template-columns: repeat(3"],
  [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: 1fr 1fr !important;
  }
  [style*="grid-template-columns:1.4fr"],
  [style*="grid-template-columns:1.6fr"],
  [style*="grid-template-columns: 1.4fr"],
  [style*="grid-template-columns: 1.6fr"],
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Prevent any fixed/oversized inline widths from causing horizontal scroll */
  img { max-width: 100% !important; height: auto; }

  /* Hero - single column, full screen */
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 100px 16px 56px;
    gap: 36px;
    text-align: center;
  }
  .hero-content h1 { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .hero-subtitle { font-size: 1.05rem; }
  .hero-badge { margin: 0 auto 18px; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.85rem;
  }
  .hero-visual { display: block; max-width: 100%; }
  .hero-hotel-photo img { height: 260px; }

  /* Nav */
  .logo-text .name { font-size: 0.95rem; }
  .logo-mark-img { width: 40px; height: 40px; }

  /* Highlights - 2 column on mobile */
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .highlight-item { padding: 24px 14px; }
  .highlight-item:nth-child(2) { border-right: none; }
  .highlight-item:nth-child(odd):last-child { grid-column: span 2; border-right: none; }
  .hi-icon { font-size: 1.7rem; }
  .hi-title { font-size: 0.9rem; }
  .hi-desc { font-size: 0.75rem; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-img-main img { height: 260px; }
  .about-badge { bottom: -14px; right: 12px; padding: 16px; min-width: 110px; }
  .about-badge .num { font-size: 1.8rem; }
  .about-features { grid-template-columns: 1fr; gap: 8px; }
  .about-image-wrap { max-width: 100%; }

  /* Gallery - 2 cols on mobile */
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 4/3; }
  .gallery-placeholder .ph-icon { font-size: 2rem; }
  .gallery-placeholder .ph-label { font-size: 0.75rem; }
  .gallery-placeholder .ph-cat { font-size: 0.6rem; }

  /* Goshala */
  .goshala-hero { grid-template-columns: 1fr; padding: 32px 20px; gap: 24px; margin-bottom: 40px; border-radius: 12px; }
  .goshala-stats { gap: 20px; }
  .gs .num { font-size: 1.5rem; }
  .goshala-visual img { height: 200px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* Testimonials */
  .testimonial-text { font-size: 1.1rem; }
  .testimonial-inner { padding: 0 4px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form { padding: 20px 16px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info h2 { font-size: 1.5rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  #footer { padding: 44px 0 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* About page hero */
  .page-hero-inner { padding: 120px 16px 48px !important; }

  /* Goshala CTA on homepage */
  .goshala-cta-box { padding: 32px 18px !important; border-radius: 12px !important; }
  .goshala-cta-box div[style*="14rem"] { font-size: 8rem !important; top: -20px !important; right: -20px !important; }

  /* Stats grid on homepage */
  .stats-grid-home { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  .stats-grid-home > div { padding: 20px 14px !important; }

  /* Values grid */
  .values-grid { grid-template-columns: 1fr !important; }

  /* Quick info strip - stacked on mobile */
  .quick-info-strip { grid-template-columns: 1fr !important; }
  .quick-info-strip > div { border-left: none !important; border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 24px 16px !important; }
  .quick-info-strip > div:last-child { border-bottom: none; }

  /* Home about-preview section */
  .home-about-two-col { grid-template-columns: 1fr !important; gap: 28px !important; }

  /* Section headers */
  .section-header { margin-bottom: 36px; padding: 0 4px; }
  .section-header p { font-size: 0.92rem; }

  /* FloatBtns */
  .whatsapp-float { bottom: 16px; right: 16px; width: 46px; height: 46px; font-size: 1.3rem; }
  #back-top { bottom: 72px; right: 16px; width: 38px; height: 38px; font-size: 1rem; }

  /* Goshala — "How We Use" grid (inline-styled) */
  .goshala-uses-grid { grid-template-columns: 1fr !important; gap: 16px !important; }

  /* Goshala — Impact stats grid (inline-styled) */
  .goshala-impact-grid { grid-template-columns: 1fr 1fr !important; gap: 1px !important; }
  .goshala-impact-grid > div { padding: 24px 12px !important; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .goshala-impact-grid > div:nth-child(2n) { border-right: none !important; }
}

@media (max-width: 480px) {
  .goshala-impact-grid { grid-template-columns: 1fr !important; }
  .goshala-impact-grid > div { border-right: none !important; }
}

/* ===========================
   RESPONSIVE — SMALL MOBILE (≤480px)
   =========================== */
@media (max-width: 480px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }

  .hero-inner { padding: 88px 14px 44px; }
  .hero-hotel-photo img { height: 220px; }
  .hero-photo-badge { padding: 8px 12px; }
  .hero-photo-badge .t1 { font-size: 0.8rem; }
  .hero-photo-badge .t2 { font-size: 0.64rem; }

  /* Single col gallery on very small screens */
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 4/3; }

  /* Single col products */
  .products-grid { grid-template-columns: 1fr; }

  /* Highlights - single col */
  .highlights-grid { grid-template-columns: 1fr; }
  .highlight-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .highlight-item:last-child { border-bottom: none; }
  .highlight-item:nth-child(odd):last-child { grid-column: span 1; }

  .gallery-tabs { gap: 6px; }
  .tab-btn { padding: 7px 14px; font-size: 0.72rem; }

  /* Nav */
  .nav-inner { padding: 0 14px; }
  .logo-mark-img { width: 36px; height: 36px; }
  .logo-text .name { font-size: 0.88rem; }
  .logo-text .tagline { display: none; }

  /* Popup */
  .popup-box { width: 96%; }
  .popup-img-cow { height: 160px; }
  .popup-contact-strip { flex-direction: column; }
  .popup-body { padding: 18px 20px 22px; }
  .popup-body h3 { font-size: 1.2rem; }
}

/* ============================================
   BREADCRUMB BAR (SEO + navigation aid)
   ============================================ */
.breadcrumb-bar {
  background: var(--cream-dark);
  border-bottom: 1px solid rgba(139,105,20,0.12);
  padding: 14px 0;
  margin-top: 86px; /* clears fixed header (~84px incl. logo + padding) */
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.breadcrumb-inner a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
.breadcrumb-inner a:hover { color: var(--gold-light); text-decoration: underline; }
.breadcrumb-sep { color: var(--text-muted); opacity: 0.5; }
.breadcrumb-current { color: var(--text-main); font-weight: 600; }

/* ============================================
   FAQ ACCORDION (SEO — targets keyword questions)
   ============================================ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--gold-light); }
.faq-question {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform var(--transition);
}
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px 22px;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}
