:root {
  --red: #C0392B;
  --red-light: #E74C3C;
  --red-dark: #A93226;
  --white: #FFFFFF;
  --bg-light: #F8F8F8;
  --bg-card: #FFFFFF;
  --bg-alt: #F0F0F0;
  --text-primary: #1A1A1A;
  --text-secondary: #555555;
  --text-muted: #888888;
  --border: #E0E0E0;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--text-primary);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
}

a { text-decoration: none; transition: var(--transition); }
a:hover { color: var(--red-light); }

::selection { background: var(--red); color: var(--white); }

.section-padding { padding: 80px 0; }

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title .red-text { color: var(--red); }

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.red-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.red-divider-left {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  margin: 0 0 1.5rem;
  border-radius: 2px;
}

.text-red { color: var(--red) !important; }

.btn-red {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  font-weight: 600;
  padding: 12px 36px;
  border: none;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  font-family: var(--font-body);
}

.btn-red:hover {
  background: linear-gradient(135deg, var(--red-light), var(--red));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(192, 57, 43, 0.3);
}

.btn-red-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  transition: var(--transition);
  font-family: var(--font-body);
}

.btn-red-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

/* ====== NAVBAR ====== */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 15px 0;
  transition: var(--transition);
  border-bottom: 1px solid rgba(192, 57, 43, 0.1);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--red) !important;
  letter-spacing: 1px;
}

.navbar-brand span { color: var(--text-primary); }
.logo-img { height: 50px; width: auto; display: block; }
.footer-logo-img { max-height: 60px; width: auto; display: block; }

.nav-link {
  color: var(--text-secondary) !important;
  font-weight: 400;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px !important;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--red) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--red);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.navbar-toggler {
  border: 1px solid var(--red);
  padding: 8px;
}

.navbar-toggler:focus { box-shadow: 0 0 0 2px var(--red); }

.toggler-icon {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--red);
  margin: 5px 0;
  transition: var(--transition);
}

/* ====== HERO ====== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease;
  animation: kenBurns 12s ease-in-out infinite;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(192,57,43,0.55), rgba(192,57,43,0.3));
  pointer-events: none;
}

.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M20 0L40 20L20 40L0 20Z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content { text-align: center; max-width: 850px; padding: 0 20px; position: relative; z-index: 3; }

.hero-badge {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 3px;
  border-radius: 50px;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero h1 .highlight { color: var(--white); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.3); }

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero .btn-red { padding: 16px 48px; font-size: 1rem; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-15px); }
  60% { transform: translateX(-50%) translateY(-8px); }
}

/* ====== PAGE HERO (inner pages) ====== */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 20px 60px;
}

.page-hero-content {
  text-align: center;
  max-width: 750px;
  position: relative;
  z-index: 1;
}

.page-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero-content h1 .highlight {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.3);
}

.page-hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .page-hero { min-height: 40vh; padding: 100px 20px 40px; }
  .page-hero-content h1 { font-size: 2.2rem; }
}

@media (max-width: 576px) {
  .page-hero-content h1 { font-size: 1.7rem; }
}

/* ====== ABOUT ====== */
.about-section { background: var(--bg-light); position: relative; }

.about-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  transition: var(--transition);
}

.about-card:hover { border-color: var(--red); box-shadow: 0 10px 40px rgba(192,57,43,0.08); }

.about-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(192,57,43,0.12), rgba(192,57,43,0.04));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--red);
  margin-bottom: 1.5rem;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-secondary);
}

.about-video-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  aspect-ratio: 16 / 10;
}

.about-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192,57,43,0.15), rgba(0,0,0,0.1));
  pointer-events: none;
}

.video-play-btn,
.video-mute-btn {
  position: absolute;
  z-index: 2;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.video-play-btn:hover,
.video-mute-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.1);
}

.video-play-btn {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  font-size: 1.2rem;
  transition: all 0.3s ease, opacity 0.8s ease;
}

.video-play-btn.fade-out {
  opacity: 0;
  pointer-events: none;
}

