/* ===========================================================
   SR IND Prime Properties - Master Stylesheet
   Tirupati's Most Trusted Real Estate Developer
   =========================================================== */

/* CSS Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a2e;
  background: #ffffff;
  overflow-x: hidden;
  font-display: swap;
  text-rendering: optimizeSpeed;
}
img, picture, video { content-visibility: auto; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* CSS Variables - Brand Colors */
:root {
  --primary-red: #e63946;
  --primary-red-dark: #c62836;
  --primary-blue: #1d4ed8;
  --primary-blue-dark: #1e3a8a;
  --gold: #f59e0b;
  --gold-dark: #d97706;
  --green: #10b981;
  --green-dark: #059669;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --gray-text: #475569;
  --gray-light: #f1f5f9;
  --gray-border: #e2e8f0;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.2);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --gradient-red: linear-gradient(135deg, #e63946 0%, #c62836 100%);
  --gradient-blue: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
  --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  --gradient-hero: linear-gradient(135deg, rgba(29,78,216,0.92) 0%, rgba(230,57,70,0.88) 100%);
}

/* Typography */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p { color: var(--gray-text); }

/* Container */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 960px; margin: 0 auto; padding: 0 20px; }

/* ===== TOP ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--gradient-red);
  color: var(--white);
  padding: 10px 0;
  position: relative;
  overflow: hidden;
  font-size: 14px;
  font-weight: 600;
  z-index: 999;
}
.announcement-bar .marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}
.announcement-bar .marquee span {
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.announcement-close {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 20px;
  width: 24px;
  height: 24px;
  line-height: 1;
  z-index: 2;
}

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 998;
  transition: all 0.3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--primary-blue-dark);
}
.logo img { height: 55px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .main { color: var(--primary-red); font-size: 1.2rem; }
.logo-text .sub { color: var(--primary-blue); font-size: 0.75rem; font-weight: 500; }

.main-nav ul {
  display: flex;
  gap: 30px;
  align-items: center;
}
.main-nav a {
  font-weight: 500;
  font-size: 15px;
  color: var(--dark);
  position: relative;
  padding: 8px 0;
}
.main-nav a:hover, .main-nav a.active { color: var(--primary-red); }
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-red);
  transition: width 0.3s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--gradient-red);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-call:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.mobile-menu-toggle {
  display: none;
  font-size: 26px;
  color: var(--dark);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 92vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 80px 0 60px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: image-set(
    url('../images/banners/hero-banner.webp') type('image/webp'),
    url('../images/banners/hero-banner.jpg') type('image/jpeg')
  );
  background-image: -webkit-image-set(
    url('../images/banners/hero-banner.webp') type('image/webp'),
    url('../images/banners/hero-banner.jpg') type('image/jpeg')
  );
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
  will-change: opacity;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0.85;
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 800;
}
.hero h1 .accent { color: var(--gold); }
.hero-tagline {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 30px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  min-height: 72px;
  contain: layout style;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  min-width: 100px;
}
.hero-stat strong {
  font-size: 2rem;
  color: var(--gold);
  font-weight: 800;
  line-height: 1.2;
  min-height: 2.4rem;
  display: block;
  font-variant-numeric: tabular-nums;
}
.hero-stat .stat-value {
  display: inline-block;
  min-width: 3.5ch;
}
.hero-stat span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-top: 5px;
}
.hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: perspective(1000px) rotateY(-5deg);
}
.hero-image img { width: 100%; height: auto; min-height: 480px; max-height: 600px; object-fit: cover; display:block; }
.hero-image .tuda-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-gold);
  color: var(--dark);
  padding: 12px 18px;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  text-align: center;
  line-height: 1.1;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--white);
}
.hero-image .tuda-badge strong { font-size: 16px; display: block; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  text-align: center;
  justify-content: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-red);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-secondary {
  background: var(--white);
  color: var(--primary-blue-dark);
  box-shadow: var(--shadow-md);
}
.btn-secondary:hover { transform: translateY(-3px); }
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--primary-blue-dark); }
.btn-gold {
  background: var(--gradient-gold);
  color: var(--dark);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-wa {
  background: #25d366;
  color: var(--white);
}
.btn-wa:hover { background: #128c7e; transform: translateY(-3px); }

/* ===== SECTIONS ===== */
section { padding: 80px 0; position: relative; }
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title .eyebrow {
  display: inline-block;
  color: var(--primary-red);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title h2 {
  margin-bottom: 15px;
}
.section-title h2 .accent { color: var(--primary-red); }
.section-title p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ===== TRUST BAR / STATS ===== */
.trust-bar {
  background: linear-gradient(135deg, var(--gray-light) 0%, #ffffff 100%);
  padding: 50px 0;
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.trust-item .number {
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  min-height: 45px;
  display: block;
}
.trust-item { contain: layout; min-height: 100px; }
.trust-item .label {
  font-size: 0.95rem;
  color: var(--gray-text);
  margin-top: 8px;
  font-weight: 500;
}
.trust-item .stars { color: var(--gold); font-size: 1.3rem; margin-top: 5px; }

/* ===== PROJECT CARDS ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}
.project-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid var(--gray-border);
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.project-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card:hover .project-image img { transform: scale(1.08); }
.project-status {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gradient-red);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.project-status.completed { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.project-status.upcoming { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.project-tuda {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: var(--gradient-gold);
  color: var(--dark);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.project-body { padding: 25px; }
.project-body h3 { margin-bottom: 8px; color: var(--dark); }
.project-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-text);
  font-size: 14px;
  margin-bottom: 15px;
}
.project-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.project-features span {
  background: var(--gray-light);
  color: var(--gray-text);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
}
.project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--gray-border);
}
.project-price {
  display: flex;
  flex-direction: column;
}
.project-price .label { font-size: 12px; color: var(--gray-text); }
.project-price .value {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-red);
}
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 14px;
}
.project-link:hover { color: var(--primary-red); gap: 10px; }

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img { width: 100%; height: 480px; object-fit: cover; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { margin-bottom: 20px; font-size: 1.05rem; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 25px;
}
.about-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.about-feature-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: var(--gradient-red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.about-feature h4 { font-size: 1rem; margin-bottom: 4px; }
.about-feature p { font-size: 14px; margin: 0; }

/* ===== WHY TIRUPATI (Spiritual Section) ===== */
.spiritual-section {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fbbf24 100%);
  position: relative;
  overflow: hidden;
}
.spiritual-section::before {
  content: '🛕';
  position: absolute;
  font-size: 25rem;
  opacity: 0.08;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
}
.spiritual-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.spiritual-quote {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--dark);
  margin: 20px 0;
  font-weight: 500;
}
.spiritual-sanskrit {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 15px;
  letter-spacing: 1px;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section { background: var(--gray-light); }
.reviews-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 18px 28px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}
.google-rating .stars { font-size: 1.5rem; color: var(--gold); }
.google-rating .rating-text strong { font-size: 1.5rem; display: block; line-height: 1; }
.google-rating .rating-text small { color: var(--gray-text); font-size: 13px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}
.review-card {
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-border);
}
.review-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}
.review-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--gradient-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}
.review-name strong { display: block; font-size: 15px; }
.review-name small { color: var(--gray-text); font-size: 12px; }
.review-stars { color: var(--gold); margin-bottom: 10px; }
.review-text { color: var(--gray-text); font-size: 14px; line-height: 1.6; }

