/* ============================================================
   BASE & RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

button, input, select, textarea, optgroup {
  font-family: 'Cairo', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-family: 'Cairo', sans-serif;
  direction: rtl;
}

body {
  background-color: #0B2435;
  color: #D7E5EA;
  overflow-x: hidden;
  line-height: 1.7;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

/* ============================================================
   HEADER
   ============================================================ */
#main-header {
  background: rgba(11, 36, 53, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(233, 216, 106, 0.1);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

#main-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  background: rgba(11, 36, 53, 0.98);
}

.nav-link {
  position: relative;
  color: #D7E5EA;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background: #E9D86A;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #E9D86A;
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile Menu */
#mobile-menu {
  display: none;
  background: rgba(11, 36, 53, 0.98);
  border-top: 1px solid rgba(233, 216, 106, 0.1);
}

#mobile-menu.open {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: #E9D86A;
  transition: all 0.3s ease;
  transform-origin: center;
}

#hamburger.open .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
#hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
}
#hamburger.open .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
#home {
  position: relative;
  min-height: 100vh;
  background-image: url('https://images.unsplash.com/photo-1586724237569-f3d0c1dee8c6?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,36,53,0.93) 0%, rgba(15,89,99,0.78) 60%, rgba(11,36,53,0.85) 100%);
}

/* Geometric accent shapes */
.geo-shape {
  position: absolute;
  opacity: 0.07;
  pointer-events: none;
}

.geo-shape-1 {
  bottom: 0;
  left: 5%;
  width: 220px;
  height: 300px;
  background: #E9D86A;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.geo-shape-2 {
  top: 10%;
  right: 3%;
  width: 160px;
  height: 200px;
  background: #A7F3F0;
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}

.geo-shape-3 {
  bottom: 15%;
  right: 15%;
  width: 80px;
  height: 80px;
  background: #E9D86A;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  opacity: 0.12;
  animation: floatShape 6s ease-in-out infinite;
}

.geo-shape-4 {
  top: 25%;
  left: 20%;
  width: 50px;
  height: 50px;
  border: 2px solid rgba(233, 216, 106, 0.4);
  border-radius: 4px;
  transform: rotate(45deg);
  animation: floatShape 8s ease-in-out infinite reverse;
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0) rotate(45deg); }
  50%       { transform: translateY(-15px) rotate(45deg); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(233, 216, 106, 0.12);
  border: 1px solid rgba(233, 216, 106, 0.35);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.82rem;
  color: #E9D86A;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #E9D86A 0%, #d4c34f 100%);
  color: #0B2435;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(233, 216, 106, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(233, 216, 106, 0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.4);
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  border-color: #E9D86A;
  color: #E9D86A;
  background: rgba(233, 216, 106, 0.06);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #123D52;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  border: 2px solid rgba(167, 243, 240, 0.3);
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-call:hover {
  background: #0F5963;
  border-color: #A7F3F0;
}

/* Video play button */
.video-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  transition: color 0.2s ease;
  background: none;
  border: none;
}

.video-play-btn:hover { color: #E9D86A; }

.play-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E9D86A, #d4c34f);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(233, 216, 106, 0.2);
  transition: box-shadow 0.3s ease;
  flex-shrink: 0;
}

.video-play-btn:hover .play-circle {
  box-shadow: 0 0 0 12px rgba(233, 216, 106, 0.3);
}

/* Scroll arrow */
.scroll-arrow {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
}

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

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #E9D86A;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #D7E5EA;
  max-width: 600px;
  line-height: 1.75;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #E9D86A, transparent);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
#trust-strip {
  background: #123D52;
  border-top: 1px solid rgba(233, 216, 106, 0.15);
  border-bottom: 1px solid rgba(233, 216, 106, 0.15);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0;
  color: #D7E5EA;
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-divider {
  width: 1px;
  height: 30px;
  background: rgba(233, 216, 106, 0.25);
  flex-shrink: 0;
}

/* ============================================================
   GLASS CARDS
   ============================================================ */
