/* ═══════════════════════════════════════════════════════════════
   home.css — Home Page Specific Styles
   ═══════════════════════════════════════════════════════════════ */

/* ── TICKER ───────────────────────────────────────────────────── */
.ticker-wrap {
  background: var(--gold); overflow: hidden; padding: 10px 0;
  position: relative; z-index: 999; margin-top: 68px;
}
.ticker-track {
  display: flex; gap: 0; animation: ticker-scroll 28s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; color: var(--navy);
  padding: 0 32px; text-transform: uppercase; letter-spacing: 0.5px;
  white-space: nowrap;
}
.ticker-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--navy); opacity: .5; }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 80px 5% 60px;
}

/* animated grill pattern background */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(201,150,43,.07) 0px, rgba(201,150,43,.07) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(0deg,  rgba(201,150,43,.04) 0px, rgba(201,150,43,.04) 1px, transparent 1px, transparent 80px);
  animation: grid-drift 20s linear infinite;
}
@keyframes grid-drift { 0% { background-position: 0 0; } 100% { background-position: 60px 80px; } }

/* golden radial glow */
.hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,150,43,.12) 0%, transparent 70%);
  right: -100px; top: 50%; transform: translateY(-50%);
  pointer-events: none;
}

.hero-inner {
  display: grid; grid-template-columns: 55% 45%; gap: 48px;
  align-items: center; max-width: 1280px; margin: 0 auto; position: relative; z-index: 2;
  width: 100%;
}

/* ─ LEFT CONTENT ─ */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,150,43,.14); border: 1px solid rgba(201,150,43,.45);
  color: var(--gold-light); font-size: 12px; font-weight: 700;
  padding: 7px 18px; border-radius: 50px; margin-bottom: 22px;
  letter-spacing: 0.8px; text-transform: uppercase;
  animation: fadeUp .8s ease both;
}
.hero-badge .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold-light);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot { 0%,100% { opacity:1; transform: scale(1); } 50% { opacity:.5; transform: scale(.7); } }

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5.2vw, 72px);
  line-height: 1.1; color: var(--white); margin-bottom: 20px;
  animation: fadeUp .8s .1s ease both;
}
.hero-headline .word-gold  { color: var(--gold); display: block; }
.hero-headline .word-teal  { color: var(--teal-light); }

/* text shimmer on gold word */
.hero-headline .word-gold {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 45%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease infinite, fadeUp .8s .15s ease both;
}

.hero-desc {
  font-size: 16px; color: rgba(255,255,255,.72); line-height: 1.8;
  max-width: 500px; margin-bottom: 28px;
  animation: fadeUp .8s .25s ease both;
}

/* 3-in-1 pills */
.hero-pills {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px;
  animation: fadeUp .8s .35s ease both;
}
.hero-pill {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18);
  color: var(--white); font-size: 13px; font-weight: 600;
  padding: 9px 18px; border-radius: 50px; cursor: pointer;
  transition: all .25s; backdrop-filter: blur(4px);
}
.hero-pill:hover { background: rgba(201,150,43,.2); border-color: var(--gold); color: var(--gold-light); }
.hero-pill .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.pill-gold .dot { background: var(--gold); }
.pill-teal .dot { background: var(--teal-light); }
.pill-green .dot { background: var(--green); }

/* CTA buttons */
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; animation: fadeUp .8s .45s ease both; }

/* stats row */
.hero-stats { display: flex; gap: 20px; flex-wrap: wrap; animation: fadeUp .8s .55s ease both; }
.stat-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(201,150,43,.25);
  border-radius: 14px; padding: 16px 22px; text-align: center;
  backdrop-filter: blur(8px); transition: all .25s;
}
.stat-card:hover { background: rgba(201,150,43,.1); border-color: var(--gold); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 11px; color: rgba(255,255,255,.65); margin-top: 4px; letter-spacing: .5px; text-transform: uppercase; }

/* ─ RIGHT IMAGE COMPOSITION ─ */
.hero-visual { position: relative; animation: fadeUp .9s .2s ease both; }

.hero-main-img {
  width: 100%; border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,.45);
  border: 3px solid rgba(201,150,43,.35);
  display: block;
}

/* floating accent cards */
.hero-card {
  position: absolute;
  background: rgba(13,27,62,.9); backdrop-filter: blur(12px);
  border: 1px solid rgba(201,150,43,.4); border-radius: 14px;
  padding: 12px 18px; color: var(--white);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  animation: float 4s ease-in-out infinite;
}
.hero-card.card-1 { bottom: 18%; left: -16%; animation-delay: 0s; }
.hero-card.card-2 { top: 12%; right: -10%; animation-delay: 1.5s; }
.hero-card.card-3 { bottom: -4%; right: 10%; animation-delay: .8s; }
.hcard-icon { font-size: 24px; margin-bottom: 4px; }
.hcard-val  { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--gold); line-height: 1; }
.hcard-lbl  { font-size: 11px; color: rgba(255,255,255,.65); }

/* decorative dots */
.hero-dots {
  position: absolute; bottom: -30px; left: -30px; width: 120px; height: 120px;
  background-image: radial-gradient(circle, rgba(201,150,43,.35) 1.5px, transparent 1.5px);
  background-size: 18px 18px; border-radius: 50%;
}

