/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

@font-face {
    font-family: "Adoody";
    src: url("/wp-content/uploads/fonts/adoody.woff2") format("woff2"),
         url("/wp-content/uploads/fonts/adoody.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Apply ONLY on Arabic / RTL */
html[dir="rtl"] body,
html[dir="rtl"] p,
html[dir="rtl"] span,
html[dir="rtl"] div,
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6 {
    font-family: "Adoody", "HacenExtenderX", Tahoma, Arial, sans-serif !important;
}


    :root{
      --blue-900:#0a2f66;      /* deep section */
      --blue-800:#0b3a7a;
      --blue-200:#dff1ff;      /* light section */
      --blue-300:#bfe6ff;
      --accent:#ff8a00;        /* orange underline / accent */
      --text:#0b2a55;
      --white:#ffffff;
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: "Source Sans 3", sans-serif !important;
      color:var(--text);
      background:#fff;
    }
    h1, h2, h3, h4, h5, h6 {
        font-family: "Source Sans 3", sans-serif !important;
    }
    a{color:inherit;text-decoration:none}
    .wrap{width:min(1200px, 92vw);margin:0 auto}

/* FIX FONT AWESOME ICONS */
.fa-brands,
.fa-solid,
.fa-regular {
  font-family: "Font Awesome 6 Brands", "Font Awesome 6 Free" !important;
}
/* FORCE FONT AWESOME ON PSEUDO ELEMENTS */
.fa-brands::before {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
}

.fa-solid::before,
.fa-regular::before {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}

.socials a {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.socials i::before {
  font-size: 18px;
  color: #0b4c8c;
}


[dir="rtl"] {
  font-family: "Adoody", "HacenExtenderX", Tahoma, Arial, sans-serif !important;;
}


[dir="rtl"] body {
  font-family: "Adoody", "HacenExtenderX", Tahoma, Arial, sans-serif !important;;
}

[dir="rtl"] h1,
[dir="rtl"] h2 {
  font-family: "Adoody", "HacenExtenderX", Tahoma, Arial, sans-serif !important;;
  font-weight: 800;
}

[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] .footer-col {
  font-family: "Adoody", "HacenExtenderX", Tahoma, Arial, sans-serif !important; !important;
  font-weight: 600;
}

[dir="rtl"] p,
[dir="rtl"] li,
[dir="rtl"] span,
[dir="rtl"] a,
[dir="rtl"] button {
  font-family: "Adoody", "HacenExtenderX", Tahoma, Arial, sans-serif !important;;
  font-weight: 400;
  line-height: 1.8;
}

[dir="rtl"] {
  direction: rtl;
  text-align: right;
  font-family: "Adoody", "HacenExtenderX", Tahoma, Arial, sans-serif !important;;
}

[dir="rtl"] .vision-title,
[dir="rtl"] .about-title {
  font-weight: 800;
}

[dir="rtl"] .vision-label {
  font-weight: 500;
  letter-spacing: 0;
}



    /* =========================================================
      TOP NAV (overlay on hero)
    ========================================================= */
.site-header {
  position: relative; /* 🔑 NOT absolute */
  z-index: 100;
}
.topnav {
  background: #0a3f8f;
  position: relative;
  z-index: 100;
}

.brand {
  display: flex;
  align-items: center;
}

.nav a {
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  font-size: 22px;
  font-weight: 900;
  color: #0a3f8f;

  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}


@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

/* Logo */
.logo {
  height: 56px;
      filter: brightness(0) invert(1);
}

/* Navigation */
.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav a {
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 28px;
  text-decoration: none;
}

.nav .pill {
  background: #fff;
  color: #0a3f8f;
  padding: 8px 14px;
  border-radius: 20px;
}
header .wrap {
    width: min(1200px, 92vw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0px;
}

/* NAV DROPDOWN */
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  border-radius: 10px;
  padding: 12px 0;
  min-width: 260px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: .25s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

.dropdown a {
  display: block;
  padding: 10px 22px;
  font-weight: 600;
  color: #083d8c;
}

.dropdown a:hover {
  background: #f7931e;
  color: #fff;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}



    /* =========================================================
      HERO SLIDER
    ========================================================= */
.hero-banner {
  width: 100%;
  min-height: 500px;
  background-image: url("/wp-content/uploads/2025/12/fruits-serene-hero-banner-1.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  display: flex;
  align-items: center;
}


.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  color: #fff;
}


    /* =========================================================
      WAVES (SVG separators)
    ========================================================= */
    .wave{
      display:block;
      width:100%;
      height:auto;
      line-height:0;
    }
    .wave svg{display:block;width:100%;height:auto}


.hero-wave {
  width: 100%;
  line-height: 0;
  margin-top: -30px; /* removes tiny gap */
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 50px;
}
@media (max-width: 768px) {
  .hero-wave svg {
    height: 50px;
  }
}
.footer-waves svg {
  display: block;
  width: 100%;
  height: 50px; /* ↓ reduce height here */
}

    /* =========================================================
      SECTION TITLES (Serene style: uppercase + orange underline)
    ========================================================= */
    .section{
      position:relative;
      padding:64px 0;
    }
    .title{
      text-align:center;
      font-weight:950;
      text-transform:uppercase;
      letter-spacing:-.4px;
      color:#0b2a55;
      margin:0 0 18px;
      font-size: clamp(22px, 2.3vw, 34px);
    }
    .underline{
      width:64px;
      height:6px;
      border-radius:999px;
      background:var(--accent);
      margin:0 auto 34px;
    }

    /* =========================================================
      PRODUCTS SLIDER (center bigger, light blue section)
    ========================================================= */


.products {
  background: #e6f4ff;
  text-align: center;
  padding: 80px 0;
  overflow: hidden;
}

.products-swiper {
  max-width: 1100px;
  margin: 0 auto;
}

.products-swiper .swiper-slide {
  width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s ease;
}

/* circle */
.circle {
  width: 260px;
  height: 260px;
  background: #47aee4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle img {
  max-height: 240px;
}

/* label */
.label {
  margin-top: 14px;
  background: #0b3a8f;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 800;
}

/* focus */
.products-swiper .swiper-slide-active {
  transform: scale(1.15);
}

.products-swiper .swiper-slide-prev,
.products-swiper .swiper-slide-next {
  transform: scale(0.9);
}


        .container {
            width: 100%;
            margin: auto;
        }

        h1 {
            text-align: center;
            color: #003da5;
            font-size: clamp(28px, 7vw, 60px);
            font-weight: 900;
            margin-bottom: clamp(20px, 5vh, 40px);
            letter-spacing: clamp(1px, 0.3vw, 3px);
            text-transform: uppercase;
        }

        .orange-line {
            width: clamp(120px, 25vw, 250px);
            height: clamp(5px, 1vw, 10px);
            background: linear-gradient(90deg, #ff9f1c 0%, #ffb84d 100%);
            border-radius: 10px;
            margin: 0 auto clamp(30px, 8vh, 60px);
            display: block;
        }

        .showcase {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            position: relative;
            width: 100%;
            min-height: clamp(350px, 60vw, 550px);
        }

        .nav-btn {
            position: absolute;
            width: clamp(40px, 10vw, 70px);
            height: clamp(40px, 10vw, 70px);
            border-radius: 50%;
            background: white;
            border: 3px solid #003da5;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(20px, 5vw, 32px);
            color: #003da5;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 61, 165, 0.15);
            flex-shrink: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 20;
        }

        #prevBtn {
            left: clamp(10px, 2vw, 40px);
        }

        #nextBtn {
            right: clamp(10px, 2vw, 40px);
        }

        .nav-btn:hover {
            background: #003da5;
            color: white;
            box-shadow: 0 6px 20px rgba(0, 61, 165, 0.3);
        }

        .nav-btn:active {
            opacity: 0.8;
        }

        .products-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: clamp(20px, 5vw, 80px);
            flex: 1;
            min-height: clamp(350px, 60vw, 550px);
        }

        .product-slot {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 0 0 auto;
            opacity: 0.4;
            transform: scale(0.65);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            pointer-events: none;
        }

        .product-slot.active {
            opacity: 1;
            transform: scale(1);
            pointer-events: auto;
            z-index: 10;
        }

        .product-slot.hidden {
            display: none;
        }

        .product-circle {
            width: clamp(180px, 40vw, 320px);
            height: clamp(180px, 40vw, 320px);
            border-radius: 50%;
            background: #63bde9;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: clamp(20px, 4vw, 35px);
            flex-shrink: 0;
        }


        .product-image {
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
            filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
        }

.product-label {
  max-width: 220px;        /* ⬅️ control label width */
  margin: 14px auto 0;     /* center it */
  padding: 10px 16px;

  text-align: center;
  white-space: normal;     /* allow wrapping */
  word-wrap: break-word;
  line-height: 1.25;
  font-size: 20px;

  background: #0b3a8f;
  color: #fff;
  border-radius: 6px;
  font-weight: 800;
}

/* Subtitle line */
.product-label small {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.8;
}

        /* Mobile */
        @media (max-width: 768px) {
            .showcase {
                min-height: 400px;
            }

            .products-container {
                min-height: 400px;
                gap: clamp(15px, 3vw, 30px);
                width: 100%;
            }

            .product-slot {
                opacity: 0.35;
                transform: scale(0.65);
            }

            .product-slot.active {
                opacity: 1;
                transform: scale(1);
            }

            .nav-btn {
                width: clamp(40px, 12vw, 65px);
                height: clamp(40px, 12vw, 65px);
                font-size: clamp(18px, 4vw, 28px);
            }

            #prevBtn {
                left: clamp(5px, 3vw, 20px);
            }

            #nextBtn {
                right: clamp(5px, 3vw, 20px);
            }
        }

        /* Landscape mobile */
        @media (max-width: 768px) and (max-height: 500px) {
            .products-container {
                min-height: 280px;
            }

            .product-circle {
                width: clamp(120px, 30vw, 220px);
                height: clamp(120px, 30vw, 220px);
                margin-bottom: clamp(10px, 2vw, 15px);
            }

            .nav-btn {
                width: clamp(35px, 8vw, 55px);
                height: clamp(35px, 8vw, 55px);
            }
        }

        /* Touch device */
        @media (hover: none) and (pointer: coarse) {
            .nav-btn {
                min-width: 50px;
                min-height: 50px;
            }
        }



/* ================================
   PRODUCT CAN SIZE CONTROL
================================ */

/* Circle stays the same */
.product-circle {
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 🔑 Control CAN size */
.product-circle img {
  max-height: 200px;   /* ⬅️ MAIN CONTROL */
  width: auto;
  transition: transform 0.4s ease, opacity 0.4s ease;
  margin-top: -80px;
}

/* Active (center) */
.product-slot.active .product-circle img {
  max-height: 290px;   /* slightly bigger than sides */
}

/* Side slides */
.product-slot:not(.active) .product-circle img {
  max-height: 250px;
  opacity: 0.6;
}



    /* =========================================================
      TASTE OF FUN (dark blue + centered copy + CTA)
    ========================================================= */
    .taste{
      background:var(--blue-800);
      color:#fff;
      padding:0;
      overflow:hidden;
    }
    .taste .section{
      padding:70px 0 110px;
    }
    .taste h2{
      margin:0;
      text-align:center;
      text-transform:uppercase;
      font-weight:950;
      letter-spacing:-.5px;
      line-height:.9;
      font-size: clamp(34px, 4vw, 62px);
    }
    .taste .underline{margin-top:18px;margin-bottom:26px}
    .taste p{
      width:min(740px, 92vw);
      margin:0 auto 24px;
      text-align:center;
      color:rgba(255,255,255,.9);
      font-weight:600;
      line-height:1.45;
      font-size:14px;
    }
    .taste .btn.primary{
      background:#fff;color:#0b2a55;border-radius:8px;
      padding:12px 18px;
      display:inline-flex;
    }
    .taste .cta-center{display:flex;justify-content:center}

    /* decorative can/fruits placeholder at bottom like the site */
    .taste-decor{
      position:absolute;
      left:50%;
      transform:translateX(-50%);
      bottom:-40px;
      width:min(880px, 96vw);
      height:220px;
      pointer-events:none;
      display:grid;
      place-items:center;
      opacity:.95;
    }
    .taste-decor img{
      width:320px;
      height:240px;
      object-fit:contain;
      filter:drop-shadow(0 26px 24px rgba(0,0,0,.22));
    }

    /* =========================================================
      FEATURES (light blue, three icons row)
    ========================================================= */
    .features{
      background:#63bde9;
      padding:0;
    }
    .features .section{padding:70px 0 74px}
    .features .title{color:#0b2a55}
    .feature-grid{
      width:min(980px, 92vw);
      margin:0 auto;
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:28px;
      align-items:start;
    }
    .feature{
      text-align:center;
    }
    .feature .icon{
      width:80px;height:80px;border-radius:999px;
      margin:0 auto 14px;
      background:rgba(255,255,255,.30);
      border:2px solid rgba(11,42,85,.12);
      display:grid;place-items:center;
      font-weight:950;
      color:#0b2a55;
    }
    .feature h3{
      margin:0 0 6px;
      font-weight:950;
      text-transform:uppercase;
      font-size:14px;
      letter-spacing:.4px;
    }
    .feature p{
      margin:0;
      font-size:12.5px;
      line-height:1.35;
      color:rgba(11,42,85,.85);
      font-weight:650;
    }

    /* =========================================================
      RESPONSIBILITY (dark blue, 1 big + 2 stacked cards)
    ========================================================= */
    .resp{
      background:var(--blue-800);
      color:#fff;
      padding:0;
    }
    .resp .section{padding:74px 0 84px}
    .resp .title{color:#fff}
    .resp .underline{background:var(--accent)}

    .cards{
      width:min(1080px, 92vw);
      margin:0 auto;
      display:grid;
      grid-template-columns: 1.35fr 1fr;
      gap:18px;
    }
    .card-big{
      background:#61c3ee;
      border-radius:18px;
      padding:26px;
      overflow:hidden;
      position:relative;
      min-height:320px;
      color:#0b2a55;
      box-shadow:0 24px 40px rgba(0,0,0,.18);
    }
    .card-big h3, .card h3{
      margin:0 0 10px;
      font-weight:950;
      text-transform:uppercase;
      letter-spacing:-.2px;
    }
    .card-big p, .card p{
      margin:0 0 14px;
      font-weight:650;
      line-height:1.35;
      font-size:13px;
      color:rgba(11,42,85,.9);
    }
    .card-big .btn, .card .btn{
      background:#fff;
      color:#0b2a55;
      border-radius:10px;
      padding:10px 14px;
      font-size:12px;
    }
    /* big card image placeholder at bottom */
    .card-big .img{
      position:absolute;
      left:18px; right:18px; bottom:-8px;
      height:200px;
      border-radius:14px;
      background:rgba(255,255,255,.35);
      border:2px solid rgba(11,42,85,.10);
      display:grid;
      place-items:center;
      font-weight:900;
      opacity:.9;
    }

    .card-col{
      display:grid;
      gap:18px;
      align-content:start;
    }
    .card{
      background:#61c3ee;
      border-radius:18px;
      padding:22px;
      color:#0b2a55;
      min-height:150px;
      box-shadow:0 24px 40px rgba(0,0,0,.18);
      position:relative;
      overflow:hidden;
    }
    .card .mini{
      position:absolute;
      left:16px; bottom:12px;
      width:56px; height:56px;
      border-radius:14px;
      background:rgba(255,255,255,.35);
      border:2px solid rgba(11,42,85,.10);
      display:grid;place-items:center;
      font-weight:950;
    }

    /* =========================================================
      COMMUNITY + FOOTER
    ========================================================= */
/* ===============================
   FOOTER BASE
================================ */
.site-footer {
  position: relative;
  background: #0a3f8f;
  color: #fff;
  overflow: hidden;
}

/* WAVES */
.footer-waves svg {
  display: block;
  width: 100%;
  height: 50px;
}

/* CHARACTER */
.footer-character {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 5;
}

.footer-character img {
  height: 140px;
}

.contact-badge {
  display: inline-block;
  background: #f7931e;
  color: #fff;
  font-weight: 900;
  padding: 6px 14px;
  border-radius: 6px;
  margin-top: -8px;
}

/* CONTENT */
.footer-content {
  display: grid;
  align-items: flex-start;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 140px 60px 40px;
  gap: 40px;
}

.footer-col a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  margin: 8px 0;
}

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

.footer-logo {
  width: 180px;
  margin-bottom: 18px;
}

.socials {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
}

.socials a {
  width: 40px;
  height: 40px;
  background: #fff;
  color: #0b4c8c;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  text-decoration: none;
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,.2);
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
  margin-left: 16px;
}

/* MOBILE */
@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 180px;
  }

  .footer-col.left,
  .footer-col.right {
    order: 2;
  }

  .footer-center {
    order: 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1.3fr;
  align-items: flex-start;
  gap: 60px;
  padding: 80px 10%;
  color: #fff;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 15px;
}

.footer-tagline {
  opacity: 0.85;
  font-size: 14px;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-family: "Source Sans 3", sans-serif !important;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #fff;
}

.footer-col a,
.footer-col p {
  display: block;
  color: #fff;
  opacity: 0.9;
  font-size: 14px;
  margin-bottom: 10px;
  text-decoration: none;
}

[dir="rtl"] .footer-col a, [dir="rtl"] .footer-col p {
  display: block;
  color: #fff;
  opacity: 0.9;
  font-size: 18px;
  margin-bottom: 10px;
  text-decoration: none;
}

.footer-col a:hover {
  opacity: 1;
}

.brochure-link {
  margin-top: 15px;
  display: inline-block;
  font-weight: 600;
}

.socials {
  display: flex;
  gap: 14px;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: #0b4c8c;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-video iframe {
  width: 100%;
  height: 160px;
  border-radius: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.2);
  padding: 20px 10%;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

[dir="rtl"] .footer-bottom {
  border-top: 1px solid rgba(255,255,255,.2);
  padding: 20px 10%;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
}

.footer-bottom a {
  margin-left: 20px;
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
}



    /* =========================================================
      RESPONSIVE
    ========================================================= */
    @media (max-width: 900px){
      .hero .content .wrap{grid-template-columns:1fr}
      .nav{display:none}
      .feature-grid{grid-template-columns:1fr;gap:18px}
      .cards{grid-template-columns:1fr}
      .prod-swiper{padding:10px 46px 38px}
    }
    
    
.menu-toggle {
  position: relative;
  z-index: 9999; /* 🔑 THIS is why it wasn't clickable */
}

.hero-banner,
.hero-banner *,
.wave,
.wave svg {
  pointer-events: none;
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .topnav .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}


@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 100%;
    right: 16px;
    background: #0a3f8f;
    border-radius: 12px;
    padding: 16px;
    display: none;
    flex-direction: column;
    gap: 12px;
  }

  .nav.nav-open {
    display: flex;
  }

  .nav a {
    color: #fff;
    font-weight: 800;
  }
}


