/* =============================================
   MAHA SHIVA NAADI JOTHIDAM — index.css
   Styles for index.html page sections:
   Ticker · Hero · About · Services · Process
   Gallery · Glimpses · World Banner
   Testimonials · Contact · Reading Options · Promo
   ============================================= */

/* ===== TICKER ===== */
.ticker-bar {
  background: var(--gold);
  color: var(--dark);
  padding: 8px 0;
  overflow: hidden;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker-track span { padding: 0 50px; white-space: nowrap; }
.ticker-track span::before { content: "🕉 "; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #6b0000 0%, #8B0000 40%, #a0001a 70%, #700000 100%);
  color: white;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 30px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255,107,0,0.1) 0%, transparent 50%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  width: 100%;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-text { flex: 1; min-width: 300px; max-width: 580px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.2);
  border: 1px solid rgba(212,175,55,0.5);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Cinzel', serif;
}
.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 10px;
  color: white;
}
.hero h1 span { color: var(--gold-light); }
.hero-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 18px 0;
}
.hero p {
  font-size: 17px;
  line-height: 1.7;
  color: #ffddd0;
  margin-bottom: 30px;
}
.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--dark);
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(212,175,55,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,175,55,0.6);
}
.btn-secondary {
  background: transparent;
  color: var(--gold-light);
  border: 2px solid var(--gold);
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary:hover { background: rgba(212,175,55,0.15); }
.thumb-note {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  font-size: 14px;
  color: #ffccaa;
}
.thumb-note span {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}
.hero-image-wrap {
  flex-shrink: 0;
  position: relative;
}
.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--gold), var(--saffron), var(--gold));
  opacity: 0.5;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 0.8; }
}
.hero-image-wrap img {
  width: 320px;
  height: 360px;
  object-fit: cover;
  border-radius: 16px;
  position: relative;
  z-index: 1;
  border: 3px solid rgba(212,175,55,0.5);
}

/* ===== ORNAMENT DIVIDER ===== */
.ornament {
  text-align: center;
  padding: 20px;
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 15px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.1), transparent);
}

/* ===== SHARED SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 50px; }
.section-label {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--saffron);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.section-header h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--deep-red);
  font-weight: 700;
}
.underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--saffron));
  margin: 14px auto 0;
  border-radius: 3px;
}

/* ===== ABOUT ===== */
.about-section { background: var(--warm-white); padding: 70px 30px; }
.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h3 { font-family: 'Cinzel', serif; font-size: 22px; color: var(--deep-red); margin-bottom: 15px; }
.about-text p { font-size: 17px; line-height: 1.8; color: #3a1a0a; margin-bottom: 15px; }
.quote-block {
  border-left: 4px solid var(--gold);
  padding: 15px 20px;
  background: rgba(212,175,55,0.08);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: 17px;
  color: var(--deep-red);
  margin: 20px 0;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
.stat-box {
  background: var(--cream);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
.stat-num { font-family: 'Cinzel', serif; font-size: 30px; font-weight: 700; color: var(--deep-red); }
.stat-lbl { font-size: 13px; color: #777; margin-top: 4px; }
/* ===== ABOUT — Single Image with Animations ===== */
.about-images {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-single {
  position: relative;
  width: 100%;
  max-width: 480px;
}

/* Main image */
.about-img-single img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  border: 3px solid rgba(212,175,55,0.5);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  transition: transform 0.5s ease;
  position: relative;
  z-index: 2;
}
.about-img-single:hover img { transform: scale(1.03); }

/* Pulsing outer glow ring */
.img-glow-ring {
  position: absolute;
  inset: -10px;
  border-radius: 22px;
  border: 2px solid rgba(212,175,55,0.4);
  z-index: 1;
  animation: ringPulse 3s ease-in-out infinite;
}
.img-glow-ring::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 28px;
  border: 1px solid rgba(212,175,55,0.2);
  animation: ringPulse 3s ease-in-out infinite 0.5s;
}
@keyframes ringPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.02); }
}

