/* Base styles & components */
:root {
      --teal: #033B44;
      --teal-light: #065666;
      --teal-dark: #022830;
      --gold: #D4A437;
      --gold-light: #E8BC56;
      --gold-pale: #F5E8C0;
      --white: #FFFFFF;
      --off-white: #F8F6F1;
      --text-dark: #111827;
      --text-mid: #374151;
      --text-light: #6B7280;
      --border: rgba(212,164,55,0.2);
      --shadow: 0 10px 40px rgba(3,59,68,0.12);
      --shadow-lg: 0 20px 60px rgba(3,59,68,0.18);
      --shadow-gold: 0 6px 28px rgba(212,164,55,0.28);
      --radius: 10px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text-dark);
      background: var(--white);
      overflow-x: hidden;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4 {
      font-family: 'Montserrat', sans-serif;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    img {
      max-width: 100%; height: auto; display: block;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: crisp-edges;
    }

    a { text-decoration: none; color: inherit; }

    /* ===== UTILITIES ===== */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .section-pad { padding: 100px 0; }

    .badge {
      display: inline-block;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      background: rgba(212,164,55,0.1);
      border: 1px solid rgba(212,164,55,0.3);
      padding: 6px 16px;
      border-radius: 50px;
      margin-bottom: 16px;
    }

    .section-title {
      font-size: clamp(1.9rem, 3.8vw, 2.8rem);
      font-weight: 800;
      color: var(--teal);
      margin-bottom: 16px;
      letter-spacing: -0.03em;
      line-height: 1.15;
    }

    .section-sub {
      font-size: 1rem;
      color: var(--text-mid);
      max-width: 560px;
      line-height: 1.8;
      font-weight: 400;
    }

    .gold-line {
      width: 52px; height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      border-radius: 2px;
      margin: 18px 0 30px;
    }

    /* ===== SVG ICONS INLINE ===== */
    .icon-svg {
      width: 24px; height: 24px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.75;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
    }
    .icon-svg.sm { width: 18px; height: 18px; }
    .icon-svg.lg { width: 28px; height: 28px; }
    .icon-svg.solid { fill: currentColor; stroke: none; }

    /* ===== LOGO SVG ===== */
    .logo-svg { display: block; }

    /* ===== NAVBAR ===== */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 0 24px;
      background: linear-gradient(180deg, rgba(3,59,68,0.55) 0%, rgba(3,59,68,0.25) 100%);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      transition: background 0.4s, box-shadow 0.4s, border-color 0.4s;
      border-bottom: 1px solid rgba(212,164,55,0.08);
    }

    /* Subtle Islamic geometric pattern overlay */
    #navbar::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('../assets/images/nav-pattern.svg');
      background-repeat: repeat;
      background-size: 120px 104px;
      opacity: 0.07;
      pointer-events: none;
      z-index: 0;
    }

    #navbar.scrolled {
      background: linear-gradient(180deg, rgba(2,40,48,0.96) 0%, rgba(3,59,68,0.94) 100%);
      backdrop-filter: blur(18px) saturate(140%);
      -webkit-backdrop-filter: blur(18px) saturate(140%);
      box-shadow: 0 4px 32px rgba(0,0,0,0.28), inset 0 -1px 0 rgba(212,164,55,0.14);
      border-bottom-color: rgba(212,164,55,0.18);
    }

    #navbar.scrolled::before { opacity: 0.09; }

    .nav-inner {
      position: relative;
      z-index: 1;
      max-width: 1200px; margin: 0 auto;
      display: flex; align-items: center;
      justify-content: space-between;
      height: 78px;
      padding: 0 4px;
    }

    .nav-logo {
      display: flex; align-items: center; gap: 0;
      padding: 6px 10px 6px 0;
      transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .nav-logo:hover { opacity: 0.92; transform: scale(1.02); }

    .nav-links {
      display: flex; align-items: center; gap: 34px;
      list-style: none;
    }

    .nav-links a {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
      transition: color 0.25s ease, transform 0.25s ease;
      position: relative;
      padding: 6px 2px;
      display: inline-block;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -2px; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), #E8C168);
      border-radius: 2px;
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 0.32s cubic-bezier(0.65,0,0.35,1);
    }

    .nav-links a:hover { color: var(--gold); transform: translateY(-1px); }
    .nav-links a:hover::after { transform: scaleX(1); }

    .nav-links a.active { color: var(--gold); }
    .nav-links a.active::after {
      transform: scaleX(1);
      box-shadow: 0 0 8px rgba(212,164,55,0.55);
    }

    .nav-cta {
      background: linear-gradient(135deg, var(--gold) 0%, #E8C168 100%) !important;
      color: var(--teal-dark) !important;
      padding: 10px 22px !important;
      border-radius: 6px !important;
      font-weight: 700 !important;
      transition: background 0.25s, transform 0.25s, box-shadow 0.25s !important;
      letter-spacing: 0.04em !important;
      text-transform: none !important;
      box-shadow: 0 2px 10px rgba(212,164,55,0.22);
    }

    .nav-cta:hover {
      transform: translateY(-1px) !important;
      box-shadow: 0 6px 20px rgba(212,164,55,0.45) !important;
    }

    .nav-cta::after { display: none !important; }

    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 4px; background: none; border: none;
    }

    .hamburger span {
      display: block; width: 26px; height: 2px;
      background: var(--white); border-radius: 2px; transition: all 0.3s;
    }

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

    .mobile-menu {
      display: none; position: fixed;
      top: 76px; left: 0; right: 0;
      background: var(--teal-dark);
      padding: 24px; z-index: 999;
      flex-direction: column; gap: 4px;
      border-top: 1px solid rgba(212,164,55,0.2);
    }

    .mobile-menu.open { display: flex; }

    .mobile-menu a {
      color: rgba(255,255,255,0.85);
      font-family: 'Montserrat', sans-serif;
      font-size: 0.95rem; font-weight: 600;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .mobile-menu a:hover { color: var(--gold); }

    /* ===== HERO ===== */
    #hero {
      min-height: 100vh;
      background: var(--teal-dark);
      position: relative;
      display: flex; align-items: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(212,164,55,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 10% 70%, rgba(6,86,102,0.5) 0%, transparent 60%),
        linear-gradient(135deg, #022830 0%, #033B44 50%, #044D5A 100%);
    }

    .hero-pattern {
      position: absolute; inset: 0; opacity: 0.06;
      background-image: url('../assets/images/nav-pattern.svg');
      background-repeat: repeat;
      background-size: 160px 138.56px;
      pointer-events: none;
      mask-image: radial-gradient(ellipse 90% 70% at 50% 45%, #000 30%, transparent 90%);
      -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 45%, #000 30%, transparent 90%);
    }

    .hero-content {
      position: relative; z-index: 2;
      padding: 130px 24px 90px;
      max-width: 1200px; margin: 0 auto; width: 100%;
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(212,164,55,0.12);
      border: 1px solid rgba(212,164,55,0.4);
      color: var(--gold-light);
      font-family: 'Montserrat', sans-serif;
      font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.2em; text-transform: uppercase;
      padding: 8px 20px; border-radius: 50px;
      margin-bottom: 32px;
      animation: fadeUp 0.8s ease both;
    }

    .hero-badge-dot {
      width: 6px; height: 6px;
      background: var(--gold); border-radius: 50%;
      animation: pulse 2s infinite;
    }

    

    .hero-title {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(2.2rem, 5vw, 4rem);
      font-weight: 800;
      color: var(--white);
      max-width: 780px; margin-bottom: 24px;
      letter-spacing: -0.03em; line-height: 1.1;
      animation: fadeUp 0.8s 0.1s ease both;
    }

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

    .hero-sub {
      font-size: 1.05rem; font-weight: 400;
      color: rgba(255,255,255,0.68);
      max-width: 540px; margin-bottom: 48px;
      line-height: 1.85;
      animation: fadeUp 0.8s 0.2s ease both;
    }

    .hero-btns {
      display: flex; flex-wrap: wrap; gap: 14px;
      animation: fadeUp 0.8s 0.3s ease both;
    }

    .btn-gold {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--gold); color: var(--teal-dark);
      font-family: 'Montserrat', sans-serif;
      font-weight: 700; font-size: 0.88rem;
      letter-spacing: 0.04em;
      padding: 15px 30px; border-radius: 6px;
      border: none; cursor: pointer;
      transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
      text-decoration: none;
    }

    .btn-gold:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(212,164,55,0.4);
    }

    .btn-outline {
      display: inline-flex; align-items: center; gap: 10px;
      background: transparent; color: var(--white);
      font-family: 'Montserrat', sans-serif;
      font-weight: 600; font-size: 0.88rem;
      letter-spacing: 0.04em;
      padding: 14px 30px; border-radius: 6px;
      border: 1.5px solid rgba(255,255,255,0.3);
      cursor: pointer;
      transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
      text-decoration: none;
    }

    .btn-outline:hover {
      border-color: var(--gold); color: var(--gold);
      transform: translateY(-2px);
      background: rgba(212,164,55,0.05);
    }

    .hero-stats {
      display: flex; flex-wrap: wrap; gap: 44px;
      margin-top: 72px; padding-top: 48px;
      border-top: 1px solid rgba(255,255,255,0.1);
      animation: fadeUp 0.8s 0.4s ease both;
    }

    .hero-stat-num {
      font-family: 'Montserrat', sans-serif;
      font-size: 2.5rem; font-weight: 800;
      color: var(--gold); line-height: 1;
      letter-spacing: -0.03em;
    }

    .hero-stat-label {
      font-size: 0.78rem; font-weight: 500;
      color: rgba(255,255,255,0.5);
      letter-spacing: 0.06em; margin-top: 5px;
      text-transform: uppercase;
    }

    /* ===== ABOUT ===== */
    #about { background: var(--white); }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }

    .about-visual { position: relative; }

    .about-card-main {
      background: var(--teal); border-radius: var(--radius);
      padding: 48px 40px; color: white;
      position: relative; overflow: hidden;
    }

    .about-card-main::before {
      content: '';
      position: absolute; top: -40px; right: -40px;
      width: 160px; height: 160px;
      background: rgba(212,164,55,0.08); border-radius: 50%;
    }

    .about-card-main::after {
      content: '';
      position: absolute; bottom: -60px; left: -40px;
      width: 200px; height: 200px;
      background: rgba(212,164,55,0.05); border-radius: 50%;
    }

    .about-established {
      font-family: 'Montserrat', sans-serif;
      font-size: 4.5rem; font-weight: 800;
      color: var(--gold); line-height: 1; margin-bottom: 8px;
      letter-spacing: -0.04em;
    }

    .about-est-label {
      font-size: 0.72rem; letter-spacing: 0.2em;
      text-transform: uppercase; color: rgba(255,255,255,0.55);
      margin-bottom: 28px; font-weight: 600;
    }

    .about-card-tag {
      font-size: 1rem; color: rgba(255,255,255,0.82); line-height: 1.75;
    }

    .about-badge-float {
      position: absolute; bottom: -24px; right: 32px;
      background: var(--gold); color: var(--teal-dark);
      border-radius: 10px; padding: 16px 24px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700; font-size: 0.82rem;
      box-shadow: var(--shadow-gold); z-index: 2;
    }

    .about-badge-float span {
      display: block;
      font-size: 1.8rem; font-weight: 800;
      letter-spacing: -0.03em; line-height: 1;
    }

    .about-text { padding-top: 40px; }

    .about-text p {
      color: var(--text-mid); margin-bottom: 18px;
      font-size: 0.97rem; line-height: 1.85;
    }

    .about-list {
      list-style: none; margin-top: 28px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    }

    .about-list li {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.88rem; font-weight: 600;
      color: var(--text-dark);
      font-family: 'Montserrat', sans-serif;
    }

    .about-list li::before {
      content: '';
      width: 7px; height: 7px;
      background: var(--gold); border-radius: 50%; flex-shrink: 0;
    }

    /* ===== WHY CHOOSE US ===== */
    #why { background: var(--off-white); }

    .why-grid {
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 22px; margin-top: 56px;
    }

    .why-card {
      background: var(--white); border-radius: var(--radius);
      padding: 34px 30px;
      border: 1px solid rgba(3,59,68,0.07);
      transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s;
      position: relative; overflow: hidden;
    }

    .why-card::before {
      content: '';
      position: absolute; top: 0; left: 0;
      width: 4px; height: 100%;
      background: linear-gradient(180deg, var(--gold), var(--teal));
      transform: scaleY(0); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
      transform-origin: top;
    }

    .why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
    .why-card:hover::before { transform: scaleY(1); }

    .why-icon {
      width: 50px; height: 50px;
      background: rgba(3,59,68,0.06);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px;
      color: var(--teal);
      transition: background 0.3s, color 0.3s;
    }

    .why-card:hover .why-icon {
      background: rgba(212,164,55,0.15);
      color: var(--gold);
    }

    .why-card h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: 1rem; font-weight: 700;
      color: var(--teal); margin-bottom: 10px;
      letter-spacing: -0.01em;
    }

    .why-card p {
      font-size: 0.875rem; color: var(--text-light);
      line-height: 1.75;
    }

    /* ===== SERVICES ===== */
    #services { background: var(--white); }

    .services-header {
      display: flex; justify-content: space-between;
      align-items: flex-end; margin-bottom: 52px;
      flex-wrap: wrap; gap: 24px;
    }

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

    .service-card {
      background: var(--off-white); border-radius: var(--radius);
      padding: 34px 30px;
      border: 1px solid rgba(3,59,68,0.06);
      transition: background 0.35s cubic-bezier(0.4,0,0.2,1),
                  transform 0.35s cubic-bezier(0.4,0,0.2,1),
                  box-shadow 0.35s;
      cursor: default;
      opacity: 0;
      transform: translateY(30px);
    }

    .service-card.card-visible {
      opacity: 1; transform: translateY(0);
    }

    .service-card:hover {
      background: var(--teal);
      transform: translateY(-5px);
      box-shadow: 0 20px 50px rgba(3,59,68,0.22);
    }

    .service-card:hover .service-icon {
      background: rgba(212,164,55,0.2);
      color: var(--gold);
    }

    .service-card:hover .service-card-title { color: var(--gold); }
    .service-card:hover .service-item { color: rgba(255,255,255,0.75); }
    .service-card:hover .service-item::before { background: var(--gold); }

    .service-icon {
      width: 48px; height: 48px;
      background: rgba(3,59,68,0.08);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px; color: var(--teal);
      transition: background 0.3s, color 0.3s;
    }

    .service-card-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.97rem; font-weight: 700;
      color: var(--teal); margin-bottom: 14px;
      letter-spacing: -0.01em;
      transition: color 0.3s;
    }

    .service-items { list-style: none; }

    .service-item {
      font-size: 0.845rem; color: var(--text-mid);
      padding: 4px 0;
      display: flex; align-items: center; gap: 8px;
      transition: color 0.3s;
    }

    .service-item::before {
      content: '';
      width: 5px; height: 5px;
      background: var(--gold); border-radius: 50%;
      flex-shrink: 0; transition: background 0.3s;
    }

    /* ===== INDUSTRIES ===== */
    #industries { background: var(--teal); }

    .industries-wrap .section-title { color: var(--white); }
    .industries-wrap .section-sub { color: rgba(255,255,255,0.62); }

    .industries-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 46px;
    }

    .industry-chip {
      display: flex; align-items: center; gap: 10px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(212,164,55,0.22);
      color: rgba(255,255,255,0.82);
      padding: 13px 22px; border-radius: 6px;
      font-size: 0.875rem; font-weight: 500;
      transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
      cursor: default;
    }

    .industry-chip:hover {
      background: rgba(212,164,55,0.12);
      border-color: var(--gold);
      color: var(--gold-light);
      transform: translateY(-2px);
    }

    .industry-chip .chip-icon {
      width: 18px; height: 18px;
      stroke: currentColor; fill: none;
      stroke-width: 1.75; flex-shrink: 0;
      stroke-linecap: round; stroke-linejoin: round;
    }

    /* ===== REGISTRATION ===== */
    #registration { background: var(--off-white); }

    .reg-grid {
      display: grid; grid-template-columns: repeat(4,1fr);
      gap: 18px; margin-top: 46px;
    }

    .reg-card {
      background: var(--white); border-radius: var(--radius);
      padding: 26px 22px; text-align: center;
      border: 1px solid rgba(3,59,68,0.07);
      transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    }

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

    .reg-card-icon {
      width: 48px; height: 48px;
      background: rgba(3,59,68,0.06);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 14px; color: var(--teal);
      transition: background 0.3s, color 0.3s;
    }

    .reg-card:hover .reg-card-icon {
      background: rgba(212,164,55,0.15); color: var(--gold);
    }

    .reg-card h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.875rem; font-weight: 700;
      color: var(--teal); margin-bottom: 7px;
    }

    .reg-card p {
      font-size: 0.79rem; color: var(--text-light); line-height: 1.6;
    }

    /* ===== FOUNDER ===== */
    #founder {
      background: linear-gradient(135deg, #022830 0%, #033B44 60%, #044D5A 100%);
      position: relative; overflow: hidden;
    }

    #founder::before {
      content: '';
      position: absolute; top: -100px; right: -100px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(212,164,55,0.06) 0%, transparent 70%);
    }

    .founder-inner {
      max-width: 800px; margin: 0 auto; text-align: center;
      position: relative; z-index: 1;
    }

    .quote-mark {
      font-family: 'Montserrat', sans-serif;
      font-size: 7rem; color: var(--gold);
      opacity: 0.25; line-height: 0.7; margin-bottom: 20px;
      font-weight: 800;
    }

    .founder-quote {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(1.3rem, 2.8vw, 2rem);
      color: var(--white); font-style: italic;
      line-height: 1.6; margin-bottom: 40px;
      font-weight: 500; letter-spacing: -0.01em;
    }

    .founder-divider {
      width: 52px; height: 2px;
      background: var(--gold); margin: 0 auto 22px;
    }

    .founder-name {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.2rem; color: var(--gold);
      font-weight: 700; letter-spacing: -0.01em;
    }

    .founder-title {
      font-size: 0.78rem; letter-spacing: 0.16em;
      text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 6px;
      font-weight: 500;
    }

    /* ===== PROCESS ===== */
    #process { background: var(--white); }

    .process-steps {
      display: grid; grid-template-columns: repeat(5,1fr);
      gap: 0; margin-top: 64px; position: relative;
    }

    .process-steps::before {
      content: '';
      position: absolute; top: 27px;
      left: calc(10% + 14px); right: calc(10% + 14px);
      height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--teal));
      z-index: 0;
    }

    .process-step {
      display: flex; flex-direction: column;
      align-items: center; text-align: center;
      padding: 0 12px; position: relative; z-index: 1;
    }

    .process-num {
      width: 54px; height: 54px;
      background: var(--teal); border: 3px solid var(--gold);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Montserrat', sans-serif;
      font-size: 1.1rem; font-weight: 800;
      color: var(--gold); margin-bottom: 20px;
      transition: all 0.3s;
    }

    .process-step:hover .process-num {
      background: var(--gold); color: var(--teal-dark);
      transform: scale(1.1);
    }

    .process-step h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.875rem; font-weight: 700;
      color: var(--teal); margin-bottom: 8px;
    }

    .process-step p {
      font-size: 0.79rem; color: var(--text-light); line-height: 1.65;
    }

    /* ===== CAREERS ===== */
    .careers-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 44px 40px;
      text-align: center;
      border: 1px solid rgba(3,59,68,0.08);
      border-top: 4px solid var(--gold);
      box-shadow: 0 10px 40px rgba(3,59,68,0.06);
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    .careers-card::before {
      content: '';
      position: absolute; top: -60px; right: -60px;
      width: 160px; height: 160px;
      background: radial-gradient(circle, rgba(212,164,55,0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .careers-icon {
      width: 64px; height: 64px;
      background: rgba(3,59,68,0.05);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--teal); margin-bottom: 24px;
    }

    .careers-icon svg { width: 32px; height: 32px; stroke: currentColor; fill: none; }

    .careers-sub {
      font-size: 1.05rem; color: var(--teal); font-weight: 600;
      margin-bottom: 16px; line-height: 1.6; max-width: 600px;
    }

    .careers-desc {
      font-size: 0.95rem; color: var(--text-mid); line-height: 1.8;
      margin-bottom: 32px;
    }

    .careers-action {
      display: flex; flex-direction: column; align-items: center; gap: 16px;
    }
    
    .careers-note {
      font-size: 0.8rem; color: var(--text-light); margin: 0;
    }

    /* ===== FAQ ===== */
    #faq { background: var(--off-white); }

    .faq-grid { max-width: 840px; margin: 52px auto 0; }

    .faq-item {
      background: var(--white); border-radius: 8px;
      margin-bottom: 10px;
      border: 1px solid rgba(3,59,68,0.08); overflow: hidden;
      transition: box-shadow 0.3s;
    }

    .faq-item.open { box-shadow: var(--shadow); }

    .faq-q {
      display: flex; justify-content: space-between;
      align-items: center; padding: 20px 26px;
      cursor: pointer; gap: 16px;
    }

    .faq-q span {
      font-family: 'Montserrat', sans-serif;
      font-weight: 600; font-size: 0.92rem;
      color: var(--teal); flex: 1;
    }

    .faq-icon {
      width: 28px; height: 28px;
      background: rgba(212,164,55,0.1);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); flex-shrink: 0;
      transition: transform 0.3s, background 0.3s;
    }

    .faq-icon svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
      background: var(--gold); color: var(--teal-dark);
    }

    .faq-a { padding: 0 26px; max-height: 0; overflow: hidden; transition: max-height 0.38s ease, padding 0.3s; }
    .faq-item.open .faq-a { max-height: 220px; padding: 0 26px 20px; }

    .faq-a p {
      font-size: 0.89rem; color: var(--text-mid); line-height: 1.82;
      border-top: 1px solid rgba(3,59,68,0.07); padding-top: 16px;
    }

    /* ===== MISSION / VISION / VALUES ===== */
    #mission-vision {
      background: var(--teal-dark);
      position: relative;
      overflow: hidden;
    }

    #mission-vision::before {
      content: '';
      position: absolute;
      top: -120px; right: -120px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(212,164,55,0.055) 0%, transparent 65%);
      pointer-events: none;
    }

    .mv-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }

    .mv-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(212,164,55,0.2);
      border-radius: var(--radius);
      padding: 44px 40px;
      position: relative;
      overflow: hidden;
      transition: background 0.3s, border-color 0.3s, transform 0.35s cubic-bezier(0.4,0,0.2,1);
    }

    .mv-card:hover {
      background: rgba(212,164,55,0.06);
      border-color: rgba(212,164,55,0.45);
      transform: translateY(-4px);
    }

    .mv-card::before {
      content: '';
      position: absolute;
      bottom: -40px; right: -40px;
      width: 120px; height: 120px;
      background: rgba(212,164,55,0.04);
      border-radius: 50%;
    }

    .mv-icon {
      width: 52px; height: 52px;
      background: rgba(212,164,55,0.12);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: var(--gold);
      margin-bottom: 22px;
    }

    .mv-card h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.25rem; font-weight: 800;
      color: var(--gold);
      margin-bottom: 14px;
      letter-spacing: -0.02em;
    }

    .mv-card p {
      font-size: 0.97rem;
      color: rgba(255,255,255,0.72);
      line-height: 1.85;
    }

    /* Values Section */
    #values { background: var(--off-white); }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-top: 52px;
    }

    .value-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 34px 28px;
      border: 1px solid rgba(3,59,68,0.07);
      position: relative;
      overflow: hidden;
      transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s, border-color 0.3s;
    }

    .value-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--teal));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    }

    .value-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
      border-color: transparent;
    }

    .value-card:hover::after { transform: scaleX(1); }

    .value-icon {
      width: 50px; height: 50px;
      background: rgba(3,59,68,0.06);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: var(--teal);
      margin-bottom: 18px;
      transition: background 0.3s, color 0.3s;
    }

    .value-card:hover .value-icon {
      background: rgba(212,164,55,0.14);
      color: var(--gold);
    }

    .value-card h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.97rem; font-weight: 700;
      color: var(--teal); margin-bottom: 9px;
      letter-spacing: -0.01em;
    }

    .value-card p {
      font-size: 0.855rem; color: var(--text-light); line-height: 1.75;
    }

    /* Industries Card Style */
    .industry-card {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(212,164,55,0.18);
      color: rgba(255,255,255,0.82);
      padding: 24px 22px;
      border-radius: 8px;
      font-size: 0.875rem;
      font-weight: 500;
      transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
      cursor: default;
    }

    .industry-card:hover {
      background: rgba(212,164,55,0.1);
      border-color: var(--gold);
      color: var(--gold-light);
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.2);
    }

    .industry-card-icon {
      width: 44px; height: 44px;
      background: rgba(212,164,55,0.1);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: var(--gold);
      transition: background 0.28s;
    }

    .industry-card:hover .industry-card-icon {
      background: rgba(212,164,55,0.22);
    }

    .industry-card-name {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.88rem;
      font-weight: 700;
      line-height: 1.35;
    }

    /* ===== CONTACT ===== */
    #contact { background: var(--white); }

    .contact-grid {
      display: grid; grid-template-columns: 1fr 1.2fr;
      gap: 64px; align-items: start;
    }

    .contact-info h2 {
      font-size: clamp(1.7rem, 2.8vw, 2.4rem);
      color: var(--teal); margin-bottom: 16px;
      font-weight: 800; letter-spacing: -0.03em;
    }

    .contact-info p {
      color: var(--text-mid); margin-bottom: 38px;
      line-height: 1.82; font-size: 0.97rem;
    }

    .contact-items { display: flex; flex-direction: column; gap: 18px; }

    .contact-item { display: flex; align-items: flex-start; gap: 14px; }

    .contact-item-icon {
      width: 42px; height: 42px;
      background: rgba(3,59,68,0.06);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: var(--teal); flex-shrink: 0;
      transition: background 0.25s, color 0.25s;
    }

    .contact-item:hover .contact-item-icon {
      background: rgba(212,164,55,0.15); color: var(--gold);
    }

    .contact-item-text strong {
      display: block; font-size: 0.72rem;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--text-light); margin-bottom: 3px;
      font-family: 'Montserrat', sans-serif; font-weight: 700;
    }

    .contact-item-text a,
    .contact-item-text span {
      color: var(--text-dark); font-weight: 500;
      font-size: 0.93rem; transition: color 0.2s;
    }

    .contact-item-text a:hover { color: var(--gold); }

    .contact-form-wrap {
      background: var(--off-white); border-radius: 12px;
      padding: 40px; border: 1px solid rgba(3,59,68,0.07);
    }

    .contact-form-wrap h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.4rem; color: var(--teal); margin-bottom: 6px;
      font-weight: 800; letter-spacing: -0.02em;
    }

    .contact-form-wrap p {
      font-size: 0.875rem; color: var(--text-light); margin-bottom: 26px;
    }

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

    .form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }

    .form-group label {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.72rem; font-weight: 700;
      color: var(--teal); letter-spacing: 0.1em; text-transform: uppercase;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 11px 14px;
      border: 1.5px solid rgba(3,59,68,0.12);
      border-radius: 7px;
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem; color: var(--text-dark);
      background: var(--white);
      transition: border-color 0.2s, box-shadow 0.2s; outline: none;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(212,164,55,0.12);
    }

    .form-group textarea { resize: vertical; min-height: 96px; }

    .form-submit {
      width: 100%; padding: 15px;
      background: var(--teal); color: var(--gold);
      font-family: 'Montserrat', sans-serif;
      font-size: 0.88rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      border: none; border-radius: 7px; cursor: pointer;
      transition: all 0.25s cubic-bezier(0.4,0,0.2,1); margin-top: 6px;
    }

    .form-submit:hover {
      background: var(--gold); color: var(--teal-dark);
      transform: translateY(-2px); box-shadow: var(--shadow-gold);
    }

    /* ===== MAP ===== */
    #map { background: var(--off-white); padding: 0; }
    .map-wrap { height: 420px; position: relative; }
    .map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

    /* ===== FOOTER ===== */
    footer {
      background: var(--teal-dark);
      color: rgba(255,255,255,0.65);
      padding: 72px 0 0;
    }

    .footer-grid {
      display: grid; grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
      gap: 48px; margin-bottom: 56px;
    }

    .footer-brand-desc {
      font-size: 0.86rem; line-height: 1.82; margin: 14px 0 26px;
    }

    .footer-social { display: flex; gap: 10px; }

    .footer-social a {
      width: 36px; height: 36px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 7px;
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.7);
      transition: all 0.25s;
    }

    .footer-social a:hover {
      background: var(--gold); border-color: var(--gold); color: var(--teal-dark);
    }

    .footer-col h4 {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 20px;
    }

    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }

    .footer-links a {
      font-size: 0.86rem; color: rgba(255,255,255,0.58);
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--gold-light); }

    .footer-contact-item {
      display: flex; align-items: flex-start; gap: 10px;
      margin-bottom: 13px; font-size: 0.86rem;
    }

    .footer-contact-item a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
    .footer-contact-item a:hover { color: var(--gold-light); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.07);
      padding: 22px 0;
      display: flex; justify-content: space-between;
      align-items: center; flex-wrap: wrap; gap: 12px;
      font-size: 0.8rem;
    }

    .footer-bottom a { color: var(--gold); }

    /* ===== FLOATING BUTTONS ===== */
    .float-wa {
      position: fixed; bottom: 28px; right: 28px; z-index: 900;
      width: 56px; height: 56px; background: #25D366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,0.45);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }

    .float-call {
      position: fixed; bottom: 96px; right: 28px; z-index: 900;
      width: 50px; height: 50px; background: var(--gold);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: var(--shadow-gold);
      transition: transform 0.2s;
    }

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

    #back-top {
      position: fixed; bottom: 28px; left: 28px; z-index: 900;
      width: 42px; height: 42px;
      background: var(--teal); border: 1.5px solid rgba(212,164,55,0.3);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); cursor: pointer;
      opacity: 0; transform: translateY(10px);
      transition: all 0.3s;
    }

    #back-top.visible { opacity: 1; transform: translateY(0); }

    /* ===== ANIMATIONS ===== */
    

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


