:root{
      --bg0:#041718;
      --bg1:#061d1e;
      --bg2:#082427;

      --turq:#27d6c5;
      --turq2:#0bb7a6;

      --gold:#d6b25e;
      --gold2:#f0d07a;

      --text:#eaf7f6;
      --muted:rgba(234,247,246,.78);

      --card:rgba(255,255,255,.06);
      --stroke:rgba(255,255,255,.12);

      --shadow: 0 20px 55px rgba(0,0,0,.45);
      --radius: 18px;
      --radius2: 24px;

      --max: 1160px;
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: "Cairo", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(900px 520px at 12% 18%, rgba(39,214,197,.18), transparent 60%),
        radial-gradient(850px 520px at 86% 20%, rgba(214,178,94,.16), transparent 60%),
        radial-gradient(800px 520px at 50% 95%, rgba(11,183,166,.12), transparent 55%),
        linear-gradient(180deg, var(--bg0), var(--bg2));
      overflow-x:hidden;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    a{color:inherit}
    .container{width:min(var(--max), 100%); margin-inline:auto; padding: 0 18px;}

    /* subtle grid */
    .grid{
      position:fixed; inset:0;
      background-image:
        linear-gradient(to right, rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,.045) 1px, transparent 1px);
      background-size: 54px 54px;
      mask-image: radial-gradient(circle at 50% 35%, black 0 48%, transparent 70%);
      pointer-events:none;
      opacity:.55;
    }

    /* header */
    header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter: blur(10px);
      background: linear-gradient(180deg, rgba(4,23,24,.82), rgba(4,23,24,.55));
      border-bottom: 1px solid rgba(255,255,255,.10);
    }

    .nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:12px 0;
    }

    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width: 240px;
    }
    .logo{
      width:42px; height:42px;
      border-radius:14px;
      background:
        radial-gradient(circle at 30% 30%, rgba(240,208,122,.95), rgba(214,178,94,.35) 35%, rgba(39,214,197,.15) 70%),
        linear-gradient(135deg, rgba(39,214,197,.30), rgba(214,178,94,.25));
      border:1px solid rgba(240,208,122,.35);
      box-shadow: 0 10px 30px rgba(214,178,94,.14);
      position:relative;
      overflow:hidden;
      flex:0 0 auto;
    }
    .logo::after{
      content:"";
      position:absolute; inset:-40%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
      transform: rotate(25deg);
      animation: shine 3.8s ease-in-out infinite;
    }
    @keyframes shine{
      0%{transform:translateX(-35%) rotate(25deg); opacity:0}
      35%{opacity:1}
      70%{transform:translateX(35%) rotate(25deg); opacity:0}
      100%{opacity:0}
    }
    .brand h1{
      margin:0;
      font-size:14px;
      font-weight:900;
      letter-spacing:.2px;
      line-height:1.1;
    }
    .brand small{
      display:block;
      margin-top:2px;
      color:var(--muted);
      font-size:12px;
      font-weight:700;
    }

    .menu{
      display:flex;
      align-items:center;
      gap:14px;
    }
    .menu a{
      text-decoration:none;
      color: rgba(234,247,246,.86);
      font-weight:800;
      font-size:13px;
      padding:10px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition: .15s ease;
      white-space:nowrap;
    }
    .menu a:hover{
      border-color: rgba(214,178,94,.25);
      background: rgba(255,255,255,.05);
      transform: translateY(-1px);
    }

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

    .btn{
      appearance:none;
      border:0;
      cursor:pointer;
      font-family:inherit;
      border-radius:14px;
      padding:10px 12px;
      font-weight:900;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
      display:inline-flex;
      align-items:center;
      gap:10px;
      text-decoration:none;
      user-select:none;
      white-space:nowrap;
    }
    .btn:active{transform: translateY(1px) scale(.99);}

    .btn-primary{
      color:#062423;
      background: linear-gradient(135deg, var(--turq), var(--turq2));
      box-shadow: 0 14px 30px rgba(39,214,197,.18);
    }
    .btn-primary:hover{box-shadow: 0 16px 34px rgba(39,214,197,.26); transform: translateY(-1px);}

    .btn-outline{
      color: var(--text);
      background: rgba(255,255,255,.06);
      border:1px solid rgba(214,178,94,.28);
      box-shadow: 0 14px 30px rgba(214,178,94,.08);
    }
    .btn-outline:hover{box-shadow: 0 16px 34px rgba(214,178,94,.14); transform: translateY(-1px);}

    .icon{width:18px; height:18px; display:inline-block}

    /* mobile menu */
    .burger{
      display:none;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      color:var(--text);
      border-radius:14px;
      padding:10px 12px;
      font-weight:900;
      cursor:pointer;
    }
    @media (max-width: 920px){
      .menu{display:none;}
      .burger{display:inline-flex;}
      .brand{min-width:auto}
    }

    /* hero */
    .hero{
      position:relative;
      padding: 44px 0 28px;
    }
    .heroGrid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:22px;
      align-items:stretch;
    }
    @media (max-width: 980px){
      .heroGrid{grid-template-columns:1fr;}
    }

    .kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background: rgba(39,214,197,.12);
      border: 1px solid rgba(39,214,197,.22);
      color: rgba(234,247,246,.92);
      font-weight:900;
      font-size:13px;
      width:fit-content;
    }
    .dot{
      width:9px;height:9px;border-radius:99px;
      background: var(--turq);
      box-shadow: 0 0 0 6px rgba(39,214,197,.15);
      animation:pulse 1.6s ease-in-out infinite;
    }
    @keyframes pulse{
      0%{transform:scale(.95); box-shadow: 0 0 0 0 rgba(39,214,197,.18)}
      70%{transform:scale(1.02); box-shadow: 0 0 0 12px rgba(39,214,197,0)}
      100%{transform:scale(.95); box-shadow: 0 0 0 0 rgba(39,214,197,0)}
    }

    .hTitle{
      margin:14px 0 10px;
      font-size:46px;
      line-height:1.08;
      font-weight:900;
      letter-spacing:.2px;
    }
    @media (max-width:520px){ .hTitle{font-size:34px;} }

    .goldText{
      background: linear-gradient(90deg, var(--gold2), var(--gold));
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }

    .hDesc{
      margin:0 0 18px;
      color: var(--muted);
      font-size:16px;
      line-height:1.95;
      max-width: 62ch;
    }

    .heroActions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:18px;
    }

    .heroCard{
      background: linear-gradient(135deg, rgba(255,255,255,.085), rgba(255,255,255,.04));
      border:1px solid var(--stroke);
      border-radius: var(--radius2);
      box-shadow: var(--shadow);
      overflow:hidden;
      position:relative;
      padding: 18px;
      min-height: 320px;
    }
    .heroCard::before{
      content:"";
      position:absolute; inset:-2px;
      background: conic-gradient(from 180deg,
        rgba(39,214,197,.0),
        rgba(39,214,197,.30),
        rgba(214,178,94,.30),
        rgba(39,214,197,.0)
      );
      filter: blur(22px);
      opacity:.35;
      z-index:0;
      animation: glow 7s linear infinite;
    }
    @keyframes glow{
      0%{transform: rotate(0deg)}
      100%{transform: rotate(360deg)}
    }
    .heroCardInner{position:relative; z-index:1; height:100%; display:flex; flex-direction:column; gap:14px;}
    .mock{
      flex:1;
      border-radius: 18px;
      border:1px solid rgba(255,255,255,.12);
      background:
        radial-gradient(900px 420px at 20% 20%, rgba(39,214,197,.18), transparent 60%),
        radial-gradient(700px 420px at 85% 30%, rgba(214,178,94,.14), transparent 55%),
        linear-gradient(135deg, rgba(255,255,255,.05), rgba(0,0,0,.15));
      display:flex;
      align-items:center;
      justify-content:center;
      overflow:hidden;
      position:relative;
    }
    .mock img{
      width:100%;
      height:100%;
      object-fit:cover;
      opacity:.92;
      filter: saturate(1.05) contrast(1.05);
    }
    .mock .placeholder{
      padding: 18px;
      text-align:center;
      color: rgba(234,247,246,.85);
      font-weight:900;
    }

    .heroStats{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:10px;
    }
    .stat{
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 16px;
      padding:12px 10px;
      text-align:center;
    }
    .stat b{
      display:block;
      font-size:18px;
      font-weight:900;
      background: linear-gradient(90deg, var(--turq), var(--gold2));
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }
    .stat span{
      font-size:12px;
      color: var(--muted);
      font-weight:800;
    }

    /* sections */
    section{padding: 26px 0;}
    .sectionTitle{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:12px;
      margin-bottom: 14px;
    }
    .sectionTitle h2{
      margin:0;
      font-size:22px;
      font-weight:900;
      letter-spacing:.2px;
    }
    .sectionTitle p{
      margin:0;
      color: var(--muted);
      font-weight:700;
      font-size:13px;
      line-height:1.7;
      max-width: 58ch;
    }

    .cards{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:12px;
    }
    @media (max-width: 1000px){ .cards{grid-template-columns: repeat(2,1fr);} }
    @media (max-width: 520px){ .cards{grid-template-columns: 1fr;} }

    .card{
      background: rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.10);
      border-radius: var(--radius);
      padding:14px;
      box-shadow: 0 14px 40px rgba(0,0,0,.18);
      transition: .15s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{transform: translateY(-2px); border-color: rgba(214,178,94,.22);}
    .card .tag{
      display:inline-flex;
      padding:6px 10px;
      border-radius:999px;
      background: rgba(214,178,94,.12);
      border:1px solid rgba(214,178,94,.22);
      color: rgba(234,247,246,.92);
      font-weight:900;
      font-size:12px;
      width:fit-content;
      margin-bottom:10px;
    }
    .card h3{
      margin:0 0 6px;
      font-size:16px;
      font-weight:900;
    }
    .card p{
      margin:0;
      color: var(--muted);
      font-size:13px;
      line-height:1.85;
      font-weight:650;
    }

    /* gallery */
    .gallery{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:12px;
    }
    @media (max-width: 980px){ .gallery{grid-template-columns:1fr;} }
    .gMain, .gSide{
      border-radius: var(--radius2);
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.05);
      overflow:hidden;
      min-height: 300px;
      position:relative;
    }
    .gMain img, .gSide img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
      filter:saturate(1.05) contrast(1.05);
    }
    .gGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      height:100%;
    }
    .gSide{min-height:auto;}
    .gTile{
      border-radius: var(--radius2);
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.05);
      overflow:hidden;
      min-height: 144px;
    }
    .gTile img{width:100%; height:100%; object-fit:cover; display:block;}

    /* CTA */
    .cta{
      border-radius: var(--radius2);
      border:1px solid rgba(255,255,255,.12);
      background: linear-gradient(135deg, rgba(39,214,197,.12), rgba(214,178,94,.10));
      padding: 18px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      box-shadow: var(--shadow);
    }
    .cta h3{
      margin:0;
      font-size:18px;
      font-weight:900;
    }
    .cta p{
      margin:4px 0 0;
      color: var(--muted);
      font-weight:700;
      font-size:13px;
      line-height:1.7;
    }

    /* footer */
    footer{
      padding: 22px 0 28px;
      border-top: 1px solid rgba(255,255,255,.10);
      background: linear-gradient(180deg, rgba(0,0,0,.0), rgba(0,0,0,.18));
    }
    .foot{
      display:flex;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      color: rgba(234,247,246,.72);
      font-size:12px;
      font-weight:700;
    }
    .foot a{
      color: rgba(234,247,246,.86);
      text-decoration:none;
      border-bottom:1px dashed rgba(214,178,94,.35);
      padding-bottom:2px;
    }
    .foot a:hover{color:#fff}

    /* drawer */
    .drawer{
      display:none;
      position:fixed;
      inset:0;
      background: rgba(0,0,0,.45);
      backdrop-filter: blur(6px);
      z-index:90;
      align-items:flex-start;
      justify-content:center;
      padding-top:70px;
    }
    .drawerPanel{
      width:min(520px, 92vw);
      background: rgba(7,31,34,.92);
      border:1px solid rgba(255,255,255,.12);
      border-radius: 18px;
      padding: 14px;
      box-shadow: var(--shadow);
    }
    .drawerPanel a{
      display:block;
      padding: 12px 12px;
      border-radius: 14px;
      text-decoration:none;
      font-weight:900;
      color: rgba(234,247,246,.92);
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.05);
      margin-bottom: 10px;
    }
    .drawerPanel a:hover{border-color: rgba(214,178,94,.25);}
    .closeRow{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:10px;
      margin-bottom: 10px;
    }
