    .contact-hero {
            padding: 80px 0 40px;
        }

        .contact-hero-title {
            font-size: 2.4rem;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .contact-hero-text {
            max-width: 560px;
            color: #6b7280;
            font-size: 1rem;
        }

        .contact-section {
            padding: 40px 0 80px;
        }

        .contact-card {
            background: #ffffff;
            border-radius: 24px;
            box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
            padding: 32px 28px;
            height: 100%;
        }

        .contact-card h2 {
            font-size: 1.5rem;
            margin-bottom: 8px;
        }

        .contact-info-title {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #9ca3af;
            margin-bottom: 4px;
        }

        .contact-info-value {
            font-size: 1rem;
            font-weight: 500;
            color: #111827;
        }

        .contact-info-block + .contact-info-block {
            margin-top: 16px;
        }

        .regulatory-note {
            font-size: 0.8rem;
            color: #6b7280;
            margin-top: 24px;
            border-top: 1px dashed #e5e7eb;
            padding-top: 16px;
        }

        .location-map-wrapper {
            border-radius: 18px;
            overflow: hidden;
            background: #f3f4f6;
        }

        .location-map-wrapper iframe {
            width: 100%;
            height: 260px;
            border: 0;
        }

        @media (max-width: 767.98px) {
            .contact-hero {
                padding-top: 56px;
            }

            .contact-hero-title {
                font-size: 2rem;
            }

            .contact-card {
                padding: 24px 20px;
                border-radius: 18px;
            }

            .location-map-wrapper iframe {
                height: 220px;
            }
        }

        
.brand-wrap{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.brand-text{
  font-weight:800;
  font-size:22px;
  color:#111;
  line-height:1;
}

.brand-text span{
  font-weight:800;
  color:#0FA958; /* optional */
}

.brand-logo{
  width:52px;        /* bigger */
  height:52px;       /* bigger */
  border-radius:50%; /* rounded */
  object-fit:cover;
}

.language-switcher {
            padding: 10px 24px;
            border: 2px solid #f2a900;
            background: transparent;
            color: #111;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            border-radius: 50px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }

        .language-switcher:hover {
            background-color: #f2a900;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(242, 169, 0, 0.3);
        }

        .language-switcher:active {
            transform: translateY(0);
        }


        .language-switcher a {
     color: #111; 
    
     text-decoration: none; 
    
}

.language-switcher:hover a {
    color: white;
}


/* ===== Animations ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes floatSoft {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}

/* start hidden (will show by JS) */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* nice entrance for hero text */
.contact-hero-title {
  animation: fadeRight .8s ease both;
}

.contact-hero-text {
  animation: fadeUp .9s ease .12s both;
}

/* cards reveal + hover */
.contact-card {
  transition: transform .25s ease, box-shadow .25s ease;
}

.contact-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

/* map subtle float */
.location-map-wrapper {
  animation: floatSoft 5s ease-in-out infinite;
}
.hero-row{
  display: flex;
  align-items: stretch;
  gap: 0;
}


/* Left side (text) */
.contact-hero{
  flex: 1;
  min-width: 0;
  padding: 70px clamp(16px, 5vw, 80px);
  background: transparent; /* change this color */
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* If you don’t want the inner image anymore, hide it */
.contact-hero .scroll-down-indicator{
  display: none;
}


 
.hero-side{
 
  flex: 1;
  min-width: 0;
  background: transparent; /* behind image if needed */
}

.hero-side img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: right center;
  max-width: 500px;
}

/* Typography (optional) */
.hero-title{
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  text-transform: uppercase;
}

.hero-subtitle{
  margin: 0;
  max-width: 620px;
  line-height: 1.7;
  font-size: 18px;
  opacity: 0.95;
}

/* Mobile stack */
@media (max-width: 992px){
  .hero-row{
    flex-direction: column;
  }

  .contact-hero{
    padding: 28px 18px;
  }

  .hero-side{
    height: 320px;
  }
}

/* Mobile hide-on-scroll navbar */
@media (max-width: 750px) {
  .navbar {
    position: sticky;
    top: 0;
    z-index: 9999;
    transition: transform .25s ease;
    background: #fff;
    will-change: transform;
  }

  .navbar.nav-hidden {
    transform: translateY(-110%);
  }


 
  .arabic-mobile-right {
    direction: rtl;
    text-align: right;
  }

  /* optional: make paragraph spacing nicer on mobile */
  .arabic-mobile-right .contact-hero-text {
    margin-left: 0;
    margin-right: 0;
  }
  
}