/* === Logo image (sharp SVG, responsive) === */
.logo-img { display:block; height:auto; max-width:100%; }
.logo-img--nav { width: clamp(150px, 18vw, 210px); }
.logo-img--footer { width: clamp(150px, 18vw, 190px); margin-bottom: 14px; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.4)); }
.nav-logo { padding: 6px 0; min-height: 56px; display:flex; align-items:center; }

/* === Contact + Map combined (60/40) === */
.contact-grid--with-map { display:grid; grid-template-columns: 6fr 4fr; gap: 48px; align-items: start; }
.contact-map { position: sticky; top: 100px; }
.map-frame { position:relative; width:100%; aspect-ratio: 4/3; border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow); border: 1px solid var(--border); background: #eaeaea; }
.map-frame iframe { position:absolute; inset:0; width:100%; height:100%; border:0; }
.map-caption { display:flex; flex-direction:column; gap:2px; margin-top:14px; padding: 14px 18px; background: var(--off-white); border-radius: var(--radius); border-left: 3px solid var(--gold); }
.map-caption strong { font-family:'Montserrat',sans-serif; color:var(--teal); font-size: 0.95rem; }
.map-caption span { font-size: 0.82rem; color: var(--text-mid); }
.contact-cta-row { display:flex; gap:12px; margin-top:30px; flex-wrap:wrap; }
.contact-cta { font-size: 0.84rem; padding: 13px 22px; }
.btn-outline.contact-cta { border-color: var(--teal); color: var(--teal); padding: 12px 22px; }
.contact-form-section { margin-top: 60px; max-width: 820px; margin-left:auto; margin-right:auto; }