/* Brand logo image (replace text) */
.brand{
  min-width: 0 !important;
  gap: 0 !important;
}

.brandLink{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.brandLogo{
  height: 44px;           /* سطح المكتب */
  width: 407px;
  max-width: 260px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.25));
}

/* Mobile sizing */
@media (max-width: 560px){
  .brandLogo{
    height: 36px;
    max-width: 220px;
  }
}

@media (max-width: 380px){
  .brandLogo{
    height: 32px;
    max-width: 200px;
  }
}

/* ============ Mobile Polish (Fix header + hero on small screens) ============ */
@media (max-width: 560px){

  /* container padding اخف */
  .container{ padding: 0 14px; }

  /* header: خلي العناصر تتلف وتترتب */
  .nav{
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
  }

  /* البراند: يصير صف واحد وخفيف */
  .brand{
    min-width: 0 !important;
    flex: 1 1 auto;
    gap: 10px;
  }
  .logo{
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }
  .brand h1{
    font-size: 13px;
    line-height: 1.2;
  }

  /* (اختياري) أخفِ السطر الإنجليزي على الموبايل لتخفيف الازدحام */
  .brand small{ display: none; }

  /* Actions: خليها صف ثاني بالكامل */
  .navActions{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
  }

  /* الأزرار أصغر وأخف */
  .btn{
    padding: 10px 10px;
    border-radius: 12px;
    font-size: 13px;
    gap: 8px;
  }
  .icon{ width: 16px; height: 16px; }

  /* زر القائمة يكون واضح ومتين */
  .burger{
    display: inline-flex;
    padding: 10px 10px;
    border-radius: 12px;
    font-size: 13px;
    margin-right: auto; /* يروح للجهة اليسار (لأن RTL) ويوازن الصف */
  }

  /* خلي زر واتساب + تواصل الآن يتوزعوا بشكل جميل */
  .navActions .btn{
    flex: 1 1 calc(50% - 6px);
    justify-content: center;
  }

  /* Hero text sizing */
  .hero{ padding: 26px 0 16px; }
  .kicker{ font-size: 12px; }
  .hTitle{ font-size: 30px; line-height: 1.15; }
  .hDesc{ font-size: 14px; line-height: 1.9; }

  /* أزرار الهيرو Full width */
  .heroActions{
    gap: 10px;
  }
  .heroActions .btn{
    width: 100%;
    justify-content: center;
  }

  /* Hero card أقل ارتفاع */
  .heroCard{
    min-height: 260px;
    padding: 14px;
  }
  .heroStats{
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }
  .stat{ padding: 10px 8px; }
  .stat b{ font-size: 16px; }
  .stat span{ font-size: 11px; }
}