/* ── 3-IN-1 HIGHLIGHT BAND ────────────────────────────────────── */
.band-3in1 { background: var(--navy); padding: 0; }
.band-grid { display: flex; max-width: 100%; }
.band-item {
  flex: 1; display: flex; align-items: center; gap: 20px;
  padding: 32px 36px;
  border-right: 1px solid rgba(201,150,43,.2);
  transition: background .25s; cursor: default;
}
.band-item:last-child { border-right: none; }
.band-item:hover { background: rgba(201,150,43,.06); }
.band-icon-box {
  width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 28px;
}
.icon-gold  { background: rgba(201,150,43,.15); }
.icon-teal  { background: rgba(30,143,143,.15); }
.icon-green { background: rgba(90,173,90,.15); }
.band-text strong { display: block; font-size: 16px; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.band-text span   { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.5; }

/* ── FEATURES GRID ────────────────────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.feat-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 24px; border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm); transition: all .3s;
}
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.feat-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 18px; background: var(--gold-pale); }
.feat-card h3 { font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.feat-card p  { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* ── VIDEO SECTION ────────────────────────────────────────────── */
.videos-section { background: var(--navy); padding: 88px 5%; }
.videos-section .section-label { color: var(--gold-light); }
.videos-section .section-title { color: var(--white); }
.videos-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px; max-width: 1200px; margin: 0 auto;
}
.video-card {
  border-radius: var(--radius); overflow: hidden;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,150,43,.2);
  transition: all .3s; cursor: pointer;
}
.video-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 20px 48px rgba(0,0,0,.4); }
.video-thumb { position: relative; height: 220px; overflow: hidden; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.video-card:hover .video-thumb img { transform: scale(1.06); }
.play-overlay {
  position: absolute; inset: 0;
  background: rgba(13,27,62,.55);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.video-card:hover .play-overlay { background: rgba(13,27,62,.35); }
.play-btn-circle {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--grad-gold); display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--navy); box-shadow: 0 8px 32px rgba(201,150,43,.5);
  transition: transform .3s;
}
.video-card:hover .play-btn-circle { transform: scale(1.15); }
.video-info { padding: 22px; }
.video-cat  { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.video-info h3 { font-size: 18px; color: var(--white); margin-bottom: 8px; }
.video-info p  { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; }

/* youtube iframe container */
.yt-embed-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.yt-embed-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ── HOME GALLERY PREVIEW ─────────────────────────────────────── */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px; max-width: 1200px; margin: 0 auto 40px;
}
.gp-item {
  border-radius: var(--radius-sm); overflow: hidden;
  position: relative; cursor: pointer;
  box-shadow: var(--shadow-sm); transition: all .3s;
}
.gp-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gp-item.span2 { grid-column: span 2; }
.gp-item img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform .4s; }
.gp-item.span2 img { height: 260px; }
.gp-item:hover img { transform: scale(1.06); }
.gp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,62,.75) 0%, transparent 55%);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: flex-end; padding: 16px;
}
.gp-item:hover .gp-overlay { opacity: 1; }
.gp-overlay-text { color: var(--white); font-size: 14px; font-weight: 600; }
.gallery-preview-cta { text-align: center; }

/* ── WHY POINTS GRID ──────────────────────────────────────────── */
.why-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
.why-point {
  background: var(--off-white); border-radius: var(--radius-sm);
  padding: 20px; border-left: 4px solid var(--gold); transition: all .25s;
}
.why-point:hover { background: var(--white); box-shadow: var(--shadow-md); }
.wp-icon { font-size: 26px; margin-bottom: 8px; }
.why-point h4 { font-size: 15px; color: var(--navy); margin-bottom: 4px; }
.why-point p  { font-size: 13px; color: var(--text-mid); line-height: 1.5; }

/* ── TESTIMONIALS ─────────────────────────────────────────────── */
.testi-bg {
  background: linear-gradient(135deg, #0d1b3e 0%, #1a3a6e 100%);
}
.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; max-width: 1100px; margin: 0 auto;
}
.testi-card {
  background: rgba(255,255,255,.07); border-radius: var(--radius);
  padding: 28px; border: 1px solid rgba(201,150,43,.2);
  backdrop-filter: blur(4px); transition: all .3s;
}
.testi-card:hover { border-color: var(--gold); background: rgba(255,255,255,.1); }
.stars { color: var(--gold); font-size: 17px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-card p { color: rgba(255,255,255,.85); font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.author-av { width: 42px; height: 42px; border-radius: 50%; background: var(--grad-gold); display: flex; align-items: center; justify-content: center; font-size: 17px; color: var(--navy); font-weight: 700; flex-shrink: 0; }
.author-name { font-weight: 700; color: var(--white); font-size: 15px; }
.author-loc  { font-size: 12px; color: rgba(255,255,255,.55); }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-card.card-1, .hero-card.card-2, .hero-card.card-3 { display: none; }
  .band-grid { flex-direction: column; }
  .band-item { border-right: none; border-bottom: 1px solid rgba(201,150,43,.2); }
  .band-item:last-child { border-bottom: none; }
  .gallery-preview-grid { grid-template-columns: 1fr 1fr; }
  .gp-item.span2 { grid-column: span 1; }
  .why-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 20px 5% 50px; }
  .hero-headline { font-size: clamp(30px, 9vw, 46px); }
  .gallery-preview-grid { grid-template-columns: 1fr; }
  .stat-num { font-size: 24px; }
  .videos-grid { grid-template-columns: 1fr; }
}