@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .socials {
    justify-content: center;
  }

  .footer-video iframe {
    height: 200px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

.socials {
  display: flex;
  gap: 14px;
}

.socials a {
  width: 35px;
  height: 35px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #0b4c8c; /* icon stroke color */
  text-decoration: none;
}

.socials svg {
  width: 20px;
  height: 20px;
}



/* ===============================
   FULLSCREEN MOBILE MENU
================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, #0a3f8f, #08306b);
  z-index: 999999;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

/* active state */
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* close button */
.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;

  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;

  background: #fff;
  color: #0a3f8f;
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;

  box-shadow: 0 8px 22px rgba(0,0,0,.25);
}

/* nav items */
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: center;
}

.mobile-nav a {
  font-size: 22px !important;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  text-decoration: none;
}

.mobile-nav a.cta {
  margin-top: 12px;
  background: #fff;
  color: #0a3f8f;
  padding: 14px 28px;
  border-radius: 999px;
}


@media (max-width: 768px) {
  .nav {
    display: none;
  }
}


/* ================= HERO ================= */
.contact-hero {
  background: #55b6e7;
  text-align: center;
  padding: 140px 20px 160px;
  position: relative;
}

.contact-eyebrow {
  font-weight: 700;
  letter-spacing: 1px;
  color: #0b2a55;
}