/* لقياسات أصغر جدًا (آيفون SE وما شابه) */
@media (max-width: 380px){
  .brand h1{ font-size: 12px; }
  .navActions .btn{ flex: 1 1 100%; } /* خلي كل زر سطر */
  .burger{ width: 100%; justify-content: center; }
}
/* صور كروت المنتجات */
.cardImage{
  width:100%;
  height:180px;
  border-radius:16px;
  overflow:hidden;
  margin-bottom:12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.cardImage img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition: transform .35s ease;
  filter: saturate(1.04) contrast(1.03);
}
.card:hover .cardImage img{
  transform: scale(1.04);
}
.gallery{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:12px;
}
@media (max-width: 980px){
  .gallery{grid-template-columns:1fr;}
}

.gMain, .gSide{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  overflow:hidden;
  min-height: 300px;
  position:relative;
}

.gMain img, .gSide img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:saturate(1.05) contrast(1.05);
}

.gGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  height:100%;
}

.gTile{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  overflow:hidden;
  min-height: 144px;
  position:relative;
}

.gTile img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition: transform .35s ease;
}

.gMain:hover img,
.gTile:hover img{
  transform: scale(1.04);
}

.galleryOverlay{
  position:absolute;
  inset:auto 18px 18px 18px;
  padding:18px;
  border-radius:18px;
  background: linear-gradient(180deg, rgba(4,23,24,.18), rgba(4,23,24,.82));
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}

