@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root{
  --night: #0a0a0f;
  --night-2: #12121a;
  --night-3: #1a1a25;
  --gold: #d4af37;
  --gold-light: #f4e4bc;
  --gold-deep: #b8942c;
  --vermillion: #c45c3e;
  --cream: #f5f0e8;
  --cream-dim: #e8dcc8;
  --sand: #c9a87c;
  --leaf: #4a6b4f;
  --leaf-light: #6b8f6e;
  --ink: #1a1108;
  --shadow: rgba(0,0,0,0.5);
  --glass: rgba(255,255,255,0.03);
  --glass-border: rgba(255,255,255,0.08);
  --premium-bg: #0a0a0f;
}

*{ box-sizing: border-box; margin: 0; padding: 0; }
html{ scroll-behavior: smooth; }
body{
  background: var(--premium-bg);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4{ font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1.2; margin: 0; }
a{ color: inherit; text-decoration: none; transition: all 0.3s ease; }
img, svg{ display:block; max-width:100%; }
section{ position: relative; overflow: hidden; }

.wrap{ max-width: 1280px; margin: 0 auto; padding: 0 40px; }

.eyebrow{
  display:inline-flex; align-items:center; gap:12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); position: relative;
}
.eyebrow::before{
  content:""; width: 32px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent);
  display:inline-block;
}