.contact-hero h1 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 900;
  color: #0b2a55;
}

.orange-underline {
  display: block;
  width: 70px;
  height: 6px;
  background: #ff8a00;
  border-radius: 4px;
  margin: 14px auto 0;
}

/* ================= WAVES ================= */
.contact-wave-top,
.contact-wave-bottom {
  position: absolute;
  left: 0;
  width: 100%;
}

.contact-wave-top {
  top: 0;
  height: 140px;
}

.contact-wave-bottom {
  bottom: 0;
  height: 160px;
}

/* ================= FORM SECTION ================= */
.contact-section {
  background: #0b3a78;
  padding: 100px 20px 160px;
  position: relative;
}

.contact-container {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.enquiry-title {
  color: #fff;
  font-weight: 800;
  margin-bottom: 24px;
}

/* ================= FORM ================= */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 6px;
  border: none;
  font-size: 15px;
}

.contact-form textarea {
  min-height: 140px;
}

.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}

.form-col {
  flex: 1;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}

/* ================= CHECKBOX ================= */
.checkbox-row {
  color: #fff;
  font-size: 13px;
}

.checkbox-row input {
  margin-right: 8px;
}

/* ================= SUBMIT ================= */
.submit-row input[type="submit"] {
  background: #fff;
  color: #0b3a78;
  font-weight: 900;
  padding: 14px 40px;
  border-radius: 6px;
  cursor: pointer;
  border: none;
}