.galleryOverlay h3{
  margin:10px 0 6px;
  font-size:20px;
  font-weight:900;
  color:#fff;
}

.galleryOverlay p{
  margin:0;
  color:rgba(234,247,246,.86);
  font-size:13px;
  line-height:1.8;
  font-weight:700;
}

.galleryBadge{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(214,178,94,.14);
  border:1px solid rgba(214,178,94,.24);
  color:#fff;
  font-size:12px;
  font-weight:900;
}

@media (max-width: 560px){
  .galleryOverlay{
    inset:auto 12px 12px 12px;
    padding:14px;
  }

  .galleryOverlay h3{
    font-size:17px;
  }

  .galleryOverlay p{
    font-size:12px;
    line-height:1.7;
  }
}

/* Hero Slider */
.heroSlider{
  position:relative;
  min-height: 360px;
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(900px 420px at 20% 20%, rgba(39,214,197,.18), transparent 60%),
    radial-gradient(700px 420px at 85% 30%, rgba(214,178,94,.14), transparent 55%),
    linear-gradient(135deg, rgba(255,255,255,.05), rgba(0,0,0,.15));
}

.heroSlides{
  position:relative;
  width:100%;
  height:100%;
  min-height: 360px;
}

.heroSlide{
  position:absolute;
  inset:0;
  opacity:0;
  transition: opacity .7s ease;
  pointer-events:none;
}