.glass-card {
  background: rgba(18, 61, 82, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(167, 243, 240, 0.12);
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  border-color: rgba(233, 216, 106, 0.25);
}

/* Service cards */
.service-card {
  background: linear-gradient(135deg, rgba(18,61,82,0.6) 0%, rgba(15,89,99,0.4) 100%);
  border: 1px solid rgba(167, 243, 240, 0.1);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #E9D86A, #A7F3F0);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 45px rgba(0,0,0,0.4);
  border-color: rgba(233, 216, 106, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(233,216,106,0.15), rgba(167,243,240,0.1));
  border: 1px solid rgba(233,216,106,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #E9D86A;
  flex-shrink: 0;
}

/* Why cards */
.why-card {
  background: rgba(18, 61, 82, 0.4);
  border: 1px solid rgba(15,89,99,0.5);
  border-radius: 14px;
  padding: 1.75rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, #E9D86A, #A7F3F0);
  transition: height 0.4s ease;
}

.why-card:hover {
  background: rgba(15, 89, 99, 0.4);
  border-color: rgba(233, 216, 106, 0.25);
  transform: translateY(-3px);
}

.why-card:hover::after {
  height: 100%;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about {
  background: linear-gradient(135deg, #0B2435 0%, #123D52 100%);
}

.about-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #0F5963 0%, #123D52 50%, #0B2435 100%);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(233,216,106,0.08) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(167,243,240,0.06) 0%, transparent 60%);
}

.about-building-icon {
  position: relative;
  z-index: 1;
  opacity: 0.6;
}

#about-video-trigger { cursor: pointer; }

.about-video-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.about-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 36, 53, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.3s ease;
}

#about-video-trigger:hover .about-video-overlay { background: rgba(11, 36, 53, 0.25); }
#about-video-trigger:hover .play-circle { transform: scale(1.1); }

.value-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(15,89,99,0.25);
  border: 1px solid rgba(233,216,106,0.15);
  border-right: 3px solid #E9D86A;
  border-radius: 0 12px 12px 0;
  margin-bottom: 0.85rem;
  transition: background 0.3s ease;
}

.value-card:hover {
  background: rgba(15,89,99,0.4);
}

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
#process {
  background: linear-gradient(135deg, #0B2435 0%, #0F5963 100%);
}

/* Desktop horizontal */
.timeline-desktop {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
}

.timeline-desktop::before {
  content: '';
  position: absolute;
  top: 28px;
  right: 10%;
  left: 10%;
  height: 2px;
  background: linear-gradient(90deg, #E9D86A, rgba(233,216,106,0.2));
  border-top: 2px dashed rgba(233,216,106,0.4);
  z-index: 0;
}

.timeline-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 0 0.5rem;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E9D86A, #d4c34f);
  color: #0B2435;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 20px rgba(233,216,106,0.4);
  flex-shrink: 0;
}

/* Mobile vertical */
.timeline-mobile {
  display: none;
  position: relative;
}

.timeline-mobile::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 27px;
  width: 2px;
  background: linear-gradient(180deg, #E9D86A, rgba(233,216,106,0.2));
}

.timeline-mobile-step {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-mobile-step:last-child { margin-bottom: 0; }

@media (max-width: 767px) {
  .timeline-desktop { display: none; }
  .timeline-mobile  { display: block; }
}

/* ============================================================
   SCENARIOS SECTION
   ============================================================ */
#scenarios {
  background: #123D52;
}

.scenario-card {
  background: rgba(11,36,53,0.5);
  border: 1px solid rgba(167,243,240,0.12);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.scenario-card:hover {
  background: rgba(15,89,99,0.4);
  border-color: rgba(233,216,106,0.25);
  transform: translateY(-3px);
}

.scenario-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(233,216,106,0.1);
  border: 1px solid rgba(233,216,106,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E9D86A;
  flex-shrink: 0;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
#stats {
  background: #0B2435;
  border-top: 1px solid rgba(233,216,106,0.1);
  border-bottom: 1px solid rgba(233,216,106,0.1);
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #E9D86A;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: #D7E5EA;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  background: rgba(233,216,106,0.15);
  margin: 1rem 0;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, #0F5963 0%, #0B2435 50%, #123D52 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(233,216,106,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact {
  background: linear-gradient(135deg, #0B2435 0%, #123D52 100%);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(167,243,240,0.08);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(15,89,99,0.4);
  border: 1px solid rgba(167,243,240,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A7F3F0;
  flex-shrink: 0;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(18,61,82,0.6);
  border: 1px solid rgba(167,243,240,0.15);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: #FFFFFF;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  direction: rtl;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(167,243,240,0.4);
  box-shadow: 0 0 0 3px rgba(167,243,240,0.08);
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(215,229,234,0.4); }

.form-select option {
  background: #123D52;
  color: #D7E5EA;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #D7E5EA;
  margin-bottom: 0.45rem;
}

#form-success {
  display: none;
  background: rgba(15,89,99,0.4);
  border: 1px solid rgba(167,243,240,0.3);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  animation: fadeInUp 0.5s ease;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #060F19;
  border-top: 1px solid rgba(233,216,106,0.1);
}

.footer-logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: #E9D86A;
  letter-spacing: -0.02em;
}

.footer-link {
  display: block;
  color: #D7E5EA;
  text-decoration: none;
  font-size: 0.88rem;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
  opacity: 0.75;
}

.footer-link:hover {
  color: #E9D86A;
  opacity: 1;
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  left: 1.5rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.35);
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  animation: pulseBadge 2.5s ease-in-out infinite;
}

.float-btn-call {
  background: #123D52;
  border: 2px solid rgba(167,243,240,0.3);
  color: #A7F3F0;
}

@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 4px 15px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 25px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ============================================================
   VIDEO MODAL
   ============================================================ */
/* ============================================================
   GOOGLE MAPS REVIEWS
   ============================================================ */
.gmaps-summary-panel {
  background: rgba(18, 61, 82, 0.5);
  border: 1px solid rgba(233, 216, 106, 0.15);
  border-radius: 20px;
  padding: 1.75rem;
}

.star-bar-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  direction: ltr;
}