.about-video-wrapper:hover .video-play-btn.fade-out {
  opacity: 1;
  pointer-events: auto;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-mute-btn {
  bottom: 12px;
  right: 12px;
}

/* ====== EXPERIENCE SECTION ====== */
.experience-section {
  background: var(--bg-light);
  position: relative;
}

.experience-card {
  padding: 30px 0;
}

.experience-card h3 {
  font-size: 1.6rem;
}

.experience-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.experience-list li {
  padding: 10px 0;
  color: var(--text-secondary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.experience-list li i {
  color: var(--red);
  font-size: 1.1rem;
}

.experience-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.experience-image {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.experience-image-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--red);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ====== HOW IT WORKS ====== */
.how-section {
  background: linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)), url('../images/WhatsApp%20Image%202026-07-05%20at%2003.06.56%20(1).jpeg') center center / cover no-repeat fixed;
  position: relative;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.step-card:hover {
  border-color: var(--red);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(192, 57, 43, 0.08);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  font-family: var(--font-heading);
}

.step-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.step-connector { display: none; }

@media (min-width: 992px) {
  .step-connector {
    display: block;
    position: absolute;
    top: 40px;
    right: -30px;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--red), transparent);
  }
}

/* ====== GALLERY PAGE ====== */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.gallery-page-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  aspect-ratio: 3 / 4;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-decoration: none;
}

.gallery-page-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(192,57,43,0.2);
  text-decoration: none;
}

.gallery-page-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-page-item:hover img {
  transform: scale(1.08);
}

.gallery-page-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(192,57,43,0.35), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-page-item:hover .gallery-page-overlay {
  opacity: 1;
}

.gallery-page-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.gallery-page-badge {
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 50px;
  font-weight: 500;
}

.gallery-page-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.gallery-page-item:hover .gallery-page-icon {
  background: var(--red);
}

/* Lightbox modal */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: pointer;
}

.gallery-modal.show {
  display: flex;
}

.gallery-modal-content {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  object-fit: contain;
  cursor: default;
}

.gallery-modal-close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #fff;
  font-size: 3rem;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}

.gallery-modal-close:hover {
  color: var(--red);
}

@media (max-width: 768px) {
  .gallery-page-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
  .gallery-modal { padding: 20px; }
  .gallery-modal-close { top: 15px; right: 20px; font-size: 2rem; }
}

/* ====== LADIES / LOCATIONS ====== */
.ladies-section {
  background: var(--bg-light);
  overflow: hidden;
}

/* ---- Gallery ---- */
.gallery-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.gallery-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 10px 0;
}

.gallery-track-left {
  animation: scrollLeft 50s linear infinite;
  margin-bottom: 16px;
}

.gallery-track-right {
  animation: scrollRight 55s linear infinite;
}

.gallery-wrapper:hover .gallery-track-left,
.gallery-wrapper:hover .gallery-track-right {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.gallery-item {
  flex: 0 0 200px;
  height: 250px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 50px rgba(192,57,43,0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 16px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: #fff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  background: var(--red);
  padding: 4px 14px;
  border-radius: 50px;
  display: inline-block;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.country-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 18px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.country-badge:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(192,57,43,0.08);
}

.allowance-card {
  background: linear-gradient(135deg, rgba(192,57,43,0.08), rgba(192,57,43,0.02));
  border: 1px solid var(--red);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  margin-top: 2rem;
}

.allowance-amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--red);
  font-weight: 700;
}

.allowance-label {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
}

.ladies-description {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 30px;
  margin-top: 2rem;
  border-left: 4px solid var(--red);
  line-height: 1.9;
  color: var(--text-secondary);
  font-size: 0.95rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

/* ====== SAFETY ====== */
.safety-section { background: var(--white); position: relative; }

.safety-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.safety-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(192,57,43,0.1), rgba(192,57,43,0.03));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--red);
  margin: 0 auto 1.5rem;
}

.safety-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-secondary);
}