.heroSlide.active{
  opacity:1;
  pointer-events:auto;
}

.heroSlide img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter: saturate(1.05) contrast(1.03);
}

.heroSlider::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(4,23,24,.08), rgba(4,23,24,.20) 40%, rgba(4,23,24,.68) 100%);
  pointer-events:none;
}

.heroOverlay{
  position:absolute;
  right:18px;
  left:18px;
  bottom:18px;
  z-index:3;
  padding:18px;
  border-radius:18px;
  background: linear-gradient(180deg, rgba(4,23,24,.20), rgba(4,23,24,.82));
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}

.heroBadge{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(214,178,94,.14);
  border:1px solid rgba(214,178,94,.24);
  color:#fff;
  font-size:12px;
  font-weight:900;
}

.heroOverlay h3{
  margin:10px 0 6px;
  font-size:20px;
  font-weight:900;
  color:#fff;
  line-height:1.4;
}

.heroOverlay p{
  margin:0;
  color:rgba(234,247,246,.88);
  font-size:13px;
  line-height:1.8;
  font-weight:700;
}

.heroNav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:4;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(4,23,24,.45);
  color:#fff;
  font-size:28px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  backdrop-filter: blur(6px);
  transition: .2s ease;
}

.heroNav:hover{
  background: rgba(4,23,24,.72);
  border-color: rgba(214,178,94,.28);
}

.heroNav.prev{ right:14px; }
.heroNav.next{ left:14px; }

.heroDots{
  position:absolute;
  z-index:4;
  left:50%;
  transform:translateX(-50%);
  bottom:16px;
  display:flex;
  gap:8px;
}

.heroDot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:none;
  background: rgba(255,255,255,.35);
  cursor:pointer;
  transition: .2s ease;
  padding:0;
}

.heroDot.active{
  width:28px;
  background: linear-gradient(90deg, var(--turq), var(--gold2));
}

@media (max-width: 560px){
  .heroSlider,
  .heroSlides{
    min-height: 280px;
  }

  .heroOverlay{
    right:12px;
    left:12px;
    bottom:12px;
    padding:14px;
  }

  .heroOverlay h3{
    font-size:16px;
    margin:8px 0 5px;
  }

  .heroOverlay p{
    font-size:12px;
    line-height:1.7;
  }

  .heroNav{
    width:36px;
    height:36px;
    font-size:24px;
  }

  .heroNav.prev{ right:10px; }
  .heroNav.next{ left:10px; }

  .heroDots{
    bottom:10px;
    gap:6px;
  }

  .heroDot{
    width:8px;
    height:8px;
  }

  .heroDot.active{
    width:22px;
  }
}