/* Gold corner ornaments */
.img-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  z-index: 4;
  animation: cornerGlow 2.5s ease-in-out infinite;
}
.img-corner-tl { top: 6px;  left: 6px;  border-top: 3px solid var(--gold); border-left: 3px solid var(--gold);  border-radius: 4px 0 0 0; }
.img-corner-tr { top: 6px;  right: 6px; border-top: 3px solid var(--gold); border-right: 3px solid var(--gold); border-radius: 0 4px 0 0; }
.img-corner-bl { bottom: 6px; left: 6px;  border-bottom: 3px solid var(--gold); border-left: 3px solid var(--gold);  border-radius: 0 0 0 4px; }
.img-corner-br { bottom: 6px; right: 6px; border-bottom: 3px solid var(--gold); border-right: 3px solid var(--gold); border-radius: 0 0 4px 0; }
@keyframes cornerGlow {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; filter: drop-shadow(0 0 6px rgba(212,175,55,0.9)); }
}

/* Floating badge top-right */
.img-badge {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 5;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(212,175,55,0.6);
  animation: badgeSpin 6s linear infinite;
  border: 2px solid rgba(255,255,255,0.3);
}
.img-badge-icon { font-size: 22px; line-height: 1; }
.img-badge-text {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}
@keyframes badgeSpin {
  0%   { transform: rotate(0deg)   scale(1); }
  25%  { transform: rotate(5deg)   scale(1.05); }
  50%  { transform: rotate(0deg)   scale(1); }
  75%  { transform: rotate(-5deg)  scale(1.05); }
  100% { transform: rotate(0deg)   scale(1); }
}

/* Gold overlay on hover */
.about-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(100,0,0,0.88) 0%, transparent 100%);
  padding: 40px 20px 20px;
  border-radius: 0 0 14px 14px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: 3;
}
.about-img-single:hover .about-img-overlay { transform: translateY(0); }
.about-img-overlay span {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  color: var(--gold-light);
  letter-spacing: 2px;
}

/* ===== SERVICES ===== */
.services-section {
  background: linear-gradient(180deg, #6b0000, #8B0000);
  padding: 70px 30px;
  text-align: center;
}
.services-section .section-header h2 { color: var(--gold-light); }
.services-section .section-label { color: var(--gold-pale); }
.services-section .underline { background: var(--gold); }
.services-grid {
  max-width: 1100px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 12px;
  padding: 35px 20px;
  color: white;
  transition: all 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--saffron));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.service-card:hover {
  background: rgba(212,175,55,0.12);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
  border-color: rgba(212,175,55,0.6);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card .icon { font-size: 38px; margin-bottom: 15px; color: var(--gold-light); }
.service-card h3 { font-family: 'Cinzel', serif; font-size: 15px; font-weight: 600; color: var(--gold-light); margin-bottom: 8px; }
.service-card p { font-size: 14px; color: #ffccaa; line-height: 1.5; }

/* ===== HOW IT WORKS ===== */
.process-section { padding: 70px 30px; background: var(--warm-white); }
.process-steps {
  max-width: 900px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.step { text-align: center; }
.step-num {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--deep-red), var(--crimson));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 700;
  margin: 0 auto 18px;
  box-shadow: 0 4px 15px rgba(139,0,0,0.4);
  border: 3px solid var(--gold);
}
.step h3 { font-family: 'Cinzel', serif; font-size: 15px; color: var(--deep-red); margin-bottom: 8px; }
.step p { font-size: 14px; color: #666; line-height: 1.6; }

/* ===== GALLERY / SHORTS ===== */
.shorts-section { padding: 70px 30px; background: var(--cream); }
.shorts-grid {
  max-width: 1100px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.short-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  border: 1px solid rgba(212,175,55,0.2);
  transition: all 0.3s;
}
.short-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(0,0,0,0.18); }
.img-wrap { position: relative; overflow: hidden; }
.short-card img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.4s; }
.short-card:hover img { transform: scale(1.05); }
.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s;
}
.short-card:hover .play-btn { opacity: 1; }
.play-btn i { font-size: 50px; color: white; text-shadow: 0 0 20px rgba(0,0,0,0.5); }
.card-body { padding: 18px; }
.short-card h3 { font-family: 'Cinzel', serif; font-size: 14px; color: var(--deep-red); margin-bottom: 10px; }
.short-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--deep-red);
  color: white;
  padding: 7px 16px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 13px;
  font-family: 'Cinzel', serif;
  transition: background 0.3s;
}
.short-card a:hover { background: var(--crimson); }