/* ===== FEATURES / WHY US ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.feature-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--gray-border);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 20px;
  background: var(--gradient-red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.feature-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.feature-card p { font-size: 14px; }

/* ===== EVENT BANNER ===== */
.event-banner {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 50%, #7f1d1d 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.event-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(245,158,11,0.2) 0%, transparent 50%);
}
.event-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.event-content h2 { color: var(--white); margin-bottom: 20px; }
.event-content h2 .highlight { color: var(--gold); }
.event-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 25px 0;
}
.event-detail {
  background: rgba(255,255,255,0.1);
  padding: 15px 20px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
}
.event-detail .label { font-size: 12px; opacity: 0.8; text-transform: uppercase; letter-spacing: 1px; }
.event-detail .value { font-size: 1.1rem; font-weight: 700; margin-top: 4px; }
.event-image-wrap {
  width: 100%;
  max-width: 100%;
  align-self: center;
}
.event-banner .hero-badge {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  line-height: 1.4;
  margin-bottom: 16px;
}
.event-banner .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.countdown-box {
  background: var(--gradient-gold);
  color: var(--dark);
  padding: 18px 8px;
  border-radius: 12px;
  text-align: center;
  font-weight: 800;
}
.countdown-box .num { font-size: 2rem; line-height: 1; display: block; }
.countdown-box .lbl { font-size: 11px; text-transform: uppercase; margin-top: 5px; letter-spacing: 1px; }

/* ===== FAQ ===== */
.faq-list { max-width: 850px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  margin-bottom: 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-border);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item.active { box-shadow: var(--shadow-md); border-color: var(--primary-red); }
.faq-question {
  padding: 20px 25px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark);
  width: 100%;
  text-align: left;
}
.faq-question::after {
  content: '+';
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--primary-red);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 25px;
  color: var(--gray-text);
}
.faq-item.active .faq-answer { max-height: 500px; padding: 0 25px 22px; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--gradient-blue);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}
.cta-section h2 { color: var(--white); margin-bottom: 20px; }
.cta-section p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.site-footer {
  background: #0a0e1f;
  color: rgba(255,255,255,0.8);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-col h4 {
  color: var(--white);
  margin-bottom: 22px;
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-red);
  border-radius: 3px;
}
.footer-about p { font-size: 14px; line-height: 1.7; margin: 15px 0 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}
.footer-social a:hover { background: var(--primary-red); transform: translateY(-3px); }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--primary-red); padding-left: 5px; }
.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.6;
}
.footer-contact .icon {
  color: var(--primary-red);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 13px;
}
.footer-bottom a:hover { color: var(--primary-red); }