.safety-note {
  background: rgba(192, 57, 43, 0.06);
  border: 1px solid rgba(192, 57, 43, 0.15);
  border-radius: 12px;
  padding: 20px 30px;
  margin-top: 2rem;
  color: var(--red-dark);
  font-weight: 500;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ====== REGISTRATION & PAYMENT ====== */
.reg-section { background: var(--bg-light); }

.payment-info {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 2rem;
}

.payment-info p {
  line-height: 1.9;
  font-size: 1rem;
  color: var(--text-secondary);
}

.payment-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--red);
  border: 1px solid var(--red);
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  min-width: 200px;
  justify-content: center;
}

.payment-btn:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(192, 57, 43, 0.2);
}

.payment-btn i { font-size: 1.2rem; }

.alt-payment {
  text-align: center;
  margin-top: 1.5rem;
  padding: 20px;
  background: rgba(192, 57, 43, 0.04);
  border-radius: 12px;
  border: 1px dashed rgba(192, 57, 43, 0.25);
  color: var(--text-muted);
}

/* ====== FORM ====== */
.reg-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}

.reg-form .form-label {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.reg-form .form-control,
.reg-form .form-select {
  background: var(--bg-light);
  border: 1px solid var(--border);
  color: var(--text-primary);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 0.95rem;
  transition: var(--transition);
}

.reg-form .form-control:focus,
.reg-form .form-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
  background: var(--white);
  color: var(--text-primary);
}

.reg-form .form-control::placeholder { color: var(--text-muted); }

.reg-form textarea.form-control { min-height: 120px; resize: vertical; }

.reg-form .btn-red { width: 100%; padding: 16px; font-size: 1rem; }

/* ====== TESTIMONIALS ====== */
.testimonials-section { background: var(--white); }

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  transition: var(--transition);
  height: 100%;
}

.testimonial-card:hover {
  border-color: var(--red);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(192,57,43,0.06);
}

.testimonial-stars {
  color: var(--red);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  line-height: 1.8;
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  font-family: var(--font-heading);
}

.testimonial-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ====== FAQ ====== */
.faq-section { background: var(--bg-light); }

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-button {
  background: var(--bg-card);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  padding: 20px 25px;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: rgba(192, 57, 43, 0.04);
  color: var(--red);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23C0392B' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-body {
  padding: 0 25px 20px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ====== CONTACT / FOOTER ====== */
.contact-section { background: var(--white); }

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  transition: var(--transition);
}

.contact-card:hover { border-color: var(--red); box-shadow: 0 10px 40px rgba(192,57,43,0.06); }

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(192, 57, 43, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--red);
  margin-bottom: 1rem;
}

.contact-card h5 { font-size: 1rem; margin-bottom: 0.5rem; }

.contact-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

footer {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  padding: 40px 0 20px;
}

footer .brand-footer {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--red);
  font-weight: 700;
}

footer .brand-footer span { color: var(--text-primary); }

footer p { color: var(--text-muted); font-size: 0.85rem; }

.social-link {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(192, 57, 43, 0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.footer-links { list-style: none; padding: 0; margin: 0; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--red); padding-left: 5px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
}

/* ====== WHATSAPP FLOATING ====== */
.whatsapp-wrapper {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 12px;
}

.whatsapp-label {
  position: absolute;
  right: 76px;
  bottom: 0;
  height: 40px;
  pointer-events: none;
}

.whatsapp-label span {
  position: absolute;
  right: 0;
  bottom: 0;
  white-space: nowrap;
  background: white;
  color: #075E54;
  padding: 8px 16px;
  border-radius: 12px 12px 2px 12px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  opacity: 0;
  transform-origin: right center;
  animation: slideFromIcon 10s infinite;
}

.whatsapp-label span:nth-child(1) { animation-delay: 0s; }
.whatsapp-label span:nth-child(2) { animation-delay: 2.5s; }
.whatsapp-label span:nth-child(3) { animation-delay: 5s; }
.whatsapp-label span:nth-child(4) { animation-delay: 7.5s; }

@keyframes slideFromIcon {
  0% { opacity: 0; transform: scale(0.2); }
  6% { opacity: 1; transform: scale(1); }
  20% { opacity: 1; transform: scale(1); }
  25% { opacity: 0; transform: scale(0.8) translateX(-15px); }
  100% { opacity: 0; transform: scale(0.8) translateX(-15px); }
}

.whatsapp-float {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: bounce-whatsapp 2s ease-in-out infinite;
  flex-shrink: 0;
  cursor: pointer;
}

.whatsapp-float i {
  animation: ring-whatsapp 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  color: white;
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
}
.whatsapp-float:hover i {
  animation: none;
}
.whatsapp-float:hover {
  animation: none;
  transform: scale(1.1);
}

@keyframes bounce-whatsapp {
  0%, 100% { transform: translateY(0); box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4); }
  25% { transform: translateY(-8px); box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5); }
  50% { transform: translateY(0); box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4); }
  75% { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45); }
}

