/* ══════════════════════════════════════════
   LORD BUDDHA CLASSES — style.css
   ══════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --gold-dark: #8a6820;
  --saffron: #e07b00;
  --deep: #0a0a0f;
  --dark: #12100e;
  --cream: #fdf6e3;
  --text-light: #f5ecd4;
  --maroon: #4a0e0e;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ── BODY ── */
body {
  background: var(--deep);
  color: var(--text-light);
  font-family: 'Cormorant Garamond', serif;
  overflow-x: hidden;
}

/* ── BACKGROUND GRADIENTS ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(201,168,76,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 80%, rgba(224,123,0,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 10% 90%, rgba(74,14,14,0.25) 0%, transparent 60%);
  pointer-events: none;
}

/* ── NOISE TEXTURE ── */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

/* ══════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  background: linear-gradient(180deg, rgba(10,10,15,0.95) 0%, transparent 100%);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.nav-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: rgba(245,236,212,0.7);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
}
.nav-links a:hover { color: var(--gold); }

/* ══════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════ */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}

.mandala {
  position: absolute;
  width: 700px; height: 700px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.07;
  animation: rotateSlow 60s linear infinite;
}

@keyframes rotateSlow { to { transform: translate(-50%, -50%) rotate(360deg); } }

.lotus-icon {
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
  animation: floatUp 3s ease-in-out infinite alternate;
  display: block;
}

@keyframes floatUp {
  from { transform: translateY(0); }
  to   { transform: translateY(-10px); }
}

.hero-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeIn 1s 0.3s ease forwards;
}

.hero-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, var(--saffron) 70%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: shimmer 4s ease infinite, fadeIn 1s 0.6s ease forwards;
  opacity: 0;
  margin-bottom: 0.5rem;
}

@keyframes shimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-title-hindi {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: rgba(201,168,76,0.6);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeIn 1s 0.9s ease forwards;
}

.divider {
  width: 180px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 2rem;
  opacity: 0;
  animation: fadeIn 1s 1.1s ease forwards;
}

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: rgba(245,236,212,0.75);
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeIn 1s 1.3s ease forwards;
}

.hero-teacher {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.25em;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeIn 1s 1.5s ease forwards;
}

.star-row {
  display: flex; gap: 0.4rem; justify-content: center; align-items: center;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeIn 1s 1.7s ease forwards;
}

.star {
  font-size: 2rem;
  color: var(--gold);
  animation: starPop 0.4s ease backwards;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.8));
}
.star:nth-child(1) { animation-delay: 1.7s; }
.star:nth-child(2) { animation-delay: 1.9s; }
.star:nth-child(3) { animation-delay: 2.1s; }
.star:nth-child(4) { animation-delay: 2.3s; }
.star:nth-child(5) { animation-delay: 2.5s; }

@keyframes starPop {
  0%   { transform: scale(0) rotate(-30deg); opacity: 0; }
  70%  { transform: scale(1.3) rotate(5deg); }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

.rating-text {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.85rem;
  color: var(--gold-light);
  letter-spacing: 0.2em;
  margin-left: 0.5rem;
}

.hero-btns {
  display: flex; gap: 1.2rem; flex-wrap: wrap; justify-content: center;
  opacity: 0;
  animation: fadeIn 1s 2.7s ease forwards;
}

/* ── BUTTONS ── */
.btn-primary {
  padding: 0.9rem 2.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--saffron) 100%);
  color: var(--deep);
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  border: none; border-radius: 2px;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  text-decoration: none; display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.55);
}

.btn-outline {
  padding: 0.9rem 2.5rem;
  background: transparent;
  color: var(--gold);
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none; display: inline-block;
}
.btn-outline:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  transform: translateY(-3px);
}

@keyframes fadeIn { to { opacity: 1; } }

/* ══════════════════════════════════════════
   SHARED SECTION STYLES
   ══════════════════════════════════════════ */
section {
  position: relative; z-index: 1;
  padding: 6rem 2rem;
}

.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.section-title span {
  background: linear-gradient(135deg, var(--gold-light), var(--saffron));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-divider {
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.2rem auto 3.5rem;
}

/* ══════════════════════════════════════════
   ABOUT SECTION
   ══════════════════════════════════════════ */
.about { background: rgba(201,168,76,0.03); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}

.about-portrait { position: relative; }

.portrait-frame {
  width: 100%; max-width: 340px;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(74,14,14,0.2) 100%);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  margin: 0 auto;
}

.portrait-frame::before {
  content: '';
  position: absolute; inset: 8px;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 2px;
  pointer-events: none;
}

.portrait-emoji {
  font-size: 7rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 20px rgba(201,168,76,0.4));
}

.portrait-name {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-align: center;
}

.portrait-title {
  font-size: 0.85rem;
  color: rgba(201,168,76,0.6);
  letter-spacing: 0.2em;
  text-align: center;
  margin-top: 0.4rem;
}

.portrait-badge {
  position: absolute; top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--deep);
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.65rem;
  padding: 0.35rem 0.7rem;
  border-radius: 2px;
  letter-spacing: 0.1em;
}

.about-text h3 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

.about-text p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: rgba(245,236,212,0.78);
  margin-bottom: 1.2rem;
}

.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 2rem;
}

.stat-box {
  text-align: center;
  padding: 1.2rem;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  background: rgba(201,168,76,0.04);
  transition: border-color 0.3s;
}
.stat-box:hover { border-color: rgba(201,168,76,0.5); }

.stat-number {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2rem;
  color: var(--gold);
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,236,212,0.5);
  margin-top: 0.3rem;
}