.submit-row input[type="submit"]:hover {
  opacity: 0.9;
}



/* ================================
   CONTACT FORM 7 – SERENE STYLE
================================ */

/* Wrapper */
.wpcf7 {
  max-width: 600px;
  margin: 0 auto;
}

/* Labels */
.wpcf7 label {
  display: block;
  width: 100%;
}

/* Inputs & textarea */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 6px;
  border: none;
  background: #ffffff;
  color: #0b2a55;
  font-size: 14px;
  font-weight: 600;
  box-sizing: border-box;
}

/* Placeholder */
.wpcf7 ::placeholder {
  color: #7a8fa6;
  opacity: 1;
}

/* Two-column layout */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

/* Full width row */
.form-row.full {
  grid-template-columns: 1fr;
}

/* Textarea */
.wpcf7 textarea {
  min-height: 120px;
  resize: none;
}

/* Checkbox row */
.wpcf7-acceptance {
  margin: 18px 0;
}

.wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  line-height: 1.4;
  color: #ffffff;
}

/* Checkbox */
.wpcf7-acceptance input {
  margin-top: 3px;
}

/* Submit button */
.wpcf7 input[type="submit"] {
  background: #ffffff;
  color: #0b2a55;
  border: none;
  border-radius: 6px;
  padding: 14px 26px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
  cursor: pointer;
  min-width: 180px;
}