@media (max-width: 900px) {
  .contact-grid--with-map { grid-template-columns: 1fr; gap: 32px; }
  .contact-map { position: static; }
  .map-frame { aspect-ratio: 16/10; }
}

/* === Better focus visibility (a11y) === */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* === 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; }
  .reveal { opacity: 1 !important; transform: none !important; }
}


/* === GCC Services Section === */
.gcc-services-sec { background: linear-gradient(180deg, var(--off-white) 0%, #fff 100%); }
.gcc-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; margin-top: 52px; }
.gcc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: 0 4px 18px rgba(10,47,53,0.05);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display:flex; flex-direction:column; gap:14px;
}
.gcc-card:hover { transform: translateY(-6px); box-shadow: 0 14px 34px rgba(10,47,53,0.12); border-top-color: var(--teal); }
.gcc-card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), #1a4f57);
  color: #fff; display:flex; align-items:center; justify-content:center;
}
.gcc-card-icon .icon-svg { width: 24px; height: 24px; stroke: #fff; fill:none; stroke-width:1.75; }
.gcc-card h3 { font-family:'Montserrat',sans-serif; font-size: 1.08rem; color: var(--teal); margin: 0; }
.gcc-card ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:8px; }
.gcc-card ul li {
  position: relative; padding-left: 20px; font-size: 0.88rem; color: var(--text-mid); line-height: 1.55;
}
.gcc-card ul li::before {
  content:""; position:absolute; left:0; top:8px; width:8px; height:8px;
  background: var(--gold); border-radius: 50%;
}

