/* ============================================================
   INDIA YOGA ASHRAM — Main Stylesheet
   ============================================================ */

/* ---------- GOOGLE FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ---------- CSS VARIABLES ---------- */
:root {
  --primary:        #C17534;
  --primary-dark:   #9B5E28;
  --primary-light:  #E8A96B;
  --secondary:      #2E6B4E;
  --secondary-dark: #1E4A34;
  --secondary-light:#4A8F6F;
  --accent:         #D4A843;
  --accent-light:   #F0C96D;
  --bg-light:       #FFF8EF;
  --bg-cream:       #FEF0DC;
  --bg-dark:        #160D02;
  --text-dark:      #2C1A0E;
  --text-body:      #4A3728;
  --text-muted:     #8B7355;
  --white:          #FFFFFF;
  --border:         #E8D5B5;
  --shadow:         0 4px 25px rgba(0,0,0,0.07);
  --shadow-md:      0 8px 35px rgba(0,0,0,0.11);
  --shadow-lg:      0 15px 50px rgba(0,0,0,0.15);
  --transition:     all 0.3s ease;
  --radius:         12px;
  --radius-lg:      20px;
  --radius-xl:      30px;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 700;
}
a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; margin: 0; }
.section-pad   { padding: 90px 0; }
.section-pad-sm{ padding: 60px 0; }

/* ---------- UTILITY ---------- */
.bg-warm   { background-color: var(--bg-light); }
.bg-cream  { background-color: var(--bg-cream); }
.text-primary-c { color: var(--primary) !important; }
.text-accent    { color: var(--accent)  !important; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--secondary-dark);
  color: rgba(255,255,255,.82);
  padding: 8px 0;
  font-size: .83rem;
}
.top-bar a { color: rgba(255,255,255,.82); }
.top-bar a:hover { color: var(--accent); }
.top-bar .divider { opacity: .35; margin: 0 6px; }
.top-bar .social-icons { display: flex; align-items: center; gap: 5px; }
.top-bar .social-icons a {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .73rem;
  transition: var(--transition);
}
.top-bar .social-icons a:hover { background: var(--accent); color: var(--text-dark); }

/* ============================================================
   NAVBAR
   ============================================================ */