/* Center submit */
.wpcf7-form .submit-row {
  text-align: center;
  margin-top: 24px;
}

/* Hover */
.wpcf7 input[type="submit"]:hover {
  background: #f1f6fb;
}

/* Validation errors */
.wpcf7-not-valid-tip {
  color: #ffb3b3;
  font-size: 12px;
  margin-top: 6px;
}

/* Error box */
.wpcf7-response-output {
  border: none;
  padding: 12px 16px;
  margin-top: 20px;
  font-size: 13px;
  border-radius: 6px;
}

/* Success */
.wpcf7-mail-sent-ok {
  background: #dff6e3;
  color: #0b7a3e;
}

/* Error */
.wpcf7-validation-errors {
  background: #ffe6e6;
  color: #8b0000;
}

/* Mobile */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}


/* === FORCE 2 COLUMNS FOR EMAIL + SUBJECT === */
.form-row.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

/* CF7 spans must fill grid cells */
.form-row.two-cols .wpcf7-form-control-wrap {
  width: 100%;
}

/* Full width rows */
.form-row.full {
  margin-bottom: 18px;
}

/* Checkbox row */
.form-row.checkbox {
  margin: 20px 0;
  color: #fff;
  font-size: 13px;
}

/* Submit button alignment */
.form-row.submit-row {
  margin-top: 28px;
}