/* ===== SACRED GLIMPSES SECTION ===== */
.glimpses-section {
  padding: 70px 30px;
  background: var(--warm-white);
}
.glimpses-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.glimpse-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0,0,0,0.15);
  border: 2px solid rgba(212,175,55,0.35);
}
.glimpse-img-wrap {
  position: relative;
  overflow: hidden;
}
.glimpse-img-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.glimpse-card:hover .glimpse-img-wrap img {
  transform: scale(1.07);
}
.glimpse-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(90,0,0,0.92) 0%, rgba(90,0,0,0.3) 55%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.glimpse-card:hover .glimpse-overlay {
  opacity: 1;
}
.glimpse-overlay-inner {
  transform: translateY(20px);
  transition: transform 0.4s ease;
}
.glimpse-card:hover .glimpse-overlay-inner {
  transform: translateY(0);
}
.glimpse-overlay-inner i {
  font-size: 28px;
  color: var(--gold-light);
  margin-bottom: 10px;
  display: block;
}
.glimpse-overlay-inner h3 {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.glimpse-overlay-inner p {
  font-size: 14px;
  color: #ffddd0;
  line-height: 1.6;
  max-width: 320px;
}

/* ===== WORLD BANNER ===== */
.banner-section {
  background:
    linear-gradient(rgba(100,0,0,0.82), rgba(100,0,0,0.82)),
    url('https://images.unsplash.com/photo-1604313040080-aef57d3da3f8?w=1400') center/cover;
  background-attachment: fixed;
  padding: 80px 30px;
  text-align: center;
  color: white;
}
.banner-section h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(22px, 4vw, 42px);
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.banner-section p {
  font-size: 18px;
  color: #ffd;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.7;
}
.countries { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 20px; }
.country-badge {
  background: rgba(212,175,55,0.2);
  border: 1px solid rgba(212,175,55,0.5);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 25px;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 1px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: linear-gradient(135deg, #5c0000, #8B0000); padding: 70px 30px; }
.testimonials-section .section-header h2 { color: var(--gold-light); }
.testimonials-section .section-label { color: #ffd; }
.testimonials-grid {
  max-width: 1000px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 14px;
  padding: 28px;
  color: white;
}
.testimonial-card .stars { color: var(--gold); font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card p { font-size: 15px; line-height: 1.7; color: #ffeedd; font-style: italic; margin-bottom: 18px; }
.testimonial-card .author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.author-info .name { font-family: 'Cinzel', serif; font-size: 14px; color: var(--gold-light); }
.author-info .place { font-size: 12px; color: #ffaaaa; }

/* ===== CONTACT ===== */
.contact-section { padding: 70px 30px; background: var(--cream); }
.contact-wrapper {
  max-width: 900px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}
.contact-info h3 { font-family: 'Cinzel', serif; font-size: 20px; color: var(--deep-red); margin-bottom: 20px; }
.contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 22px;
  padding: 16px;
  background: white;
  border-radius: 10px;
  border: 1px solid rgba(212,175,55,0.2);
}
.c-icon {
  width: 42px; height: 42px;
  background: var(--deep-red);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.c-text .label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: #999; }
.c-text .value { font-size: 16px; color: var(--dark); font-weight: 600; }
.c-text a { text-decoration: none; color: var(--deep-red); }
.contact-form {
  background: white;
  border-radius: 14px;
  padding: 35px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(212,175,55,0.2);
}
.contact-form h3 { font-family: 'Cinzel', serif; font-size: 20px; color: var(--deep-red); margin-bottom: 25px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; color: #666; margin-bottom: 6px; letter-spacing: 0.5px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e0d5c5;
  border-radius: 8px;
  font-family: 'Crimson Text', serif;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
  background: #fffdf7;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { height: 100px; resize: vertical; }
.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--deep-red), var(--crimson));
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-submit:hover {
  background: linear-gradient(135deg, #700000, #a00015);
  transform: translateY(-1px);
  box-shadow: 0 5px 20px rgba(139,0,0,0.4);
}


/* ===== READING OPTIONS SECTION ===== */
.reading-options-section {
  padding: 70px 30px;
  background: var(--cream);
}
.reading-options-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.reading-option-card {
  background: white;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 14px;
  padding: 32px 22px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.reading-option-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--gold), var(--saffron));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.reading-option-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
  border-color: rgba(212,175,55,0.5);
}
.reading-option-card:hover::before { transform: scaleX(1); }
.reading-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--deep-red), var(--crimson));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 26px;
  color: var(--gold-light);
  box-shadow: 0 4px 15px rgba(139,0,0,0.3);
  border: 2px solid rgba(212,175,55,0.3);
}
.reading-option-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 17px;
  color: var(--deep-red);
  margin-bottom: 10px;
}
.reading-option-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}
.reading-promo-img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  border: 2px solid rgba(212,175,55,0.35);
  transition: transform 0.3s;
}
.reading-promo-img:hover { transform: scale(1.02); }
.reading-promo-img img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