/* ===== FLOATING WHATSAPP ===== */
.float-wa {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 25px rgba(37,211,102,0.5);
  z-index: 100;
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
}
.float-wa:hover { transform: scale(1.1); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
  50% { box-shadow: 0 0 0 20px rgba(37,211,102,0); }
}

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 45px;
  height: 45px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
  box-shadow: var(--shadow-md);
}
.back-top.visible { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--primary-red); transform: translateY(-3px); }

/* ===== POPUP MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.modal-overlay.active .modal-box { transform: scale(1); }
.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.modal-head {
  background: var(--gradient-red);
  color: var(--white);
  padding: 35px 30px 25px;
  text-align: center;
}
.modal-head h3 { color: var(--white); margin-bottom: 8px; }
.modal-body { padding: 30px; text-align: center; }
.modal-body .event-date {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-red);
  margin: 10px 0;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--gray-light);
  padding: 18px 0;
  font-size: 14px;
}
.breadcrumb ul {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb li::after { content: '›'; margin-left: 8px; color: var(--gray-text); }
.breadcrumb li:last-child::after { content: ''; }
.breadcrumb a { color: var(--gray-text); }
.breadcrumb a:hover { color: var(--primary-red); }
.breadcrumb li:last-child { color: var(--dark); font-weight: 600; }

/* ===== PAGE HEADER (Inner Pages) ===== */
.page-header {
  background: var(--gradient-blue);
  color: var(--white);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/banners/page-header.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.page-header .container { position: relative; }
.page-header h1 { color: var(--white); margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.9); font-size: 1.05rem; }

/* ===== FORM ===== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.3s ease;
}
.form-control:focus { outline: none; border-color: var(--primary-red); }
textarea.form-control { resize: vertical; min-height: 120px; }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .event-grid, .form-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-image { transform: none; }
  .hero-image img { height: 380px; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .main-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--white); padding: 80px 30px; z-index: 99; overflow-y: auto; }
  .main-nav.active { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; align-items: stretch; }
  .main-nav li { border-bottom: 1px solid var(--gray-border); }
  .main-nav a { padding: 15px 0; display: block; }
  .mobile-menu-toggle { display: block; }
  .header-cta .btn-call span { display: none; }
  .hero { min-height: auto; padding: 50px 0; }
  .hero-stats { gap: 20px; }
  .hero-stat strong { font-size: 1.5rem; }
  .about-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .event-details { grid-template-columns: 1fr; }
  .countdown { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .countdown-box .num { font-size: 1.5rem; }
  .float-wa { width: 55px; height: 55px; bottom: 20px; right: 20px; }
  .spiritual-section::before { font-size: 15rem; }
  .reviews-header { flex-direction: column; gap: 15px; }
  .contact-form { padding: 25px; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }
  .btn { padding: 12px 22px; font-size: 14px; }
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-red { color: var(--primary-red); }
.text-blue { color: var(--primary-blue); }
.text-gold { color: var(--gold); }
.bg-light { background: var(--gray-light); }
.mt-1 { margin-top: 10px; } .mt-2 { margin-top: 20px; } .mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; } .mb-2 { margin-bottom: 20px; } .mb-3 { margin-bottom: 30px; }

/* ===== MELA 2026 RECAP ===== */
.mela-recap-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.mela-stat {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 14px 8px;
  text-align: center;
  min-width: 0;
}
.mela-stat-num {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
}
.mela-stat-lbl {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-top: 6px;
  opacity: 0.92;
  line-height: 1.35;
  word-wrap: break-word;
  hyphens: auto;
}
.mela-recap-media {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mela-recap-hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}
.mela-recap-hero-img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}
.mela-recap-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  padding: 8px 14px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.4px;
  box-shadow: 0 8px 20px rgba(16,185,129,0.4);
  z-index: 2;
  white-space: nowrap;
}
.mela-recap-thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}
.mela-recap-thumb {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.2);
  aspect-ratio: 4 / 3;
  background: rgba(0,0,0,0.2);
}
.mela-recap-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mela-recap-video-wrap {
  grid-column: 1 / -1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.2);
  background: #000;
  aspect-ratio: 16 / 9;
}
.mela-recap-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}
.mela-video-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.mela-gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  align-items: stretch;
}
.mela-gallery-item picture,
.mela-gallery-item img {
  display: block;
  width: 100%;
}
.mela-gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.mela-gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.mela-gallery-feature {
  grid-row: span 2;
}
.mela-gallery-feature img {
  height: 100%;
  min-height: 400px;
}
.mela-gallery-item figcaption {
  padding: 12px 16px;
  font-size: 14px;
  color: var(--gray-text);
  text-align: center;
}
@media (max-width: 992px) {
  .event-grid { grid-template-columns: 1fr; gap: 32px; }
  .event-content { order: 1; }
  .event-image-wrap { order: 2; }
  .mela-recap-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .mela-gallery-grid { grid-template-columns: 1fr; }
  .mela-gallery-feature { grid-row: span 1; }
  .mela-gallery-feature img { min-height: 280px; }
}
@media (max-width: 600px) {
  .mela-recap-stats { grid-template-columns: 1fr; }
  .mela-recap-hero-img { max-height: 280px; }
  .event-banner .hero-cta .btn { width: 100%; text-align: center; }
}