.main-nav {
  background: var(--white);
  padding: 14px 0;
  position: sticky; top: 0; z-index: 1050;
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
  transition: var(--transition);
}
.main-nav.scrolled { padding: 8px 0; box-shadow: 0 4px 30px rgba(0,0,0,.13); }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.4rem; flex-shrink: 0;
}
.nav-brand-text .brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 700;
  color: var(--primary); display: block; line-height: 1.1;
}
.nav-brand-text .brand-loc {
  font-size: .68rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .15em;
}
.navbar-toggler { border: none; padding: 6px; }
.navbar-toggler:focus { box-shadow: none; }
.nav-menu .nav-link {
  font-size: .875rem; font-weight: 500;
  color: var(--text-dark) !important;
  padding: 8px 13px !important;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-menu .nav-link:hover,
.nav-menu .nav-link.active { color: var(--primary) !important; background: rgba(193,117,52,.09); }
.nav-menu .dropdown-menu {
  border: none; border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 8px; margin-top: 8px;
  animation: fadeDown .2s ease;
}
@keyframes fadeDown { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }
.dropdown-item {
  border-radius: 8px; padding: 9px 16px;
  font-size: .86rem; color: var(--text-body);
  transition: var(--transition);
}
.dropdown-item:hover { background: rgba(193,117,52,.09); color: var(--primary); }
.btn-book-nav {
  background: var(--primary); color: var(--white) !important;
  padding: 9px 22px !important; border-radius: 25px !important;
  font-weight: 600 !important; font-size: .87rem !important;
}
.btn-book-nav:hover { background: var(--primary-dark) !important; transform: translateY(-1px); box-shadow: 0 5px 18px rgba(193,117,52,.38); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-iya {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 30px; border-radius: 30px;
  font-weight: 600; font-size: .92rem;
  transition: var(--transition); cursor: pointer; border: 2px solid transparent;
}
.btn-iya-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-iya-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(193,117,52,.38); }
.btn-iya-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-iya-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-iya-white { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-iya-white:hover { background: transparent; color: var(--white); transform: translateY(-2px); }
.btn-iya-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-iya-outline-white:hover { background: var(--white); color: var(--primary); }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-head { text-align: center; margin-bottom: 55px; }
.section-head.left { text-align: left; }
.section-head .tag {
  display: inline-block; font-size: .75rem; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--primary); background: rgba(193,117,52,.1);
  padding: 5px 16px; border-radius: 20px; margin-bottom: 14px;
}
.section-head h2 { font-size: 2.6rem; margin-bottom: 14px; }
.section-head p { max-width: 580px; color: var(--text-muted); font-size: 1rem; }
.section-head.left p { margin: 0; }
.section-head:not(.left) p { margin: 0 auto; }
.divider-line {
  width: 55px; height: 3px; border-radius: 3px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  margin: 12px auto 0;
}
.section-head.left .divider-line { margin: 12px 0 0; }

/* ============================================================
   PAGE HERO BANNER
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, #2a3a2e 40%, var(--primary-dark) 100%);
  padding: 75px 0 55px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '\f66b';
  font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; font-size: 22rem;
  color: rgba(255,255,255,.02);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.page-hero h1 { font-size: 2.8rem; color: var(--white); margin-bottom: 16px; }
.page-hero .lead { color: rgba(255,255,255,.75); font-size: 1rem; max-width: 560px; margin: 0 auto 18px; }
.page-breadcrumb {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.1); border-radius: 30px;
  padding: 7px 20px; font-size: .8rem;
}
.page-breadcrumb a { color: rgba(255,255,255,.7); }
.page-breadcrumb a:hover { color: var(--accent); }
.page-breadcrumb .sep { color: rgba(255,255,255,.4); font-size: .65rem; }
.page-breadcrumb .current { color: var(--accent); font-weight: 600; }

/* ============================================================
   HOME HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--secondary-dark) 0%, #1e3328 35%, var(--primary-dark) 70%, #3d1a05 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(212,168,67,.12) 0%, transparent 65%);
}
.hero-badge {
  display: inline-block; font-size: .75rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); border: 1px solid rgba(212,168,67,.4);
  padding: 6px 18px; border-radius: 20px; margin-bottom: 22px;
}
.hero h1 {
  font-size: 4.2rem; color: var(--white);
  margin-bottom: 20px; line-height: 1.08;
}
.hero h1 .gold { color: var(--accent); }
.hero .sub {
  font-size: 1.1rem; color: rgba(255,255,255,.78);
  max-width: 530px; margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex; gap: 35px; flex-wrap: wrap;
  padding-top: 35px; border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; color: var(--accent);
  display: block; line-height: 1;
}
.hero-stat .lbl {
  font-size: .72rem; color: rgba(255,255,255,.6);
  text-transform: uppercase; letter-spacing: .1em;
  margin-top: 4px; display: block;
}
/* Decorative card on hero right */
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  height: 480px;
}
.hero-card-main {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 40px 35px; text-align: center;
  color: var(--white); width: 300px;
  position: relative; z-index: 2;
}
.hero-card-main .big-icon {
  font-size: 5rem; margin-bottom: 18px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-card-main h3 { color: var(--white); font-size: 1.6rem; margin-bottom: 8px; }
.hero-card-main p { font-size: .85rem; color: rgba(255,255,255,.7); }
.hero-pill {
  position: absolute;
  background: var(--white); border-radius: var(--radius);
  padding: 12px 18px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap; z-index: 3;
}
.hero-pill .pill-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: .9rem; flex-shrink: 0;
}
.hero-pill .pill-text strong { display: block; font-size: .85rem; color: var(--text-dark); }
.hero-pill .pill-text span  { font-size: .72rem; color: var(--text-muted); }
.hero-pill-1 { top: 30px; left: -20px; animation: float 3.5s ease-in-out infinite; }
.hero-pill-2 { bottom: 50px; right: -20px; animation: float 3.5s ease-in-out infinite 1.8s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* ============================================================
   COUNTER STRIP
   ============================================================ */
.counter-strip {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 55px 0;
}
.counter-item { text-align: center; color: var(--white); }
.counter-item .c-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem; font-weight: 700; display: block; line-height: 1;
}
.counter-item .c-lbl {
  font-size: .78rem; opacity: .85;
  text-transform: uppercase; letter-spacing: .12em; margin-top: 6px;
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.feat-card {
  background: var(--white); border-radius: var(--radius);
  padding: 30px; border: 1px solid var(--border);
  box-shadow: var(--shadow); transition: var(--transition); height: 100%;
}
.feat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.feat-icon {
  width: 62px; height: 62px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--white); margin-bottom: 20px;
}
.feat-card h4 { font-size: 1.25rem; margin-bottom: 10px; }
.feat-card p  { font-size: .88rem; color: var(--text-muted); line-height: 1.75; margin: 0; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-img-wrap { position: relative; }
.about-img-box {
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, var(--secondary-dark), var(--primary-dark));
  height: 440px; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.about-img-box img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
}
.about-img-box .big-om {
  font-size: 12rem; color: rgba(255,255,255,.08);
  font-family: 'Cormorant Garamond', serif;
}
/* Real photo support — img tags fill their parent container */
.teacher-thumb img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}
.gal-box img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.blog-thumb img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.class-thumb img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.about-img-box img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}