/* Contact icons section */
.contactGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}

.contactCard{
  display:flex;
  align-items:center;
  gap:16px;
  text-decoration:none;
  color:var(--text);
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  padding:18px;
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
  position:relative;
  overflow:hidden;
}

.contactCard::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(39,214,197,.08), rgba(214,178,94,.06));
  opacity:0;
  transition: opacity .18s ease;
}

.contactCard:hover{
  transform: translateY(-3px);
  border-color: rgba(214,178,94,.24);
  box-shadow: 0 18px 46px rgba(0,0,0,.24);
}

.contactCard:hover::before{
  opacity:1;
}

.contactIcon{
  position:relative;
  z-index:1;
  width:64px;
  height:64px;
  min-width:64px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, rgba(39,214,197,.16), rgba(214,178,94,.14));
  border:1px solid rgba(255,255,255,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.contactIcon svg{
  width:28px;
  height:28px;
  color: var(--gold2);
}

.contactInfo{
  position:relative;
  z-index:1;
}

.contactLabel{
  display:inline-flex;
  margin-bottom:6px;
  padding:5px 10px;
  border-radius:999px;
  background: rgba(214,178,94,.12);
  border:1px solid rgba(214,178,94,.22);
  color: rgba(234,247,246,.92);
  font-size:12px;
  font-weight:900;
}

.contactInfo h3{
  margin:0 0 4px;
  font-size:18px;
  font-weight:900;
  line-height:1.4;
}

.contactInfo p{
  margin:0;
  color: var(--muted);
  font-size:13px;
  line-height:1.8;
  font-weight:700;
  word-break: break-word;
}

@media (max-width: 980px){
  .contactGrid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px){
  .contactCard{
    padding:16px;
    gap:12px;
    border-radius:18px;
  }

  .contactIcon{
    width:56px;
    height:56px;
    min-width:56px;
    border-radius:16px;
  }

  .contactIcon svg{
    width:24px;
    height:24px;
  }

  .contactInfo h3{
    font-size:16px;
  }

  .contactInfo p{
    font-size:12px;
  }
}

.card{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:14px;
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
  transition: .15s ease;
  position:relative;
  overflow:hidden;
}

.card .tag{
  position:absolute;
  top:12px;
  left:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  background: linear-gradient(135deg, rgba(39,214,197,.16), rgba(214,178,94,.16));
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  font-weight:800;
  font-size:11px;
  line-height:1;
  margin:0;
  z-index:2;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 20px rgba(0,0,0,.18);
}

.cardImage{
  width:100%;
  height:180px;
  border-radius:16px;
  overflow:hidden;
  margin-bottom:12px;
  margin-top:26px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.heroOverlay{
  position:absolute;
  right:14px;
  left:14px;
  bottom:14px;
  z-index:3;
  padding:12px 14px;
  border-radius:16px;
  background: linear-gradient(180deg, rgba(4,23,24,.10), rgba(4,23,24,.58));
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.heroBadge{
  display:inline-flex;
  align-items:center;
  padding:4px 8px;
  border-radius:999px;
  background: rgba(214,178,94,.12);
  border:1px solid rgba(214,178,94,.20);
  color:#fff;
  font-size:10px;
  font-weight:800;
}

.heroOverlay h3{
  margin:8px 0 4px;
  font-size:15px;
  font-weight:800;
  color:#fff;
  line-height:1.45;
}

.heroOverlay p{
  margin:0;
  color:rgba(234,247,246,.84);
  font-size:11px;
  line-height:1.7;
  font-weight:600;
}

@media (max-width: 560px){
  .heroOverlay{
    right:10px;
    left:10px;
    bottom:10px;
    padding:10px 12px;
    max-width: calc(100% - 20px);
  }

  .heroBadge{
    font-size:9px;
    padding:4px 7px;
  }

  .heroOverlay h3{
    font-size:13px;
    margin:6px 0 3px;
  }

  .heroOverlay p{
    font-size:10px;
    line-height:1.6;
  }
}

.menu a.active{border-color: rgba(214,178,94,.35);background: rgba(255,255,255,.06);color:#fff}

/* ===== Internal pages shared layout ===== */
.pageHero{
  position:relative;
  padding: 34px 0 20px;
}
.pageHeroGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:22px;
  align-items:stretch;
}
.heroCopy{
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.heroVisual{
  position:relative;
  min-height: 320px;
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
}
.heroVisual img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:saturate(1.05) contrast(1.05);
}
.heroVisual::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(4,23,24,.06), rgba(4,23,24,.16) 45%, rgba(4,23,24,.72));
  pointer-events:none;
}
.overlayBadge{
  position:absolute;
  right:16px;
  left:16px;
  bottom:16px;
  z-index:2;
  padding:16px;
  border-radius:18px;
  background: linear-gradient(180deg, rgba(4,23,24,.18), rgba(4,23,24,.78));
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}
.overlayBadge h3{
  margin:0 0 6px;
  font-size:18px;
  font-weight:900;
  color:#fff;
}
.overlayBadge p{
  margin:0;
  color:rgba(234,247,246,.86);
  font-size:13px;
  line-height:1.8;
  font-weight:700;
}
.twoCol{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}
.panel{
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius2);
  padding:18px;
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
}
.list{
  display:grid;
  gap:12px;
}
.listItem{
  display:grid;
  grid-template-columns: 48px 1fr;
  gap:12px;
  align-items:start;
  padding:12px;
  border-radius:16px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}