@keyframes ring-whatsapp {
  0%, 100% { transform: rotate(0deg) scale(1); }
  10% { transform: rotate(-15deg) scale(1.1); }
  20% { transform: rotate(10deg) scale(1.1); }
  30% { transform: rotate(-10deg) scale(1.05); }
  40% { transform: rotate(5deg) scale(1); }
  50%, 100% { transform: rotate(0deg) scale(1); }
}

/* ====== TELEGRAM FLOATING ====== */
.telegram-wrapper {
  position: fixed;
  bottom: 95px;
  right: 25px;
  z-index: 998;
}

.telegram-float {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0088CC, #006699);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 5px 25px rgba(0, 136, 204, 0.4);
  transition: var(--transition);
  animation: bounce-telegram 2s ease-in-out infinite;
  flex-shrink: 0;
  cursor: pointer;
}

.telegram-float i {
  animation: none;
}

.telegram-float:hover {
  color: white;
  box-shadow: 0 8px 35px rgba(0, 136, 204, 0.5);
}
.telegram-float:hover {
  animation: none;
  transform: scale(1.1);
}

@keyframes bounce-telegram {
  0%, 100% { transform: translateY(0); box-shadow: 0 5px 25px rgba(0, 136, 204, 0.4); }
  25% { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(0, 136, 204, 0.5); }
  50% { transform: translateY(0); box-shadow: 0 5px 25px rgba(0, 136, 204, 0.4); }
  75% { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0, 136, 204, 0.45); }
}

/* ====== SCROLL TO TOP ====== */
.scroll-top {
  position: fixed;
  bottom: 170px;
  right: 25px;
  z-index: 997;
  width: 50px;
  height: 50px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 5px 25px rgba(192, 57, 43, 0.3);
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(192, 57, 43, 0.4);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 991px) {
  .hero h1 { font-size: 2.5rem; }
  .section-title { font-size: 2rem; }
  .navbar-collapse {
    background: rgba(255,255,255,0.98);
    padding: 20px;
    border-radius: 12px;
    margin-top: 10px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  }
}

@media (max-width: 768px) {
  .hero { min-height: 90vh; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .hero-badge { font-size: 0.65rem; }
  .section-padding { padding: 50px 0; }
  .section-title { font-size: 1.7rem; }
  .reg-form { padding: 25px; }
  .payment-btn { width: 100%; }
  .country-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .allowance-amount { font-size: 2rem; }
  .gallery-item { flex: 0 0 160px; height: 200px; }
  .gallery-track-left { animation-duration: 35s; }
  .gallery-track-right { animation-duration: 40s; }
}

@media (max-width: 576px) {
  .hero h1 { font-size: 1.6rem; }
  .hero .btn-red { padding: 14px 32px; font-size: 0.9rem; }
  .step-card { padding: 30px 20px; }
  .about-card { padding: 25px; }
  .testimonial-card { padding: 25px; }
  .gallery-item { flex: 0 0 130px; height: 170px; border-radius: 12px; }
  .gallery-track-left { animation-duration: 25s; }
  .gallery-track-right { animation-duration: 30s; }
}

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

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
