:root {
  /* Soft Luxury Light Theme Palette */
  --bg-main: #f9f9f9;
  --bg-secondary: #f0f0f0;
  --bg-card: #ffffff;

  --text-main: #2c3e50;
  --text-muted: #677586;

  /* Muted Gold & Corporate Navy */
  --gold-primary: #C8AD7F;
  /* Much softer, sand-gold */
  --gold-dark: #A0885C;
  --gold-light: #E6DCC5;
  --gold-gradient: linear-gradient(135deg, #C8AD7F 0%, #D4BC8E 100%);

  --accent-navy: #1a2533;

  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 25px 50px rgba(0, 0, 0, 0.12);

  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 10px;

  --container: min(1280px, 92vw);
  --font-tajawal: "Tajawal", sans-serif;

  --header-height: 90px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-tajawal);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.8;
  overflow-x: hidden;
}

/* Background Effects */
.page-glow {
  display: none;
  /* Removed for cleaner look with images */
}

/* Typography Utilities */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5em;
  color: var(--accent-navy);
}

.grad-text {
  color: var(--gold-dark);
  /* Solid color instead of gradient for softer look */
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
  display: inline-block;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.section-spacing {
  padding: 90px 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--accent-navy);
  color: var(--gold-primary);
  border-radius: 12px;
  font-size: 1.4rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  color: var(--accent-navy);
  font-size: 1.1rem;
  font-weight: 800;
}

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

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s;
  position: relative;
}

.nav a:not(.nav-cta):hover {
  color: var(--gold-primary);
}

.nav .nav-cta {
  color: #fff;
  background: var(--accent-navy);
  padding: 10px 24px;
  border-radius: 6px;
  /* Less rounded, more professional */
  font-weight: 600;
  transition: all 0.3s;
}

.nav .nav-cta:hover {
  background: #2c3e50;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--accent-navy);
  border-radius: 4px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  /* Taller hero */
  display: flex;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 60px;
  overflow: hidden;
  background: #0f172a;
  /* Fallback */
}

/* Hero Background Image */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
  /* Darken image */
  mix-blend-mode: luminosity;
  /* Makes it moody/corporate */
  z-index: 0;
}

/* Hero Overlay Gradient */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 100%);
  z-index: 1;
}

.hero-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  /* Text above overlay */
}

/* Hero Content - Adapted for Dark Background */
.badge-premium {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--gold-light);
  border-radius: 4px;
  font-size: 0.85rem;
  margin-bottom: 24px;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
  margin-bottom: 24px;
  color: #fff;
}

.hero .grad-text {
  color: var(--gold-primary);
  /* Gold text on dark bg */
}

.lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 90%;
}

.lead strong {
  color: #fff;
}

.hero-key-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}

.point {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  /* Semi-transparent */
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 500;
  color: #fff;
}

.hero-trust-badges {
  display: flex;
  gap: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  align-items: center;
  margin-top: 20px;
  font-weight: 500;
}

/* Hero Form (Light, Clean, Structured) */
.hero-form-wrapper {
  background: #ffffff;
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  /* Stronger shadow since it sits on hero */
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.4s ease;
}

.hero-form-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.hero-form-wrapper::before {
  /* Optional: Small accent top bar */
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  background: var(--gold-primary);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.form-header {
  margin-bottom: 20px;
  text-align: center;
}

.form-header h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.form-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.consult-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
}

.field input,
.field textarea {
  width: 100%;
  background: #f4f6f8;
  border: 1px solid #dce1e7;
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent-navy);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(191, 149, 63, 0.1);
}

.btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.3px;
}

.btn-primary {
  /* Softer button as requested */
  background: var(--gold-primary);
  color: #fff;
  padding: 14px 24px;
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
  border-radius: 50px;
}

.consent {
  color: var(--text-muted);
  font-size: 0.8rem;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.4;
}

.captcha-wrap {
  display: flex;
  justify-content: center;
  margin: 6px 0 2px;
}

.consent input {
  margin-top: 3px;
}

/* Ticker */
.ticker-bar {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 12px 0;
  overflow: hidden;
  color: var(--text-muted);
}

.ticker-track {
  display: flex;
  gap: 60px;
  animation: ticker 35s linear infinite;
  white-space: nowrap;
}

