/* =============================================================
   Jodhidam & Vasiyam – Main Stylesheet
   Mobile-first, CSS variables, no inline styles
   ============================================================= */

/* ---------------------------------------------------------------
   1. CSS Custom Properties (Design Tokens)
--------------------------------------------------------------- */
:root {
  /* Colour palette */
  --clr-navy-900: #050a1a;
  --clr-navy-800: #0a1128;
  --clr-navy-700: #0f1a3d;
  --clr-navy-600: #142050;
  --clr-navy-500: #1a2a6c;
  --clr-gold-400: #f5c842;
  --clr-gold-500: #d4a017;
  --clr-gold-600: #b8860b;
  --clr-gold-glow: rgba(212, 160, 23, 0.35);
  --clr-white: #ffffff;
  --clr-white-70: rgba(255, 255, 255, 0.70);
  --clr-white-30: rgba(255, 255, 255, 0.30);
  --clr-white-10: rgba(255, 255, 255, 0.10);
  --clr-whatsapp: #25d366;
  --clr-whatsapp-dk: #1ebe5d;
  --clr-overlay: rgba(5, 10, 26, 0.78);

  /* Typography */
  --font-display: 'Cinzel', 'Georgia', serif;
  --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing scale */
  --space-xs: 0.25rem;
  --space-sm: 0.50rem;
  --space-md: 1.00rem;
  --space-lg: 1.50rem;
  --space-xl: 2.00rem;
  --space-2xl: 3.00rem;
  --space-3xl: 4.00rem;
  --space-4xl: 6.00rem;

  /* Radii */
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-xl: 2.00rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.40);
  --shadow-glow: 0 0 24px var(--clr-gold-glow), 0 0 60px var(--clr-gold-glow);
  --shadow-btn: 0 4px 14px rgba(0, 0, 0, 0.40);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.30s ease;
  --transition-slow: 0.55s ease;

  /* Container */
  --container-max: 1160px;
  --container-pad: 1.25rem;
}

/* ---------------------------------------------------------------
   2. Reset & Base
--------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--clr-navy-900);
  color: var(--clr-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Skip link (accessibility) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--clr-gold-400);
  color: var(--clr-navy-900);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 10000;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 1rem;
}

/* ---------------------------------------------------------------
   3. Utility
--------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--clr-gold-400);
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: var(--clr-white-70);
  margin-top: var(--space-sm);
}

.section-divider {
  width: 4rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-gold-400), transparent);
  margin: var(--space-md) auto 0;
  border-radius: var(--radius-full);
}

/* Icons & Colors Helper Classes */
.text-gold {
  color: var(--clr-gold-400) !important;
}

i[class^="ri-"] {
  display: inline-block;
  line-height: 1;
  vertical-align: -0.1em;
}

.badge i {
  color: var(--clr-gold-400);
  font-size: 1rem;
}

.service-card__icon i {
  color: var(--clr-gold-400);
}

.trust-card__icon i {
  color: var(--clr-gold-400);
}


/* ---------------------------------------------------------------
   4. Buttons
--------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.025em;
  text-align: center;
  cursor: pointer;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-normal),
    background-color var(--transition-normal),
    filter var(--transition-normal);
  user-select: none;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--clr-gold-400);
  outline-offset: 3px;
}

.btn:active {
  transform: scale(0.97);
}

/* Primary – gold */
.btn--primary {
  background: linear-gradient(135deg, var(--clr-gold-400) 0%, var(--clr-gold-500) 100%);
  color: var(--clr-navy-900);
  box-shadow: var(--shadow-btn);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #ffe066 0%, var(--clr-gold-400) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px var(--clr-gold-glow);
}

/* WhatsApp – green */
.btn--whatsapp {
  background: linear-gradient(135deg, var(--clr-whatsapp) 0%, var(--clr-whatsapp-dk) 100%);
  color: var(--clr-white);
  box-shadow: var(--shadow-btn);
}