.listItem h3,
.timelineItem h3,
.productRow h3,
.mediaBody h3{
  margin:0 0 6px;
  font-size:17px;
  font-weight:900;
}
.listItem p,
.timelineItem p,
.productRow p,
.mediaBody p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.85;
  font-weight:700;
}
.num{
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(39,214,197,.18), rgba(214,178,94,.16));
  border:1px solid rgba(255,255,255,.10);
  color:#fff;
  font-weight:900;
  font-size:16px;
}
.timeline{
  display:grid;
  gap:14px;
}
.timelineItem{
  position:relative;
  padding:18px 18px 18px 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
}
.timelineItem::before{
  content:"";
  position:absolute;
  right:0;
  top:16px;
  bottom:16px;
  width:4px;
  border-radius:999px;
  background: linear-gradient(180deg, var(--turq), var(--gold2));
}
.productLayout{
  display:grid;
  gap:14px;
}
.productRow{
  display:grid;
  grid-template-columns: 280px 1fr;
  gap:16px;
  align-items:center;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius2);
  overflow:hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
}
.productRow img{
  width:100%;
  height:100%;
  min-height: 210px;
  object-fit:cover;
  display:block;
}
.productRow > div{
  padding:18px;
}
.mediaGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.mediaItem{
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius2);
  overflow:hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
}
.mediaItem img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}
.mediaBody{
  padding:16px;
}
@media (max-width: 980px){
  .pageHeroGrid,
  .twoCol,
  .productRow,
  .mediaGrid{
    grid-template-columns: 1fr;
  }
  .heroVisual{
    min-height: 280px;
  }
  .productRow img{
    min-height: 220px;
  }
}
@media (max-width: 560px){
  .pageHero{padding: 24px 0 14px;}
  .overlayBadge{right:12px; left:12px; bottom:12px; padding:14px;}
  .overlayBadge h3{font-size:16px;}
  .overlayBadge p{font-size:12px; line-height:1.7;}
  .panel{padding:16px;}
  .listItem{grid-template-columns: 40px 1fr; padding:10px;}
  .num{width:40px; height:40px; font-size:14px; border-radius:12px;}
  .mediaItem img{height:190px;}
}