/* ══════════════════════════════════════════
   SUBJECTS SECTION
   ══════════════════════════════════════════ */
.subjects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.subject-card {
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.35s;
  cursor: default;
  position: relative; overflow: hidden;
}

.subject-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.subject-card:hover {
  background: rgba(201,168,76,0.09);
  border-color: rgba(201,168,76,0.45);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 30px rgba(201,168,76,0.1);
}
.subject-card:hover::before { transform: scaleX(1); }

.subject-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }

.subject-name {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}

.subject-desc {
  font-size: 0.9rem;
  color: rgba(245,236,212,0.55);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   FEATURES SECTION
   ══════════════════════════════════════════ */
.features { background: rgba(74,14,14,0.07); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-item {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.5rem;
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 6px;
  transition: border-color 0.3s, background 0.3s;
}
.feature-item:hover {
  border-color: rgba(201,168,76,0.35);
  background: rgba(201,168,76,0.04);
}

.feature-icon-wrap {
  width: 50px; height: 50px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(224,123,0,0.1));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}

.feature-item h4 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.95rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.95rem;
  color: rgba(245,236,212,0.6);
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   TESTIMONIALS SLIDER
   ══════════════════════════════════════════ */
.testimonials { background: rgba(201,168,76,0.02); }

.slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0.5rem 0 2rem;
}

.slider-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-card {
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 6px;
  padding: 2rem;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
  flex: 0 0 calc(33.333% - 1rem);
  min-width: calc(33.333% - 1rem);
}

.testimonial-card:hover {
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.quote-mark {
  font-size: 4rem;
  color: rgba(201,168,76,0.2);
  font-family: serif;
  line-height: 1;
  margin-bottom: -1rem;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(245,236,212,0.75);
  margin-bottom: 1.5rem;
}

.testimonial-stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 0.8rem; }

.testimonial-author {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.85rem;
  color: var(--gold);
}

.testimonial-class {
  font-size: 0.8rem;
  color: rgba(245,236,212,0.4);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.slider-btn {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.25s;
  display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover {
  background: rgba(201,168,76,0.2);
  border-color: var(--gold);
  transform: scale(1.1);
}

.slider-dots {
  display: flex; gap: 0.5rem;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(201,168,76,0.25);
  border: 1px solid rgba(201,168,76,0.4);
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active {
  background: var(--gold);
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(201,168,76,0.6);
}

/* ══════════════════════════════════════════
   CONTACT SECTION
   ══════════════════════════════════════════ */
.contact { background: rgba(201,168,76,0.03); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 6px rgba(201,168,76,0.5));
}

.contact-detail-text h5 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 0.3rem;
}

.contact-detail-text p {
  font-size: 1rem;
  color: rgba(245,236,212,0.7);
  line-height: 1.5;
}

.contact-form {
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  padding: 2.5rem;
}

.contact-form h3 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

/* Form Groups */
.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,236,212,0.5);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 4px;
  padding: 0.8rem 1rem;
  color: var(--text-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }

.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: #1a1508; color: var(--text-light); }

/* Form Validation */
.form-group input.input-error,
.form-group select.input-error,
.form-group textarea.input-error {
  border-color: #e05555 !important;
  background: rgba(224,85,85,0.08) !important;
  animation: shake 0.35s ease;
}

.err-msg {
  display: none;
  color: #ff7070;
  font-size: 0.82rem;
  margin-top: 0.35rem;
  letter-spacing: 0.05em;
  padding-left: 0.2rem;
}
.err-msg.show { display: block; }

@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-6px); }
  40%      { transform: translateX(6px); }
  60%      { transform: translateX(-4px); }
  80%      { transform: translateX(4px); }
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
footer {
  position: relative; z-index: 1;
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--gold-light), var(--saffron));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.8rem;
}

.footer-tagline {
  font-style: italic;
  color: rgba(245,236,212,0.4);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(245,236,212,0.25);
  letter-spacing: 0.2em;
}

/* ══════════════════════════════════════════
   SCROLL REVEAL ANIMATION
   ══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════
   THANK YOU PAGE
   ══════════════════════════════════════════ */
#thankyou-page {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: #0a0a0f;
  overflow-y: auto;
}

.ty-bg {
  position: fixed; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(201,168,76,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 80%, rgba(224,123,0,0.10) 0%, transparent 55%);
}

.ty-inner {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
}

.ty-lotus {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  animation: floatUp 3s ease-in-out infinite alternate;
}

.ty-mandala {
  position: absolute;
  width: 500px; height: 500px;
  opacity: 0.06;
  animation: rotateSlow 60s linear infinite;
}

.ty-brand {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.ty-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2rem, 6vw, 4rem);
  background: linear-gradient(135deg, #f0d080, #c9a84c, #e07b00, #f0d080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: shimmer 4s ease infinite;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.ty-divider {
  width: 160px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 1.5rem;
}

.ty-msg1 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(245,236,212,0.8);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.ty-msg2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: rgba(201,168,76,0.8);
  margin-bottom: 0.5rem;
}

.ty-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: rgba(245,236,212,0.45);
  margin-bottom: 3rem;
}

.ty-stars {
  display: flex; gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.ty-star {
  font-size: 2.2rem;
  color: var(--gold);
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.8));
}

.ty-back-btn {
  padding: 0.9rem 2.8rem;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--deep);
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  border: none; border-radius: 2px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  transition: transform 0.25s, box-shadow 0.25s;
}
.ty-back-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.55);
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 900px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 0.75rem);
    min-width: calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .stat-number { font-size: 1.5rem; }
  .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
}