.star-bar-label {
  font-size: 0.75rem;
  color: rgba(215, 229, 234, 0.55);
  width: 0.75rem;
  text-align: center;
  flex-shrink: 0;
}

.star-bar-track {
  flex: 1;
  background: rgba(11, 36, 53, 0.7);
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
}

.star-bar-fill {
  height: 100%;
  background: #FBBC05;
  border-radius: 999px;
  transition: width 1s ease;
}

.gmaps-link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.65rem 1rem;
  background: rgba(66, 133, 244, 0.12);
  border: 1px solid rgba(66, 133, 244, 0.3);
  border-radius: 10px;
  color: #7ab4f8;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.gmaps-link-btn:hover {
  background: rgba(66, 133, 244, 0.22);
  border-color: rgba(66, 133, 244, 0.5);
}

/* Review card */
.review-card {
  background: rgba(15, 89, 99, 0.18);
  border: 1px solid rgba(215, 229, 234, 0.1);
  border-radius: 16px;
  padding: 1.25rem 1.4rem;
  transition: border-color 0.25s ease, background 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-card:hover {
  border-color: rgba(233, 216, 106, 0.25);
  background: rgba(15, 89, 99, 0.3);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

.review-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

.review-count {
  font-size: 0.72rem;
  color: rgba(215, 229, 234, 0.45);
  margin: 0.15rem 0 0;
}

.review-stars-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.review-date {
  font-size: 0.75rem;
  color: rgba(215, 229, 234, 0.45);
}

.review-text {
  font-size: 0.85rem;
  color: rgba(215, 229, 234, 0.82);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.review-footer {
  display: flex;
  align-items: center;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(215, 229, 234, 0.07);
}

.review-helpful-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  background: transparent;
  border: 1px solid rgba(215, 229, 234, 0.15);
  border-radius: 999px;
  color: rgba(215, 229, 234, 0.5);
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Cairo', sans-serif;
}

.review-helpful-btn:hover {
  background: rgba(215, 229, 234, 0.08);
  border-color: rgba(215, 229, 234, 0.3);
  color: rgba(215, 229, 234, 0.8);
}

#video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.88);
  align-items: center;
  justify-content: center;
}

#video-modal.open {
  display: flex;
  animation: fadeIn 0.25s ease;
}

.modal-inner {
  background: #0B2435;
  border-radius: 20px;
  padding: 1.5rem;
  width: min(720px, 95vw);
  position: relative;
  border: 1px solid rgba(233,216,106,0.2);
}

.modal-close {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D7E5EA;
  font-size: 1.2rem;
  transition: background 0.2s ease;
  z-index: 10;
}

.modal-close:hover { background: rgba(255,255,255,0.16); }

.video-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0F5963, #123D52);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #D7E5EA;
  font-size: 0.95rem;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================================
   UTILITIES
   ============================================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.section-pad {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .section-pad { padding: 3.5rem 0; }
}

/* Prevent layout shifts from Tailwind purge interplay */
.w-full { width: 100%; }

/* Ensure header CTA button text stays readable */
.header-cta {
  background: linear-gradient(135deg, #E9D86A, #d4c34f);
  color: #0B2435 !important;
  font-weight: 700;
  padding: 0.55rem 1.25rem;
  border-radius: 7px;
  text-decoration: none;
  font-size: 0.88rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(233,216,106,0.35);
}