/* ===== PROMO SECTION ===== */
.promo-section {
  padding: 70px 30px;
  background: var(--warm-white);
}
.promo-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.promo-text h3 {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  color: var(--deep-red);
  margin-bottom: 16px;
}
.promo-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #3a1a0a;
  margin-bottom: 14px;
}
.promo-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  border: 3px solid rgba(212,175,55,0.4);
  transition: transform 0.4s;
}
.promo-img-wrap:hover { transform: scale(1.02); }
.promo-img-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* RESPONSIVE for new sections */
@media (max-width: 1024px) {

/* =============================================
   RESPONSIVE — Index Page Sections
   ============================================= */
/* =============================================
   RESPONSIVE — Tablet (≤ 1024px)
   ============================================= */

@media (max-width: 1024px) {
  .hero-image-wrap img {
    width: 280px; height: 320px;
  }
}

/* =============================================
   RESPONSIVE — Tablet (≤ 900px)
   ============================================= */

@media (max-width: 900px) {
  /* About */
  .about-grid {
    grid-template-columns: 1fr; gap: 40px;
  }
  .about-images {
    order: -1;
  }
  /* Contact */
  .contact-wrapper {
    grid-template-columns: 1fr; gap: 30px;
  }
  /* Hero */
  .hero {
    padding: 50px 20px;
  }
  .hero-inner {
    gap: 40px;
  }
  /* Services */
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

/* =============================================
   RESPONSIVE — Mobile (≤ 700px)
   ============================================= */

@media (max-width: 700px) {
  /* --- HEADER --- */
  header {
    padding: 0 16px; min-height: 65px;
  }
  /* --- HERO --- */
  .hero {
    padding: 40px 18px; min-height: auto;
  }
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .hero-text {
    min-width: unset; max-width: 100%;
  }
  .hero h1 {
    font-size: 26px;
  }
  .hero p {
    font-size: 15px;
  }
  .hero-divider {
    margin: 14px auto;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    font-size: 13px;
    padding: 13px 20px;
  }
  .thumb-note {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  /* Hero image */
  .hero-image-wrap {
    width: 100%; max-width: 300px; margin: 0 auto;
  }
  .hero-image-wrap::before {
    inset: -5px;
  }
  .hero-image-wrap img {
    width: 100%; height: 240px;
  }
  /* --- ORNAMENT --- */
  .ornament {
    font-size: 16px; letter-spacing: 8px; padding: 14px;
  }
  /* --- SECTION HEADERS --- */
  .section-header {
    margin-bottom: 30px;
  }
  /* --- ABOUT --- */
  .about-section {
    padding: 50px 18px;
  }
  .about-stats {
    grid-template-columns: 1fr 1fr; gap: 12px;
  }
  .stat-box {
    padding: 14px 10px;
  }
  .stat-num {
    font-size: 24px;
  }
  /* Image badge clipped fix — keep inside bounds */
  .about-img-single {
    max-width: 100%; overflow: visible;
  }
  .about-img-single img {
    height: 260px;
  }
  .img-glow-ring {
    inset: -6px;
  }
  .img-badge {
    width: 54px; height: 54px;
    top: -8px; right: -8px;
  }
  .img-badge-icon {
    font-size: 16px;
  }
  .img-badge-text {
    font-size: 8px;
  }
  /* --- SERVICES --- */
  .services-section {
    padding: 50px 18px;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr; gap: 12px;
  }
  .service-card {
    padding: 22px 14px;
  }
  .service-card .icon {
    font-size: 28px; margin-bottom: 10px;
  }
  .service-card h3 {
    font-size: 13px;
  }
  .service-card p {
    font-size: 12px;
  }
  /* --- PROCESS STEPS --- */
  .process-section {
    padding: 50px 18px;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr; gap: 20px;
  }
  .step-num {
    width: 50px; height: 50px; font-size: 18px;
  }
  .step h3 {
    font-size: 13px;
  }
  .step p {
    font-size: 13px;
  }
  /* --- GALLERY / SHORTS --- */
  .shorts-section {
    padding: 50px 18px;
  }
  .shorts-grid {
    grid-template-columns: 1fr 1fr; gap: 14px;
  }
  .short-card img {
    height: 150px;
  }
  .card-body {
    padding: 12px;
  }
  .short-card h3 {
    font-size: 12px; margin-bottom: 8px;
  }
  .short-card a {
    font-size: 11px; padding: 6px 10px;
  }
  /* --- GLIMPSES --- */
  .glimpses-section {
    padding: 50px 18px;
  }
  .glimpses-grid {
    grid-template-columns: 1fr; gap: 16px;
  }
  .glimpse-img-wrap img {
    height: 240px;
  }
  /* Always show overlay text on mobile (no hover) */
  .glimpse-overlay {
    opacity: 1;
  }
  .glimpse-overlay-inner {
    transform: translateY(0);
  }
  /* --- READING OPTIONS --- */
  .reading-options-section {
    padding: 50px 18px;
  }
  .reading-options-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .reading-promo-img {
    grid-column: 1 / -1;
    margin-top: 6px;
  }
  .reading-promo-img img {
    min-height: 200px; max-height: 280px; width: 100%; object-fit: cover;
  }
  .reading-option-card {
    padding: 20px 16px; text-align: left; display: flex; align-items: flex-start; gap: 14px;
  }
  .reading-icon {
    width: 46px; height: 46px; font-size: 18px; flex-shrink: 0; margin: 0;
  }
  .reading-option-card h3 {
    font-size: 15px; margin-bottom: 6px;
  }
  .reading-option-card p {
    font-size: 13px;
  }
  /* --- PROMO SECTION --- */
  .promo-section {
    padding: 50px 18px;
  }
  .promo-grid {
    gap: 24px;
  }
  .promo-text h3 {
    font-size: 18px;
  }
  .promo-text p {
    font-size: 15px;
  }
  .promo-text .btn-primary {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    margin-top: 16px !important;
  }
  /* --- WORLD BANNER --- */
  .banner-section {
    padding: 50px 18px;
    background-attachment: scroll;
  }
  .banner-section h2 {
    font-size: 22px;
  }
  .banner-section p {
    font-size: 15px;
  }
  .countries {
    gap: 8px;
  }
  .country-badge {
    padding: 6px 12px; font-size: 11px;
  }
  /* --- TESTIMONIALS --- */
  .testimonials-section {
    padding: 50px 18px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr; gap: 16px;
  }
  .testimonial-card {
    padding: 20px;
  }
  .testimonial-card p {
    font-size: 14px;
  }
  /* --- CONTACT --- */
  .contact-section {
    padding: 50px 18px;
  }
  .contact-form {
    padding: 22px 18px;
  }
  .contact-form h3 {
    font-size: 17px;
  }
  .contact-item {
    padding: 12px; gap: 12px;
  }
  .c-icon {
    width: 36px; height: 36px; font-size: 14px;
  }
  .c-text .label {
    font-size: 10px;
  }
  .c-text .value {
    font-size: 14px;
  }
}

/* =============================================
   RESPONSIVE — Small phones (≤ 380px)
   ============================================= */

@media (max-width: 380px) {
  .hero h1 {
    font-size: 22px;
  }
  .hero-image-wrap img {
    height: 200px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .shorts-grid {
    grid-template-columns: 1fr;
  }
  .short-card img {
    height: 200px;
  }
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
  .about-img-single img {
    height: 220px;
  }
  /* Reading options stay single col */
  .reading-options-grid {
    grid-template-columns: 1fr;
  }
  /* Glimpses */
  .glimpse-img-wrap img {
    height: 200px;
  }
  /* Promo */
  .promo-text h3 {
    font-size: 16px;
  }
  /* Country badges wrap better */
  .country-badge {
    padding: 5px 10px; font-size: 10px;
  }
}
}