/* Hero background image class */
.hero-photo {
  background: linear-gradient(135deg,rgba(22,42,27,.88) 0%,rgba(22,42,27,.78) 35%,rgba(61,26,5,.82) 70%,rgba(61,26,5,.88) 100%),
              url('../images/ganga-yoga-class.jpg') center/cover no-repeat;
}
.page-hero-photo {
  background: linear-gradient(135deg,rgba(22,42,27,.82) 0%,rgba(46,107,78,.75) 45%,rgba(155,94,40,.8) 80%,rgba(61,26,5,.85) 100%),
              url('../images/IMG_1108.JPG') center/cover no-repeat;
}
.exp-badge {
  position: absolute; bottom: 25px; left: -20px;
  background: var(--primary); color: var(--white);
  border-radius: var(--radius); padding: 16px 22px;
  text-align: center; box-shadow: 0 8px 28px rgba(193,117,52,.45);
}
.exp-badge .years {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 700; display: block; line-height: 1;
}
.exp-badge .yrs-lbl { font-size: .72rem; opacity: .9; }
.check-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .92rem; padding: 5px 0; color: var(--text-body);
}
.check-list li i { color: var(--primary); width: 18px; }

/* ============================================================
   TEACHER CARDS
   ============================================================ */
.teacher-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--border); transition: var(--transition);
  height: 100%;
}
.teacher-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.teacher-thumb {
  height: 240px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; background: linear-gradient(135deg,var(--secondary-dark),var(--primary-dark));
}
.t1 { background: linear-gradient(135deg, #1e4a34, #2e6b4e); }
.t2 { background: linear-gradient(135deg, #3a2200, #9b5e28); }
.t3 { background: linear-gradient(135deg, #1a2a4a, #2d4a8a); }
.t4 { background: linear-gradient(135deg, #3d0020, #8a2040); }
.teacher-initials {
  width: 95px; height: 95px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 3px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 2.4rem;
  font-weight: 700; color: var(--white);
}
.teacher-body { padding: 22px; text-align: center; }
.teacher-body h4 { font-size: 1.3rem; margin-bottom: 4px; }
.teacher-role { font-size: .82rem; color: var(--primary); font-weight: 600; margin-bottom: 12px; }
.teacher-body p { font-size: .84rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   CLASS CARDS
   ============================================================ */
.class-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--border); transition: var(--transition); height: 100%;
}
.class-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.class-thumb {
  height: 195px; display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; color: rgba(255,255,255,.5); position: relative; overflow: hidden;
}
.c1 { background: linear-gradient(135deg,#667eea,#764ba2); }
.c2 { background: linear-gradient(135deg,#f093fb,#f5576c); }
.c3 { background: linear-gradient(135deg,#4facfe,#00f2fe); }
.c4 { background: linear-gradient(135deg,#43e97b,#38f9d7); }
.c5 { background: linear-gradient(135deg,#fa709a,#fee140); }
.c6 { background: linear-gradient(135deg,#a18cd1,#fbc2eb); }
.c7 { background: linear-gradient(135deg,#f77062,#fe5196); }
.c8 { background: linear-gradient(135deg,#2af598,#009efd); }
.class-lbl {
  position: absolute; top: 14px; right: 14px;
  background: rgba(0,0,0,.45); color: var(--white);
  font-size: .68rem; font-weight: 600; padding: 4px 12px; border-radius: 20px;
}
.class-body { padding: 20px; }
.class-body h4 { font-size: 1.15rem; margin-bottom: 8px; }
.class-body p  { font-size: .84rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.65; }
.class-meta { display: flex; gap: 16px; margin-bottom: 16px; }
.class-meta span { font-size: .78rem; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.class-meta span i { color: var(--primary); }
.class-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.price-tag { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 700; color: var(--primary); }

/* ============================================================
   RETREAT SECTION
   ============================================================ */
.retreat-block {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); margin-bottom: 40px;
}
.retreat-head {
  padding: 44px 40px; color: var(--white); position: relative; overflow: hidden;
}
.retreat-head::after {
  content: ''; position: absolute; width: 300px; height: 300px;
  border-radius: 50%; background: rgba(255,255,255,.04);
  bottom: -100px; right: -60px; pointer-events: none;
}
.retreat-head.r1 {
  background: linear-gradient(135deg,rgba(30,74,52,.88) 0%,rgba(46,107,78,.82) 100%),
              url('../images/ganga-yoga-class.jpg') center/cover no-repeat;
}
.retreat-head.r2 {
  background: linear-gradient(135deg,rgba(26,42,80,.88) 0%,rgba(45,80,128,.82) 100%),
              url('../images/yin-yoga-class.jpg') center/cover no-repeat;
}
.retreat-head.r3 {
  background: linear-gradient(135deg,rgba(155,94,40,.88) 0%,rgba(193,117,52,.82) 100%),
              url('../images/IMG_2929.JPG') center/cover no-repeat;
}
.retreat-head h2 { color: var(--white); font-size: 2rem; margin-bottom: 10px; }
.retreat-head p  { opacity: .82; max-width: 600px; font-size: .98rem; }
.retreat-body { background: var(--white); padding: 36px 40px; }
.retreat-table { width: 100%; border-collapse: separate; border-spacing: 0 8px; }
.retreat-table thead th {
  font-size: .75rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--text-muted); padding: 6px 14px; font-weight: 600;
}
.retreat-table tbody td {
  padding: 14px 16px; background: var(--bg-light); font-size: .9rem;
}
.retreat-table tbody tr td:first-child {
  border-radius: 8px 0 0 8px; font-weight: 600; color: var(--text-dark);
}
.retreat-table tbody tr td:last-child  { border-radius: 0 8px 8px 0; }
.price-cell { color: var(--primary); font-weight: 700; font-size: 1rem; }
.highlight-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: .9rem;
}
.highlight-list li:last-child { border-bottom: none; }
.highlight-list li i { color: var(--primary); width: 18px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow);
  border: 1px solid var(--border); position: relative; height: 100%;
}
.testi-card::before {
  content: '\201C'; font-family: 'Cormorant Garamond', serif;
  font-size: 6rem; color: var(--primary); opacity: .13;
  position: absolute; top: -8px; left: 18px; line-height: 1;
}
.testi-stars { color: var(--accent); font-size: .82rem; margin-bottom: 12px; }
.testi-text { font-size: .92rem; font-style: italic; color: var(--text-body); line-height: 1.8; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: var(--white);
  background: linear-gradient(135deg,var(--primary),var(--accent));
}
.testi-name strong { display: block; font-size: .88rem; color: var(--text-dark); }
.testi-name span   { font-size: .77rem; color: var(--text-muted); }

/* ============================================================
   SECTION PHOTO TILES (food, accommodation)
   ============================================================ */
.section-photo-tile { border-radius: var(--radius); overflow: hidden; }
.section-photo-tile img { width: 100%; height: 220px; object-fit: cover; object-position: center; display: block; }
.section-photo-tile-sm img { width: 100%; height: 190px; object-fit: cover; object-position: center; display: block; }
.featured-post-img { height: 100%; min-height: 300px; overflow: hidden; }
.featured-post-img img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; object-position: top; display: block; }
.retreat-bg-img {
  position: relative; overflow: hidden;
}
.retreat-bg-img img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; opacity: 0.25;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-item { margin-bottom: 10px; }
.faq-q {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 17px 20px;
  cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  font-weight: 600; font-size: .92rem; color: var(--text-dark);
  transition: var(--transition);
}
.faq-q:hover { border-color: var(--primary); color: var(--primary); }
.faq-q.open { background: var(--primary); border-color: var(--primary); color: var(--white); border-radius: var(--radius) var(--radius) 0 0; }
.faq-q .faq-icon { transition: var(--transition); font-size: .85rem; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  background: var(--bg-light); border: 1.5px solid var(--border); border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  max-height: 0; overflow: hidden; transition: all .32s ease;
}
.faq-a.open { max-height: 600px; padding: 20px 22px; }
.faq-a p { font-size: .88rem; color: var(--text-muted); line-height: 1.75; margin: 0; }

/* ============================================================
   FOOD / MEAL CARDS
   ============================================================ */
.meal-card {
  background: var(--white); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
  border-left: 4px solid var(--primary); transition: var(--transition);
}
.meal-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.meal-time { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--primary); margin-bottom: 5px; }
.meal-card h5 { font-size: 1.15rem; margin-bottom: 12px; }
.meal-items li { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--text-muted); padding: 4px 0; }
.meal-items li i { color: var(--accent); font-size: .65rem; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gal-item {
  border-radius: var(--radius); overflow: hidden;
  cursor: pointer; position: relative;
  aspect-ratio: 1;
}
.gal-item:nth-child(7n+1) { grid-column: span 2; aspect-ratio: 2/1; }
.gal-box {
  width: 100%; height: 100%; min-height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: rgba(255,255,255,.45);
  transition: transform .4s ease; position: relative; overflow: hidden;
}
.gal-item:hover .gal-box { transform: scale(1.05); }
.gal-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.55); opacity: 0;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); border-radius: var(--radius);
}
.gal-overlay i { font-size: 2rem; color: var(--white); }
.gal-item:hover .gal-overlay { opacity: 1; }
/* gallery colours */
.g1  { background: linear-gradient(135deg,#1e4a34,#4a8f6f); }
.g2  { background: linear-gradient(135deg,#9b5e28,#d4a843); }
.g3  { background: linear-gradient(135deg,#2d1b69,#6b3fa0); }
.g4  { background: linear-gradient(135deg,#1a3a4a,#2e6b8a); }
.g5  { background: linear-gradient(135deg,#4a1e1e,#8a3a3a); }
.g6  { background: linear-gradient(135deg,#1e3d1e,#4a7a4a); }
.g7  { background: linear-gradient(135deg,#3d2800,#8a6000); }
.g8  { background: linear-gradient(135deg,#1e1e4a,#3a3a8a); }
.g9  { background: linear-gradient(135deg,#4a2e00,#a06800); }
.g10 { background: linear-gradient(135deg,#00404a,#006b7a); }
.g11 { background: linear-gradient(135deg,#3a1e00,#7a4200); }
.g12 { background: linear-gradient(135deg,#004a3a,#008a6a); }

/* ============================================================
   BLOG
   ============================================================ */
.blog-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--border); transition: var(--transition); height: 100%;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-thumb {
  height: 210px; display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: rgba(255,255,255,.4); position: relative; overflow: hidden;
}
.b1 { background: linear-gradient(135deg,#1e4a34,#2e6b4e); }
.b2 { background: linear-gradient(135deg,#9b5e28,#c17534); }
.b3 { background: linear-gradient(135deg,#1a2a50,#2d4a8a); }
.b4 { background: linear-gradient(135deg,#4a1e1e,#8a3a3a); }
.b5 { background: linear-gradient(135deg,#3d2800,#7a5000); }
.b6 { background: linear-gradient(135deg,#1e3d1e,#3a7a3a); }
.blog-body { padding: 22px; }
.blog-tag  {
  display: inline-block; font-size: .7rem; font-weight: 600;
  color: var(--primary); background: rgba(193,117,52,.1);
  padding: 3px 12px; border-radius: 20px; margin-bottom: 10px;
}
.blog-meta { display: flex; gap: 14px; margin-bottom: 10px; }
.blog-meta span { font-size: .76rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.blog-body h4 { font-size: 1.18rem; margin-bottom: 8px; line-height: 1.35; }
.blog-body p  { font-size: .84rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.read-more { font-size: .82rem; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 5px; }
.read-more:hover { gap: 9px; color: var(--primary-dark); }

/* ============================================================
   PAYMENT PAGE
   ============================================================ */
.pay-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow); border: 1px solid var(--border); height: 100%;
}
.pay-icon {
  width: 58px; height: 58px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 18px;
}
.pi-orange { background: rgba(193,117,52,.12); color: var(--primary); }
.pi-green  { background: rgba(46,107,78,.12);  color: var(--secondary); }
.pi-blue   { background: rgba(30,74,100,.12);  color: #1e4a64; }
.pi-gold   { background: rgba(212,168,67,.12); color: #a07a10; }
.pay-card h4 { font-size: 1.25rem; margin-bottom: 12px; }
.pay-card p  { font-size: .88rem; color: var(--text-muted); line-height: 1.7; }
.bank-box {
  background: var(--bg-light); border-radius: var(--radius);
  padding: 24px; border: 1px solid var(--border);
}
.bank-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 11px 0; border-bottom: 1px solid var(--border); font-size: .88rem;
}
.bank-row:last-child { border-bottom: none; }
.bank-row .lbl { color: var(--text-muted); font-weight: 500; }
.bank-row .val { font-weight: 600; color: var(--text-dark); text-align: right; max-width: 60%; }
.bank-row .val.mono { font-family: monospace; font-size: .95rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-card {
  background: var(--white); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow); border: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 14px; height: 100%;
  transition: var(--transition);
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ci-icon {
  width: 48px; height: 48px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.ci-orange { background: rgba(193,117,52,.12); color: var(--primary); }
.ci-green  { background: rgba(46,107,78,.12);  color: var(--secondary); }
.ci-gold   { background: rgba(212,168,67,.12); color: #a07a10; }
.ci-blue   { background: rgba(30,74,100,.12);  color: #1e4a64; }
.ci-content h5 { font-size: 1rem; margin-bottom: 4px; }
.ci-content p, .ci-content a { font-size: .85rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.ci-content a:hover { color: var(--primary); }

/* ============================================================
   FORMS
   ============================================================ */
.form-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-md); border: 1px solid var(--border);
}
.f-group { margin-bottom: 20px; }
.f-label { font-size: .85rem; font-weight: 600; color: var(--text-dark); display: block; margin-bottom: 7px; }
.f-label .req { color: var(--primary); }
.f-input, .f-select, .f-textarea {
  width: 100%; border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 12px 16px; font-size: .9rem; font-family: 'Poppins', sans-serif;
  color: var(--text-body); background: var(--bg-light);
  transition: var(--transition); appearance: none;
}
.f-input:focus, .f-select:focus, .f-textarea:focus {
  outline: none; border-color: var(--primary);
  background: var(--white); box-shadow: 0 0 0 3px rgba(193,117,52,.12);
}
.f-textarea { resize: vertical; min-height: 120px; }
.f-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238B7355' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; cursor: pointer;
}
.success-msg {
  background: #d4edda; border: 1px solid #c3e6cb; color: #155724;
  border-radius: var(--radius); padding: 15px 20px;
  font-size: .88rem; margin-bottom: 18px; display: none;
}
.success-msg.show { display: block; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--secondary-dark), #2a3e28, var(--primary-dark));
  padding: 90px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,.03);
  top: -150px; right: -100px; pointer-events: none;
}
.cta-section::after {
  content: ''; position: absolute;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,.03);
  bottom: -80px; left: -60px; pointer-events: none;
}
.cta-section h2 { font-size: 2.8rem; color: var(--white); margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,.78); max-width: 560px; margin: 0 auto 32px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,.72); padding: 75px 0 0; }
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif; font-size: 1.55rem;
  font-weight: 700; color: var(--white);
}
.footer-tagline { font-size: .72rem; color: var(--accent); text-transform: uppercase; letter-spacing: .15em; }
.site-footer p { font-size: .85rem; line-height: 1.75; }
.footer-heading {
  color: var(--white); font-family: 'Poppins', sans-serif;
  font-size: .82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .15em; margin-bottom: 20px;
}
.footer-link {
  display: block; color: rgba(255,255,255,.65);
  font-size: .86rem; padding: 5px 0; transition: var(--transition);
}
.footer-link:hover { color: var(--accent); padding-left: 5px; }
.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: .85rem; }
.footer-contact-row i { color: var(--accent); margin-top: 3px; flex-shrink: 0; width: 16px; }
.footer-contact-row a { color: rgba(255,255,255,.72); }
.footer-contact-row a:hover { color: var(--accent); }
.footer-socials { display: flex; gap: 9px; margin-top: 22px; }
.footer-socials a {
  width: 37px; height: 37px; border-radius: 50%;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65); font-size: .85rem; transition: var(--transition);
}
.footer-socials a:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 22px 0; margin-top: 55px;
  text-align: center; font-size: .8rem;
}

/* ============================================================
   BACK TO TOP + WHATSAPP
   ============================================================ */
#btt {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  border: none; cursor: pointer;
  box-shadow: 0 5px 18px rgba(193,117,52,.45);
  display: none; align-items: center; justify-content: center;
  font-size: .95rem; transition: var(--transition); z-index: 990;
}
#btt:hover { background: var(--primary-dark); transform: translateY(-3px); }
#btt.show { display: flex; }
.wa-btn {
  position: fixed; bottom: 82px; right: 28px;
  width: 50px; height: 50px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 5px 20px rgba(37,211,102,.45);
  transition: var(--transition); z-index: 990;
}
.wa-btn:hover { transform: scale(1.1); color: var(--white); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.92);
  z-index: 9999; display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lb-inner { position: relative; max-width: 860px; width: 100%; }
.lb-close {
  position: absolute; top: -46px; right: 0;
  color: var(--white); font-size: 1.7rem; background: none;
  border: none; cursor: pointer; opacity: .8; transition: var(--transition);
}
.lb-close:hover { opacity: 1; transform: rotate(90deg); }
.lb-placeholder {
  border-radius: var(--radius); min-height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem; color: rgba(255,255,255,.3);
}
#lb-box img {
  width: 100%; max-height: 78vh;
  object-fit: contain; border-radius: var(--radius); display: block;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .hero h1 { font-size: 3rem; }
  .hero-visual { display: none; }
  .section-head h2 { font-size: 2.1rem; }
  .page-hero h1 { font-size: 2.2rem; }
  .cta-section h2 { font-size: 2.1rem; }
  .retreat-head, .retreat-body { padding: 28px 24px; }
  .top-bar .contact-info { display: none; }
}
@media (max-width: 767px) {
  .hero h1 { font-size: 2.4rem; }
  .hero-stats { gap: 20px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gal-item:nth-child(7n+1) { grid-column: span 1; aspect-ratio: 1; }
  .section-pad { padding: 65px 0; }
  .form-box { padding: 26px 20px; }
  .counter-strip .c-num { font-size: 2.4rem; }
}
@media (max-width: 576px) {
  .hero h1 { font-size: 2rem; }
  .page-hero h1 { font-size: 1.8rem; }
  .hero-cta { flex-direction: column; }
  .btn-iya { justify-content: center; }
}