/* === GCC Countries === */
.gcc-countries-sec { background: var(--teal); color: #fff; }
.gcc-countries-sec .section-title { color: #fff; }
.gcc-countries-sec .section-sub { color: rgba(255,255,255,0.82); }
.country-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 22px; margin-top: 52px; }
.country-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.country-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.1); border-color: var(--gold); }
.country-flag { display:flex; justify-content:center; margin-bottom: 14px; }
.country-flag svg { border-radius: 4px; box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.country-card h3 { font-family:'Montserrat',sans-serif; font-size: 1.02rem; color: #fff; margin: 0 0 6px; }
.country-card p { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin: 0; }

/* ===== OFFICE LOCATIONS SECTION ===== */

/* Section Header */
.office-section-header {
  text-align: center;
  margin-bottom: 52px;
}

.office-section-header .section-sub {
  max-width: 640px;
  margin: 0 auto;
}

/* Office Locations Grid: head office card + map */
.office-locations-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 36px;
}

/* Head Office Card */
.office-card {
  background: var(--white);
  border: 1px solid rgba(3,59,68,0.08);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: 0 8px 32px rgba(3,59,68,0.07);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.office-card:hover {
  box-shadow: 0 14px 44px rgba(3,59,68,0.12);
  transform: translateY(-2px);
}

.office-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(212,164,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Office Badges */
.office-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.office-badge--head {
  background: linear-gradient(135deg, var(--gold), #E8C168);
  color: var(--teal-dark);
}

.office-badge--branch {
  background: var(--teal);
  color: #fff;
}

.office-badge-icon {
  width: 12px; height: 12px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* Office Name */
.office-card__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--teal);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

/* Office Details */
.office-card__details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 26px;
}

.office-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.office-detail__icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: rgba(3,59,68,0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  transition: background 0.25s, color 0.25s;
}

.office-detail:hover .office-detail__icon {
  background: rgba(212,164,55,0.12);
  color: var(--gold);
}

.office-detail__icon svg {
  width: 17px; height: 17px;
  stroke: currentColor; fill: none;
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
}

.office-detail__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.office-detail__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.office-detail__value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
}

.office-detail__value a {
  color: var(--text-dark);
  transition: color 0.2s;
}

.office-detail__value a:hover {
  color: var(--gold);
}

/* Office Action Buttons */
.office-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.office-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 11px 20px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  min-height: 44px;
}

.office-btn svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
}