/* Mobile fix */
@media (max-width: 768px) {
  .form-row.two-cols {
    grid-template-columns: 1fr;
  }
}


.has-dropdown {
  position: relative;
}

/* keep dropdown CLOSE to the parent */
.dropdown {
  top: 100%;               /* was 120% */
  margin-top: 0;           /* remove gap */
}

/* invisible hover bridge */
.has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

/* Hide toggle on desktop */
.menu-toggle {
  display: none;
}

/* Show toggle on mobile */
@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    display: none;
  }
}

.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 10px;
  min-width: 260px;
  padding: 10px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: .25s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

.has-dropdown:hover .dropdown,
.dropdown:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}


/* FULLSCREEN MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #0b4c8c;
  z-index: 99999;              /* VERY IMPORTANT */
  display: flex;               /* MUST be visible */
  flex-direction: column;
  padding: 40px;
  
  /* Hidden state */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}

/* OPEN STATE */
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* CLOSE BUTTON */
.mobile-close {
  background: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
  align-self: flex-end;
  cursor: pointer;
}

/* MENU LINKS */
.mobile-nav {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.mobile-nav a {
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

/* CTA */
.mobile-nav .cta {
  margin-top: 30px;
  background: #fff;
  color: #0b4c8c;
  padding: 14px 30px;
  border-radius: 40px;
  width: fit-content;
}

.menu-toggle {
  display: none;
}

@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    border: none;
    font-size: 22px;
    cursor: pointer;
  }

  .nav {
    display: none;
  }
}