.ticker-track span {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.9;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Section Header Shared */
.section-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-head h2 {
  font-size: 2.4rem;
  color: var(--accent-navy);
  position: relative;
  padding-bottom: 20px;
}

.section-head h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gold-primary);
  border-radius: 4px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 15px;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h3 {
  font-size: 1.6rem;
  color: var(--gold-dark);
  margin-bottom: 20px;
}

.about-list {
  list-style: none;
  margin-top: 30px;
}

.about-list li {
  padding-right: 26px;
  position: relative;
  margin-bottom: 10px;
  font-weight: 600;
}

.about-list li::before {
  content: "•";
  position: absolute;
  right: 0;
  color: var(--gold-primary);
  font-size: 1.5rem;
  line-height: 1rem;
}

.about-visual {
  position: relative;
  height: 500px;
  border-radius: var(--radius-lg);
  background-image: url('assets/about-visual.png');
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-card);
  display: grid;
  place-items: center;
}

.visual-placeholder {
  display: none;
  /* Replaced by image */
}

.stat-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: float 6s ease-in-out infinite;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.03);
  min-width: 140px;
}

.stat-card h4 {
  color: var(--accent-navy);
  font-size: 1.6rem;
  margin: 0;
}

.stat-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.delay-1 {
  animation-delay: 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Trust Cards */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.trust-card {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s;
  border: 1px solid transparent;
  box-shadow: var(--shadow-soft);
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(191, 149, 63, 0.2);
}

.icon-box {
  width: 60px;
  height: 60px;
  background: var(--bg-secondary);
  color: var(--accent-navy);
  font-size: 1.6rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.step-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s;
  border-bottom: 4px solid transparent;
}

.step-card:hover {
  transform: translateY(-5px);
  border-bottom-color: var(--gold-primary);
}

.step-num {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(200, 173, 127, 0.2);
  position: absolute;
  top: 10px;
  left: 20px;
}

/* Services */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all 0.3s;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-primary);
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--accent-navy);
}

/* Testimonials */
.testimonials {
  background: var(--bg-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.stars {
  color: #f1c40f;
  /* Star color */
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.review-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 16px;
  line-height: 1.6;
}

.review-author {
  font-weight: 700;
  color: var(--accent-navy);
  font-size: 0.9rem;
}

/* Consultation CTA */
.consult {
  background: #fff;
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.consult h2 {
  color: var(--accent-navy);
}

.consult h2::after {
  background: var(--gold-primary);
}

.consult p {
  color: var(--text-muted);
}

.contact-info-large {
  margin: 30px 0;
  padding: 24px;
  background: var(--bg-main);
  display: inline-block;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-display {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-navy);
  margin-bottom: 6px;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-question {
  width: 100%;
  text-align: right;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--gold-primary);
  transition: transform 0.3s;
}

.faq-question[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 24px;
  color: var(--text-muted);
  display: none;
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* Footer */
.site-footer {
  background: var(--accent-navy);
  color: #fff;
  padding: 80px 0 30px;
}

.footer-content {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* Floating WhatsApp */
.whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s;
  z-index: 999;
}

.whatsapp:hover {
  transform: translateY(-5px);
}

/* Animations & Responsive */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.delay-2 {
  transition-delay: 0.2s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 40px;
  }

  .hero-content {
    align-items: center;
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .hero-key-points {
    justify-content: center;
  }

  .hero-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .captcha-wrap .g-recaptcha {
    transform: scale(0.9);
    transform-origin: right top;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
/* Intl Tel Input Customization */
.iti {
    width: 100%;
    display: block;
}

.iti__flag-container {
    border-radius: 8px 0 0 8px; /* Match field border radius */
}

.iti__selected-flag {
    border-radius: 8px 0 0 8px;
    background: rgba(0,0,0,0.03);
    transition: background 0.3s;
}

.iti__selected-flag:hover {
    background: rgba(0,0,0,0.08);
}

.iti input {
    /* Override defaults to match our theme */
    width: 100% !important;
    padding-left: 52px !important; /* Space for flag */
    padding-right: 14px !important;
    background: #f4f6f8;
    border: 1px solid #dce1e7;
    border-radius: 8px;
    height: auto;
    min-height: 46px; /* Match other inputs */
}

.iti input:focus {
    border-color: var(--accent-navy);
    background: #fff;
    box-shadow: none;
}

/* Ensure flag dropdown list looks good */
.iti__country-list {
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    font-family: var(--font-tajawal);
    z-index: 100;
}

.iti__country-name {
    color: #333;
    font-size: 0.9rem;
}