/* ===== Corporate content enhancements ===== */
.metricGrid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:16px}
.metricCard{padding:16px;border-radius:18px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08);text-align:center}
.metricCard b{display:block;font-size:22px;font-weight:900;background:linear-gradient(90deg,var(--turq),var(--gold2));-webkit-background-clip:text;background-clip:text;color:transparent}
.metricCard span{display:block;margin-top:6px;color:var(--muted);font-size:12px;font-weight:800;line-height:1.6}
.iconStatGrid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
.iconStat{display:grid;grid-template-columns:52px 1fr;gap:12px;align-items:start;padding:14px;border-radius:18px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08)}
.iconBadge{width:52px;height:52px;display:flex;align-items:center;justify-content:center;border-radius:16px;background:linear-gradient(135deg,rgba(39,214,197,.18),rgba(214,178,94,.16));border:1px solid rgba(255,255,255,.1);font-weight:900;color:#fff}
.iconStat h3,.contactBlock h3,.factoryCard h3,.productCard h3,.featureCard h3{margin:0 0 6px;font-size:17px;font-weight:900}
.iconStat p,.contactBlock p,.factoryCard p,.productCard p,.featureCard p,.richText p{margin:0;color:var(--muted);font-size:13px;line-height:1.9;font-weight:700}
.richText p + p{margin-top:12px}
.highlightQuote{padding:18px;border-radius:20px;background:linear-gradient(135deg,rgba(39,214,197,.12),rgba(214,178,94,.10));border:1px solid rgba(255,255,255,.1);box-shadow:var(--shadow)}
.highlightQuote h3{margin:0 0 10px;font-size:20px;font-weight:900}
.highlightQuote p{margin:0;color:rgba(234,247,246,.88);line-height:1.9;font-size:14px;font-weight:700}
.factoryGrid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.factoryCard{background:linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.04));border:1px solid rgba(255,255,255,.10);border-radius:var(--radius2);overflow:hidden;box-shadow:0 14px 40px rgba(0,0,0,.18)}
.factoryCard img{width:100%;height:240px;object-fit:cover;display:block}
.factoryBody{padding:16px}
.productGrid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.productCard{background:linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.04));border:1px solid rgba(255,255,255,.10);border-radius:var(--radius2);overflow:hidden;box-shadow:0 14px 40px rgba(0,0,0,.18)}
.productThumb{display:grid;grid-template-columns:160px 1fr;gap:0;border-bottom:1px solid rgba(255,255,255,.08)}
.productThumb img{width:100%;height:160px;object-fit:cover;display:block}
.productIntro{padding:16px}
.galleryStrip{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;padding:0 16px 16px}
.galleryStrip img{width:100%;height:96px;object-fit:cover;display:block;border-radius:14px;border:1px solid rgba(255,255,255,.08)}
.featureGrid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.featureCard{padding:16px;border-radius:20px;background:linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.04));border:1px solid rgba(255,255,255,.10);box-shadow:0 14px 40px rgba(0,0,0,.18)}
.contactInfoGrid{display:grid;grid-template-columns:1.2fr .8fr;gap:18px}
.contactBlock{padding:18px;border-radius:20px;background:linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.04));border:1px solid rgba(255,255,255,.10);box-shadow:0 14px 40px rgba(0,0,0,.18)}
.contactList{display:grid;gap:12px;margin-top:16px}
.contactLine{display:grid;grid-template-columns:120px 1fr;gap:10px;padding:12px 0;border-bottom:1px solid rgba(255,255,255,.08)}
.contactLine:last-child{border-bottom:none;padding-bottom:0}
.contactLine b{font-size:13px;font-weight:900;color:#fff}
.contactLine span,.contactLine a{font-size:13px;line-height:1.8;color:var(--muted);text-decoration:none}
.mapCards{display:grid;gap:12px}
.mapCard{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:16px;border-radius:18px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08)}
.mapCard h3{margin:0 0 4px;font-size:16px;font-weight:900}
.mapCard p{margin:0;color:var(--muted);font-size:12px;line-height:1.7;font-weight:700}
.ctaRow{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}
@media (max-width: 980px){.metricGrid,.productGrid,.featureGrid,.factoryGrid,.contactInfoGrid,.iconStatGrid{grid-template-columns:1fr}.productThumb{grid-template-columns:1fr}.productThumb img{height:220px}.galleryStrip{grid-template-columns:repeat(2,1fr)}.contactLine{grid-template-columns:1fr}}
@media (max-width: 560px){.factoryCard img{height:210px}.galleryStrip img{height:88px}.metricCard b{font-size:19px}}
