/* =====================================================
   GHAZLAN - YOUR GATEWAY TO SAUDI ARABIA
   Website Theme v1.0
   Arabic + English + International
   ===================================================== */

:root {
  --gc-green: #0b3d2e;
  --gc-green-light: #12664a;
  --gc-gold: #c8a45d;
  --gc-gold-light: #e0c88f;
  --gc-dark: #101815;
  --gc-text: #34423d;
  --gc-light: #f5f7f6;
  --gc-white: #ffffff;
  --gc-border: #e2e8e5;

  --gc-radius: 18px;
  --gc-radius-lg: 28px;

  --gc-shadow: 0 12px 40px rgba(11, 61, 46, 0.09);
  --gc-shadow-hover: 0 22px 55px rgba(11, 61, 46, 0.16);
}


/* ==============================
   GLOBAL
   ============================== */

body {
  font-family: Arial, "Helvetica Neue", sans-serif;
  color: var(--gc-text);
  background: var(--gc-white);
  line-height: 1.7;
}

.gc-container {
  width: min(1180px, 90%);
  margin: 0 auto;
}

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

.gc-section-light {
  background: var(--gc-light);
}

.gc-section-dark {
  background: var(--gc-green);
  color: var(--gc-white);
}

.gc-center {
  text-align: center;
}


/* ==============================
   TYPOGRAPHY
   ============================== */

.gc-eyebrow {
  display: inline-block;
  color: var(--gc-gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.gc-title {
  color: var(--gc-dark);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.15;
  font-weight: 800;
  margin: 0 0 22px;
}

.gc-section-title {
  color: var(--gc-dark);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}

.gc-subtitle {
  max-width: 760px;
  font-size: 18px;
  color: #66736e;
  margin-bottom: 35px;
}

.gc-center .gc-subtitle {
  margin-left: auto;
  margin-right: auto;
}


/* ==============================
   HERO
   ============================== */

.gc-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 105px;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(200, 164, 93, 0.18),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #f9fbfa 0%,
      #ffffff 55%,
      #eef5f2 100%
    );
}

.gc-hero::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: rgba(11, 61, 46, 0.045);
  right: -180px;
  top: -180px;
}

.gc-hero-content {
  max-width: 850px;
  position: relative;
  z-index: 2;
}

.gc-hero-highlight {
  color: var(--gc-green);
}

.gc-hero-gold {
  color: var(--gc-gold);
}

.gc-hero-text {
  max-width: 720px;
  font-size: 20px;
  color: #53615c;
  margin-bottom: 36px;
}


/* ==============================
   BUTTONS
   ============================== */

.gc-btn {
  display: inline-block;
  text-decoration: none;
  padding: 15px 27px;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.25s ease;
  margin: 5px;
}

.gc-btn-primary {
  background: var(--gc-green);
  color: var(--gc-white) !important;
}

.gc-btn-primary:hover {
  background: var(--gc-green-light);
  transform: translateY(-2px);
  box-shadow: var(--gc-shadow);
}

.gc-btn-outline {
  background: transparent;
  color: var(--gc-green) !important;
  border: 1.5px solid var(--gc-green);
}

.gc-btn-outline:hover {
  background: var(--gc-green);
  color: var(--gc-white) !important;
}

.gc-btn-gold {
  background: var(--gc-gold);
  color: var(--gc-dark) !important;
}

.gc-btn-gold:hover {
  background: var(--gc-gold-light);
  transform: translateY(-2px);
}


/* ==============================
   TRUST BAR
   ============================== */

.gc-trust {
  margin-top: 55px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.gc-trust-item {
  border: 1px solid var(--gc-border);
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  padding: 10px 17px;
  border-radius: 50px;
  color: #55625d;
  font-size: 14px;
  font-weight: 600;
}


/* ==============================
   SERVICE CARDS
   ============================== */

.gc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gc-card {
  background: var(--gc-white);
  border: 1px solid var(--gc-border);
  border-radius: var(--gc-radius);
  padding: 32px;
  transition: all 0.3s ease;
}

.gc-card:hover {
  transform: translateY(-7px);
  border-color: rgba(200, 164, 93, 0.6);
  box-shadow: var(--gc-shadow-hover);
}

.gc-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 22px;
  background: rgba(11, 61, 46, 0.08);
  color: var(--gc-green);
  font-size: 24px;
}

.gc-card h3 {
  color: var(--gc-dark);
  font-size: 21px;
  margin: 0 0 12px;
}

.gc-card p {
  color: #66736e;
  margin: 0;
  font-size: 15px;
}


/* ==============================
   INVESTOR JOURNEY
   ============================== */

.gc-journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: journey;
}

.gc-step {
  position: relative;
  padding: 30px 25px;
  background: var(--gc-white);
  border-radius: var(--gc-radius);
  border: 1px solid var(--gc-border);
  counter-increment: journey;
}

.gc-step::before {
  content: counter(journey, decimal-leading-zero);
  display: block;
  color: var(--gc-gold);
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 15px;
}

.gc-step h3 {
  color: var(--gc-dark);
  margin: 0 0 10px;
  font-size: 19px;
}

.gc-step p {
  color: #69756f;
  margin: 0;
  font-size: 14px;
}


/* ==============================
   SAUDI SECTION
   ============================== */

.gc-saudi {
  background:
    linear-gradient(
      135deg,
      rgba(11,61,46,0.98),
      rgba(18,102,74,0.95)
    );
  padding: 90px 0;
  color: white;
}

.gc-saudi .gc-section-title {
  color: white;
}

.gc-saudi .gc-subtitle {
  color: rgba(255,255,255,0.75);
}


/* ==============================
   CTA
   ============================== */

.gc-cta {
  margin: 70px auto;
  width: min(1100px, 90%);
  padding: 70px 45px;
  text-align: center;
  border-radius: var(--gc-radius-lg);

  background:
    radial-gradient(
      circle at top right,
      rgba(200,164,93,0.28),
      transparent 30%
    ),
    var(--gc-green);

  color: var(--gc-white);
}

.gc-cta h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-top: 0;
  margin-bottom: 18px;
}

.gc-cta p {
  max-width: 720px;
  margin: 0 auto 30px;
  color: rgba(255,255,255,0.78);
}


/* ==============================
   LANGUAGE SWITCHER
   ============================== */

.gc-languages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 20px 0;
}

.gc-language {
  padding: 7px 13px;
  border: 1px solid var(--gc-border);
  border-radius: 50px;
  background: var(--gc-white);
  color: var(--gc-text);
  font-size: 13px;
  cursor: pointer;
  transition: all .2s ease;
}

.gc-language:hover,
.gc-language.active {
  background: var(--gc-green);
  border-color: var(--gc-green);
  color: var(--gc-white);
}


/* ==============================
   ARABIC
   ============================== */

[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .gc-hero-content {
  margin-right: 0;
  margin-left: auto;
}


/* ==============================
   ENGLISH / LTR
   ============================== */

[dir="ltr"] {
  direction: ltr;
  text-align: left;
}


/* ==============================
   RESPONSIVE
   ============================== */

@media (max-width: 1000px) {
  .gc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gc-journey {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {

  .gc-section {
    padding: 65px 0;
  }

  .gc-hero {
    padding: 80px 0 70px;
  }

  .gc-grid,
  .gc-journey {
    grid-template-columns: 1fr;
  }

  .gc-title {
    font-size: 38px;
  }

  .gc-hero-text {
    font-size: 17px;
  }

  .gc-card {
    padding: 25px;
  }

  .gc-cta {
    padding: 50px 22px;
  }
}