.btn--whatsapp:hover {
  background: linear-gradient(135deg, #2ef877 0%, var(--clr-whatsapp) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
}

/* Glow variant */
.btn--glow.btn--primary:hover {
  box-shadow: var(--shadow-glow);
}

.btn--glow.btn--whatsapp:hover {
  box-shadow: 0 0 24px rgba(37, 211, 102, 0.5), 0 0 60px rgba(37, 211, 102, 0.25);
}

/* Large variant */
.btn--lg {
  padding: 1rem 2.25rem;
  font-size: clamp(1rem, 3vw, 1.15rem);
}

/* Icon within button */
.btn__icon {
  font-size: 1.2em;
}

/* CTA group */
.cta-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

/* ---------------------------------------------------------------
   5. Hero Section
--------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) var(--container-pad) var(--space-2xl);
  background:
    var(--clr-overlay),
    url('../images/gallery4.jpg') center center / cover no-repeat;
  overflow: hidden;
}

/* Dark overlay gradient */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(26, 42, 108, 0.45) 0%, transparent 70%);
  pointer-events: none;
}

/* Animated floating particles */
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__particles span {
  position: absolute;
  display: block;
  width: 3px;
  height: 3px;
  background: var(--clr-gold-400);
  border-radius: 50%;
  opacity: 0;
  animation: particle-float 8s infinite ease-in;
}

.hero__particles span:nth-child(1) {
  left: 8%;
  animation-delay: 0s;
  animation-duration: 7s;
}

.hero__particles span:nth-child(2) {
  left: 20%;
  animation-delay: 1.5s;
  animation-duration: 9s;
}

.hero__particles span:nth-child(3) {
  left: 35%;
  animation-delay: 3s;
  animation-duration: 6s;
}

.hero__particles span:nth-child(4) {
  left: 50%;
  animation-delay: 0.8s;
  animation-duration: 11s;
}

.hero__particles span:nth-child(5) {
  left: 65%;
  animation-delay: 2.2s;
  animation-duration: 8s;
}

.hero__particles span:nth-child(6) {
  left: 75%;
  animation-delay: 4s;
  animation-duration: 7s;
}

.hero__particles span:nth-child(7) {
  left: 85%;
  animation-delay: 1s;
  animation-duration: 10s;
}

.hero__particles span:nth-child(8) {
  left: 15%;
  animation-delay: 3.5s;
  animation-duration: 9s;
}

.hero__particles span:nth-child(9) {
  left: 45%;
  animation-delay: 5s;
  animation-duration: 7s;
}

.hero__particles span:nth-child(10) {
  left: 92%;
  animation-delay: 2s;
  animation-duration: 8s;
}

@keyframes particle-float {
  0% {
    bottom: -5%;
    opacity: 0;
    transform: translateX(0) scale(1);
  }

  20% {
    opacity: 0.9;
  }

  80% {
    opacity: 0.6;
  }

  100% {
    bottom: 110%;
    opacity: 0;
    transform: translateX(30px) scale(1.5);
  }
}

/* Brand name in hero */
.hero__brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  letter-spacing: 0.15em;
  color: var(--clr-gold-400);
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.hero__brand-icon {
  font-size: 0.75em;
  opacity: 0.8;
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero__tagline {
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  letter-spacing: 0.08em;
  color: var(--clr-gold-400);
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fade-up 0.7s 0.2s forwards ease;
}

.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.25;
  color: var(--clr-white);
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
  opacity: 0;
  animation: fade-up 0.7s 0.4s forwards ease;
}

.hero__heading-highlight {
  color: var(--clr-gold-400);
  display: block;
  margin-top: var(--space-sm);
  text-shadow: 0 0 24px var(--clr-gold-glow);
}

.hero__subtext {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: var(--clr-white-70);
  margin-bottom: var(--space-xl);
  letter-spacing: 0.04em;
  opacity: 0;
  animation: fade-up 0.7s 0.6s forwards ease;
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  opacity: 0;
  animation: fade-up 0.7s 0.8s forwards ease;
}

.hero__cta-group .btn {
  width: 100%;
  max-width: 320px;
}