/* Call Now — Gold */
.office-btn--call {
  background: linear-gradient(135deg, var(--gold), #E8C168);
  color: var(--teal-dark);
}
.office-btn--call svg { stroke: var(--teal-dark); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.office-btn--call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(212,164,55,0.4);
}

/* WhatsApp — Green */
.office-btn--whatsapp {
  background: #25D366;
  color: #fff;
}
.office-btn--whatsapp svg { fill: #fff; stroke: none; }
.office-btn--whatsapp:hover {
  background: #22c55e;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37,211,102,0.35);
}

/* Get Directions — Teal Outline */
.office-btn--directions {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid rgba(3,59,68,0.2);
}
.office-btn--directions svg { stroke: var(--teal); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.office-btn--directions:hover {
  border-color: var(--teal);
  background: rgba(3,59,68,0.04);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(3,59,68,0.1);
}

/* View Branch — Teal Solid */
.office-btn--branch {
  background: var(--teal);
  color: #fff;
}
.office-btn--branch svg { stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.office-btn--branch:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(3,59,68,0.22);
}

/* Map Container */
.office-map-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(3,59,68,0.1);
  border: 1px solid rgba(3,59,68,0.08);
  background: #eaeaea;
}

.office-map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Branch Office Card (below main grid) */
.branch-card {
  background: linear-gradient(135deg, var(--off-white) 0%, #fff 100%);
  border: 1px solid rgba(3,59,68,0.08);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: 0 6px 24px rgba(3,59,68,0.06);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.branch-card:hover {
  box-shadow: 0 10px 36px rgba(3,59,68,0.1);
  transform: translateY(-2px);
}

.branch-card__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.branch-card__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--teal);
  margin: 0;
  letter-spacing: -0.01em;
}

.branch-card__addr {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.5;
}

.branch-card__addr svg {
  width: 16px; height: 16px; min-width: 16px;
  stroke: var(--gold); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.branch-card__note {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

/* Contact: split layout (info | form) — kept for the form section */
.contact-grid--split { display: grid; grid-template-columns: 1fr 1.05fr; gap: 40px; align-items: start; }
.contact-grid--split .contact-info p { margin-bottom: 24px; }
.contact-grid--split .contact-items { gap: 14px; }
.contact-grid--split .contact-cta-row { margin-top: 22px; }
.map-frame--compact { margin-top: 26px; aspect-ratio: 16/9; }
.contact-form-wrap { padding: 28px; }
.contact-form-wrap h3 { font-size: 1.25rem; margin-bottom: 4px; }
.contact-form-wrap p { margin-bottom: 18px; }
.contact-form-wrap .form-group { margin-bottom: 12px; }
.contact-form-wrap textarea { min-height: 90px; resize: vertical; }
.form-status { font-size: 0.85rem; margin: 12px 0 0; min-height: 1.1em; }
.form-status.success { color: #1f8a4c; }
.form-status.error { color: #b00020; }

/* Divider between office section and form */
.office-form-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), rgba(212,164,55,0.3), var(--border), transparent);
  margin: 48px 0;
}

/* Office Locations Responsive */
@media (max-width: 960px) {
  .office-locations-grid { grid-template-columns: 1fr; gap: 24px; }
  .office-map-wrap { min-height: 280px; aspect-ratio: 16/9; }
  .branch-card { grid-template-columns: 1fr; gap: 18px; }
  .branch-card .office-btn--branch { width: 100%; justify-content: center; }
  .contact-grid--split { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .office-card { padding: 26px 20px; }
  .office-card__name { font-size: 1.08rem; }
  .office-actions { flex-direction: column; }
  .office-btn { width: 100%; justify-content: center; }
  .office-map-wrap { min-height: 220px; }
  .branch-card { padding: 22px 18px; }
  .branch-card__name { font-size: 0.96rem; }
}

@media (max-width: 360px) {
  .office-card { padding: 22px 16px; }
  .office-card__name { font-size: 1rem; }
  .office-detail__icon { width: 34px; height: 34px; min-width: 34px; }
  .office-btn { font-size: 0.74rem; padding: 10px 16px; }
  .branch-card { padding: 18px 14px; }
}

/* === GCC Countries: locked 3x2 grid === */
.country-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 22px; }
.country-card { display:flex; flex-direction:column; align-items:center; justify-content:center; min-height: 150px; }
.country-card h3 { margin: 0; }

@media (max-width: 820px) {
  .country-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 460px) {
  .country-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 14px; }
  .country-card { padding: 18px 12px; min-height: 130px; }
}

/* === Mobile polish (320–480px) === */
@media (max-width: 480px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .section-pad { padding: 52px 0; }
  .hero-content { padding: 110px 16px 64px; }
  .hero-title { font-size: clamp(1.85rem, 8vw, 2.4rem); }
  .hero-sub { font-size: 0.95rem; line-height: 1.7; margin-bottom: 32px; }
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 1.6rem; }
  .nav-inner { height: 64px; padding: 0; }
  .logo-img--nav { width: 140px; }
  .contact-form-wrap { padding: 22px 16px; border-radius: 10px; }
  .contact-cta-row .contact-cta { flex: 1 1 100%; justify-content: center; }
  .branch-office-inner { padding: 22px 18px; }
  .careers-card { padding: 32px 20px; }
  .careers-action { width: 100%; }
  .careers-action .btn-gold { width: 100%; justify-content: center; }
  .faq-q { padding: 16px 14px; font-size: 0.92rem; }
  .faq-a p { padding: 0 14px 16px; }
  .footer-grid { gap: 28px; }
  .float-wa, .float-call { width: 50px; height: 50px; }
}

@media (max-width: 360px) {
  .hero-title { font-size: 1.7rem; }
  .section-title { font-size: 1.5rem; }
  .badge { font-size: 0.62rem; padding: 5px 12px; }
  .country-card h3 { font-size: 0.92rem; }
}

/* Custom Select Dropdown Styling */
.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding-right: 40px !important; /* Space for the custom caret */
  cursor: pointer;
  background-color: var(--white);
  color: var(--text-dark);
}