.reveal{ opacity: 0; transform: translateY(40px); transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in-view{ opacity: 1; transform: translateY(0); }
.reveal.d1{ transition-delay: 0.1s; }
.reveal.d2{ transition-delay: 0.2s; }
.reveal.d3{ transition-delay: 0.3s; }
.reveal.d4{ transition-delay: 0.4s; }
.reveal.d5{ transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce){
  .reveal{ transition: opacity 0.3s ease; transform: none; }
  *{ animation-duration: 0.001s !important; animation-iteration-count: 1 !important; }
}

/* ========== PREMIUM ANIMATIONS ========== */
@keyframes float{
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}
@keyframes floatReverse{
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(20px) rotate(-2deg); }
}
@keyframes shimmer{
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes pulse{
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}
@keyframes rotate{
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes fadeInUp{
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes grain{
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  20% { transform: translate(-15%, 5%); }
  30% { transform: translate(7%, -25%); }
  40% { transform: translate(-5%, 25%); }
  50% { transform: translate(-15%, 10%); }
  60% { transform: translate(15%, 0%); }
  70% { transform: translate(0%, 15%); }
  80% { transform: translate(3%, 35%); }
  90% { transform: translate(-10%, 10%); }
}

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

.hero-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.6;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(196, 92, 62, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, rgba(10,10,15,0.3) 0%, rgba(10,10,15,0.1) 40%, rgba(10,10,15,0.4) 100%);
}

.hero-noise{
  position: absolute;
  inset: -50%;
  z-index: 2;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
  pointer-events: none;
}

.topnav{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border-bottom: none;
  transition: all 0.4s ease;
}

.topnav.scrolled{
  padding: 18px 40px;
  background: transparent;
  border-bottom: none;
}

.topnav .brand{
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.topnav nav{ display: flex; gap: 36px; align-items: center; }
.topnav nav a{
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.topnav nav a::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.topnav nav a:hover{ color: var(--gold-light); }
.topnav nav a:hover::after{ width: 100%; }

.hero-content{
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
  margin-top: -40px;
}

.hero-content .eyebrow{
  justify-content: center;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease 0.3s both;
}

.hero-content h1{
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease 0.5s both;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.hero-content h1 span{
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content .tagline{
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(245, 240, 232, 0.85);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeInUp 1s ease 0.7s both;
}

.hero-cta{
  display: inline-flex;
  align-items: center;
  gap: 16px;
  animation: fadeInUp 1s ease 0.9s both;
}

.btn-primary{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--night);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
}
.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

.btn-secondary{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: rgba(255,255,255,0.05);
  color: var(--cream);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}
.btn-secondary:hover{
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.scroll-indicator{
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245, 240, 232, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 1.2s both;
}
.scroll-indicator .mouse{
  width: 24px;
  height: 38px;
  border: 2px solid rgba(245, 240, 232, 0.4);
  border-radius: 12px;
  position: relative;
}
.scroll-indicator .mouse::before{
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll 2s ease-in-out infinite;
}
@keyframes scroll{
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 20px; }
}

/* ========== ABOUT / WHY US ========== */
.about{
  padding: 140px 0;
  background: var(--night);
  position: relative;
}

.about::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.about-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-text .eyebrow{ margin-bottom: 20px; }
.about-text h2{
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--cream);
  margin-bottom: 24px;
  line-height: 1.2;
}
.about-text h2 span{
  color: var(--gold);
  font-style: italic;
}
.about-text p{
  font-size: 1.05rem;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-stat{
  position: relative;
  padding: 48px;
  background: linear-gradient(160deg, rgba(18, 18, 26, 0.9), rgba(26, 26, 37, 0.8));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  overflow: hidden;
}
.about-stat::before{
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}
.about-stat .num{
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.about-stat .lbl{
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.75);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px){
  .about-grid{ grid-template-columns: 1fr; gap: 48px; }
  .about-stat{ padding: 36px; }
  .about-stat .num{ font-size: 3.5rem; }
}

/* ========== USP / SERVICES ========== */
.usp{
  padding: 100px 0;
  background: var(--night);
  position: relative;
}

.usp-head{
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
}
.usp-head h2{
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  margin-top: 16px;
  line-height: 1.2;
}

.usp-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.usp-card{
  position: relative;
  padding: 40px 32px;
  background: linear-gradient(160deg, rgba(18, 18, 26, 0.8), rgba(26, 26, 37, 0.6));
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: default;
}
.usp-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.usp-card:hover{
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.usp-card:hover::before{ opacity: 1; }

.usp-card .icon{
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease;
}
.usp-card:hover .icon{ transform: scale(1.1) rotate(-5deg); }
.usp-card h3{
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.usp-card p{
  font-size: 0.92rem;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px){
  .usp-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .usp-grid{ grid-template-columns: 1fr; }
  .usp{ padding: 80px 0; }
}

/* ========== DESTINATIONS ========== */
.dest{
  padding: 100px 0;
  background: linear-gradient(180deg, var(--night) 0%, #0d0d14 100%);
  position: relative;
}

.dest-head{
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.dest-head h2{
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  margin-top: 16px;
  line-height: 1.2;
}

.first-yatra{
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  align-items: stretch;
  background: linear-gradient(160deg, rgba(18, 18, 26, 0.95), rgba(26, 26, 37, 0.9));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 48px;
  backdrop-filter: blur(20px);
}
.first-yatra::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(212, 175, 55, 0.08) 40%, transparent 60%);
  background-size: 200% 100%;
  animation: shimmer 6s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.first-yatra .art{
  position: relative;
  background: linear-gradient(160deg, #1a2a1c 0%, #243d26 55%, #2d5230 100%);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  z-index: 1;
}

.photo-frame{
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 1px solid rgba(212, 175, 55, 0.3);
}
.photo-frame .scene{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.photo-frame .scene.active{ opacity: 1; }

.gallery-thumbs{
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 420px;
}
.gthumb{
  width: 52px;
  height: 52px;
  border-radius: 10px;
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: all 0.3s ease;
  filter: grayscale(0.2) brightness(0.8);
}
.gthumb:hover{ transform: translateY(-3px); border-color: var(--gold); filter: none; }
.gthumb.active{ border-color: var(--gold-light); filter: none; box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3); }

.scene-caption{
  margin-top: 14px;
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.7);
  text-align: center;
  min-height: 1.3em;
}

.first-yatra .copy{
  position: relative;
  z-index: 1;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.first-yatra .badge{
  align-self: flex-start;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.first-yatra h3{
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--gold-light);
  margin-bottom: 16px;
}
.first-yatra p{
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.8;
  margin-bottom: 24px;
}

@media (max-width: 900px){
  .first-yatra{ grid-template-columns: 1fr; }
  .first-yatra .art{ min-height: 300px; }
}

.route-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px){ .route-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px){ .route-grid{ grid-template-columns: 1fr; } }

.route-card{
  position: relative;
  background: linear-gradient(160deg, rgba(18, 18, 26, 0.9), rgba(26, 26, 37, 0.7));
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}
.route-card:hover{
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.cgallery-frame{
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.cgallery-frame .cscene{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.8s ease;
}
.cgallery-frame .cscene.active{
  opacity: 1;
  transform: scale(1);
}
.route-card:hover .cscene.active{ transform: scale(1.08); }

.cgallery-thumbs{
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(18, 18, 26, 0.6);
}
.cthumb{
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1.5px solid rgba(212, 175, 55, 0.25);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: all 0.3s ease;
  filter: grayscale(0.2) brightness(0.85);
}
.cthumb:hover{ transform: translateY(-2px); border-color: var(--gold); filter: none; }
.cthumb.active{ border-color: var(--gold-light); filter: none; box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3); }

.rc-body{ padding: 20px 24px 24px; }
.route-card h4{
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 8px;
}
.route-card p{
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.6;
}

/* ========== TESTIMONIALS ========== */
.testimonials{
  padding: 120px 0;
  background: linear-gradient(180deg, var(--night) 0%, #0d0d14 50%, var(--night) 100%);
  position: relative;
}

.testimonials::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.testimonials-head{
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
  position: relative;
  z-index: 2;
}
.testimonials-head h2{
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  margin-top: 16px;
}

.testimonial-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px){ .testimonial-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px){ .testimonial-grid{ grid-template-columns: 1fr; } }

.testimonial-card{
  position: relative;
  padding: 40px 32px;
  background: linear-gradient(160deg, rgba(18, 18, 26, 0.9), rgba(26, 26, 37, 0.7));
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.testimonial-card:hover{
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.testimonial-card .quote-icon{
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: -12px;
}
.testimonial-card .text{
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.8);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-card .author{
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-card .author-avatar{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--night);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-card .author-info .name{
  font-weight: 600;
  color: var(--cream);
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.testimonial-card .author-info .role{
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.5);
}

/* ========== INSTAGRAM CTA ========== */
.insta{
  padding: 60px 0 100px;
  background: var(--night);
}
.insta-card{
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 52px 56px;
  background: linear-gradient(135deg, rgba(18, 18, 26, 0.9), rgba(26, 26, 37, 0.8));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}
.insta-card::before{
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196, 92, 62, 0.1), transparent 70%);
  border-radius: 50%;
}
.insta-card .txt{ flex: 1; position: relative; z-index: 1; }
.insta-card .txt h3{
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--cream);
  margin-bottom: 12px;
}
.insta-card .txt p{
  color: rgba(245, 240, 232, 0.65);
  font-size: 1rem;
  line-height: 1.7;
}
.insta-card .btn{
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--night);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.25);
}
.insta-card .btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.35);
}

@media (max-width: 768px){
  .insta-card{ flex-direction: column; text-align: center; padding: 40px 32px; }
}

/* ========== FOOTER ========== */
footer{
  background: var(--night);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding: 80px 0 40px;
  position: relative;
}
footer::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.footer-content{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-brand .brand{
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-brand p{
  color: rgba(245, 240, 232, 0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-links h4{
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}
.footer-links a{
  display: block;
  color: rgba(245, 240, 232, 0.6);
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.footer-links a:hover{ color: var(--gold); }

.social-icons{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.social-icons a{
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(245, 240, 232, 0.6);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}
.social-icons a:hover{ color: var(--gold); }

.footer-bottom{
  max-width: 1280px;
  margin: 60px auto 0;
  padding: 24px 40px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(245, 240, 232, 0.4);
  font-size: 0.82rem;
}

@media (max-width: 768px){
  .footer-content{ grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom{ flex-direction: column; gap: 12px; text-align: center; }
}

/* ========== WHATSAPP FLOAT ========== */
.wa-float{
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #1eb857);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
  transition: all 0.4s ease;
}
.wa-float:hover{
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 36px rgba(37,211,102,0.5);
}
.wa-float::before{
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse{
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}

@media (max-width: 560px){
  .wa-float{ right: 16px; bottom: 16px; width: 52px; height: 52px; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px){
  .wrap{ padding: 0 24px; }
  .topnav{ padding: 16px 24px; }
  .topnav nav{ display: none; }
}

/* ========== GRAIN OVERLAY FOR PREMIUM TEXTURE ========== */
body::after{
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}