/* Hero trust badges */
.hero__trust-badges {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 290px;
  margin-inline: auto;
  gap: var(--space-sm);
  opacity: 0;
  animation: fade-up 0.7s 1s forwards ease;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3em;
  background: var(--clr-white-10);
  border: 1px solid var(--clr-white-30);
  border-radius: var(--radius-full);
  padding: 0.4rem 0.85rem;
  font-size: 0.82rem;
  color: var(--clr-white-70);
  backdrop-filter: blur(6px);
}

/* Scroll dot */
.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: none;
  /* Hide on mobile/screens under 768px to prevent overlap */
}

.hero__scroll-dot {
  width: 28px;
  height: 44px;
  border: 2px solid var(--clr-white-30);
  border-radius: var(--radius-full);
  position: relative;
}

.hero__scroll-dot::after {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background: var(--clr-gold-400);
  border-radius: 50%;
  margin: 6px auto 0;
  animation: scroll-bounce 1.8s infinite ease;
}

@keyframes scroll-bounce {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(18px);
    opacity: 0;
  }
}

/* ---------------------------------------------------------------
   6. Services Section
--------------------------------------------------------------- */
.services {
  padding: var(--space-4xl) 0;
  background: linear-gradient(180deg, var(--clr-navy-800) 0%, var(--clr-navy-700) 100%);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-gold-500), transparent);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: var(--space-xl);
}

.service-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(212, 160, 23, 0.20);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-card);
  transition:
    transform var(--transition-normal),
    border-color var(--transition-normal),
    box-shadow var(--transition-normal);
  cursor: default;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 160, 23, 0.65);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 160, 23, 0.2);
}

.service-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  display: block;
  transition: transform var(--transition-normal);
}

.service-card:hover .service-card__icon {
  transform: scale(1.15) rotate(-5deg);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--clr-gold-400);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.service-card__desc {
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  color: var(--clr-white-70);
  line-height: 1.6;
}

/* ---------------------------------------------------------------
   7. Gallery (Shared – Image & Video)
--------------------------------------------------------------- */
.gallery-section,
.video-section {
  padding: var(--space-4xl) 0;
}

.gallery-section {
  background: var(--clr-navy-900);
}

.video-section {
  background: linear-gradient(180deg, var(--clr-navy-700) 0%, var(--clr-navy-800) 100%);
}

/* Gallery wrapper: positions nav buttons outside the track */
.gallery-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

/* Scroll container */
.gallery-track-outer {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.gallery-track-outer:active {
  cursor: grabbing;
}

.gallery-track {
  display: flex;
  gap: var(--space-lg);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

/* Individual item */
.gallery-item {
  flex: 0 0 auto;
}

/* Image items */
.gallery-section .gallery-item {
  width: clamp(240px, 72vw, 380px);
}

.gallery-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(212, 160, 23, 0.20);
  transition: transform var(--transition-normal), filter var(--transition-normal);
}

.gallery-img:hover {
  transform: scale(1.025);
  filter: brightness(1.12);
}

/* Figcaption (visually hidden, for screen readers) */
figure figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* Navigation buttons */
.gallery-nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid rgba(212, 160, 23, 0.40);
  color: var(--clr-gold-400);
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  z-index: 2;
}

.gallery-nav:hover {
  background: rgba(212, 160, 23, 0.30);
  transform: scale(1.08);
  box-shadow: 0 0 14px var(--clr-gold-glow);
}

.gallery-nav:focus-visible {
  outline: 3px solid var(--clr-gold-400);
  outline-offset: 3px;
}

.gallery-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

/* Dots */
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--space-md);
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-white-30);
  border: none;
  cursor: pointer;
  transition: background var(--transition-normal), transform var(--transition-normal), width var(--transition-normal);
  padding: 0;
}

.gallery-dot.active {
  background: var(--clr-gold-400);
  width: 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 8px var(--clr-gold-glow);
}

.gallery-dot:focus-visible {
  outline: 2px solid var(--clr-gold-400);
  outline-offset: 2px;
}

/* ---------------------------------------------------------------
   8. Video cards
--------------------------------------------------------------- */
.video-section .gallery-item {
  width: clamp(260px, 75vw, 400px);
}

.video-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 160, 23, 0.18);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.55);
}