.custom-select-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23033B44' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.custom-select-wrapper:focus-within::after {
  transform: translateY(-50%) rotate(180deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4A437' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}

.custom-select-wrapper select option, 
.custom-select-wrapper select optgroup {
  color: var(--text-dark);
  background-color: var(--white);
}

.custom-select-wrapper select:invalid {
  color: #718096; /* Light gray for placeholder text */
}

.custom-select-wrapper select option[value=""][disabled] {
  display: none;
}

/* Form Validation & Loading States */
.error-msg {
  font-size: 0.75rem;
  color: #b00020;
  margin-top: 4px;
  min-height: 16px;
  display: block;
}

.input-error {
  border-color: #b00020 !important;
  background-color: #fffafb !important;
}

.req {
  color: #b00020;
}

.form-submit {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-submit:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}

/* SweetAlert2 Brand Customization */
.swal2-popup {
  font-family: 'Inter', sans-serif !important;
  border-radius: var(--radius) !important;
  box-shadow: 0 10px 40px rgba(3,59,68,0.15) !important;
  padding: 24px 0 !important;
}

.swal2-title {
  color: var(--teal) !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 800 !important;
  font-size: 1.4rem !important;
}

.swal2-html-container {
  color: var(--text-dark) !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
}

.swal2-confirm {
  background: linear-gradient(135deg, var(--gold), #E8C168) !important;
  color: var(--teal-dark) !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
  padding: 12px 28px !important;
  box-shadow: 0 4px 14px rgba(212,164,55,0.3) !important;
}

.swal2-cancel {
  background: transparent !important;
  border: 1.5px solid var(--border) !important;
  color: var(--text-mid) !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 600 !important;
  border-radius: 6px !important;
  padding: 12px 28px !important;
}

.swal2-icon.swal2-success .swal2-success-ring {
  border-color: rgba(212,164,55,0.3) !important;
}

.swal2-icon.swal2-success [class^=swal2-success-line] {
  background-color: var(--gold) !important;
}

.swal2-success-circular-line-left,
.swal2-success-circular-line-right,
.swal2-success-fix {
  background-color: transparent !important;
}

/* Prevent any horizontal overflow */
html, body { overflow-x: hidden; max-width: 100%; }
img, svg, iframe { max-width: 100%; }