.mobile-menu {
  pointer-events: none; /* default hidden */
}

.mobile-menu.open {
  pointer-events: auto; /* capture clicks when open */
}


.mobile-menu * {
  pointer-events: auto;
}


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

/* LANGUAGE SWITCHER – GLOBE */
.lang-switcher--globe {
  display: flex;
  align-items: center;
}

.lang-switcher--globe .lang-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.lang-switcher--globe .lang-link:hover {
  color: #ffffff;
  /*transform: translateY(-1px);*/
}

.lang-switcher--globe .globe-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.lang-switcher--globe .lang-text {
  font-size: 16px;
  letter-spacing: 0.5px;
}



/* =========================
   MOBILE HEADER ACTIONS
========================= */

/* =========================
   MOBILE HEADER – FINAL FIX
========================= */

.mobile-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Desktop */
/*@media (min-width: 992px) {*/
/*  .mobile-actions {*/
/*    display: none;*/
/*  }*/
/*}*/

/* Mobile */
@media (max-width: 991px) {

  .site-header .wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
   [dir="rtl"] .site-header .wrap {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
  }
  
  [dir="rtl"] header button, [dir="rtl"] .lang-link {
    font-family: "Adoody", "HacenExtenderX", Tahoma, Arial, sans-serif !important;;
    font-weight: 600;
  }
  /* Default (EN / LTR) */
  .mobile-actions {
    order: 1;
    flex-direction: row;
  }

  .brand {
    order: 2;
  }

  /* Hide desktop nav */
  .nav {
    display: none;
  }

  /* Arabic override */
  .site-header.is-ar .mobile-actions {
    order: 2;
    flex-direction: row-reverse;
  }

  .site-header.is-ar .brand {
    order: 1;
  }

  /* Tighten switcher */
  .lang-switcher--globe .lang-link {
    gap: 6px;
    font-size: 12px;
  }

  .lang-switcher--globe .globe-icon {
    width: 14px;
    height: 14px;
  }
}

.wpcf7 form.sent .wpcf7-response-output {
    color: #fff;
}