.video-thumb-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--clr-navy-800);
  overflow: hidden;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yt-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Play button overlay */
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  transition: background var(--transition-fast);
}

.video-play-btn:hover {
  background: rgba(0, 0, 0, 0.55);
}

.video-play-btn:focus-visible {
  outline: 3px solid var(--clr-gold-400);
  outline-offset: -3px;
}

.play-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--clr-gold-400), var(--clr-gold-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--clr-navy-900);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  text-indent: 4px;
  /* optical centering of ▶ */
}

.video-play-btn:hover .play-icon {
  transform: scale(1.12);
  box-shadow: 0 0 20px var(--clr-gold-glow);
}

.video-caption {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.88rem;
  color: var(--clr-white-70);
  text-align: center;
  font-family: var(--font-display);
}

/* Video section CTA block */
.video-section__cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

.video-cta-text {
  font-size: clamp(1rem, 3vw, 1.3rem);
  color: var(--clr-white-70);
  margin-bottom: var(--space-lg);
  font-family: var(--font-display);
}

/* ---------------------------------------------------------------
   9. Video Modal (Lightbox)
--------------------------------------------------------------- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: all;
}

.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(6px);
}

.video-modal__content {
  position: relative;
  z-index: 1;
  width: min(90vw, 900px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.7);
  background: var(--clr-navy-900);
  animation: modal-in 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.video-modal.is-open .video-modal__content {
  animation: modal-in 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes modal-in {
  from {
    transform: scale(0.85);
  }

  to {
    transform: scale(1);
  }
}

.video-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.6);
  color: var(--clr-white);
  font-size: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.video-modal__close:hover {
  background: rgba(212, 160, 23, 0.5);
}

.video-modal__close:focus-visible {
  outline: 3px solid var(--clr-gold-400);
}

.video-modal__player {
  width: 100%;
  aspect-ratio: 16/9;
}

.video-modal__player video,
.video-modal__player iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------------------------------------------------------------
   10. Trust Section
--------------------------------------------------------------- */
.trust-section {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--clr-navy-900) 0%, #0d1535 50%, var(--clr-navy-900) 100%);
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: '✦';
  position: absolute;
  font-size: 20rem;
  color: rgba(212, 160, 23, 0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  font-family: var(--font-display);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr));
  gap: var(--space-xl);
}

.trust-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 160, 23, 0.20);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-md);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 160, 23, 0.55);
}

.trust-card__icon {
  font-size: 2.2rem;
  margin-bottom: var(--space-md);
}

.trust-card__count {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 900;
  color: var(--clr-gold-400);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.trust-card__label {
  font-size: 0.95rem;
  color: var(--clr-white);
  font-weight: 600;
}

.trust-card__sub {
  font-size: 0.78rem;
  color: var(--clr-white-70);
  margin-top: 0.2rem;
}

/* ---------------------------------------------------------------
   11. CTA Section
--------------------------------------------------------------- */
.cta-section {
  position: relative;
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--clr-navy-600) 0%, var(--clr-navy-500) 50%, var(--clr-navy-600) 100%);
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-section__bg span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--clr-gold-400);
  border-radius: 50%;
  animation: twinkle 3s infinite ease-in-out;
}

.cta-section__bg span:nth-child(1) {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.cta-section__bg span:nth-child(2) {
  top: 70%;
  left: 80%;
  animation-delay: 0.5s;
}

.cta-section__bg span:nth-child(3) {
  top: 40%;
  left: 55%;
  animation-delay: 1s;
}

.cta-section__bg span:nth-child(4) {
  top: 80%;
  left: 20%;
  animation-delay: 1.5s;
}

.cta-section__bg span:nth-child(5) {
  top: 20%;
  left: 85%;
  animation-delay: 2s;
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0.2;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(2);
  }
}

.cta-section__content {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--clr-gold-400);
  line-height: 1.4;
  margin-bottom: var(--space-md);
}

.cta-section__sub {
  color: var(--clr-white-70);
  font-size: 0.95rem;
  margin-bottom: var(--space-xl);
}

/* ---------------------------------------------------------------
   12. Footer
--------------------------------------------------------------- */
.site-footer {
  background: var(--clr-navy-900);
  border-top: 1px solid rgba(212, 160, 23, 0.20);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--clr-gold-400);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-sm);
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--clr-white-70);
  margin-bottom: var(--space-md);
  letter-spacing: 0.04em;
}

.footer__desc {
  font-size: 0.88rem;
  color: var(--clr-white-70);
  line-height: 1.7;
}

.footer__col-heading {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--clr-gold-400);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  font-size: 0.88rem;
  color: var(--clr-white-70);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--clr-gold-400);
}

.footer__link:focus-visible {
  outline: 2px solid var(--clr-gold-400);
  outline-offset: 2px;
  border-radius: 2px;
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer__contact-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: var(--clr-white-70);
  transition: color var(--transition-fast);
  font-weight: 600;
}

.footer__contact-link:hover {
  color: var(--clr-gold-400);
}

.footer__contact-link:focus-visible {
  outline: 2px solid var(--clr-gold-400);
  outline-offset: 2px;
  border-radius: 2px;
}

.footer__contact-icon {
  font-size: 1.1rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-lg);
  text-align: center;
}

.footer__copy {
  font-size: 0.85rem;
  color: var(--clr-white-70);
}

.footer__disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: var(--space-xs);
}

/* ---------------------------------------------------------------
   13. Scroll-reveal animation
--------------------------------------------------------------- */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------------------------
   14. Focus-visible global
--------------------------------------------------------------- */
:focus-visible {
  outline: 3px solid var(--clr-gold-400);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ---------------------------------------------------------------
   14b. Mobile Sticky CTA Bar Styling
--------------------------------------------------------------- */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: rgba(5, 10, 26, 0.95);
  border-top: 2px solid var(--clr-gold-500);
  display: flex;
  backdrop-filter: blur(12px);
  z-index: 8000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  transition: transform var(--transition-normal);
}

.mobile-cta-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--clr-white);
  transition: background-color var(--transition-fast);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.mobile-cta-bar__btn--call {
  background: linear-gradient(135deg, var(--clr-navy-700) 0%, var(--clr-navy-600) 100%);
  border-right: 1px solid rgba(212, 160, 23, 0.25);
}

.mobile-cta-bar__btn--call:active {
  background: var(--clr-navy-500);
}

.mobile-cta-bar__btn--wa {
  background: linear-gradient(135deg, var(--clr-whatsapp) 0%, var(--clr-whatsapp-dk) 100%);
}

.mobile-cta-bar__btn--wa:active {
  background: #158c44;
}

/* Add padding to body on mobile screen so footer content isn't blocked by the sticky bar */
@media (max-width: 767px) {
  body {
    padding-bottom: 60px;
  }
}

/* Hide the sticky CTA bar on desktop/tablet */
@media (min-width: 768px) {
  .mobile-cta-bar {
    display: none;
  }
}

/* ---------------------------------------------------------------
   15. Responsive – tablet and up
--------------------------------------------------------------- */
@media (min-width: 600px) {
  .hero__cta-group {
    flex-direction: row;
    justify-content: center;
  }

  .hero__cta-group .btn {
    width: auto;
    max-width: none;
  }

  .hero__trust-badges {
    flex-direction: row;
    justify-content: center;
    max-width: none;
  }
}

@media (min-width: 768px) {
  :root {
    --container-pad: 2rem;
  }

  .hero__scroll {
    display: block;
  }

  .gallery-section .gallery-item {
    width: 380px;
  }

  .video-section .gallery-item {
    width: 400px;
  }

  .gallery-nav {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
  }

  .gallery-img {
    height: 290px;
  }
}

@media (min-width: 1024px) {
  :root {
    --container-pad: 2.5rem;
  }
}

/* ---------------------------------------------------------------
   16. Reduced Motion
--------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero__tagline,
  .hero__heading,
  .hero__subtext,
  .hero__cta-group,
  .hero__trust-badges {
    opacity: 1;
    animation: none;
  }
}

/* ---------------------------------------------------------------
   17. Print
--------------------------------------------------------------- */
@media print {

  .hero__particles,
  .hero__scroll,
  .video-modal,
  .gallery-nav {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }
}