
html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body {
    display: flex;
    flex-direction: column;
}
section,  .About-us {
    flex: 1;
}
.top-space1 {
    height: 100px;
    background: linear-gradient(to bottom, rgb(0, 21, 10), #ffffff);
}

.join-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 90px;
}
.section-header{
    text-align: center;

}
.section-header p{
    font-family: Goudy Old Style;
}

.join-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-bottom: 5px solid transparent;
}

.join-card:hover {
    transform: translateY(-10px); 
    transition: ease-in 0.2s;
}

.card-icon {
    font-size: 3rem;
    color: #c0392b;
    margin-bottom: 20px;
}

.join-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.join-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-tag {
    display: inline-block;
    background: #f1f1f1;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    color: #1a5d1a; 
}

.btn-main-join {
    background: #c0392b;
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-block;
    transition: 0.3s;
    margin: 40px;
}

.btn-main-join:hover {
    background: #1a5d1a; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.btn-primary-small{
    font-size: 1.2rem;
    font-family: 'Times New Roman', Times, serif;
    color: #c0392b;
  
    padding: 15px;
   
    margin-top: 8px;
    
}

.btn-primary-small:hover{
    color: #124dff;
    text-decoration: underline;
}

.fancy1 {
 background-color: #9ccd62;
 border: 2px solid #3a3c42;
 border-radius: 0;
 box-sizing: border-box;
 color: #3a3c42;
 cursor: pointer;
 display: inline-block;
 font-weight: 700;
 letter-spacing: 0.05em;
 margin: 0;
 outline: none;
 overflow: visible;
 padding: 1.25em 2em;
 position: relative;
 text-align: center;
 text-decoration: none;
 text-transform: none;
 transition: all 0.3s ease-in-out;
 user-select: none;
 font-size: 13px;
 margin-top: 30px;
 font-family:MV Boli ;
 margin-left: 30px;
}

.fancy1::before {
 content: " ";
 width: 1.5625rem;
 height: 2px;
 background: #3a3c42;
 top: 50%;
 left: 1.5em;
 position: absolute;
 transform: translateY(-50%);
 transform-origin: center;
 transition: background 0.3s linear, width 0.3s linear;
}

.fancy1 .text {
 font-size: 1.125em;
 line-height: 1.33333em;
 padding-left: 2em;
 display: block;
 text-align: left;
 transition: all 0.3s ease-in-out;
 text-transform: uppercase;
 text-decoration: none;
 color: #3a3c42;
}

.fancy1 .top-key {
 height: 2px;
 width: 1.5625rem;
 top: -2px;
 left: 0.625rem;
 position: absolute;
 background: #9ccd62;
 transition: width 0.5s ease-out, left 0.3s ease-out;
}

.fancy1 .bottom-key-1 {
 height: 2px;
 width: 1.5625rem;
 right: 1.875rem;
 bottom: -2px;
 position: absolute;
 background: #9ccd62;
 transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy1 .bottom-key-2 {
 height: 2px;
 width: 0.625rem;
 right: 0.625rem;
 bottom: -2px;
 position: absolute;
 background: #9ccd62;
 transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy1:hover {
 color: #9ccd62;
 background: #3a3c42;
}

.fancy1:hover::before {
 width: 0.9375rem;
 background: #9ccd62;
}

.fancy1:hover .text {
 color: #9ccd62;
 padding-left: 1.5em;
}

/* Medium devices (tablets, max-width: 991px) */
@media (max-width: 991px) {
    .join-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-top: 60px;
    }

    .join-card {
        padding: 30px 20px;
    }

    .card-icon {
        font-size: 2.5rem;
    }

    .join-card h3 {
        font-size: 1.3rem;
    }

    .join-card p {
        font-size: 0.9rem;
    }

    .btn-main-join {
        padding: 15px 35px;
        font-size: 1rem;
        margin: 30px auto;
        display: block;
    }

    .btn-primary-small {
        font-size: 1rem;
        padding: 12px;
        margin-top: 6px;
    }
}

/* Small devices (mobiles, max-width: 767px) */
@media (max-width: 767px) {
    .join-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 40px;
    }

    .join-card {
        padding: 25px 15px;
    }

    .card-icon {
        font-size: 2rem;
    }

    .join-card h3 {
        font-size: 1.1rem;
    }

    .join-card p {
        font-size: 0.85rem;
    }

    .btn-main-join {
        padding: 12px 25px;
        font-size: 0.95rem;
        margin: 20px auto;
    }

    .btn-primary-small {
        font-size: 0.95rem;
        padding: 10px;
    }
}

/* navbar*/

.navbar {
  position: fixed;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: #1e1e1e;
  border-radius: 16px;
  z-index: 100;
  padding: 10px;
 
}
.navbar-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar {
  backdrop-filter: blur(10px);
  background: rgba(20,20,20,0.7);
  border: 1px solid rgba(255,255,255,0.08);
}


.menu-items {
  display: flex;
  align-items: center;
  gap: 20px;
  order: 2;
}
.navbar input[type="checkbox"],
.navbar .hamburger-lines{
    display: none;
}


.menu-items li{
    list-style: none;
    margin-left: 1.5rem;
    font-size: 1.1rem;
}

.navbar a{
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    font-family: Lucida Console;
}



.navbar a:hover {
  transform: translateY(-2px);
  color: #f3efef;
}


.logo-hcmc1{
    width: 35px;
    cursor: pointer;

}
.hcmc-logo{
    display: flex;
    align-items: center;
}
.lang-dropdown {
  position: relative;
  user-select: none;
}

.lang-current {
   width: 50px;          
  color: #ffffff;
  border: 0.5px solid white;
  padding: 8px 18px;
  background-size: cover;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 3;

}






.lang-list {
  position: absolute;
  top: 120%;
  right: 0;
  background: #282727;
  border-radius: 10px;
  padding: 6px;
  padding-left: 0%;
  list-style: none;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  z-index: 999;
}


.lang-dropdown.active .lang-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


.lang-list li {
padding-top:7px ;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #f5f5f0;
  cursor: pointer;
  transition: 0.25s;
  margin-bottom: 12px;
}
html.rtl .menu-items li {
  width: 70px;
}
html.rtl .hcmc-logo {
  margin-left: 40px;
  margin-right: 0;
}
html.rtl .lang-list {
  right: auto;
  left: 0;
  text-align: center;
  order: 3;
}
html.rtl .lang-list li {
  padding-left: 14px;
  padding-right: 10px;
}
@media (max-width: 768px) {
   .logo-hcmc1 {
    
    top: 4px;
    left: 90%;           
    transform: translateX(-50%);
    z-index: 10;
    width: 50px;         
    height: auto;
    display: block;
    cursor: pointer;
    position: fixed;
  }

  
  html[dir="rtl"] .logo-hcmc1 {
    left: 29px;
    right: auto;
    margin-left: 5px;        
  }
}


@media (max-width: 768px){
    .navbar{
        opacity: 1;
        position: fixed;
        margin-top: 10px;
        width: 80%;
        height: 60px;
        position: fixed;
    }

    .navbar-container input[type="checkbox"],
    .navbar-container .hamburger-lines{
        display: block;
    }

    .navbar-container{
        display: block;
        position: relative;
        height: 64px;
    }

    .navbar-container input[type="checkbox"]{
        position: fixed;
        display: block;
        height: 32px;
        width: 30px;
         margin-left: 12px;
        margin-top: 8px;
        top: 12px;
        left: 0px;
        z-index: 5;
        opacity: 0;
        cursor: pointer;
        background-color: aqua;
       
        
    }

    .navbar-container .hamburger-lines{
        display: block;
        height: 28px;
        width: 35px;
        margin-left: 19px;
        margin-top: 8px;
        top: 12px;
        left: 0px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: fixed;
    }

    .navbar-container .hamburger-lines .line{
        display: block;
        height: 4px;
        width: 100%;
        border-radius: 10px;
        background: #f3efef;
        
    }
    
    .navbar-container .hamburger-lines .line1{
        transform-origin: 0% 0%;
        transition: transform 0.3s ease-in-out;
    }

    .navbar-container .hamburger-lines .line2{
        transition: transform 0.2s ease-in-out;
    }

    .navbar-container .hamburger-lines .line3{
        transform-origin: 0% 100%;
        transition: transform 0.3s ease-in-out;
    }

    .navbar .menu-items{
       width: 100%;
        background: #1e1e1e;
        transform: translate(-150%);
        display: flex;
        flex-direction: column;
        transition: transform 0.5s ease-in-out;
        margin-top: 55px;
        gap: 0px;
        padding-top: 20px;
        border-radius: 15px;
        
    }

    .navbar .menu-items li{
        margin-bottom: 1.8rem;
        font-size: 1.1rem;
        font-weight: 200;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        text-align: center;
    }

    .lang-list{
       position: absolute; 
       top: -11px;
       right: -143px;
       gap: 0px;
       height: 170px;
    }
    .lang-list li:hover{
        color: #f5fea1;
    }

    .navbar-container input[type="checkbox"]:checked ~ .menu-items{
        transform: translateX(0);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1{
        transform: rotate(45deg);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2{
        transform: scaleY(0);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3{
        transform: rotate(-45deg);
    }

}

@media (max-width: 500px){
    .navbar-container input[type="checkbox"]:checked ~ .logo{
        display: block;
    }
}
/* =========================
   RTL MOBILE NAVBAR FIX
========================= */

@media (max-width: 768px) {

  html[dir="rtl"] .navbar-container input[type="checkbox"] {
    right: 20px;
    left: auto;
  }

  html[dir="rtl"] .navbar-container .hamburger-lines {
    right: 20px;
    left: auto;
    
  }

  html[dir="rtl"] .navbar .menu-items  {
    
    transform: translateX(150%);
    margin-left: 0;
    text-align: right;
  }

  html[dir="rtl"] 
  .navbar-container input[type="checkbox"]:checked ~ .menu-items {
    transform: translateX(0);
  }


  html[dir="rtl"] .navbar .menu-items li {
    text-align: right;
  }
 html[dir="rtl"] .lang-list {
       
       position: absolute; 
       top: -11px;
       right: -143px;
       gap: 0px;
       height: 170px;
 
    }
    .lang-list li:hover{
        color: #e5fe00;
    }



}

@media (max-width: 500px) {
  html[dir="rtl"] 
  .navbar-container input[type="checkbox"]:checked ~ .logo {
    display: none;
  }
   
}

/*about*/
.About-us{
    height: 100vh;
}
.About-title{
    margin-top:200px;
    margin-left: 20px;
    height: 30vh;
    line-height: 1;
    
}
.About-title h1{
    font-size: 4.2rem;
    font-family: Comic Sans MS;
    color: #252324;
}
.About-title span{
    font-size: 4.2rem;
    font-family: Segoe Print;

}
.inf-of-us{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 60px;
  
}
.logo-of-club img{
    width: 300px;
}
.description-of-us {
    width: 50%;
    font-size: 1.7rem;
    font-family: MV Boli;
    font-weight: 600;
    margin-top: 20px;
    
}
.description-of-us p{
    margin-top: 30px;
    color: #252324;
    opacity: 1;
     transition: opacity 0.9s ease;
}
.word {
    opacity: 0.3;
    transform: translateY(6px);
    transition: opacity 0.15s linear, transform 0.15s linear;
}

.word.visible {
    opacity: 1;
    transform: translateY(0);
}
.qustion {
     width: 400px;
     height: 30px;
     display: flex;
     justify-content: left;
     margin: 120px 0 0 30px;
     align-items: center;
     gap: 12px;
     font-family:Lucida Sans Typewriter ;

     
}
.img-ask img{
    width: 50px;
}
.ask h4{
    font-size: 1.4rem;
    align-items: center;
    height: 100%;
    background-color: rgb(240, 240, 240);
     padding: 5px 12px;
    border-radius: 20px ;
}
.ask{

    padding: 0 12px;
    border-radius: 20px ;
    
}

.about-hcmc__item{
    display: flex;
    background-color: #f3f3f39d ;
    height: 90vh;
    border-radius: 20px;
    margin: 30px 10px;
}
.about-hcmc__card  {
    width: 100%;
    height: 100%;
    padding: 10px;
}
.about-hcmc__img{
    width: 550px;
   box-shadow: 0 0 30px rgb(60, 55, 62);
    height: 450px;
    margin-top: 30px;

}
.about-hcmc__description{
    font-size: 1.6rem;
    margin-top: 60px;
    font-family:Segoe UI Symbol;
    margin-left: 10px;
    color: rgb(60, 55, 62);
    font-weight: 700;
}
.about-hcmc__item1 {
    border-radius: 20px;
    margin: 30px 4px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.about-hcmc__img1{
    width: 90%;
    height: 300px;
    display: flex;
    justify-content: center;
    margin: auto;
}
.about-hcmc__description1{
    font-size: 1.7rem;
    font-family:Segoe UI Symbol;
    color: rgb(60, 55, 62);
    font-weight: 700;
    line-height: 1.5;
    margin-left: 20%;
}
mark{
    margin-top: 90px;

}
@media (max-width: 992px) {

  .About-us {
    height: auto;
    padding-bottom: 60px;
  }

  .About-title {
    margin-top: 120px;
    height: auto;
    text-align: center;
  }

  .About-title h1,
  .About-title span {
    font-size: 2.8rem;
  }

  .inf-of-us {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .logo-of-club img {
    width: 200px;
  }

  .description-of-us {
    width: 90%;
    font-size: 1.2rem;
  }

  .qustion {
    width: auto;
    margin: 60px auto;
    justify-content: center;
  }

  .about-hcmc__item {
    flex-direction: column;
    height: auto;
    padding: 20px;
  }

  .about-hcmc__img {
    width: 100%;
    height: auto;
  }

  .about-hcmc__description {
    font-size: 1.2rem;
    margin-top: 30px;
  }

  .about-hcmc__description1 {
    font-size: 1.2rem;
    margin-left: 0;
    text-align: center;
  }
  .links{
    text-align: center;
  }

}
/* Container l-kbir */
.about-hcmc__item1 {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Kay-9sem l-page 3la joj */
    gap: 50px;
    align-items: center;
    padding: 80px 10%;
    background: #ffffff;
    overflow: hidden;
}

/* Jihat l-logo o l-kharita */
.about-hcmc__image {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-hcmc__img1 {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

/* Hover Effect 3la l-kharita */
.about-hcmc__img1:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Jihat l-ktiba */
.about-hcmc__content1 {
    padding-left: 20px;
}

/* Heading dial About Our Club */
.about-section-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1;
}

/* L-paragraph l-modern */
.about-hcmc__description1 {
    font-family: 'Inter', sans-serif; /* t-9der t-khdem b-Roboto */
    font-size: 1.15rem;
    color: #444;
    line-height: 1.8;
    text-align: justify;
}

/* L-mizat (Points) */
.about-hcmc__description1 br {
    display: block;
    content: "";
    margin-top: 15px;
}

/* Dik l-jomla l-akhira dial Vision */
.mark {
    margin-top: 30px;
    display: inline-block;
    padding: 10px 20px;
    background: #9ccd62; /* Lawn l-7mer dial l-club */
    color: white;
    font-weight: bold;
    border-radius: 4px;
    transform: skewX(-10deg); /* Style dial Racing/Speed */
}

.mark mark {
    background: transparent;
    color: white;
}

/* Animation dyal l-dkhoula */
@keyframes slideIn {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.about-hcmc__content1 {
    animation: slideIn 0.8s ease-out;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .about-hcmc__item1 {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 5%;
    }
}
/* Container l-kbir b-vibe dial sbaq */
/* --- Base Style (Desktop) --- */
.about-hcmc__item {
    display: flex;
    flex-wrap: wrap; /* Katkhalli l-mobile ihbet l-te7t */
    gap: 30px;
    padding: 60px;
    
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin: 20px auto;
    color: #000000;
   width: 100%;
    min-height: 100vh; /* 7eyedna 100vh bach may-t-cut-ach l-content */
}

.about-hcmc__image {
    flex: 1;
    min-width: 320px; /* Bach may-sgharch bzaf */
    perspective:900px;
}
.about-hcmc__image img {
    width: 100%;
}

.about-hcmc__card {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    transform: rotateY(-5deg);
    transition: all 0.6s ease;
    box-shadow: -20px 20px 40px rgba(0,0,0,0.5);
}

.about-hcmc__content {
    flex: 1.5;
    min-width: 320px;
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 20px;
    border-right: 4px solid #9ccd62;
}

/* --- Media Queries (M-gaddine) --- */

@media screen and (max-width: 992px) {
    .about-hcmc__item {
        padding: 40px 20px;
        gap: 20px;
    }
    .about-hcmc__content {
        padding: 25px;
    }
}

@media screen and (max-width: 768px) {
    .about-hcmc__item {
        flex-direction: column; /* Vertical stack */
        padding: 20px;
        height: auto !important; /* Force auto height */
    }

    .about-hcmc__image, 
    .about-hcmc__content {
        width: 100%;
        min-width: 100%;
        flex: none;
    }

    .about-hcmc__card {
        transform: none !important; /* 7iyed 3D f mobile */
        margin-bottom: 20px;
    }

    .about-hcmc__description {
        font-size: 0.95rem; /* Sgher chwia bach i-jme3 l-ktiba */
        text-align: left; /* T9der t-derha center ila bghiti */
    }

    /* Fix l-image f mobile bach ma-t-khrejch kbir bzaf */
    .about-hcmc__img {
        max-height: 300px; 
        width: 100%;
        object-fit: cover;
    }
}
/* project*/

@import url("https://fonts.googleapis.com/css?family=Cardo:400i|Rubik:400,700&display=swap");
:root {
  --d: 700ms;
  --e: cubic-bezier(0.19, 1, 0.22, 1);
  --font-sans: "Rubik", sans-serif;
  --font-serif: "Cardo", serif;
}

* {
  box-sizing: border-box;
}





.page-content {
  display: grid;
  grid-gap: 1rem;
  padding: 1rem;
  max-width: 1024px;
  margin: 0 auto;
  font-family: var(--font-sans);
}
@media (min-width: 600px) {
  .page-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 800px) {
  .page-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 1rem;
  width: 100%;
  text-align: center;
  color: whitesmoke;
  background-color: whitesmoke;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1);
}
@media (min-width: 600px) {
  .card {
    height: 350px;
  }
}
.card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-size: cover;
  background-position: 0 0;
  transition: transform calc(var(--d) * 1.5) var(--e);
  pointer-events: none;
}
.card:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  pointer-events: none;
  background-image: linear-gradient(to bottom, hsla(0, 0%, 0%, 0) 0%, hsla(0, 0%, 0%, 0.009) 11.7%, hsla(0, 0%, 0%, 0.034) 22.1%, hsla(0, 0%, 0%, 0.072) 31.2%, hsla(0, 0%, 0%, 0.123) 39.4%, hsla(0, 0%, 0%, 0.182) 46.6%, hsla(0, 0%, 0%, 0.249) 53.1%, hsla(0, 0%, 0%, 0.32) 58.9%, hsla(0, 0%, 0%, 0.394) 64.3%, hsla(0, 0%, 0%, 0.468) 69.3%, hsla(0, 0%, 0%, 0.54) 74.1%, hsla(0, 0%, 0%, 0.607) 78.8%, hsla(0, 0%, 0%, 0.668) 83.6%, hsla(0, 0%, 0%, 0.721) 88.7%, hsla(0, 0%, 0%, 0.762) 94.1%, hsla(0, 0%, 0%, 0.79) 100%);
  transform: translateY(-50%);
  transition: transform calc(var(--d) * 2) var(--e);
}
.card:nth-child(1):before {
  background-image: url(./maroc-kartcroos.png);
}
.card:nth-child(2):before {
  background-image: url(./Acadimy.png);
}
.card:nth-child(3):before {
  background-image: url(./kartcross-hydrgyn.png);
}
.card:nth-child(4):before {
  background-image: url(./ECO.png);
}

.content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1rem;
  transition: transform var(--d) var(--e);
  z-index: 1;
}
.content > * + * {
  margin-top: 1rem;
}

.title {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.2;
}

.copy {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.35;
}

.btn {
  cursor: pointer;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 0.025rem;
  text-transform: uppercase;
  color: white;
  background-color: black;
  border: none;
}
.btn:hover {
  background-color: rgb(12.75, 12.75, 12.75);
  border: 1px solid white;
  filter: drop-shadow(0 0 8px white);
}


@media (hover: hover) and (min-width: 600px) {
  .card:after {
    transform: translateY(0);
  }
  .content {
    transform: translateY(calc(100% - 4.5rem));
  }
  .content > *:not(.title) {
    opacity: 0;
    transform: translateY(1rem);
    transition: transform var(--d) var(--e), opacity var(--d) var(--e);
  }
  .card:hover,
  .card:focus-within {
    align-items: center;
  }
  .card:hover:before,
  .card:focus-within:before {
    transform: translateY(-4%);
  }
  .card:hover:after,
  .card:focus-within:after {
    transform: translateY(-50%);
  }
  .card:hover .content,
  .card:focus-within .content {
    transform: translateY(0);
  }
  .card:hover .content > *:not(.title),
  .card:focus-within .content > *:not(.title) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--d) / 8);
  }
  .card:focus-within:before, .card:focus-within:after,
  .card:focus-within .content,
  .card:focus-within .content > *:not(.title) {
    transition-duration: 0s;
  }
}

 body.proj, .page {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  transition: all .8s cubic-bezier(0.54, 0.35, 0.29, 0.99);
  -webkit-transition: all .8s cubic-bezier(0.54, 0.35, 0.29, 0.99);
  -moz-transition: all .8s cubic-bezier(0.54, 0.35, 0.29, 0.99);
  -o-transition: all .8s cubic-bezier(0.54, 0.35, 0.29, 0.99);  
  color: #fff;
  overflow: hidden; 
}



.page {
  position: absolute;
}

#p1 {
  left: 0;
}

#p2, #p3, #p4, #p5 {
  left: 200%;
}

#p1 { background: darkslateblue; }
#p2 { background: tomato; }
#p3 { background: gold; }
#p4 { background: deeppink; }
#p5 { background: rebeccapurple; }

#t2:target #p2,
#t3:target #p3,
#t4:target #p4,
#t5:target #p5 {
  transform: translateX(-190%);
  -webkit-transform: translateX(-190%);
  -moz-transform: translateX(-190%);
  -o-transform: translateX(-190%);
  transition-delay: .4s !important;
}

#t2:target #p1, 
#t3:target #p1,
#t4:target #p1,
#t5:target #p1{
  background: black;
}

#t2:target #p1 .icon, 
#t3:target #p1 .icon,
#t4:target #p1 .icon,
#t5:target #p1 .icon {
  filter: blur(3px);
}

.icon {
  color: #fff;
  font-size: 32px;
  display: block;
}

ul .icon:hover {
  opacity: 0.5;
}

.page .icon .title {
  line-height: 2;
}

#t2:target ul .icon,
#t3:target ul .icon,
#t4:target ul .icon,
#t5:target ul .icon{
  transform: scale(.6);
  -webkit-transform: scale(.6);
  -moz-transform: scale(.6);
  -o-transform: scale(.6);
  transition-delay: .25s;
}

#t2:target #dos,
#t3:target #tres,
#t4:target #cuatro,
#t4:target #cinco {
  transform: scale(1.2) !important;
  -webkit-transform: scale(1.2) !important;
  -moz-transform: scale(1.2) !important;
  -o-transform: scale(1.2) !important;
}

ul.proj {
  position: fixed;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  height: 280px;
  width: 10%;
  padding: 0;
  text-align: center;
 }
#menu{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}
#menu .icon {
  margin: 20px 0;
  transition: all .5s ease-out !important;
  -webkit-transition: all .5s ease-out;
  -moz-transition: all .5s ease-out;
  -o-transition: all .5s ease-out;
}

a {
  text-decoration: none;
}

.title, .hint {
  display: block;
}

.title {
  font-size: 38px;
}

.hint {
  font-size: 13px;
}

#p4 .hint {
  display: inherit !important;
}

.hint a {
  color: yellow;
  transition: all 250ms ease-out;
  -webkit-transition: all 250ms ease-out;
  -moz-transition: all 250ms ease-out;
  -o-transition: all 250ms ease-out;
}

.hint a:hover {
  color: #FFF;
}

.line-trough {
  text-decoration: line-through;
}

.page .icon {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10%;
  left: 0;
  width: 270px;
  height: 170px;
  margin: auto;
  text-align: center;
  font-size: 80px;
  line-height: 1.3;
  transform: translateX(360%);
  -webkit-transform: translateX(360%);
  -moz-transform: translateX(360%);
  -o-transform: translateX(360%);
  transition: all .5s cubic-bezier(.25, 1, .5, 1.25);
  -webkit-transition: all .5s cubic-bezier(.25, 1, .5, 1.25);
  -moz-transition: all .5s cubic-bezier(.25, 1, .5, 1.25);
  -o-transition: all .5s cubic-bezier(.25, 1, .5, 1.25);
}

.page#p1 .icon {
  height: 220px;
}

.page#p1 .icon {
  transform: translateX(10%) !important;
}

#t2:target .page#p2 .icon,
#t3:target .page#p3 .icon,
#t4:target .page#p4 .icon,
#t5:target .page#p5 .icon {
  transform: translateX(0) !important;
  -webkit-transform: translateX(0) !important;
  -moz-transform: translateX(0) !important;
  -o-transform: translateX(0) !important;
  transition-delay: 1s;
}

/* home*/

.home {
    display: flex;
    align-items: center;
   
}

.home-ofpage{
    height: 100vh;
    background: url(./pectures/pexels-tima-miroshnichenko-5640575.jpg) no-repeat center /cover;
    background-attachment:fixed ;
}

.home::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, #ccc 1px, transparent 1px);
  background-size: 50px 100%;
  pointer-events: none;
  opacity: 1;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 70%
  );
}
.home::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to right,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.15)
  );
}

.inf-home{
    margin-top:16vh;
    margin-left:40px;

    
}

.titls h1 {
    font-size: 4.4rem;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 800;
    color: #252324;
    font-family: Rajdhani;
    opacity: 99;
}

.disc p {
    margin-top: 30px;
    line-height: 1.6;
    font-size: 1.5rem;
    font-weight: 500;
    font-family:Bahnschrift SemiBold ;
    opacity: 99;
    color: #9ccd62;
    background-color: #3a3c42;
    padding: 20px;
}
 
.fancy {
 background-color: #9ccd62;
 border: 2px solid #3a3c42;
 border-radius: 0;
 box-sizing: border-box;
 color: #3a3c42;
 cursor: pointer;
 display: inline-block;
 font-weight: 700;
 letter-spacing: 0.05em;
 margin: 0;
 outline: none;
 overflow: visible;
 padding: 1.25em 2em;
 position: relative;
 text-align: center;
 text-decoration: none;
 text-transform: none;
 transition: all 0.3s ease-in-out;
 user-select: none;
 font-size: 13px;
 margin-top: 30px;
 font-family:MV Boli ;
}

.fancy::before {
 content: " ";
 width: 1.5625rem;
 height: 2px;
 background: #3a3c42;
 top: 50%;
 left: 1.5em;
 position: absolute;
 transform: translateY(-50%);
 transform-origin: center;
 transition: background 0.3s linear, width 0.3s linear;
}

.fancy .text {
 font-size: 1.125em;
 line-height: 1.33333em;
 padding-left: 2em;
 display: block;
 text-align: left;
 transition: all 0.3s ease-in-out;
 text-transform: uppercase;
 text-decoration: none;
 color: #252324;
}

.fancy .top-key {
 height: 2px;
 width: 1.5625rem;
 top: -2px;
 left: 0.625rem;
 position: absolute;
 background: #9ccd62;
 transition: width 0.5s ease-out, left 0.3s ease-out;
}

.fancy .bottom-key-1 {
 height: 2px;
 width: 1.5625rem;
 right: 1.875rem;
 bottom: -2px;
 position: absolute;
 background: #9ccd62;
 transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy .bottom-key-2 {
 height: 2px;
 width: 0.625rem;
 right: 0.625rem;
 bottom: -2px;
 position: absolute;
 background: #9ccd62;
 transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy:hover {
 color: #9ccd62;
 background: #3a3c42;
}

.fancy:hover::before {
 width: 0.9375rem;
 background: #9ccd62;
}

.fancy:hover .text {
 color: #9ccd62;
 padding-left: 1.5em;
}

.fancy:hover .top-key {
 left: -2px;
 width: 0px;
}

.fancy:hover .bottom-key-1,
 .fancy:hover .bottom-key-2 {
 right: 0;
 width: 0;
}
.bgvideo{
    margin-top: 90px;
    margin: 30px;
    background-color: #f9f8ed;
    padding: 30px 50px;
    border-radius: 20px;

}
.relvidio {
    height: 70vh;
}
.relvidio video{
    width: 100%;
    height: 100%;
    border-radius: 12px;
}
@media (max-width: 768px) {
.bgvideo{
  margin-top: 90px;
  width: 100%;
  padding: 0 0 0 0;
}
.relvidio{
    height: 20vh;
    width: 100%;
}
}
.motiveted {
    margin-top: 20px;      
    text-align: center;    
    text-transform: capitalize;
    color: #5a5956;
    width: 70%;           
    margin-left: auto;      
    margin-right: auto;     
}
.motiveted h1{
    font-size: 2.2rem;
    font-family:MV Boli ;
}
@media (max-width: 992px) {

  .home {
    flex-direction: column;
    text-align: center;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
  }

  .inf-home {
    margin-top: 20vh;
    margin-left: 0;
    padding: 0 20px;
    align-items: center;
  }

  .titls h1 {
    font-size: 3rem;
  }

  .disc p {
    font-size: 1.1rem;
  }

  .fancy {
    margin: 30px auto 0 auto;
  }

  .bgvideo {
    margin: 40px 30px;
    padding: 20px;
     width: 90%;
  }

  .relvidio {
    height: 40vh;
  }

  .motiveted {
    width: 90%;
  }

  .motiveted h1 {
    font-size: 1.8rem;
  }
  html.rtl .home{
    padding: 10px;
    padding-right: 0px;
}
}
@media (max-width: 576px) {

  .titls h1 {
    font-size: 2.2rem;
  }

  .disc p {
    font-size: 1rem;
  }

  .relvidio {
    height: 30vh;
  }

  .motiveted h1 {
    font-size: 1.5rem;
  }
  html.rtl .home{
    padding: 10px;
    padding-right: 0px;
}


}
html.rtl .home{
    padding: 10px;
    padding-right: 50px;
}
html.rtl .About-us{
    padding: 12px;

}


html.rtl .text-center{
     padding-right:30px;
}

/* env*/


.environment-section {
    padding: 80px 20px;
    background: url(./pectures/enver.bg.jpg) no-repeat center / cover ;
    color: rgb(255, 255, 255);
    height: 120vh;
    background-attachment: fixed;
}
.top-space {
    height: 250px;
    background: linear-gradient(to bottom, rgb(255, 255, 255), #d8dede);
}

.env-item{
    padding: 12px;
    border: 1px solid rgb(78, 78, 78);
    background: rgba(0, 0, 0, 0.1); 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); 
    border-radius: 12px  ;
}

.env-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.env-text { flex: 1.2; min-width: 350px; }

.section-title {
    color: #000000; 
    font-size: 3.2rem;
    margin-bottom: 30px;
    font-family: Bahnschrift SemiBold;
    font-weight: 900;
}

.env-description {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #030303;
    margin-bottom: 40px;
    text-align: center;
}

.env-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.env-item i {
    font-size: 2rem;
    color: 	#008500;
    margin-bottom: 10px;
}

.env-item h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #00ff1a;
    text-shadow: 0px 0px 8px rgb(0, 0, 0);
    font-family: MS Gothic;
    font-weight: 700;
}
.env-item p{
    line-height: 1.5;
    color: #ffffff;
    font-weight: 800;
    font-family: Simplified Arabic;
}
.env-image {
    flex: 1;
    position: relative;
}

.env-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 10px 10px 30px #d9d9d9;
    
}

.env-image img:hover{
    transform: scale(1.009);
    transition: ease 0.3s;
     box-shadow: 10px 10px 60px #232323;
}
.eco-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #00840d;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    margin-right: 20px;
    text-shadow: 5px 6px 8px rgb(0, 0, 0);
    font-family: MS Gothic;
}
/* Medium devices (tablets, max-width: 991px) */
@media (max-width: 991px) {
    .env-content {
        flex-direction: column;
        gap: 40px;
    }

    .env-text {
        min-width: 100%;
    }

    .env-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .env-description {
        font-size: 1.3rem;
        text-align: center;
    }

    .env-image img {
        width: 100%;
        height: auto;
    }

    .eco-badge {
        bottom: -15px;
        right: -15px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Small devices (mobiles, max-width: 767px) */
@media (max-width: 767px) {
    .environment-section {
        padding: 60px 15px;
        height: auto;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .env-description {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    .env-item {
        padding: 10px;
    }

    .env-item h4 {
        font-size: 1rem;
    }

    .env-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .env-item i {
        font-size: 1.5rem;
    }

    .eco-badge {
        bottom: -10px;
        right: -10px;
        padding: 10px 18px;
        font-size: 0.8rem;
    }
}
/*footer*/

ul {
    margin: 0px;
    padding: 0px;
     
}
.row1{
    display: flex;
    justify-content: space-around;
    width: 100%;
    

}



.footer-section {
  background: #1a2228;
}
.footer-cta {
  border-bottom: 1px solid #373636;
  display: flex;
  padding: 30px;
}
.single-cta{
    display: flex;
    align-items: center;
    gap: 15px;
}
.single-cta i {
  color: #aaa758;
  font-size: 30px;
  margin: 0;
  
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
}
.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color: #757575;
  font-size: 15px;
}
.footer-content {
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 20px;
}
.footer-logo img {
  max-width: 100px;
  margin-left: 20px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
      color: #7e7e7e;
  line-height: 28px;
  font-family: Segoe Print;
  width: 300px;
  margin-left: 20px;
}
.footer-social-icon {
    margin-left: 30px;
    margin-bottom: 30px;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;

}


.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
  
}
.facebook-bg{
  background: #3B5998;
}

.instagram-bg{
  background: #DD4B39;
}
.footer-widget{
    margin-left: 20px;
}
.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
  
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #aaa758;
}
html.rtl .footer-widget-heading h3::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #aaa758;
}
.links{
    display: flex;
}
.footer-widget ul li {
  display: inline-block;
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover{
  color: #aaa758;
}
.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}
.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
  color: #fff;
}
.subscribe-form input:focus{
    border: 1px solid #aaa758;
    outline: none;
}
.subscribe-form button {
    position: absolute;
    right: 0;
    background: #aaa758;
    padding: 13px 20px;
    border: 1px solid #aaa758;
    top: 0;
    cursor: pointer;
}
.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}
/* Medium devices (tablets, 768px - 991px) */
@media (max-width: 991px) {
    .row1 {
        flex-direction: column;
        align-items: center;
    }

    .single-cta {
        justify-content: center;
        text-align: center;
        margin-top: 30px;
        display: flex;
    }

    .footer-widget {
        margin-left: 0;
        margin-bottom: 30px;
    }

    .footer-widget ul li {
        width: 100%;
    }

    .footer-text p {
        width: 100%;
        text-align: center;
        margin-left: 0;
    }

    .footer-social-icon {
        margin-left: 0;
        text-align: center;
    }
}

/* Small devices (mobiles, max-width: 767px) */
@media (max-width: 767px) {
    .footer-cta {
        flex-direction: column;
        text-align: center;
    }

    .single-cta {
        flex-direction: column;
        gap: 10px;
    }

    .cta-text h4 {
        font-size: 18px;
    }

    .cta-text span {
        font-size: 14px;
    }

    .subscribe-form input {
        padding: 12px 20px;
    }

    .subscribe-form button {
        padding: 12px 16px;
    }

    .footer-logo img {
        margin-left: 40%;
    }

    .footer-pattern img {
        width: 80px;
    }

    .footer-widget-heading h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer-widget-heading h3::before {
        width: 40px;
    }
    .img-fluid{
      margin-right: 120px;
    }
 html.rtl .footer-widget-heading h3::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #aaa758;
}

}

/*contact*/

.contact-join-section {
    padding: 100px 0;
    background: #fdfdfd;
    
}

.contact-wrapper {
    display: flex;
    gap: 50px;
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
    
}

.contact-info {
    flex: 1;
    min-width: 500px;
    background: #232222;
    color: white;
    padding: 40px;
    border-radius: 20px ;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.info-items {
    margin: 40px 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    color: #d3bf0c;
}

.info-item span {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
}

.info-item p {
    font-size: 1.1rem;
    font-weight: bold;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: 0.3s;
}

.social-links a:hover {
    background: #fff;
    color: #94e117;
}

.contact-form-container {
    flex: 1.5;
    min-width: 350px;
    padding: 20px;
    margin-top: 90px;
}

.contact-form h3 {
    margin-bottom: 30px;
    color: #333;
}

.input-group {
    margin-bottom: 20px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 15px 0 5px 10px;
    outline: none;
   
    border: none;
     border-bottom: 2px solid rgb(31, 29, 29);
}
.input-group select option{
    border-radius: 12px;

}

.btn-send1 {
    width: 100%;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    background: transparent;
}


.fancy2 {
 background-color: transparent;
 border: 2px solid #252324;
 border-radius: 0;
 box-sizing: border-box;
 color: #fff;
 cursor: pointer;
 display: inline-block;
 font-weight: 700;
 letter-spacing: 0.05em;
 margin: 0;
 outline: none;
 overflow: visible;
 padding: 1.25em 2em;
 position: relative;
 text-align: center;
 text-decoration: none;
 text-transform: none;
 transition: all 0.3s ease-in-out;
 user-select: none;
 font-size: 13px;
 margin-top: 30px;
 margin-left: 20px;
 width: 100%;
 height: 100%;
}

.fancy1::before {
 content: " ";
 width: 1.5625rem;
 height: 2px;
 background: #1B1B1B;
 top: 50%;
 left: 1.5em;
 position: absolute;
 transform: translateY(-50%);
 transform-origin: center;
 transition: background 0.3s linear, width 0.3s linear;
 
}

.fancy1 .text {
 font-size: 1.125em;
 line-height: 1.33333em;
 padding-left: 2em;
 display: block;
 text-align: left;
 transition: all 0.3s ease-in-out;
 text-transform: uppercase;
 text-decoration: none;
 color: #252324;
}

.fancy1 .top-key {
 height: 2px;
 width: 1.5625rem;
 top: -2px;
 left: 0.625rem;
 position: absolute;
 background: #e8e8e8;
 transition: width 0.5s ease-out, left 0.3s ease-out;
}

.fancy1 .bottom-key-1 {
 height: 2px;
 width: 1.5625rem;
 right: 1.875rem;
 bottom: -2px;
 position: absolute;
 background: #e8e8e8;
 transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy1 .bottom-key-2 {
 height: 2px;
 width: 0.625rem;
 right: 0.625rem;
 bottom: -2px;
 position: absolute;
 background: #e8e8e8;
 transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy:hover {
 color: white;
 background: #252324;
}
/* Medium devices (tablets, 768px - 991px) */
@media (max-width: 991px) {
    .contact-wrapper {
        flex-direction: column;
        padding: 30px;
        gap: 30px;
    }

    .contact-info,
    .contact-form-container {
        min-width: 100%;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .input-group input,
    .input-group select,
    .input-group textarea {
        padding: 12px 0 5px 10px;
        margin-bottom: 12px;
    }

    .btn-send1 {
        font-size: 1rem;
    }
}

/* Small devices (mobiles, max-width: 767px) */
@media (max-width: 767px) {
    .contact-join-section {
        padding: 60px 20px;
    }

    .contact-wrapper {
        padding: 20px;
        gap: 20px;
    }

    .contact-info h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .info-items {
        margin: 20px 0;
    }

    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .social-links {
        justify-content: center;
    }

    .contact-form h3 {
        text-align: center;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .fancy2 {
        padding: 1em 1.5em;
        font-size: 0.95rem;
        margin-left: 0;
    }

}




/* ================================
   HCMC Youth Hub Hero Clean Version
================================ */

.hcmc-hero-page {
  width: 100%;
  overflow: hidden;
}

.hcmc-hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 20px 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 10% 22%, rgba(237, 172, 63, 0.16), transparent 26%),
    radial-gradient(circle at 90% 10%, rgba(158, 200, 129, 0.22), transparent 22%),
    linear-gradient(135deg, #f8f0e2 0%, #f2eadc 52%, #fbf6ea 100%);
  color: #2b2622;
  isolation: isolate;
}

.hcmc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  background:
    repeating-radial-gradient(
      circle at 10% 82%,
      transparent 0,
      transparent 22px,
      rgba(72, 60, 48, 0.18) 23px,
      transparent 24px
    ),
    repeating-radial-gradient(
      circle at 94% 8%,
      transparent 0,
      transparent 26px,
      rgba(72, 60, 48, 0.13) 27px,
      transparent 28px
    );
}

.hcmc-hero-content {
  position: relative;
  z-index: 5;
  width: min(1200px, 100%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hcmc-hero-kicker {
  margin: 0 0 18px;
  font-size: clamp(0.8rem, 1.35vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.45em;
  color: #5c5148;
  text-transform: uppercase;
  line-height: 1.5;
}

/* Main title */
.hcmc-video-word {
  position: relative;
  width: min(1180px, 100%);
  height: clamp(90px, 15vw, 190px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

/* Video inside MOTORSPORT */
.hcmc-video-word video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 220'%3E%3Ctext x='600' y='162' text-anchor='middle' font-size='170' font-family='Arial Black, Impact, sans-serif' font-weight='900'%3EMOTORSPORT%3C/text%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 220'%3E%3Ctext x='600' y='162' text-anchor='middle' font-size='170' font-family='Arial Black, Impact, sans-serif' font-weight='900'%3EMOTORSPORT%3C/text%3E%3C/svg%3E");

  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

/* Invisible real text for layout/accessibility */
.hcmc-video-word span {
  position: relative;
  z-index: 2;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(4rem, 14vw, 12rem);
  font-weight: 950;
  line-height: 0.85;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.10);
}

/* Soft outline behind video word */


.hcmc-hero-subtitle {
  margin: 8px 0 0;
  font-size: clamp(1.3rem, 2.8vw, 2.45rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  color: #5d5148;
}

.hcmc-discover-btn {
  margin-top: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 30px;
  border-radius: 999px;
  background: #edac3f;
  color: #ffffff;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(237, 172, 63, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.hcmc-discover-btn:hover {
  transform: translateY(-4px);
  background: #df9d2f;
  box-shadow: 0 24px 60px rgba(237, 172, 63, 0.38);
}

.hcmc-arrow {
  font-size: 1.25rem;
  animation: hcmcArrow 1.4s ease-in-out infinite;
}

@keyframes hcmcArrow {
  0%, 100% {
    transform: translateY(-2px);
  }

  50% {
    transform: translateY(5px);
  }
}

/* Decorative shapes */
.hcmc-shape,
.hcmc-leaf {
  position: absolute;
  z-index: 3;
  display: block;
  pointer-events: none;
}

.hcmc-shape-orange {
  width: 20px;
  height: 10px;
  top: 25%;
  left: 27%;
  background: #f4b447;
  border-radius: 20px 20px 0 0;
  transform: rotate(12deg);
}

.hcmc-shape-blue {
  width: 18px;
  height: 34px;
  top: 22%;
  right: 22%;
  background: #71b9f5;
  border-radius: 0 20px 20px 0;
  transform: rotate(-12deg);
}

.hcmc-shape-green {
  width: 55px;
  height: 55px;
  top: 4%;
  right: 9%;
  background: #9ec881;
  border-radius: 50%;
}

.hcmc-leaf-1 {
  width: 24px;
  height: 12px;
  right: 6%;
  bottom: 18%;
  background: #74bd4f;
  border-radius: 100% 0 100% 0;
  transform: rotate(-35deg);
}

.hcmc-leaf-2 {
  width: 19px;
  height: 10px;
  left: 9%;
  bottom: 30%;
  background: #22b486;
  border-radius: 100% 0 100% 0;
  transform: rotate(-12deg);
}

/* Mobile */
@media (max-width: 768px) {
  .hcmc-hero {
    min-height: 92vh;
    padding: 105px 14px 48px;
  }

  .hcmc-hero-kicker {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    line-height: 1.7;
    margin-bottom: 14px;
  }

  .hcmc-video-word {
    height: clamp(64px, 19vw, 92px);
  }

  .hcmc-video-word span,
  .hcmc-video-word::after {
    font-size: clamp(3rem, 16vw, 5.4rem);
    letter-spacing: -0.075em;
  }

  .hcmc-hero-subtitle {
    font-size: 1.25rem;
  }

  .hcmc-discover-btn {
    margin-top: 45px;
    padding: 14px 22px;
  }

  .hcmc-shape-green {
    width: 42px;
    height: 42px;
    right: 4%;
    top: 6%;
  }

  .hcmc-shape-orange {
    top: 22%;
    left: 14%;
  }

  .hcmc-shape-blue {
    top: 20%;
    right: 13%;
  }
}
/* FIX hero vertical alignment */
.hcmc-hero {
  min-height: 100vh;
  padding: 95px 20px 45px !important;
  align-items: center !important;
}

.hcmc-hero-content {
  transform: translateY(18px);
}

.hcmc-hero-kicker {
  margin: 0 0 10px !important;
  font-size: clamp(0.75rem, 1.15vw, 1rem) !important;
  letter-spacing: 0.42em !important;
}

.hcmc-video-word {
  height: clamp(85px, 12vw, 155px) !important;
  width: min(1050px, 96vw) !important;
  overflow: visible !important;
}

.hcmc-video-word span,
.hcmc-video-word::after {
  font-size: clamp(4.2rem, 11.8vw, 10rem) !important;
  line-height: 0.8 !important;
}

.hcmc-hero-subtitle {
  margin: 2px 0 0 !important;
  font-size: clamp(1.25rem, 2.3vw, 2rem) !important;
  line-height: 1.1 !important;
}

.hcmc-discover-btn {
  margin-top: 50px !important;
}

/* Mobile fix */
@media (max-width: 768px) {
  .hcmc-hero {
    padding: 90px 14px 40px !important;
  }

  .hcmc-hero-content {
    transform: translateY(10px);
  }

  .hcmc-video-word {
    height: clamp(58px, 18vw, 86px) !important;
    width: 98vw !important;
  }

  .hcmc-video-word span,
  .hcmc-video-word::after {
    font-size: clamp(2.8rem, 15vw, 5rem) !important;
  }

  .hcmc-hero-subtitle {
    font-size: 1.15rem !important;
  }

  .hcmc-discover-btn {
    margin-top: 36px !important;
  }
}
.hcmc-hero-content {
  transform: translateY(-8px) !important;
}

.hcmc-video-word {
  height: clamp(90px, 13vw, 165px) !important;
  width: min(1080px, 96vw) !important;
}

.hcmc-video-word video {
  opacity: 1 !important;
}

.hcmc-video-word span,
.hcmc-video-word::after {
  font-size: clamp(4.4rem, 12.5vw, 10.8rem) !important;
}

.hcmc-video-word::after {
  opacity: 0.35 !important;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.13) !important;
}

.hcmc-hero-kicker {
  margin-bottom: 14px !important;
}

.hcmc-hero-subtitle {
  margin-top: 8px !important;
}

.hcmc-discover-btn {
  margin-top: 48px !important;
}
/* ===== FIXED FULL VIDEO TITLE WITH OUTLINE ===== */

.hcmc-video-word {
  position: relative;
  width: min(1425px, 98vw);
  height: clamp(140px, 19vw, 260px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  margin: 0 auto;
}

/* video fill inside the whole word */
.hcmc-video-word video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
 filter:
    contrast(1.12)
    saturate(1.1)
    brightness(0.96);

  transform: scale(1.22);


  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;

  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

/* hidden real text for layout */
.hcmc-video-word span {
  position: relative;
  z-index: 2;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(5.6rem, 18.2vw, 16.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  color: transparent;
  opacity: 0;
  user-select: none;
}


/* soft border only */
.hcmc-video-word::after {
  content: "HYDROCART";
  position: absolute;
  inset: 0;
  z-index: 3;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(5.5rem, 15vw, 14rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.07em;
  text-transform: uppercase;

  color: transparent;

  /* very soft border */
  -webkit-text-stroke: 0.8px rgba(255,255,255,0.18);

  pointer-events: none;
}


.hcmc-video-word::before {
  content: "MOTORSPORT";
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(4.6rem, 13.2vw, 11.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(80, 70, 60, 0.09);
  pointer-events: none;
}
/* =========================================
   HYDROCART VIDEO TITLE - CLEAN VERSION
========================================= */

.hcmc-video-word {
  position: relative;

  width: min(1425px, 98vw);
  height: clamp(140px, 19vw, 260px);

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: visible;
  margin: 0 auto;
}

/* VIDEO INSIDE TEXT */
.hcmc-video-word video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;

  z-index: 1;

  filter:
    contrast(1.12)
    saturate(1.1)
    brightness(0.96);

  transform: scale(1.22);

  /* HYDROCART MASK */
  -webkit-mask-image: url("data:image/svg+xml;utf8,\
  <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 260'>\
  <text x='800' y='182' text-anchor='middle' font-size='175' font-family='Arial Black, Impact, sans-serif' font-weight='900' letter-spacing='-6'>HYDROCART</text>\
  </svg>");

  mask-image: url("data:image/svg+xml;utf8,\
  <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 260'>\
  <text x='800' y='182' text-anchor='middle' font-size='175' font-family='Arial Black, Impact, sans-serif' font-weight='900' letter-spacing='-6'>HYDROCART</text>\
  </svg>");

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

  -webkit-mask-position: center;
  mask-position: center;

  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

/* invisible real text */
.hcmc-video-word span {
  position: relative;
  z-index: 2;

  font-family: "Arial Black", Impact, sans-serif;

  font-size: clamp(5.6rem, 18vw, 16rem);
  font-weight: 900;

  line-height: 1;
  letter-spacing: -0.07em;

  text-transform: uppercase;

  color: transparent;
  opacity: 0;

  user-select: none;
}

/* soft premium border */
.hcmc-video-word::after {
  content: "HYDROCART";

  position: absolute;
  inset: 0;

  z-index: 3;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: "Arial Black", Impact, sans-serif;

  font-size: clamp(5.6rem, 18vw, 16rem);
  font-weight: 900;

  line-height: 1;
  letter-spacing: -0.07em;

  text-transform: uppercase;

  color: transparent;

  /* APPLE STYLE BORDER */
  -webkit-text-stroke: 0.8px rgba(255,255,255,0.16);

  pointer-events: none;
}

/* subtle ghost text behind */
.hcmc-video-word::before {
  content: "HYDROCART";

  position: absolute;
  inset: 0;

  z-index: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: "Arial Black", Impact, sans-serif;

  font-size: clamp(5.6rem, 18vw, 16rem);
  font-weight: 900;

  line-height: 1;
  letter-spacing: -0.07em;

  text-transform: uppercase;

  color: transparent;

  -webkit-text-stroke: 1px rgba(80, 70, 60, 0.05);

  pointer-events: none;
}

/* MOBILE */
@media (max-width: 768px) {

  .hcmc-video-word {
    width: 99vw;
    height: clamp(70px, 18vw, 115px);
  }

  .hcmc-video-word span,
  .hcmc-video-word::after,
  .hcmc-video-word::before {
    font-size: clamp(3.2rem, 15vw, 6rem);
  }

  .hcmc-video-word video {
    transform: scale(1.12);
  }
}
.navbar {
  transition: transform 0.35s ease, background 0.35s ease;
}

.navbar.navbar-hidden {
  transform: translateY(-110%);
}

/* =========================================
   HERO FIRST SCROLL AUTO EXPAND FIX
========================================= */

.hcmc-hero {
  overflow: hidden !important;
}

/* initial state */
.hcmc-video-word {
  transition:
    width 1.25s cubic-bezier(.16, 1, .3, 1),
    height 1.25s cubic-bezier(.16, 1, .3, 1),
    transform 1.25s cubic-bezier(.16, 1, .3, 1);
}

/* video initial */
.hcmc-video-word video {
  transition:
    transform 1.25s cubic-bezier(.16, 1, .3, 1),
    filter 1.25s cubic-bezier(.16, 1, .3, 1),
    -webkit-mask-size 1.25s cubic-bezier(.16, 1, .3, 1),
    mask-size 1.25s cubic-bezier(.16, 1, .3, 1);
}

/* button and texts disappear when animation starts */
.hcmc-hero-kicker,
.hcmc-hero-subtitle,
.hcmc-discover-btn {
  transition:
    opacity .45s ease,
    transform .45s ease,
    visibility .45s ease;
}

/* when first scroll starts */
.hcmc-hero.hero-expanding .hcmc-hero-kicker,
.hcmc-hero.hero-expanding .hcmc-hero-subtitle,
.hcmc-hero.hero-expanding .hcmc-discover-btn {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-18px);
}

/* hide HYDROCART border slowly */
.hcmc-video-word::after,
.hcmc-video-word::before {
  transition: opacity .75s ease;
}

.hcmc-hero.hero-expanding .hcmc-video-word::after,
.hcmc-hero.hero-expanding .hcmc-video-word::before {
  opacity: 0;
}

/* video grows by itself */
.hcmc-hero.hero-expanding .hcmc-video-word {
  width: 100vw !important;
  height: 100vh !important;
  max-width: none !important;
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* video exits the letters and becomes full background */
.hcmc-hero.hero-expanding .hcmc-video-word video {
  -webkit-mask-size: 900% 900% !important;
  mask-size: 900% 900% !important;
  transform: scale(1.05) !important;
  filter: brightness(0.58) contrast(1.08) saturate(1.08);
}

/* final state after animation */
.hcmc-hero.hero-expanded .hcmc-video-word {
  width: 100vw !important;
  height: 100vh !important;
  max-width: none !important;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hcmc-hero.hero-expanded .hcmc-video-word video {
  -webkit-mask-image: none !important;
  mask-image: none !important;
  transform: scale(1.05) !important;
  filter: brightness(0.58) contrast(1.08) saturate(1.08);
}

.hcmc-hero.hero-expanded .hcmc-video-word::after,
.hcmc-hero.hero-expanded .hcmc-video-word::before,
.hcmc-hero.hero-expanded .hcmc-hero-kicker,
.hcmc-hero.hero-expanded .hcmc-hero-subtitle,
.hcmc-hero.hero-expanded .hcmc-discover-btn {
  opacity: 0 !important;
  visibility: hidden !important;
}

/* keep hero content above but hidden */
.hcmc-hero.hero-expanded .hcmc-hero-content,
.hcmc-hero.hero-expanding .hcmc-hero-content {
  z-index: 5;
}

/* prevent ugly scroll during animation */
body.hcmc-hero-lock {
  overflow: hidden;
}
/* =========================================================
   HCMC HERO - HYDROCART VIDEO TEXT + REVERSIBLE SCROLL
   Clean final version
========================================================= */

.hcmc-hero-page {
  width: 100%;
  min-height: 165vh;
  overflow: visible;
  position: relative;
  background: #f8f0e2;
}

.hcmc-hero {
  --hero-progress: 0;

  position: sticky;
  top: 0;

  min-height: 100vh;
  width: 100%;
  overflow: hidden;

  padding: 95px 20px 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(circle at 10% 22%, rgba(237, 172, 63, 0.16), transparent 26%),
    radial-gradient(circle at 90% 10%, rgba(158, 200, 129, 0.22), transparent 22%),
    linear-gradient(135deg, #f8f0e2 0%, #f2eadc 52%, #fbf6ea 100%);

  color: #2b2622;
  isolation: isolate;
}

.hcmc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  opacity: calc(0.22 - (var(--hero-progress) * 0.18));
  pointer-events: none;

  background:
    repeating-radial-gradient(
      circle at 10% 82%,
      transparent 0,
      transparent 22px,
      rgba(72, 60, 48, 0.18) 23px,
      transparent 24px
    ),
    repeating-radial-gradient(
      circle at 94% 8%,
      transparent 0,
      transparent 26px,
      rgba(72, 60, 48, 0.13) 27px,
      transparent 28px
    );
}

.hcmc-hero-content {
  position: relative;
  z-index: 5;

  width: min(1200px, 100%);

  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;

  transform: translateY(calc(-8px - (var(--hero-progress) * 78px)));
}

/* top text */
.hcmc-hero-kicker {
  margin: 0 0 14px;

  font-size: clamp(0.75rem, 1.15vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.42em;
  line-height: 1.5;

  color: #5c5148;
  text-transform: uppercase;

  opacity: calc(1 - (var(--hero-progress) * 1.45));
  transform: translateY(calc(var(--hero-progress) * -22px));
}

/* subtitle */
.hcmc-hero-subtitle {
  margin: 8px 0 0;

  font-size: clamp(1.25rem, 2.3vw, 2rem);
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: -0.04em;

  color: #5d5148;

  opacity: calc(1 - (var(--hero-progress) * 1.45));
  transform: translateY(calc(var(--hero-progress) * -22px));
}

/* button */
.hcmc-discover-btn {
  margin-top: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  padding: 16px 30px;
  border-radius: 999px;

  background: #edac3f;
  color: #ffffff;

  font-weight: 850;
  text-decoration: none;

  box-shadow: 0 18px 45px rgba(237, 172, 63, 0.28);

  opacity: calc(1 - (var(--hero-progress) * 1.55));
  transform: translateY(calc(var(--hero-progress) * -20px));

  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.hcmc-discover-btn:hover {
  background: #df9d2f;
  box-shadow: 0 24px 60px rgba(237, 172, 63, 0.38);
}

.hcmc-arrow {
  font-size: 1.25rem;
  animation: hcmcArrow 1.4s ease-in-out infinite;
}

@keyframes hcmcArrow {
  0%, 100% {
    transform: translateY(-2px);
  }

  50% {
    transform: translateY(5px);
  }
}

/* =========================================================
   HYDROCART VIDEO WORD
========================================================= */

.hcmc-video-word {
  position: relative;
  z-index: 2;

  width: calc(1425px + (var(--hero-progress) * 120vw));
  max-width: none;

  height: calc(clamp(140px, 19vw, 260px) + (var(--hero-progress) * 82vh));

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: visible;
  margin: 0 auto;

  transform: translateY(calc(var(--hero-progress) * 42px));
}

/* video inside HYDROCART */
.hcmc-video-word video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;

  z-index: 1;

  filter:
    brightness(calc(0.96 - (var(--hero-progress) * 0.38)))
    contrast(1.1)
    saturate(1.08);

  transform: scale(calc(1.22 - (var(--hero-progress) * 0.17)));

  -webkit-mask-image: url("data:image/svg+xml;utf8,\
  <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 260'>\
  <text x='800' y='182' text-anchor='middle' font-size='175' font-family='Arial Black, Impact, sans-serif' font-weight='900' letter-spacing='-6'>HYDROCART</text>\
  </svg>");

  mask-image: url("data:image/svg+xml;utf8,\
  <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 260'>\
  <text x='800' y='182' text-anchor='middle' font-size='175' font-family='Arial Black, Impact, sans-serif' font-weight='900' letter-spacing='-6'>HYDROCART</text>\
  </svg>");

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

  -webkit-mask-position: center;
  mask-position: center;

  -webkit-mask-size:
    calc(100% + (var(--hero-progress) * 1100%))
    calc(100% + (var(--hero-progress) * 1100%));

  mask-size:
    calc(100% + (var(--hero-progress) * 1100%))
    calc(100% + (var(--hero-progress) * 1100%));
}

/* invisible layout text */
.hcmc-video-word span {
  position: relative;
  z-index: 2;

  font-family: "Arial Black", Impact, sans-serif;

  font-size: clamp(5.6rem, 18vw, 16rem);
  font-weight: 900;

  line-height: 1;
  letter-spacing: -0.07em;

  text-transform: uppercase;

  color: transparent;
  opacity: 0;

  user-select: none;
  pointer-events: none;
}

/* soft premium border over video */
.hcmc-video-word::after {
  content: "HYDROCART";

  position: absolute;
  inset: 0;

  z-index: 3;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: "Arial Black", Impact, sans-serif;

  font-size: clamp(5.6rem, 18vw, 16rem);
  font-weight: 900;

  line-height: 1;
  letter-spacing: -0.07em;

  text-transform: uppercase;

  color: transparent;

  -webkit-text-stroke: 0.8px rgba(255, 255, 255, 0.16);

  opacity: calc(1 - (var(--hero-progress) * 1.25));

  pointer-events: none;
}

/* subtle ghost text */
.hcmc-video-word::before {
  content: "HYDROCART";

  position: absolute;
  inset: 0;

  z-index: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: "Arial Black", Impact, sans-serif;

  font-size: clamp(5.6rem, 18vw, 16rem);
  font-weight: 900;

  line-height: 1;
  letter-spacing: -0.07em;

  text-transform: uppercase;

  color: transparent;

  -webkit-text-stroke: 1px rgba(80, 70, 60, 0.05);

  opacity: calc(0.7 - (var(--hero-progress) * 1.1));

  pointer-events: none;
}

/* when video reaches full background */
.hcmc-hero.video-full .hcmc-video-word {
  position: absolute;
  inset: 0;

  width: 100vw;
  height: 100vh;

  margin: 0;
  transform: none;
}

.hcmc-hero.video-full .hcmc-video-word video {
  position: absolute !important;
  inset: 0 !important;

  width: 100vw !important;
  height: 100vh !important;

  object-fit: cover !important;
  object-position: center center !important;

  transform: scale(1.08) !important;

  filter:
    brightness(0.62)
    contrast(1.08)
    saturate(1.08) !important;

  -webkit-mask-image: none !important;
  mask-image: none !important;

  -webkit-mask-size: auto !important;
  mask-size: auto !important;
}

/* decorative shapes */
.hcmc-shape,
.hcmc-leaf {
  position: absolute;
  z-index: 3;
  display: block;
  pointer-events: none;

  opacity: calc(1 - (var(--hero-progress) * 1.4));
}

.hcmc-shape-orange {
  width: 20px;
  height: 10px;

  top: 25%;
  left: 27%;

  background: #f4b447;
  border-radius: 20px 20px 0 0;

  transform: rotate(12deg);
}

.hcmc-shape-blue {
  width: 18px;
  height: 34px;

  top: 22%;
  right: 22%;

  background: #71b9f5;
  border-radius: 0 20px 20px 0;

  transform: rotate(-12deg);
}

.hcmc-shape-green {
  width: 55px;
  height: 55px;

  top: 4%;
  right: 9%;

  background: #9ec881;
  border-radius: 50%;
}

.hcmc-leaf-1 {
  width: 24px;
  height: 12px;

  right: 6%;
  bottom: 18%;

  background: #74bd4f;
  border-radius: 100% 0 100% 0;

  transform: rotate(-35deg);
}

.hcmc-leaf-2 {
  width: 19px;
  height: 10px;

  left: 9%;
  bottom: 30%;

  background: #22b486;
  border-radius: 100% 0 100% 0;

  transform: rotate(-12deg);
}

/* mobile */
@media (max-width: 768px) {
  .hcmc-hero-page {
    min-height: 155vh;
  }

  .hcmc-hero {
    padding: 90px 14px 40px;
  }

  .hcmc-hero-content {
    transform: translateY(calc(10px - (var(--hero-progress) * 62px)));
  }

  .hcmc-hero-kicker {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    line-height: 1.7;
    margin-bottom: 14px;
  }

  .hcmc-hero-subtitle {
    font-size: 1.15rem;
  }

  .hcmc-discover-btn {
    margin-top: 36px;
    padding: 14px 22px;
  }

  .hcmc-video-word {
    width: calc(99vw + (var(--hero-progress) * 120vw));
    height: calc(clamp(70px, 18vw, 115px) + (var(--hero-progress) * 82vh));
  }

  .hcmc-video-word span,
  .hcmc-video-word::after,
  .hcmc-video-word::before {
    font-size: clamp(3.2rem, 15vw, 6rem);
  }

  .hcmc-video-word video {
    transform: scale(calc(1.12 - (var(--hero-progress) * 0.06)));
  }

  .hcmc-shape-green {
    width: 42px;
    height: 42px;
    right: 4%;
    top: 6%;
  }

  .hcmc-shape-orange {
    top: 22%;
    left: 14%;
  }

  .hcmc-shape-blue {
    top: 20%;
    right: 13%;
  }
}
.hcmc-hero.video-full .hcmc-video-word {
  position: absolute !important;
  inset: 0 !important;

  width: 100vw !important;
  height: 100vh !important;

  max-width: none !important;
  margin: 0 !important;

  transform: none !important;
  overflow: hidden !important;
}

.hcmc-hero.video-full .hcmc-video-word::before,
.hcmc-hero.video-full .hcmc-video-word::after,
.hcmc-hero.video-full .hcmc-video-word span {
  opacity: 0 !important;
  visibility: hidden !important;
}
.hcmc-video-word video {
  transition:
    filter 0.25s ease,
    transform 0.25s ease;
}
/* =================================================
   FINAL FIX: video full screen from top to next section
================================================= */

/* ملي الفيديو يولي full، content ما يبقاش parent positioned */
.hcmc-hero.video-full .hcmc-hero-content {
  position: static !important;
  transform: none !important;
  z-index: 5 !important;
}

/* الفيديو يشد hero كامل من الفوق */
.hcmc-hero.video-full .hcmc-video-word {
  position: absolute !important;

  top: 0 !important;
  left: 0 !important;
  right: auto !important;
  bottom: auto !important;

  width: 100vw !important;
  height: 100vh !important;

  max-width: none !important;
  margin: 0 !important;

  transform: none !important;
  overflow: hidden !important;

  z-index: 1 !important;
}

/* الفيديو نفسه يشد 100vh كاملة */
.hcmc-hero.video-full .hcmc-video-word video {
  position: absolute !important;

  top: 0 !important;
  left: 0 !important;

  width: 100vw !important;
  height: 100vh !important;

  object-fit: cover !important;
  object-position: center center !important;

  transform: scale(1.08) !important;

  -webkit-mask-image: none !important;
  mask-image: none !important;

  -webkit-mask-size: auto !important;
  mask-size: auto !important;

  filter:
    brightness(0.62)
    contrast(1.08)
    saturate(1.08) !important;
}

/* حيد أي text فوق الفيديو ملي يكمل */
.hcmc-hero.video-full .hcmc-video-word::before,
.hcmc-hero.video-full .hcmc-video-word::after,
.hcmc-hero.video-full .hcmc-video-word span,
.hcmc-hero.video-full .hcmc-hero-kicker,
.hcmc-hero.video-full .hcmc-hero-subtitle,
.hcmc-hero.video-full .hcmc-discover-btn {
  opacity: 0 !important;
  visibility: hidden !important;
}

/* ضروري hero يكون viewport كامل */
.hcmc-hero {
  height: 100vh !important;
  min-height: 100vh !important;
}

/* page ديال hero خاصها تعطي وقت للscroll animation */
.hcmc-hero-page {
  min-height: 230vh !important;
}
/* ================================
   MOBILE OVERFLOW + NAV FIX
================================ */



/* fix navbar on phone */
@media (max-width: 768px) {
  .navbar {
    position: fixed !important;
    top: 10px !important;
    left: 50% !important;
    right: auto !important;

    width: calc(100% - 24px) !important;
    max-width: calc(100vw - 24px) !important;

    transform: translateX(-50%) !important;

    border-radius: 18px !important;
    overflow: hidden !important;

    z-index: 9999 !important;
  }

  .navbar.navbar-hidden {
    transform: translateX(-50%) translateY(-130%) !important;
  }

  .navbar ul,
  .navbar .nav-links,
  .navbar .links {
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .navbar a {
    white-space: nowrap;
  }
}
/* FIX MOBILE MENU NOT OPENING */
@media (max-width: 768px) {
  .navbar {
    overflow: visible !important;
  }

  .navbar .nav-links,
  .navbar .links,
  .navbar ul {
    overflow: visible !important;
  }

  .menu,
  .mobile-menu,
  .menu-mobile,
  .nav-menu {
    overflow: visible !important;
    z-index: 10000 !important;
  }

  .menu.active,
  .mobile-menu.active,
  .menu-mobile.active,
  .nav-menu.active,
  .menu.open,
  .mobile-menu.open,
  .menu-mobile.open,
  .nav-menu.open {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
}
/* PREMIUM GLASS NAVBAR */
.navbar {
  position: fixed !important;
  top: 14px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;

  width: min(910, calc(100% - 32px)) !important;
  min-height: 64px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 0 16px !important;

  background: rgba(35, 32, 28, 0.58) !important;
  backdrop-filter: blur(22px) saturate(1.2) !important;
  -webkit-backdrop-filter: blur(22px) saturate(1.2) !important;

  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 22px !important;

  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;

  z-index: 9999 !important;
}

.navbar a,
.navbar li,
.navbar button {
  white-space: nowrap !important;
}

.navbar a {
  color: rgba(255, 255, 255, 0.86) !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
}

.navbar a:hover {
  color: #ffffff !important;
}

.navbar img {
  max-height: 42px !important;
  width: auto !important;
  object-fit: contain !important;
}

.navbar .lang,
.navbar .language,
.navbar button,
.navbar select {
  border-radius: 12px !important;
}
/* FIX: keep navbar hide/show working with centered navbar */
.navbar {
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    background 0.35s ease !important;
}

.navbar.navbar-hidden {
  transform: translateX(-50%) translateY(-140%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.navbar:not(.navbar-hidden) {
  transform: translateX(-50%) translateY(0) !important;
  opacity: 1 !important;
}
/* Floating language listbox - bottom left */
.floating-lang-listbox {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 10000;
}

.lang-selected,
.lang-option {
  width: 38px;
  height: 27px;

  padding: 0;
  border: 0;
  border-radius: 8px;

  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.lang-selected img,
.lang-option img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.lang-selected {
  position: relative;
  z-index: 2;

  background: rgba(255, 255, 255, 0.65);
  padding: 5px;
  width: 52px;
  height: 42px;

  border-radius: 14px;
  border: 1px solid rgba(45, 38, 31, 0.12);

  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);

  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.lang-selected img {
  border-radius: 8px;
}

/* dropdown list */
.lang-options {
  position: absolute;
  left: 0;
  bottom: 52px;

  display: flex;
  flex-direction: column;
  gap: 7px;

  padding: 7px;

  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(45, 38, 31, 0.12);

  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);

  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.13);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(10px) scale(0.96);
  transform-origin: bottom left;

  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease;
}

.floating-lang-listbox.open .lang-options {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.lang-option {
  opacity: 0.65;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.lang-option:hover,
.lang-option.active {
  opacity: 1;
  transform: scale(1.04);
}

.lang-option.active {
  box-shadow:
    0 0 0 2px rgba(237, 172, 63, 0.85),
    0 8px 20px rgba(237, 172, 63, 0.18);
}

/* mobile */
@media (max-width: 768px) {
  .floating-lang-listbox {
    left: 12px;
    bottom: 12px;
  }

  .lang-selected {
    width: 48px;
    height: 39px;
  }

  .lang-selected,
  .lang-option {
    border-radius: 7px;
  }

  .lang-options {
    bottom: 48px;
  }
}
/* ================================
   FIX NAVBAR MOBILE CHECKBOX MENU
================================ */

@media (max-width: 768px) {
  .navbar {
    overflow: visible !important;
  }

  .navbar-container {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* checkbox فوق hamburger ولكن شفاف */
  .navbar-container input[type="checkbox"] {
    position: absolute !important;
    top: 12px !important;
    left: 14px !important;

    width: 42px !important;
    height: 42px !important;

    opacity: 0 !important;
    z-index: 10003 !important;
    cursor: pointer !important;
    display: block !important;
  }

  .hamburger-lines {
    position: absolute !important;
    top: 16px !important;
    left: 18px !important;

    width: 28px !important;
    height: 22px !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;

    z-index: 10002 !important;
  }

  .hamburger-lines .line {
    display: block !important;
    height: 3px !important;
    width: 100% !important;

    border-radius: 999px !important;
    background: #ffffff !important;

    transition: transform 0.25s ease, opacity 0.25s ease !important;
  }

  /* menu مخبية افتراضياً */
  .menu-items {
    position: fixed !important;
    top: 82px !important;
    left: 12px !important;

    width: 205px !important;
    max-width: calc(100vw - 24px) !important;

    margin: 0 !important;
    padding: 14px !important;

    list-style: none !important;

    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;

    background: rgba(35, 32, 28, 0.92) !important;
    backdrop-filter: blur(18px) saturate(1.2) !important;
    -webkit-backdrop-filter: blur(18px) saturate(1.2) !important;

    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 18px !important;

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22) !important;

    transform: translateX(-130%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    z-index: 10001 !important;

    transition:
      transform 0.28s ease,
      opacity 0.28s ease,
      visibility 0.28s ease !important;
  }

  .menu-items li {
    width: 100% !important;
  }

  .menu-items a {
    display: block !important;
    width: 100% !important;

    padding: 11px 12px !important;
    border-radius: 12px !important;

    color: #ffffff !important;
    font-size: 0.9rem !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
  }

  .menu-items a:hover {
    background: rgba(255, 255, 255, 0.1) !important;
  }

  /* menu كتبان غير ملي checkbox checked */
  .navbar-container input[type="checkbox"]:checked ~ .menu-items {
    transform: translateX(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  /* hamburger animation */
  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg) translate(6px, 7px) !important;
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    opacity: 0 !important;
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg) translate(6px, -7px) !important;
  }
}
/* ================================
   HCMC Apple + Linear Navbar
================================ */

.hcmc-apple-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;

  width: min(940px, calc(100% - 28px));

  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.hcmc-apple-nav-inner {
  height: 64px;
  padding: 0 10px 0 16px;

  display: flex;
  align-items: center;
  gap: 18px;

  border-radius: 22px;

  background: rgba(38, 34, 29, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.16);

  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);

  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.hcmc-apple-logo {
  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  border-radius: 15px;
  background: rgba(255, 255, 255, 0.10);

  flex: 0 0 auto;
}

.hcmc-apple-logo img {
  width: 39px;
  height: 39px;
  object-fit: contain;
}

.hcmc-apple-links {
  flex: 1;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.hcmc-apple-links a {
  padding: 10px 12px;
  border-radius: 999px;

  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;

  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: 0.01em;

  white-space: nowrap;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.hcmc-apple-links a:hover {
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
  transform: translateY(-1px);
}

.hcmc-apple-cta {
  flex: 0 0 auto;

  padding: 12px 18px;
  border-radius: 999px;

  background: rgba(168, 204, 135, 0.95);
  color: #211d19;

  text-decoration: none;
  font-weight: 900;
  font-size: 0.88rem;

  box-shadow: 0 10px 28px rgba(168, 204, 135, 0.18);

  transition:
    transform 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.hcmc-apple-cta:hover {
  background: #b7dc94;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(168, 204, 135, 0.26);
}

.hcmc-apple-menu {
  display: none;

  width: 46px;
  height: 46px;

  border: 0;
  border-radius: 15px;

  background: rgba(255, 255, 255, 0.10);
  cursor: pointer;

  position: relative;
}

.hcmc-apple-menu span {
  position: absolute;
  left: 12px;

  width: 22px;
  height: 2px;

  border-radius: 999px;
  background: #ffffff;

  transition: transform 0.25s ease;
}

.hcmc-apple-menu span:first-child {
  top: 18px;
}

.hcmc-apple-menu span:last-child {
  top: 27px;
}

.hcmc-apple-nav.open .hcmc-apple-menu span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.hcmc-apple-nav.open .hcmc-apple-menu span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

/* Hide/show on scroll */
.hcmc-apple-nav.navbar-hidden {
  transform: translateX(-50%) translateY(-140%);
  opacity: 0;
  pointer-events: none;
}

/* Hide old navbar if still exists */
.navbar,
.menu-items,
.hamburger-lines {
  display: none !important;
}

/* Mobile */
@media (max-width: 768px) {
  .hcmc-apple-nav {
    top: 10px;
    width: calc(100% - 20px);
  }

  .hcmc-apple-nav-inner {
    height: 62px;
    border-radius: 20px;
    gap: 10px;
  }

  .hcmc-apple-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;

    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;

    padding: 10px;

    border-radius: 20px;

    background: rgba(38, 34, 29, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.14);

    backdrop-filter: blur(22px) saturate(1.25);
    -webkit-backdrop-filter: blur(22px) saturate(1.25);

    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-8px) scale(0.98);

    transition:
      opacity 0.22s ease,
      visibility 0.22s ease,
      transform 0.22s ease;
  }

  .hcmc-apple-nav.open .hcmc-apple-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0) scale(1);
  }

  .hcmc-apple-links a {
    width: 100%;
    padding: 13px 14px;
    border-radius: 14px;

    font-size: 0.96rem;
    text-align: left;
  }

  .hcmc-apple-cta {
    margin-left: auto;
    padding: 11px 15px;
    font-size: 0.82rem;
  }

  .hcmc-apple-menu {
    display: block;
    flex: 0 0 auto;
  }
}

.home-ofpage,
.hcmc-hero-page,
.hcmc-hero {
  background: url(./images/bag.png)!important;
}
.hcmc-bg-lines {
  opacity: 0.12 !important;
  mix-blend-mode: screen !important;
}
.hcmc-hero-kicker,
.hcmc-hero-subtitle {
  color: #f3eee4 !important;
}
.hcmc-discover-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 16px 32px;
  border-radius: 999px;

  background: linear-gradient(135deg, #9FCB7B, #86B96A);
  color: #1C211D;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;

  border: 1px solid rgba(255, 255, 255, 0.14);

  box-shadow:
    0 10px 28px rgba(111, 173, 98, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);

  transition: all 0.3s ease;
}

.hcmc-discover-btn:hover {
  background: linear-gradient(135deg, #B4DB92, #95C977);
  transform: translateY(-2px);
  box-shadow:
    0 14px 34px rgba(111, 173, 98, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.hcmc-discover-btn .hcmc-arrow {
  font-size: 1.1rem;
  line-height: 1;
}
.hcmc-discover-btn {
  background: linear-gradient(135deg, #9FCB7B, #86B96A);
  color: #1C211D;
  box-shadow: 0 10px 28px rgba(111, 173, 98, 0.28);
}
.hcmc-discover-btn {
  box-shadow:
    0 16px 42px rgba(159, 203, 123, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}
.hcmc-shape-blue,
.hcmc-shape-orange,
.hcmc-leaf-1,
.hcmc-leaf-2 {
  opacity: 0.75 !important;
}
.lang-selected {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.20) !important;
}
.hcmc-apple-nav {
  width: min(860px, calc(100% - 28px)) !important;
}

.hcmc-apple-nav-inner {
  height: 60px !important;
}
*{
    font-family: sans-serif;
}
/* =================================================
   HCMC ABOUT INTRO + ABOUT US STORY
   isolated from hero
================================================= */

/* ---------- ABOUT INTRO PAGE ---------- */

.hcmc-about-intro {
  position: relative;
  min-height: 120vh;
  padding: 120px 24px 0;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  background-image: url("./images/pexels-cottonbro-4488639.jpeg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;

  color: #f3eee4;
}
.hcmc-about-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background:
    linear-gradient(
      180deg,
      rgba(3, 8, 7, 0.55) 0%,
      rgba(3, 8, 7, 0.72) 45%,
      rgba(3, 8, 7, 0.92) 100%
    ),
    radial-gradient(
      circle at 18% 20%,
      rgba(22, 105, 83, 0.52),
      transparent 38%
    ),
    radial-gradient(
      circle at 78% 72%,
      rgba(159, 203, 123, 0.14),
      transparent 34%
    );

  pointer-events: none;
}



.about-intro-content {
  position: relative;
  z-index: 2;

  width: min(860px, 100%);
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-intro-logo {
  width: clamp(150px, 18vw, 260px);
  height: auto;
  object-fit: contain;

  opacity: 0.95;

  filter:
    drop-shadow(0 30px 65px rgba(0,0,0,0.45))
    drop-shadow(0 0 42px rgba(159,203,123,0.16));
}

.about-intro-content h2 {
  margin: 26px 0 14px;

  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.05em;

  color: #f3eee4;
}

.about-intro-content p {
  margin: 0 auto;
  max-width: 760px;

  color: rgba(243,238,228,0.72);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.7;
  font-weight: 650;
}

.about-intro-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;

  min-height: 95px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid rgba(255,255,255,0.12);
  background: rgba(5, 8, 7, 0.58);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.about-intro-info div {
  padding: 22px 30px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;

  border-right: 1px solid rgba(255,255,255,0.10);
}

.about-intro-info div:last-child {
  border-right: 0;
}

.about-intro-info strong {
  color: #9fcb7b;
  font-size: 1rem;
  font-weight: 950;
}

.about-intro-info span {
  color: rgba(243,238,228,0.68);
  font-size: 0.88rem;
  font-weight: 650;
}


/* ---------- ABOUT US STORY PAGE ---------- */

.hcmc-about-story {
  position: relative;
  min-height: 100vh;
  padding: 120px 24px;

  overflow: hidden;

  background:
    radial-gradient(circle at 82% 28%, rgba(159, 203, 123, 0.10), transparent 28%),
    linear-gradient(135deg, #050807 0%, #0b1110 48%, #11140f 100%);

  color: #f3eee4;
}

.about-story-shape {
  position: absolute;
  left: 13%;
  top: 0;

  width: 280px;
  height: 230px;

  background: linear-gradient(135deg, #9fcb7b, #5c7e4e);
  opacity: 0.88;

  border-radius: 0 0 36px 0;
}

.about-story-wrapper {
  position: relative;
  z-index: 2;

  width: min(1120px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.about-story-media {
  position: relative;
  min-height: 520px;
}

.about-story-block {
  position: absolute;
  left: 0;
  top: 38px;

  width: 68%;
  height: 62%;

  border-radius: 0 0 36px 0;
  background: rgba(159, 203, 123, 0.14);
  border: 1px solid rgba(159, 203, 123, 0.18);
}

.about-story-image {
  position: absolute;
  left: 62px;
  top: 130px;

  width: min(430px, 78vw);
  aspect-ratio: 4 / 3;

  overflow: hidden;

  border-radius: 8px;

  border: 1px solid rgba(255,255,255,0.16);

  box-shadow:
    0 32px 90px rgba(0,0,0,0.45),
    0 0 0 14px rgba(255,255,255,0.035);
}

.about-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  filter: contrast(1.04) saturate(0.92) brightness(0.88);
}

.about-story-content {
  position: relative;
}

.about-story-kicker {
  display: inline-flex;
  margin-bottom: 18px;

  color: #9fcb7b;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about-story-content h2 {
  margin: 0 0 34px;

  font-size: clamp(3rem, 6.5vw, 6rem);
  line-height: 0.9;
  font-weight: 300;
  letter-spacing: 0.12em;

  color: rgba(243,238,228,0.78);
}

.about-story-content h2 strong {
  color: #9fcb7b;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.about-story-content p {
  margin: 0;
  max-width: 640px;

  color: rgba(243,238,228,0.70);
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.9;
  font-weight: 600;
}

.about-story-btn {
  margin-top: 34px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 15px 24px;
  border-radius: 999px;

  background: linear-gradient(135deg, #9fcb7b, #86b96a);
  color: #1c211d;

  text-decoration: none;
  font-weight: 900;

  box-shadow: 0 14px 38px rgba(111, 173, 98, 0.25);

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.about-story-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #b4db92, #95c977);
  box-shadow: 0 18px 46px rgba(111, 173, 98, 0.32);
}


/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {
  .about-intro-info {
    position: relative;
    margin-top: 70px;
    grid-template-columns: 1fr;
  }

  .about-intro-info div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.10);
  }

  .about-intro-info div:last-child {
    border-bottom: 0;
  }

  .hcmc-about-intro {
    padding-bottom: 0;
    align-items: flex-start;
    padding-top: 140px;
  }

  .hcmc-about-story {
    padding: 90px 18px;
  }

  .about-story-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-story-shape {
    left: 0;
    width: 220px;
    height: 180px;
  }

  .about-story-media {
    min-height: 420px;
  }

  .about-story-image {
    left: 50%;
    top: 110px;
    transform: translateX(-50%);
    width: min(390px, 86vw);
  }

  .about-story-content h2 {
    font-size: clamp(2.7rem, 14vw, 5rem);
  }
}

@media (max-width: 520px) {
  .hcmc-about-intro {
    min-height: auto;
    padding: 128px 18px 0;
  }

  .about-intro-logo {
    width: 155px;
  }

  .about-intro-content h2 {
    font-size: 2rem;
  }

  .about-story-media {
    min-height: 350px;
  }

  .about-story-image {
    top: 95px;
  }

  .about-story-content p {
    font-size: 0.96rem;
  }
}
/* FIX: remove visual gap between about intro and about story */
.hcmc-about-intro {
  margin-bottom: 0 !important;
}

.hcmc-about-story {
  margin-top: 0 !important;
  padding-top: 0 !important;

  background:
    linear-gradient(
      180deg,
      rgba(3, 8, 7, 0.92) 0%,
      rgba(5, 10, 9, 0.96) 28%,
      #050807 100%
    ) !important;
}

/* يخلي page الثانية تدخل تحت الأولى بشكل ناعم */
.about-story-wrapper {
  padding-top: 120px !important;
}

/* خلي الشكل الأخضر ما يبداش مباشرة من أول pixel */
.about-story-shape {
  top: 0 !important;
  opacity: 0.78 !important;
}

/* إذا كان عندك about-intro-info bar وكيخلق خط/فراغ، خليه مندمج */
.about-intro-info {
  margin-bottom: 0 !important;
  border-bottom: 0 !important;
}

/* smooth fade بين section 1 و section 2 */
.hcmc-about-story::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  height: 180px;
  z-index: 1;

  background: linear-gradient(
    180deg,
    rgba(3, 8, 7, 0.95) 0%,
    rgba(3, 8, 7, 0.75) 45%,
    transparent 100%
  );

  pointer-events: none;
}
/* =================================================
   HCMC ABOUT ANIMATIONS
   Safe: does not affect hero section
================================================= */

/* initial states */
.hcmc-about-intro .about-intro-logo,
.hcmc-about-intro h2,
.hcmc-about-intro .about-intro-content p,
.hcmc-about-intro .about-intro-info div,
.hcmc-about-story .about-story-shape,
.hcmc-about-story .about-story-block,
.hcmc-about-story .about-story-image,
.hcmc-about-story .about-story-kicker,
.hcmc-about-story h2,
.hcmc-about-story p,
.hcmc-about-story .about-story-btn {
  opacity: 0;
  will-change: transform, opacity;
}

/* intro logo */
.hcmc-about-intro .about-intro-logo {
  transform: translateY(42px) scale(0.86);
  filter:
    blur(8px)
    drop-shadow(0 30px 65px rgba(0,0,0,0.45))
    drop-shadow(0 0 42px rgba(159,203,123,0.16));
}

/* intro title and text */
.hcmc-about-intro h2 {
  transform: translateY(34px);
  filter: blur(6px);
}

.hcmc-about-intro .about-intro-content p {
  transform: translateY(26px);
  filter: blur(5px);
}

/* info items */
.hcmc-about-intro .about-intro-info div {
  transform: translateY(34px);
}

/* story elements */
.hcmc-about-story .about-story-shape {
  transform: translateY(-80px) scaleY(0.72);
  transform-origin: top;
}

.hcmc-about-story .about-story-block {
  transform: translateX(-80px) scale(0.94);
}

.hcmc-about-story .about-story-image {
  transform: translateX(-70px) translateY(40px) scale(0.94);
  filter: blur(8px);
}

.hcmc-about-story .about-story-kicker,
.hcmc-about-story h2,
.hcmc-about-story p,
.hcmc-about-story .about-story-btn {
  transform: translateX(70px);
  filter: blur(6px);
}

/* active states */
.hcmc-about-intro.is-visible .about-intro-logo {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter:
    blur(0)
    drop-shadow(0 30px 65px rgba(0,0,0,0.45))
    drop-shadow(0 0 42px rgba(159,203,123,0.16));
  transition:
    opacity 0.85s ease,
    transform 1s cubic-bezier(.16, 1, .3, 1),
    filter 1s ease;
}

.hcmc-about-intro.is-visible h2 {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition:
    opacity 0.75s ease 0.12s,
    transform 0.9s cubic-bezier(.16, 1, .3, 1) 0.12s,
    filter 0.9s ease 0.12s;
}

.hcmc-about-intro.is-visible .about-intro-content p {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition:
    opacity 0.75s ease 0.24s,
    transform 0.9s cubic-bezier(.16, 1, .3, 1) 0.24s,
    filter 0.9s ease 0.24s;
}

/* stagger info bar */
.hcmc-about-intro.is-visible .about-intro-info div {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.65s ease,
    transform 0.85s cubic-bezier(.16, 1, .3, 1);
}

.hcmc-about-intro.is-visible .about-intro-info div:nth-child(1) {
  transition-delay: 0.32s;
}

.hcmc-about-intro.is-visible .about-intro-info div:nth-child(2) {
  transition-delay: 0.42s;
}

.hcmc-about-intro.is-visible .about-intro-info div:nth-child(3) {
  transition-delay: 0.52s;
}

/* story active */
.hcmc-about-story.is-visible .about-story-shape {
  opacity: 0.88;
  transform: translateY(0) scaleY(1);
  transition:
    opacity 0.8s ease,
    transform 1.1s cubic-bezier(.16, 1, .3, 1);
}

.hcmc-about-story.is-visible .about-story-block {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition:
    opacity 0.75s ease 0.08s,
    transform 1s cubic-bezier(.16, 1, .3, 1) 0.08s;
}

.hcmc-about-story.is-visible .about-story-image {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
  filter: blur(0);
  transition:
    opacity 0.85s ease 0.18s,
    transform 1.1s cubic-bezier(.16, 1, .3, 1) 0.18s,
    filter 1s ease 0.18s;
}

.hcmc-about-story.is-visible .about-story-kicker {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
  transition:
    opacity 0.65s ease 0.22s,
    transform 0.9s cubic-bezier(.16, 1, .3, 1) 0.22s,
    filter 0.9s ease 0.22s;
}

.hcmc-about-story.is-visible h2 {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
  transition:
    opacity 0.75s ease 0.32s,
    transform 0.95s cubic-bezier(.16, 1, .3, 1) 0.32s,
    filter 0.95s ease 0.32s;
}

.hcmc-about-story.is-visible p {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
  transition:
    opacity 0.75s ease 0.44s,
    transform 0.95s cubic-bezier(.16, 1, .3, 1) 0.44s,
    filter 0.95s ease 0.44s;
}

.hcmc-about-story.is-visible .about-story-btn {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
  transition:
    opacity 0.7s ease 0.56s,
    transform 0.95s cubic-bezier(.16, 1, .3, 1) 0.56s,
    filter 0.95s ease 0.56s,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

/* subtle hover motion */
.about-story-image img {
  transition: transform 0.8s cubic-bezier(.16, 1, .3, 1);
}

.about-story-image:hover img {
  transform: scale(1.045);
}

/* parallax variables */
.hcmc-about-intro,
.hcmc-about-story {
  --about-parallax: 0px;
}

.hcmc-about-intro::before {
  transform: translateY(calc(var(--about-parallax) * 0.18));
}

.hcmc-about-story::before {
  transform: translateY(calc(var(--about-parallax) * 0.12));
}

/* mobile: reduce movement */
@media (max-width: 768px) {
  .hcmc-about-story .about-story-image,
  .hcmc-about-story .about-story-block,
  .hcmc-about-story .about-story-kicker,
  .hcmc-about-story h2,
  .hcmc-about-story p,
  .hcmc-about-story .about-story-btn {
    transform: translateY(36px);
  }

  .hcmc-about-story.is-visible .about-story-image,
  .hcmc-about-story.is-visible .about-story-block,
  .hcmc-about-story.is-visible .about-story-kicker,
  .hcmc-about-story.is-visible h2,
  .hcmc-about-story.is-visible p,
  .hcmc-about-story.is-visible .about-story-btn {
    transform: translateY(0);
  }
}

/* accessibility */
@media (prefers-reduced-motion: reduce) {
  .hcmc-about-intro *,
  .hcmc-about-story * {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    filter: none !important;
  }

  .hcmc-about-intro .about-intro-logo,
  .hcmc-about-intro h2,
  .hcmc-about-intro .about-intro-content p,
  .hcmc-about-intro .about-intro-info div,
  .hcmc-about-story .about-story-shape,
  .hcmc-about-story .about-story-block,
  .hcmc-about-story .about-story-image,
  .hcmc-about-story .about-story-kicker,
  .hcmc-about-story h2,
  .hcmc-about-story p,
  .hcmc-about-story .about-story-btn {
    opacity: 1 !important;
  }
}
/* =================================================
   HCMC QA CARDS SECTION
   Isolated: does not affect hero/about previous sections
================================================= */

.hcmc-qa-section {
  position: relative;
  min-height: 100vh;
  padding: 110px 24px 120px;
  overflow: hidden;

  background:
    radial-gradient(circle at 14% 20%, rgba(22, 105, 83, 0.35), transparent 28%),
    radial-gradient(circle at 82% 84%, rgba(159, 203, 123, 0.12), transparent 30%),
    linear-gradient(135deg, #050807 0%, #0b1110 48%, #11140f 100%);

  color: #f3eee4;
}

.hcmc-qa-bg {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background:
    repeating-radial-gradient(
      circle at 15% 82%,
      transparent 0,
      transparent 26px,
      rgba(159, 203, 123, 0.12) 27px,
      transparent 28px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 86px,
      rgba(255,255,255,0.045) 87px,
      transparent 88px
    );
  pointer-events: none;
}

.hcmc-qa-head {
  position: relative;
  z-index: 2;

  width: min(980px, 100%);
  margin: 0 auto 62px;
  text-align: center;
}

.hcmc-qa-head span {
  display: inline-flex;
  margin-bottom: 16px;

  color: #9fcb7b;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hcmc-qa-head h2 {
  margin: 0;

  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.06em;

  color: #f3eee4;
}

.hcmc-qa-head p {
  margin: 22px auto 0;
  max-width: 690px;

  color: rgba(243, 238, 228, 0.68);
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
  line-height: 1.7;
  font-weight: 600;
}

.hcmc-qa-grid {
  position: relative;
  z-index: 2;

  width: min(1120px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.hcmc-qa-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;

  border-radius: 34px;
  isolation: isolate;

  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.12);

  box-shadow:
    0 30px 90px rgba(0,0,0,0.36),
    inset 0 1px 0 rgba(255,255,255,0.08);

  cursor: pointer;
  outline: none;

  transform: translateY(0);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.hcmc-qa-card:hover,
.hcmc-qa-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(159, 203, 123, 0.34);
  box-shadow:
    0 38px 110px rgba(0,0,0,0.44),
    0 0 60px rgba(159,203,123,0.08),
    inset 0 1px 0 rgba(255,255,255,0.10);
}

.hcmc-qa-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hcmc-qa-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  filter: brightness(0.52) saturate(0.9) contrast(1.06);
  transform: scale(1.02);
  transition:
    transform 0.75s cubic-bezier(.16, 1, .3, 1),
    filter 0.45s ease;
}

.hcmc-qa-card:hover .hcmc-qa-image img,
.hcmc-qa-card:focus-within .hcmc-qa-image img {
  transform: scale(1.08);
  filter: brightness(0.38) saturate(0.82) contrast(1.1);
}

.hcmc-qa-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.72)),
    radial-gradient(circle at 22% 20%, rgba(159,203,123,0.20), transparent 34%);
  pointer-events: none;
}

.hcmc-qa-content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
}

.hcmc-qa-content span {
  display: inline-flex;
  margin-bottom: 14px;

  color: #9fcb7b;
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.hcmc-qa-content h3 {
  margin: 0;
  max-width: 420px;

  font-size: clamp(2rem, 3.4vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 950;
  color: #ffffff;
}

.hcmc-qa-content p {
  margin: 16px 0 0;
  color: rgba(255,255,255,0.66);
  font-weight: 700;
}

/* answer modal/card centered */
.hcmc-answer-card {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 20000;

  width: min(760px, calc(100vw - 32px));
  max-height: min(72vh, 720px);
  overflow-y: auto;

  padding: clamp(26px, 4vw, 46px);

  border-radius: 34px;

  background:
    radial-gradient(circle at 12% 12%, rgba(159,203,123,0.16), transparent 30%),
    rgba(7, 12, 10, 0.88);

  border: 1px solid rgba(255,255,255,0.14);

  box-shadow:
    0 50px 140px rgba(0,0,0,0.68),
    0 0 0 9999px rgba(0,0,0,0.58),
    inset 0 1px 0 rgba(255,255,255,0.10);

  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translate(-50%, -46%) scale(0.94);
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease,
    transform 0.36s cubic-bezier(.16, 1, .3, 1);
}

.hcmc-qa-card:hover .hcmc-answer-card,
.hcmc-qa-card:focus-within .hcmc-answer-card,
.hcmc-qa-card.is-answer-open .hcmc-answer-card {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.hcmc-answer-close {
  position: absolute;
  top: 18px;
  right: 18px;

  width: 42px;
  height: 42px;

  border: 0;
  border-radius: 50%;

  background: rgba(255,255,255,0.10);
  color: #f3eee4;

  font-size: 28px;
  line-height: 1;
  cursor: pointer;

  display: grid;
  place-items: center;
}

.hcmc-answer-label {
  display: inline-flex;
  margin-bottom: 18px;

  color: #9fcb7b;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hcmc-answer-card h4 {
  margin: 0 0 20px;

  color: #f3eee4;
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hcmc-answer-card p {
  margin: 0;

  color: rgba(243,238,228,0.74);
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  line-height: 1.85;
  font-weight: 600;
}

/* scrollbar inside answer */
.hcmc-answer-card::-webkit-scrollbar {
  width: 8px;
}

.hcmc-answer-card::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
}

.hcmc-answer-card::-webkit-scrollbar-thumb {
  background: rgba(159,203,123,0.55);
  border-radius: 999px;
}

/* reveal animation */
.hcmc-qa-head,
.hcmc-qa-card {
  opacity: 0;
  transform: translateY(38px);
}

.hcmc-qa-section.is-visible .hcmc-qa-head,
.hcmc-qa-section.is-visible .hcmc-qa-card {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.8s ease,
    transform 1s cubic-bezier(.16, 1, .3, 1);
}

.hcmc-qa-section.is-visible .hcmc-qa-card:nth-child(1) {
  transition-delay: 0.14s;
}

.hcmc-qa-section.is-visible .hcmc-qa-card:nth-child(2) {
  transition-delay: 0.28s;
}

/* mobile */
@media (max-width: 800px) {
  .hcmc-qa-section {
    padding: 86px 18px 92px;
  }

  .hcmc-qa-grid {
    grid-template-columns: 1fr;
  }

  .hcmc-qa-card {
    min-height: 390px;
    border-radius: 28px;
  }

  .hcmc-answer-card {
    max-height: 78vh;
    border-radius: 26px;
  }
}
/* ================================
   HCMC ASK SECTION
================================= */
.hcmc-asks-section {
  position: relative;
  padding: 110px 24px 100px;
  background: transparent;
  color: #f3eee4;
}

.hcmc-asks-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 50px;
}

.hcmc-asks-header span {
  display: inline-block;
  margin-bottom: 12px;
  color: #a8d67d;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hcmc-asks-header h2 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1;
  margin: 0 0 16px;
  color: #f7f4ec;
}

.hcmc-asks-header p {
  color: rgba(243, 238, 228, 0.72);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.hcmc-asks-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.hcmc-ask-card {
  position: relative;
  min-height: 470px;
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.28);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.hcmc-ask-card:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 214, 125, 0.32);
  box-shadow: 0 30px 90px rgba(0,0,0,0.36);
}

.hcmc-ask-card-bg {
  position: absolute;
  inset: 0;
}

.hcmc-ask-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42) saturate(0.88);
  transition: transform 0.7s ease, filter 0.35s ease;
}

.hcmc-ask-card:hover .hcmc-ask-card-bg img {
  transform: scale(1.06);
  filter: brightness(0.33) saturate(0.88);
}

.hcmc-ask-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.15)),
    radial-gradient(circle at 20% 20%, rgba(168, 214, 125, 0.12), transparent 35%);
}

.hcmc-ask-card-content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 2;
}

.hcmc-ask-card-content span {
  display: inline-block;
  margin-bottom: 12px;
  color: #a8d67d;
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
}

.hcmc-ask-card-content h3 {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 0.95;
  color: #fff;
}

.hcmc-ask-card-content p {
  margin-top: 14px;
  color: rgba(255,255,255,0.72);
  font-weight: 600;
}

/* ================================
   GLOBAL MODAL
================================= */
.hcmc-ask-modal {
  position: fixed;
  inset: 0;
  z-index: 50000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.hcmc-ask-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hcmc-ask-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 7, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hcmc-ask-modal-box {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(1180px, 80vw);
  height: 60vh;
  min-height: 420px;
  transform: translate(-50%, -50%) scale(0.94);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(.16,1,.3,1), opacity 0.35s ease;

  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.95), rgba(237,243,234,0.90));
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: 0 40px 120px rgba(0,0,0,0.4);
}

.hcmc-ask-modal.is-open .hcmc-ask-modal-box {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.hcmc-ask-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(17, 26, 20, 0.08);
  color: #101813;
  font-size: 30px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.hcmc-ask-modal-close:hover {
  background: rgba(17, 26, 20, 0.14);
  transform: rotate(90deg);
}

.hcmc-ask-modal-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  height: 100%;
}

.hcmc-ask-modal-text {
  padding: 58px 48px 42px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hcmc-ask-modal-label {
  display: inline-block;
  margin-bottom: 18px;
  color: #6ea056;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hcmc-ask-modal-text h3 {
  margin: 0 0 22px;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  color: #0d1510;
}

.hcmc-ask-modal-text p {
  margin: 0;
  color: rgba(16, 24, 19, 0.76);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.9;
  font-weight: 600;
  max-width: 95%;
}

.hcmc-ask-modal-image {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #dfe7dd;
}

.hcmc-ask-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(1.03);
}

.hcmc-ask-modal-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to left, rgba(255,255,255,0.05), rgba(255,255,255,0.15)),
    linear-gradient(to top, rgba(13, 21, 16, 0.12), rgba(13, 21, 16, 0.02));
  pointer-events: none;
}

/* mobile */
@media (max-width: 900px) {
  .hcmc-asks-grid {
    grid-template-columns: 1fr;
  }

  .hcmc-ask-modal-box {
    width: calc(100vw - 20px);
    height: 80vh;
    min-height: auto;
    border-radius: 24px;
  }

  .hcmc-ask-modal-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 42% 58%;
  }

  .hcmc-ask-modal-image {
    order: -1;
    height: 100%;
  }

  .hcmc-ask-modal-text {
    padding: 24px 22px 28px;
  }

  .hcmc-ask-modal-text h3 {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .hcmc-ask-card {
    min-height: 390px;
  }
}
.hcmc-ask-card-content p {
  display: none !important;
}

.hcmc-ask-open {
  margin-top: 18px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 13px 18px;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;

  font-weight: 900;
  font-size: 0.92rem;

  cursor: pointer;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition:
    transform 0.22s ease,
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
}

.hcmc-ask-open span {
  font-size: 1rem;
  line-height: 1;
}

.hcmc-ask-open:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #9fcb7b, #86b96a);
  color: #101813;
  border-color: rgba(159, 203, 123, 0.55);
}

/* FIX HCMC ASKS SECTION BACKGROUND + VISIBILITY */
.hcmc-asks-section {
  margin-top: 0 !important;
  padding-top: 110px !important;

  background:
    radial-gradient(circle at 12% 18%, rgba(22, 105, 83, 0.38), transparent 30%),
    radial-gradient(circle at 88% 88%, rgba(159, 203, 123, 0.13), transparent 30%),
    linear-gradient(135deg, #050807 0%, #0a1110 48%, #11140f 100%) !important;

  color: #f3eee4 !important;
}

/* smooth connection with previous section */
.hcmc-asks-section::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 160px;
  z-index: 0;

  background: linear-gradient(
    180deg,
    #050807 0%,
    rgba(5, 8, 7, 0.96) 40%,
    transparent 100%
  );

  pointer-events: none;
}

/* make content always above bg */
.hcmc-asks-header,
.hcmc-asks-grid {
  position: relative !important;
  z-index: 2 !important;
}

/* title visibility */
.hcmc-asks-header span {
  color: #9fcb7b !important;
}

.hcmc-asks-header h2 {
  color: #f3eee4 !important;
  opacity: 1 !important;
}

.hcmc-asks-header p {
  color: rgba(243, 238, 228, 0.72) !important;
  opacity: 1 !important;
}

/* remove any white background inherited from old css */
.hcmc-asks-section,
.hcmc-asks-section * {
  box-sizing: border-box;
}
/* ================================
   ASKS CARDS ANIMATION
================================ */

/* initial hidden state */
.hcmc-ask-card {
  opacity: 0;
  transform: translateY(55px) scale(0.96);
  filter: blur(8px);
  transition:
    opacity 0.85s ease,
    transform 0.95s cubic-bezier(.16, 1, .3, 1),
    filter 0.95s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* when section visible */
.hcmc-asks-section.is-visible .hcmc-ask-card {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.hcmc-asks-section.is-visible .hcmc-ask-card:nth-child(1) {
  transition-delay: 0.12s;
}

.hcmc-asks-section.is-visible .hcmc-ask-card:nth-child(2) {
  transition-delay: 0.28s;
}

/* hover animation */
.hcmc-ask-card:hover {
  transform: translateY(-12px) scale(1.015);
  border-color: rgba(159, 203, 123, 0.42);
  box-shadow:
    0 38px 100px rgba(0, 0, 0, 0.42),
    0 0 55px rgba(159, 203, 123, 0.12);
}

/* image subtle motion */
.hcmc-ask-card-bg img {
  transform: scale(1.04);
  transition:
    transform 1.1s cubic-bezier(.16, 1, .3, 1),
    filter 0.45s ease;
}

.hcmc-ask-card:hover .hcmc-ask-card-bg img {
  transform: scale(1.12) translateY(-8px);
  filter: brightness(0.34) saturate(0.9) contrast(1.1);
}

/* content slide on hover */
.hcmc-ask-card-content {
  transition:
    transform 0.35s cubic-bezier(.16, 1, .3, 1),
    opacity 0.35s ease;
}

.hcmc-ask-card:hover .hcmc-ask-card-content {
  transform: translateY(-8px);
}

/* button micro animation */
.hcmc-ask-open {
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.hcmc-ask-open:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(159, 203, 123, 0.22);
}

.hcmc-ask-open span {
  transition: transform 0.25s ease;
}

.hcmc-ask-open:hover span {
  transform: translate(3px, -3px);
}
/* =================================================
   HCMC NEWS SECTION — Editorial / Magazine Style
================================================= */

.hcmc-news-section {
  position: relative;
  padding: 90px 22px 110px;
  background: #f4f3ef;
  color: #111512;
  overflow: hidden;
}

.hcmc-news-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    radial-gradient(circle at 10% 10%, rgba(159, 203, 123, 0.20), transparent 26%),
    radial-gradient(circle at 92% 88%, rgba(10, 17, 16, 0.08), transparent 28%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 84px,
      rgba(17, 21, 18, 0.035) 85px,
      transparent 86px
    );
}

.hcmc-news-wrap {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hcmc-news-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;

  margin-bottom: 24px;
  padding-bottom: 16px;

  border-bottom: 1px solid rgba(17, 21, 18, 0.18);
}

.hcmc-news-top p {
  margin: 0;
  color: #111512;
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.hcmc-news-top span {
  color: rgba(17, 21, 18, 0.55);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Featured article */
.hcmc-news-featured {
  position: relative;
  height: min(560px, 58vw);
  min-height: 390px;

  overflow: hidden;
  border-radius: 6px;

  background: #0b1110;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.hcmc-news-featured img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;

  filter: brightness(0.64) saturate(0.92) contrast(1.04);
  transform: scale(1.02);

  transition:
    transform 0.9s cubic-bezier(.16, 1, .3, 1),
    filter 0.4s ease;
}

.hcmc-news-featured:hover img {
  transform: scale(1.07);
  filter: brightness(0.52) saturate(0.95) contrast(1.08);
}

.hcmc-news-featured::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.28) 55%, rgba(0,0,0,0.05) 100%),
    linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.72) 100%);
}

.hcmc-news-featured-content {
  position: absolute;
  left: clamp(22px, 4vw, 54px);
  bottom: clamp(24px, 4vw, 52px);
  z-index: 2;

  width: min(680px, 86%);
}

.hcmc-news-tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 13px;

  border-radius: 999px;
  background: #f4f3ef;
  color: #111512;

  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hcmc-news-featured h2 {
  margin: 0 0 22px;

  color: #ffffff;
  font-size: clamp(2rem, 5vw, 5.1rem);
  line-height: 0.92;
  font-weight: 950;
  letter-spacing: -0.075em;
  max-width: 760px;
}

.hcmc-read-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #ffffff;
  text-decoration: none;

  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hcmc-read-link span {
  width: 24px;
  height: 24px;

  display: grid;
  place-items: center;

  background: #ffffff;
  color: #111512;
  border-radius: 2px;

  font-size: 1rem;
  line-height: 1;
}

/* News cards */
.hcmc-news-grid {
  margin-top: 14px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.hcmc-news-card {
  min-height: 132px;

  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px;

  padding: 10px;

  background: #ffffff;
  border: 1px solid rgba(17, 21, 18, 0.12);
  border-radius: 4px;

  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.hcmc-news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(95, 143, 74, 0.35);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.hcmc-news-card img {
  width: 112px;
  height: 112px;

  object-fit: cover;
  border-radius: 3px;

  filter: brightness(0.88) saturate(0.9);
}

.hcmc-news-card div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hcmc-news-card span {
  display: inline-flex;
  margin-bottom: 7px;

  color: #5f8f4a;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hcmc-news-card h3 {
  margin: 0 0 10px;

  color: #111512;
  font-size: 0.96rem;
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.hcmc-news-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: rgba(17, 21, 18, 0.78);
  text-decoration: none;

  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hcmc-news-card a b {
  width: 16px;
  height: 16px;

  display: grid;
  place-items: center;

  background: #111512;
  color: #ffffff;
  border-radius: 2px;

  font-size: 0.72rem;
  line-height: 1;
}

/* Reveal animation */
.hcmc-news-top,
.hcmc-news-featured,
.hcmc-news-card {
  opacity: 0;
  transform: translateY(38px);
}

.hcmc-news-section.is-visible .hcmc-news-top,
.hcmc-news-section.is-visible .hcmc-news-featured,
.hcmc-news-section.is-visible .hcmc-news-card {
  opacity: 1;
  transform: translateY(0);

  transition:
    opacity 0.85s ease,
    transform 1s cubic-bezier(.16, 1, .3, 1);
}

.hcmc-news-section.is-visible .hcmc-news-featured {
  transition-delay: 0.12s;
}

.hcmc-news-section.is-visible .hcmc-news-card:nth-child(1) {
  transition-delay: 0.22s;
}

.hcmc-news-section.is-visible .hcmc-news-card:nth-child(2) {
  transition-delay: 0.30s;
}

.hcmc-news-section.is-visible .hcmc-news-card:nth-child(3) {
  transition-delay: 0.38s;
}

.hcmc-news-section.is-visible .hcmc-news-card:nth-child(4) {
  transition-delay: 0.46s;
}

/* Responsive */
@media (max-width: 1020px) {
  .hcmc-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hcmc-news-card {
    grid-template-columns: 120px 1fr;
  }

  .hcmc-news-card img {
    width: 120px;
  }
}

@media (max-width: 700px) {
  .hcmc-news-section {
    padding: 78px 16px 88px;
  }

  .hcmc-news-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .hcmc-news-featured {
    height: 520px;
    min-height: 520px;
  }

  .hcmc-news-featured-content {
    width: calc(100% - 36px);
    left: 18px;
    bottom: 24px;
  }

  .hcmc-news-featured h2 {
    font-size: clamp(2.1rem, 11vw, 3.7rem);
  }

  .hcmc-news-grid {
    grid-template-columns: 1fr;
  }

  .hcmc-news-card {
    grid-template-columns: 105px 1fr;
  }

  .hcmc-news-card img {
    width: 105px;
    height: 105px;
  }
}
/* =================================================
   HCMC NEWS SECTION — Editorial / Magazine Style
================================================= */

.hcmc-news-section {
  position: relative;
  padding: 90px 22px 110px;
  background: #f4f3ef;
  color: #111512;
  overflow: hidden;
}

.hcmc-news-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    radial-gradient(circle at 10% 10%, rgba(159, 203, 123, 0.20), transparent 26%),
    radial-gradient(circle at 92% 88%, rgba(10, 17, 16, 0.08), transparent 28%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 84px,
      rgba(17, 21, 18, 0.035) 85px,
      transparent 86px
    );
}

.hcmc-news-wrap {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hcmc-news-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;

  margin-bottom: 24px;
  padding-bottom: 16px;

  border-bottom: 1px solid rgba(17, 21, 18, 0.18);
}

.hcmc-news-top p {
  margin: 0;
  color: #111512;
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.hcmc-news-top span {
  color: rgba(17, 21, 18, 0.55);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Featured article */

.hcmc-news-featured {
  position: relative;
  height: min(560px, 58vw);
  min-height: 390px;

  overflow: hidden;
  border-radius: 6px;

  background: #0b1110;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.hcmc-news-featured img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;

  filter: brightness(0.64) saturate(0.92) contrast(1.04);
  transform: scale(1.02);

  transition:
    transform 0.9s cubic-bezier(.16, 1, .3, 1),
    filter 0.45s ease,
    opacity 0.35s ease;
}

.hcmc-news-featured:hover img {
  transform: scale(1.07);
  filter: brightness(0.52) saturate(0.95) contrast(1.08);
}

.hcmc-news-featured::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.28) 55%, rgba(0,0,0,0.05) 100%),
    linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.72) 100%);
}

.hcmc-news-featured-content {
  position: absolute;
  left: clamp(22px, 4vw, 54px);
  bottom: clamp(24px, 4vw, 52px);
  z-index: 2;

  width: min(680px, 86%);

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.hcmc-news-tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 13px;

  border-radius: 999px;
  background: #f4f3ef;
  color: #111512;

  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hcmc-news-featured h2 {
  margin: 0 0 22px;

  color: #ffffff;
  font-size: clamp(2rem, 5vw, 5.1rem);
  line-height: 0.92;
  font-weight: 950;
  letter-spacing: -0.075em;
  max-width: 760px;
}

.hcmc-read-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #ffffff;
  text-decoration: none;

  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hcmc-read-link span {
  width: 24px;
  height: 24px;

  display: grid;
  place-items: center;

  background: #ffffff;
  color: #111512;
  border-radius: 2px;

  font-size: 1rem;
  line-height: 1;
}

/* Auto changing animation */

.hcmc-news-featured.is-changing img {
  opacity: 0.55;
  transform: scale(1.09);
  filter: brightness(0.42) saturate(0.9) contrast(1.08);
}

.hcmc-news-featured.is-changing .hcmc-news-featured-content {
  opacity: 0;
  transform: translateY(22px);
}

/* Small news cards */

.hcmc-news-grid {
  margin-top: 14px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.hcmc-news-card {
  min-height: 132px;

  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px;

  padding: 10px;

  background: #ffffff;
  border: 1px solid rgba(17, 21, 18, 0.12);
  border-radius: 4px;

  cursor: pointer;

  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.hcmc-news-card:hover,
.hcmc-news-card.active {
  transform: translateY(-6px);
  border-color: rgba(95, 143, 74, 0.38);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  background: #f9faf6;
}

.hcmc-news-card.active {
  outline: 2px solid rgba(95, 143, 74, 0.28);
}

.hcmc-news-card img {
  width: 112px;
  height: 112px;

  object-fit: cover;
  border-radius: 3px;

  filter: brightness(0.88) saturate(0.9);
}

.hcmc-news-card div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hcmc-news-card span {
  display: inline-flex;
  margin-bottom: 7px;

  color: #5f8f4a;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hcmc-news-card h3 {
  margin: 0 0 10px;

  color: #111512;
  font-size: 0.96rem;
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.hcmc-news-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: rgba(17, 21, 18, 0.78);
  text-decoration: none;

  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hcmc-news-card a b {
  width: 16px;
  height: 16px;

  display: grid;
  place-items: center;

  background: #111512;
  color: #ffffff;
  border-radius: 2px;

  font-size: 0.72rem;
  line-height: 1;
}

/* Reveal animation */

.hcmc-news-top,
.hcmc-news-featured,
.hcmc-news-card {
  opacity: 0;
  transform: translateY(38px);
}

.hcmc-news-section.is-visible .hcmc-news-top,
.hcmc-news-section.is-visible .hcmc-news-featured,
.hcmc-news-section.is-visible .hcmc-news-card {
  opacity: 1;
  transform: translateY(0);

  transition:
    opacity 0.85s ease,
    transform 1s cubic-bezier(.16, 1, .3, 1);
}

.hcmc-news-section.is-visible .hcmc-news-featured {
  transition-delay: 0.12s;
}

.hcmc-news-section.is-visible .hcmc-news-card:nth-child(1) {
  transition-delay: 0.22s;
}

.hcmc-news-section.is-visible .hcmc-news-card:nth-child(2) {
  transition-delay: 0.30s;
}

.hcmc-news-section.is-visible .hcmc-news-card:nth-child(3) {
  transition-delay: 0.38s;
}

.hcmc-news-section.is-visible .hcmc-news-card:nth-child(4) {
  transition-delay: 0.46s;
}

/* Responsive */

@media (max-width: 1020px) {
  .hcmc-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hcmc-news-card {
    grid-template-columns: 120px 1fr;
  }

  .hcmc-news-card img {
    width: 120px;
  }
}

@media (max-width: 700px) {
  .hcmc-news-section {
    padding: 78px 16px 88px;
  }

  .hcmc-news-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .hcmc-news-featured {
    height: 520px;
    min-height: 520px;
  }

  .hcmc-news-featured-content {
    width: calc(100% - 36px);
    left: 18px;
    bottom: 24px;
  }

  .hcmc-news-featured h2 {
    font-size: clamp(2.1rem, 11vw, 3.7rem);
  }

  .hcmc-news-grid {
    grid-template-columns: 1fr;
  }

  .hcmc-news-card {
    grid-template-columns: 105px 1fr;
  }

  .hcmc-news-card img {
    width: 105px;
    height: 105px;
  }
}
/* ======================================
   NAV LANGUAGE INSIDE NAVBAR FIX
====================================== */

.hcmc-nav-lang {
  position: relative !important;
  left: auto !important;
  bottom: auto !important;
  transform: none !important;
  z-index: 10002;
  flex: 0 0 auto;
}

/* reset old floating styles */
.hcmc-nav-lang .lang-selected {
  width: 46px !important;
  height: 38px !important;

  padding: 5px !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 14px !important;

  background: rgba(255, 255, 255, 0.10) !important;
  box-shadow: none !important;

  display: grid !important;
  place-items: center !important;
  cursor: pointer !important;
}

.hcmc-nav-lang .lang-selected img {
  width: 30px !important;
  height: 22px !important;
  object-fit: cover !important;
  border-radius: 5px !important;
  display: block !important;
}

.hcmc-nav-lang .lang-options {
  position: absolute !important;
  top: 50px !important;
  right: 0 !important;
  left: auto !important;
  bottom: auto !important;

  display: flex !important;
  flex-direction: column !important;
  gap: 7px !important;

  padding: 8px !important;
  margin: 0 !important;

  border-radius: 16px !important;
  background: rgba(18, 26, 22, 0.92) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;

  backdrop-filter: blur(18px) saturate(1.2) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.2) !important;

  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.25) !important;

  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;

  transform: translateY(-8px) scale(0.96) !important;
  transform-origin: top right !important;

  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease !important;
}

.hcmc-nav-lang.open .lang-options {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) scale(1) !important;
}

.hcmc-nav-lang .lang-option {
  width: 38px !important;
  height: 28px !important;

  padding: 0 !important;
  border: 0 !important;
  border-radius: 8px !important;

  background: transparent !important;
  cursor: pointer !important;
  overflow: hidden !important;

  opacity: 0.62 !important;
  transition: opacity 0.2s ease, transform 0.2s ease !important;
}

.hcmc-nav-lang .lang-option img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.hcmc-nav-lang .lang-option:hover,
.hcmc-nav-lang .lang-option.active {
  opacity: 1 !important;
  transform: scale(1.04) !important;
}

/* Join inside mobile menu hidden on desktop */
.hcmc-mobile-join {
  display: none !important;
}

/* Desktop order: Contact -> language -> Join */
@media (min-width: 769px) {
  .hcmc-apple-nav-inner {
    gap: 12px !important;
  }

  .hcmc-apple-links {
    flex: 1 !important;
  }

  .hcmc-nav-lang {
    order: 3;
  }

  .hcmc-apple-cta {
    order: 4;
  }

  .hcmc-apple-menu {
    order: 5;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hcmc-apple-nav-inner {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .hcmc-apple-logo {
    order: 1;
    flex: 0 0 auto;
  }

  .hcmc-apple-links {
    order: 5;
  }

  .hcmc-nav-lang {
    order: 2;
    margin-left: auto !important;
  }

  .hcmc-apple-menu {
    order: 3;
    display: block !important;
    flex: 0 0 auto;
  }

  /* hide desktop join button on mobile */
  .hcmc-apple-cta {
    display: none !important;
  }

  /* show join inside dropdown menu */
  .hcmc-mobile-join {
    display: block !important;
  }

  .hcmc-nav-lang .lang-selected {
    width: 46px !important;
    height: 38px !important;
    border-radius: 13px !important;
  }

  .hcmc-nav-lang .lang-selected img {
    width: 29px !important;
    height: 21px !important;
  }

  .hcmc-nav-lang .lang-options {
    top: 48px !important;
    right: 0 !important;
  }
}
/* =================================================
   HCMC PROJECT LAB — Split Showcase
================================================= */

.hcmc-project-lab {
  position: relative;
  min-height: 100vh;
  padding: 120px 24px 130px;
  overflow: hidden;

  background:
    radial-gradient(circle at 12% 20%, rgba(22, 105, 83, 0.42), transparent 30%),
    radial-gradient(circle at 88% 74%, rgba(159, 203, 123, 0.12), transparent 32%),
    linear-gradient(135deg, #050807 0%, #0b1110 48%, #11140f 100%);

  color: #f3eee4;
}

.project-lab-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;

  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 82px,
      rgba(255, 255, 255, 0.035) 83px,
      transparent 84px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 82px,
      rgba(255, 255, 255, 0.025) 83px,
      transparent 84px
    ),
    radial-gradient(circle at 70% 45%, rgba(159, 203, 123, 0.14), transparent 24%);
}

.hcmc-project-lab::before {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  right: -250px;
  top: 120px;

  border-radius: 50%;
  border: 1px solid rgba(159, 203, 123, 0.14);

  box-shadow:
    0 0 0 70px rgba(159, 203, 123, 0.025),
    0 0 0 150px rgba(159, 203, 123, 0.018);

  animation: projectRadar 18s linear infinite;
  pointer-events: none;
}

.hcmc-project-lab::after {
  content: "";
  position: absolute;
  left: -10%;
  bottom: 12%;
  width: 58%;
  height: 2px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(159, 203, 123, 0.58),
    transparent
  );

  transform: rotate(-8deg);
  opacity: 0.45;
  pointer-events: none;
}

@keyframes projectRadar {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.project-lab-wrap {
  position: relative;
  z-index: 2;

  width: min(1180px, 100%);
  margin: 0 auto;
}

.project-lab-head {
  margin-bottom: 70px;
  max-width: 780px;
}

.project-lab-head span {
  display: inline-flex;
  margin-bottom: 16px;

  color: #9fcb7b;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.project-lab-head h2 {
  margin: 0;

  color: #f3eee4;
  font-size: clamp(2.6rem, 6vw, 6rem);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: -0.075em;
}

.project-lab-head p {
  margin: 22px 0 0;
  max-width: 620px;

  color: rgba(243, 238, 228, 0.66);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.7;
  font-weight: 600;
}

.project-lab-showcase {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 64px;
  align-items: center;
}

.project-lab-info {
  position: relative;
  min-height: 440px;
  padding: 34px;

  border-radius: 34px;

  background:
    radial-gradient(circle at 12% 12%, rgba(159, 203, 123, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.045);

  border: 1px solid rgba(255, 255, 255, 0.11);

  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.project-number {
  display: block;

  color: rgba(255, 255, 255, 0.10);
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 0.8;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.project-status {
  display: inline-flex;
  margin-top: 28px;
  margin-bottom: 22px;

  padding: 9px 14px;
  border-radius: 999px;

  background: rgba(159, 203, 123, 0.14);
  border: 1px solid rgba(159, 203, 123, 0.24);

  color: #9fcb7b;

  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.project-lab-info h3 {
  margin: 0 0 20px;

  color: #ffffff;
  font-size: clamp(2.2rem, 4.2vw, 4.6rem);
  line-height: 0.92;
  font-weight: 950;
  letter-spacing: -0.07em;
}

.project-lab-info p {
  margin: 0;
  max-width: 520px;

  color: rgba(243, 238, 228, 0.70);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.8;
  font-weight: 600;
}

.project-link {
  margin-top: 32px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 15px 22px;
  border-radius: 999px;

  background: linear-gradient(135deg, #9fcb7b, #86b96a);
  color: #101813;

  text-decoration: none;
  font-weight: 950;

  box-shadow: 0 14px 38px rgba(111, 173, 98, 0.25);

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.project-link:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #b4db92, #95c977);
  box-shadow: 0 18px 46px rgba(111, 173, 98, 0.34);
}

.project-link span {
  transition: transform 0.22s ease;
}

.project-link:hover span {
  transform: translate(3px, -3px);
}

.project-lab-visual {
  position: relative;
}

.project-lab-visual::before {
  content: "";
  position: absolute;
  inset: -28px;

  border-radius: 42px;

  background:
    radial-gradient(circle at 45% 35%, rgba(159, 203, 123, 0.18), transparent 42%);

  filter: blur(12px);
  opacity: 0.86;
  z-index: -1;
}

.project-image-frame {
  position: relative;
  height: 520px;

  border-radius: 38px;
  overflow: hidden;

  background: #0b1110;
  border: 1px solid rgba(255, 255, 255, 0.13);

  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.42),
    0 0 90px rgba(159, 203, 123, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.project-image-frame img {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;
  object-position: center;

  filter: brightness(0.78) saturate(0.94) contrast(1.04);

  transform: scale(1.03);
  transition:
    opacity 0.35s ease,
    transform 0.9s cubic-bezier(.16, 1, .3, 1),
    filter 0.35s ease;
}

.project-image-frame:hover img {
  transform: scale(1.08);
  filter: brightness(0.68) saturate(0.98) contrast(1.08);
}

.project-image-frame.is-changing img {
  opacity: 0.35;
  transform: scale(1.1);
  filter: blur(5px) brightness(0.58);
}

.project-tabs {
  margin-top: 18px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.project-tab {
  min-height: 76px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;

  padding: 14px 12px;

  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.055);
  color: rgba(243, 238, 228, 0.74);

  cursor: pointer;

  font-weight: 850;
  text-align: left;

  transition:
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.project-tab span {
  color: #9fcb7b;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.project-tab:hover,
.project-tab.active {
  transform: translateY(-4px);

  background: rgba(159, 203, 123, 0.13);
  border-color: rgba(159, 203, 123, 0.36);
  color: #ffffff;

  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

/* changing animation for text */
.project-lab-info.is-changing {
  animation: projectInfoChange 0.46s ease;
}

@keyframes projectInfoChange {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  45% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* section reveal */
.project-lab-head,
.project-lab-info,
.project-lab-visual {
  opacity: 0;
  transform: translateY(42px);
}

.hcmc-project-lab.is-visible .project-lab-head,
.hcmc-project-lab.is-visible .project-lab-info,
.hcmc-project-lab.is-visible .project-lab-visual {
  opacity: 1;
  transform: translateY(0);

  transition:
    opacity 0.85s ease,
    transform 1s cubic-bezier(.16, 1, .3, 1);
}

.hcmc-project-lab.is-visible .project-lab-info {
  transition-delay: 0.16s;
}

.hcmc-project-lab.is-visible .project-lab-visual {
  transition-delay: 0.28s;
}

/* Responsive */
@media (max-width: 980px) {
  .project-lab-showcase {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .project-lab-info {
    min-height: auto;
  }

  .project-image-frame {
    height: 440px;
  }
}

@media (max-width: 700px) {
  .hcmc-project-lab {
    padding: 88px 16px 96px;
  }

  .project-lab-head {
    margin-bottom: 44px;
  }

  .project-lab-info {
    padding: 24px;
    border-radius: 28px;
  }

  .project-number {
    font-size: 5rem;
  }

  .project-image-frame {
    height: 340px;
    border-radius: 28px;
  }

  .project-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .project-tab {
    min-height: 68px;
    font-size: 0.88rem;
  }
}

@media (max-width: 430px) {
  .project-tabs {
    grid-template-columns: 1fr;
  }
}
/* =================================================
   HCMC ENVIRONMENT SECTION — Green Organic Layout
================================================= */

.hcmc-env-section {
  position: relative;
  padding: 90px 22px 110px;
  overflow: hidden;

  background:
    radial-gradient(circle at 15% 15%, rgba(159, 203, 123, 0.12), transparent 28%),
    radial-gradient(circle at 86% 70%, rgba(255, 255, 255, 0.08), transparent 26%),
    #06472f;

  color: #f6f3e9;
}

.hcmc-env-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;

  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 82px,
      rgba(255,255,255,0.08) 83px,
      transparent 84px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 82px,
      rgba(255,255,255,0.055) 83px,
      transparent 84px
    );
}

.hcmc-env-wrap {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
}

/* top images */
.hcmc-env-top {
  display: grid;
  grid-template-columns: 1fr 1.45fr 1fr;
  gap: 18px;
  align-items: end;
  margin-bottom: 60px;
}

.env-photo-card,
.env-center-card,
.env-person-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;

  background: rgba(255,255,255,0.08);
  box-shadow: 0 22px 60px rgba(0,0,0,0.18);
}

.env-photo-card {
  height: 210px;
}

.env-photo-large {
  height: 260px;
}

.env-center-card {
  height: 300px;
}

.env-photo-card img,
.env-center-card img,
.env-person-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;

  transition:
    transform 0.9s cubic-bezier(.16, 1, .3, 1),
    filter 0.35s ease;
}

.env-photo-card:hover img,
.env-center-card:hover img,
.env-person-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.92) saturate(1.05);
}

.env-center-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.68) 100%);
}

.env-center-info {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
}

.env-center-info span {
  display: inline-flex;
  margin-bottom: 8px;

  color: #b8df91;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.env-center-info h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.04em;
}

/* title */
.hcmc-env-title {
  width: min(780px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.hcmc-env-title span {
  display: inline-flex;
  margin-bottom: 14px;

  color: #b8df91;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hcmc-env-title h2 {
  margin: 0;

  color: #ffffff;
  font-size: clamp(2.4rem, 5.5vw, 5.4rem);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: -0.075em;
}

.hcmc-env-title p {
  margin: 20px auto 0;
  max-width: 650px;

  color: rgba(246,243,233,0.72);
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
  line-height: 1.75;
  font-weight: 600;
}

/* stats */
.hcmc-env-stats {
  width: min(760px, 100%);
  margin: 0 auto 70px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.env-stat-card {
  min-height: 106px;
  padding: 18px 12px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border-radius: 18px;
  background: #f6e2bd;
  color: #063622;

  box-shadow: 0 18px 38px rgba(0,0,0,0.16);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.env-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 54px rgba(0,0,0,0.22);
}

.env-stat-card strong {
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.env-stat-card span {
  margin-top: 8px;
  max-width: 110px;

  color: rgba(6,54,34,0.72);
  font-size: 0.72rem;
  line-height: 1.25;
  text-align: center;
  font-weight: 800;
}

/* bottom layout */
.hcmc-env-bottom {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.env-person-card {
  min-height: 430px;
  border-radius: 30px;
}

.env-service-card {
  position: relative;
  padding: clamp(30px, 4vw, 52px);

  border-radius: 30px;

  background: #f7f2df;
  color: #0a1510;

  box-shadow: 0 30px 85px rgba(0,0,0,0.22);
  overflow: hidden;
}

.env-service-card::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 230px;
  height: 230px;

  border-radius: 50%;
  background: rgba(159,203,123,0.30);
}

.env-service-kicker {
  position: relative;
  z-index: 2;

  display: inline-flex;
  margin-bottom: 18px;

  color: #5f8f4a;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.env-service-card h3 {
  position: relative;
  z-index: 2;

  margin: 0 0 20px;

  color: #0a1510;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 0.92;
  font-weight: 950;
  letter-spacing: -0.075em;
}

.env-service-card p {
  position: relative;
  z-index: 2;

  margin: 0;
  max-width: 620px;

  color: rgba(10,21,16,0.68);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.8;
  font-weight: 650;
}

.env-service-points {
  position: relative;
  z-index: 2;

  margin-top: 30px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.env-service-points div {
  padding: 16px;
  border-radius: 18px;

  background: rgba(6,71,47,0.06);
  border: 1px solid rgba(6,71,47,0.10);
}

.env-service-points b {
  display: block;
  margin-bottom: 8px;

  color: #5f8f4a;
  font-size: 0.78rem;
  font-weight: 950;
}

.env-service-points span {
  color: rgba(10,21,16,0.78);
  font-size: 0.88rem;
  line-height: 1.25;
  font-weight: 850;
}

.env-service-btn {
  position: relative;
  z-index: 2;

  margin-top: 32px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 15px 22px;
  border-radius: 999px;

  background: #06472f;
  color: #ffffff;

  text-decoration: none;
  font-weight: 950;

  transition:
    transform 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.env-service-btn:hover {
  transform: translateY(-3px);
  background: #0a5c3e;
  box-shadow: 0 16px 40px rgba(6,71,47,0.22);
}

.env-service-btn span {
  transition: transform 0.22s ease;
}

.env-service-btn:hover span {
  transform: translate(3px, -3px);
}

/* animation */
.hcmc-env-title,
.env-photo-card,
.env-center-card,
.env-stat-card,
.env-person-card,
.env-service-card {
  opacity: 0;
  transform: translateY(42px);
}

.hcmc-env-section.is-visible .hcmc-env-title,
.hcmc-env-section.is-visible .env-photo-card,
.hcmc-env-section.is-visible .env-center-card,
.hcmc-env-section.is-visible .env-stat-card,
.hcmc-env-section.is-visible .env-person-card,
.hcmc-env-section.is-visible .env-service-card {
  opacity: 1;
  transform: translateY(0);

  transition:
    opacity 0.8s ease,
    transform 1s cubic-bezier(.16, 1, .3, 1);
}

.hcmc-env-section.is-visible .env-photo-card:nth-child(1) {
  transition-delay: 0.08s;
}

.hcmc-env-section.is-visible .env-center-card {
  transition-delay: 0.16s;
}

.hcmc-env-section.is-visible .env-photo-card:nth-child(3) {
  transition-delay: 0.24s;
}

.hcmc-env-section.is-visible .hcmc-env-title {
  transition-delay: 0.18s;
}

.hcmc-env-section.is-visible .env-stat-card:nth-child(1) {
  transition-delay: 0.22s;
}

.hcmc-env-section.is-visible .env-stat-card:nth-child(2) {
  transition-delay: 0.30s;
}

.hcmc-env-section.is-visible .env-stat-card:nth-child(3) {
  transition-delay: 0.38s;
}

.hcmc-env-section.is-visible .env-stat-card:nth-child(4) {
  transition-delay: 0.46s;
}

.hcmc-env-section.is-visible .env-person-card {
  transition-delay: 0.18s;
}

.hcmc-env-section.is-visible .env-service-card {
  transition-delay: 0.30s;
}

/* responsive */
@media (max-width: 980px) {
  .hcmc-env-top {
    grid-template-columns: 1fr 1fr;
  }

  .env-center-card {
    grid-column: 1 / -1;
    order: -1;
  }

  .hcmc-env-bottom {
    grid-template-columns: 1fr;
  }

  .env-person-card {
    min-height: 360px;
  }
}

@media (max-width: 700px) {
  .hcmc-env-section {
    padding: 74px 16px 86px;
  }

  .hcmc-env-top {
    grid-template-columns: 1fr;
  }

  .env-photo-card,
  .env-photo-large,
  .env-center-card {
    height: 230px;
  }

  .hcmc-env-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 54px;
  }

  .env-service-points {
    grid-template-columns: 1fr;
  }

  .env-person-card {
    min-height: 320px;
  }

  .env-service-card {
    border-radius: 24px;
  }
}
.hcmc-env-section {
  position: relative;
  padding: 90px 22px 110px;
  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      rgba(6, 71, 47, 0.88) 0%,
      rgba(6, 71, 47, 0.82) 45%,
      rgba(4, 42, 29, 0.94) 100%
    ),
    radial-gradient(circle at 15% 15%, rgba(159, 203, 123, 0.18), transparent 28%),
    url("./images/OIP.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #f6f3e9;
}
.hcmc-env-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background:
    radial-gradient(circle at 50% 20%, transparent 0%, rgba(4, 42, 29, 0.35) 45%, rgba(4, 42, 29, 0.72) 100%),
    linear-gradient(180deg, rgba(4, 42, 29, 0.18), rgba(4, 42, 29, 0.72));
}

.hcmc-env-wrap {
  position: relative;
  z-index: 3;
}
/* FIX transition gap before Environment */
.hcmc-env-section {
  margin-top: -1px !important;
  padding-top: 0 !important;
}

/* نخلي content يهبط شوية بلا ما يكون background فيه فراغ */
.hcmc-env-wrap {
  padding-top: 90px !important;
}

/* smooth fade from previous dark section to environment */
.hcmc-env-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  height: 170px;
  z-index: 2;
  pointer-events: none;

  background: linear-gradient(
    180deg,
    #050807 0%,
    rgba(5, 8, 7, 0.78) 28%,
    rgba(6, 71, 47, 0.28) 68%,
    transparent 100%
  );
}

/* grid pattern يبقى ولكن ما يطلعش فوق fade */
.hcmc-env-section .hcmc-env-wrap {
  position: relative;
  z-index: 4;
}

/* إذا عندك ::after ديال overlay خليه تحت content وفوق image */
.hcmc-env-section::after {
  z-index: 1 !important;
}
/* =================================================
   HCMC CONTACT SECTION — Dark Editorial Style
================================================= */

.hcmc-contact-section {
  position: relative;
  min-height: 100vh;
  padding: 120px 24px;
  overflow: hidden;

  display: flex;
  align-items: center;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.86) 0%,
      rgba(0, 0, 0, 0.72) 48%,
      rgba(0, 0, 0, 0.82) 100%
    ),
    url("./images/bag.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #f4f4f0;
}

.hcmc-contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    radial-gradient(circle at 20% 20%, rgba(159, 203, 123, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.42));
}

.hcmc-contact-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 90px,
      rgba(255,255,255,0.025) 91px,
      transparent 92px
    );
  opacity: 0.5;
}

.hcmc-contact-container {
  position: relative;
  z-index: 2;

  width: min(1180px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

/* left side */
.hcmc-contact-left h2 {
  margin: 0 0 70px;

  color: #ffffff;
  font-size: clamp(4rem, 8vw, 8.5rem);
  line-height: 0.82;
  font-weight: 900;
  letter-spacing: -0.08em;
  text-transform: uppercase;

  text-shadow:
    0 0 10px rgba(255,255,255,0.75),
    0 0 26px rgba(255,255,255,0.45),
    0 0 60px rgba(159,203,123,0.14);
}

.hcmc-contact-left h2 span {
  display: block;
  position: relative;
  width: fit-content;
}

.hcmc-contact-left h2 span::after {
  content: "";
  position: absolute;
  left: 105%;
  top: 50%;

  width: clamp(100px, 16vw, 230px);
  height: 7px;

  background: #ffffff;
  box-shadow:
    0 0 10px rgba(255,255,255,0.8),
    0 0 28px rgba(255,255,255,0.55);

  transform: translateY(-50%);
}

.hcmc-contact-left p {
  max-width: 520px;
  margin: 0 0 34px;

  color: rgba(244,244,240,0.62);
  font-size: 0.96rem;
  line-height: 1.75;
  font-weight: 500;
}

.hcmc-contact-details {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.hcmc-contact-details a,
.hcmc-contact-details span {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  color: rgba(244,244,240,0.72);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 650;
}

.hcmc-contact-details i {
  width: 18px;
  color: #9fcb7b;
}

.hcmc-contact-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hcmc-contact-social a {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #ffffff;

  text-decoration: none;
  transition: transform 0.22s ease, background 0.22s ease;
}

.hcmc-contact-social a:hover {
  transform: translateY(-3px);
  background: #9fcb7b;
  color: #101813;
}

/* form side */
.hcmc-contact-right {
  width: 100%;
}

.hcmc-contact-form {
  width: 100%;
  padding: 0;

  background: transparent;
  border: 0;
  box-shadow: none;
}

.hcmc-contact-form h3 {
  margin: 0 0 14px;

  color: #ffffff;
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  line-height: 1.1;
  font-weight: 800;
}

.hcmc-contact-form > p {
  margin: 0 0 34px;

  color: rgba(244,244,240,0.58);
  font-size: 0.9rem;
  line-height: 1.7;
}

.hcmc-contact-form label {
  display: block;
  margin-bottom: 18px;

  color: rgba(244,244,240,0.78);
  font-size: 0.84rem;
  font-weight: 700;
}

.hcmc-contact-form input,
.hcmc-contact-form textarea,
.hcmc-contact-form select {
  width: 100%;
  margin-top: 6px;
  padding: 10px 0;

  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.55);
  border-radius: 0;

  background: transparent;
  color: #ffffff;

  font-size: 0.95rem;
  outline: none;

  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.hcmc-contact-form input::placeholder,
.hcmc-contact-form textarea::placeholder {
  color: rgba(255,255,255,0.42);
}

.hcmc-contact-form select {
  color: rgba(255,255,255,0.72);
}

.hcmc-contact-form select option {
  color: #111;
}

.hcmc-contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

.hcmc-contact-form input:focus,
.hcmc-contact-form textarea:focus,
.hcmc-contact-form select:focus {
  border-color: #ffffff;
  box-shadow: 0 1px 0 #ffffff;
}

.hcmc-contact-form button {
  width: min(280px, 100%);
  height: 44px;

  margin-top: 10px;

  border: 0;
  background: #ffffff;
  color: #111512;

  font-weight: 800;
  cursor: pointer;

  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.hcmc-contact-form button:hover {
  transform: translateY(-2px);
  background: #9fcb7b;
  color: #101813;
}

/* animation */
.hcmc-contact-left,
.hcmc-contact-right {
  opacity: 0;
  transform: translateY(42px);
}

.hcmc-contact-section.is-visible .hcmc-contact-left,
.hcmc-contact-section.is-visible .hcmc-contact-right {
  opacity: 1;
  transform: translateY(0);

  transition:
    opacity 0.85s ease,
    transform 1s cubic-bezier(.16, 1, .3, 1);
}

.hcmc-contact-section.is-visible .hcmc-contact-right {
  transition-delay: 0.18s;
}

/* responsive */
@media (max-width: 900px) {
  .hcmc-contact-section {
    padding: 100px 18px;
  }

  .hcmc-contact-container {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .hcmc-contact-left h2 {
    margin-bottom: 42px;
    font-size: clamp(4rem, 18vw, 7rem);
  }

  .hcmc-contact-left h2 span::after {
    width: clamp(70px, 22vw, 150px);
    height: 5px;
  }
}

@media (max-width: 520px) {
  .hcmc-contact-section {
    padding: 88px 16px;
  }

  .hcmc-contact-left h2 {
    font-size: clamp(3.6rem, 17vw, 5.4rem);
  }

  .hcmc-contact-left h2 span::after {
    width: 70px;
  }

  .hcmc-contact-form button {
    width: 100%;
  }
}
/* FIX CONTACT TOO DARK */
.hcmc-contact-section {
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.58) 0%,
      rgba(0, 0, 0, 0.36) 48%,
      rgba(0, 0, 0, 0.58) 100%
    ),
    url("./images/bag.png") !important;

  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.hcmc-contact-section::before {
  background:
    radial-gradient(circle at 20% 20%, rgba(159, 203, 123, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.20)) !important;
}

.hcmc-contact-overlay {
  opacity: 0.18 !important;
}

/* force content above overlay */
.hcmc-contact-container {
  position: relative !important;
  z-index: 5 !important;
}

/* stronger readable text */
.hcmc-contact-left h2,
.hcmc-contact-form h3 {
  color: #ffffff !important;
  opacity: 1 !important;
}

.hcmc-contact-left p,
.hcmc-contact-form > p,
.hcmc-contact-details a,
.hcmc-contact-details span,
.hcmc-contact-form label {
  color: rgba(255, 255, 255, 0.82) !important;
  opacity: 1 !important;
}

.hcmc-contact-form input,
.hcmc-contact-form textarea,
.hcmc-contact-form select {
  color: #ffffff !important;
  border-bottom-color: rgba(255,255,255,0.75) !important;
}

.hcmc-contact-form input::placeholder,
.hcmc-contact-form textarea::placeholder {
  color: rgba(255,255,255,0.58) !important;
}
/* FIX: contact background/overlay covering text */
.hcmc-contact-section {
  position: relative !important;
  isolation: isolate !important;
}

.hcmc-contact-section::before,
.hcmc-contact-section::after,
.hcmc-contact-overlay {
  z-index: 0 !important;
  pointer-events: none !important;
}

.hcmc-contact-container,
.hcmc-contact-left,
.hcmc-contact-right,
.hcmc-contact-form {
  position: relative !important;
  z-index: 5 !important;
}

/* force visible content */
.hcmc-contact-left,
.hcmc-contact-right {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.hcmc-contact-left *,
.hcmc-contact-right * {
  visibility: visible !important;
}
/* =================================================
   HCMC JOIN SECTION — Pit Stop Membership Board
================================================= */

.hcmc-join-section {
  position: relative;
  padding: 120px 24px;
  overflow: hidden;

  background:
    radial-gradient(circle at 15% 20%, rgba(159, 203, 123, 0.16), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(255, 255, 255, 0.06), transparent 28%),
    linear-gradient(135deg, #050807 0%, #0a1110 48%, #11140f 100%);

  color: #f3eee4;
}

.hcmc-join-bg {
  position: absolute;
  inset: 0;
  opacity: 0.20;
  pointer-events: none;

  background:
    linear-gradient(
      115deg,
      transparent 0%,
      transparent 45%,
      rgba(159, 203, 123, 0.16) 45.2%,
      transparent 46%
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 90px,
      rgba(255,255,255,0.04) 91px,
      transparent 92px
    );
}

.hcmc-join-wrap {
  position: relative;
  z-index: 2;

  width: min(1180px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
}

.hcmc-join-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.hcmc-join-intro > span {
  display: inline-flex;
  margin-bottom: 18px;

  color: #9fcb7b;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hcmc-join-intro h2 {
  margin: 0;

  color: #ffffff;
  font-size: clamp(3rem, 6vw, 6.8rem);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.hcmc-join-intro p {
  margin: 24px 0 0;
  max-width: 460px;

  color: rgba(243, 238, 228, 0.68);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.75;
  font-weight: 600;
}

.hcmc-join-main-btn {
  margin-top: 34px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 15px 22px;
  border-radius: 999px;

  background: #9fcb7b;
  color: #101813;

  text-decoration: none;
  font-weight: 950;

  box-shadow: 0 18px 45px rgba(159, 203, 123, 0.22);

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.hcmc-join-main-btn:hover {
  transform: translateY(-3px);
  background: #b5db94;
  box-shadow: 0 24px 60px rgba(159, 203, 123, 0.32);
}

.hcmc-join-main-btn span {
  transition: transform 0.22s ease;
}

.hcmc-join-main-btn:hover span {
  transform: translate(3px, -3px);
}

/* board */
.hcmc-join-board {
  display: grid;
  gap: 16px;
}

.hcmc-join-pass {
  position: relative;

  min-height: 172px;
  padding: 24px 26px;

  display: grid;
  grid-template-columns: 74px 64px 1fr;
  gap: 20px;
  align-items: center;

  border-radius: 28px;

  background:
    linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));

  border: 1px solid rgba(255,255,255,0.11);

  box-shadow:
    0 22px 70px rgba(0,0,0,0.24),
    inset 0 1px 0 rgba(255,255,255,0.08);

  overflow: hidden;

  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease;
}

.hcmc-join-pass::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 5px;

  border-radius: 999px;
  background: #9fcb7b;

  box-shadow: 0 0 24px rgba(159,203,123,0.42);
}

.hcmc-join-pass::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 180px;
  height: 180px;

  border-radius: 50%;
  background: rgba(159, 203, 123, 0.08);
}

.hcmc-join-pass:hover {
  transform: translateX(-10px);
  border-color: rgba(159, 203, 123, 0.32);
  background:
    linear-gradient(135deg, rgba(159,203,123,0.12), rgba(255,255,255,0.045));
  box-shadow:
    0 30px 90px rgba(0,0,0,0.34),
    0 0 60px rgba(159,203,123,0.08);
}

.join-pass-number {
  color: rgba(255,255,255,0.14);
  font-size: 3.4rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.join-pass-icon {
  width: 58px;
  height: 58px;

  display: grid;
  place-items: center;

  border-radius: 18px;

  background: rgba(159, 203, 123, 0.14);
  color: #9fcb7b;

  font-size: 1.35rem;
}

.join-pass-content {
  position: relative;
  z-index: 2;
}

.join-pass-content span {
  display: inline-flex;
  margin-bottom: 9px;

  color: #9fcb7b;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.join-pass-content h3 {
  margin: 0 0 9px;

  color: #ffffff;
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.join-pass-content p {
  margin: 0;

  color: rgba(243, 238, 228, 0.66);
  font-size: 0.94rem;
  line-height: 1.6;
  font-weight: 600;
}

/* direct contact card */
.hcmc-join-contact {
  margin-top: 8px;
  padding: 24px 26px;

  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 20px;
  align-items: center;

  border-radius: 28px;

  background: #f7f2df;
  color: #101813;

  box-shadow: 0 26px 80px rgba(0,0,0,0.28);
}

.hcmc-join-contact span {
  display: inline-flex;
  margin-bottom: 8px;

  color: #5f8f4a;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hcmc-join-contact h3 {
  margin: 0;

  color: #101813;
  font-size: clamp(1.6rem, 2.8vw, 2.8rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.join-contact-lines {
  display: grid;
  gap: 10px;
}

.join-contact-lines a {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: rgba(16,24,19,0.72);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.94rem;
}

.join-contact-lines i {
  color: #5f8f4a;
}

/* reveal */
.hcmc-join-intro,
.hcmc-join-pass,
.hcmc-join-contact {
  opacity: 0;
  transform: translateY(42px);
}

.hcmc-join-section.is-visible .hcmc-join-intro,
.hcmc-join-section.is-visible .hcmc-join-pass,
.hcmc-join-section.is-visible .hcmc-join-contact {
  opacity: 1;
  transform: translateY(0);

  transition:
    opacity 0.85s ease,
    transform 1s cubic-bezier(.16, 1, .3, 1);
}

.hcmc-join-section.is-visible .hcmc-join-pass:nth-child(1) {
  transition-delay: 0.14s;
}

.hcmc-join-section.is-visible .hcmc-join-pass:nth-child(2) {
  transition-delay: 0.24s;
}

.hcmc-join-section.is-visible .hcmc-join-pass:nth-child(3) {
  transition-delay: 0.34s;
}

.hcmc-join-section.is-visible .hcmc-join-contact {
  transition-delay: 0.44s;
}

/* responsive */
@media (max-width: 980px) {
  .hcmc-join-wrap {
    grid-template-columns: 1fr;
  }

  .hcmc-join-intro {
    position: relative;
    top: auto;
  }
}

@media (max-width: 700px) {
  .hcmc-join-section {
    padding: 88px 16px;
  }

  .hcmc-join-pass {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
  }

  .join-pass-number {
    font-size: 3rem;
  }

  .hcmc-join-contact {
    grid-template-columns: 1fr;
  }
}
/* =================================================
   HCMC FOOTER — Premium Dark Club Identity
================================================= */

.hcmc-footer {
  position: relative;
  overflow: hidden;

  padding: 90px 24px 34px;

  background:
    radial-gradient(circle at 12% 12%, rgba(159, 203, 123, 0.14), transparent 30%),
    radial-gradient(circle at 90% 70%, rgba(255, 255, 255, 0.05), transparent 30%),
    linear-gradient(135deg, #050807 0%, #0b1110 48%, #11140f 100%);

  color: #f3eee4;
}

.hcmc-footer-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;

  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 88px,
      rgba(255,255,255,0.045) 89px,
      transparent 90px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 88px,
      rgba(255,255,255,0.028) 89px,
      transparent 90px
    );
}

.hcmc-footer::before {
  content: "";
  position: absolute;
  right: -260px;
  top: -220px;

  width: 560px;
  height: 560px;

  border-radius: 50%;
  border: 1px solid rgba(159, 203, 123, 0.15);

  box-shadow:
    0 0 0 80px rgba(159, 203, 123, 0.025),
    0 0 0 160px rgba(159, 203, 123, 0.016);

  pointer-events: none;
}

.hcmc-footer-wrap {
  position: relative;
  z-index: 2;

  width: min(1180px, 100%);
  margin: 0 auto;
}

/* top */
.hcmc-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;

  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.hcmc-footer-brand {
  display: flex;
  align-items: center;
  gap: 22px;
}

.hcmc-footer-logo {
  width: 92px;
  height: 92px;

  flex: 0 0 auto;

  display: grid;
  place-items: center;

  border-radius: 26px;

  background:
    radial-gradient(circle at 50% 30%, rgba(159,203,123,0.18), transparent 45%),
    rgba(255,255,255,0.06);

  border: 1px solid rgba(255,255,255,0.11);

  box-shadow:
    0 20px 55px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.hcmc-footer-logo img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  display: block;
}

.hcmc-footer-brand span {
  display: inline-flex;
  margin-bottom: 9px;

  color: #9fcb7b;
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hcmc-footer-brand p {
  margin: 0;
  max-width: 560px;

  color: rgba(243, 238, 228, 0.68);
  font-size: 0.98rem;
  line-height: 1.7;
  font-weight: 600;
}

.hcmc-footer-cta {
  flex: 0 0 auto;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 15px 22px;
  border-radius: 999px;

  background: #9fcb7b;
  color: #101813;

  text-decoration: none;
  font-weight: 950;

  box-shadow: 0 18px 45px rgba(159,203,123,0.22);

  transition:
    transform 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.hcmc-footer-cta:hover {
  transform: translateY(-3px);
  background: #b5db94;
  box-shadow: 0 24px 60px rgba(159,203,123,0.30);
}

.hcmc-footer-cta span {
  transition: transform 0.22s ease;
}

.hcmc-footer-cta:hover span {
  transform: translate(3px, -3px);
}

/* contact cards */
.hcmc-footer-grid {
  margin-top: 28px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hcmc-footer-card {
  padding: 22px;

  border-radius: 24px;

  background:
    linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));

  border: 1px solid rgba(255,255,255,0.10);

  box-shadow:
    0 18px 55px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.08);

  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease;
}

.hcmc-footer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(159,203,123,0.32);
  background:
    linear-gradient(135deg, rgba(159,203,123,0.12), rgba(255,255,255,0.045));
}

.footer-card-label {
  display: inline-flex;
  margin-bottom: 12px;

  color: #9fcb7b;
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hcmc-footer-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: rgba(243,238,228,0.80);
  text-decoration: none;
  font-weight: 750;
  line-height: 1.35;
  word-break: break-word;
}

.hcmc-footer-card i {
  color: #9fcb7b;
  width: 18px;
}

/* main */
.hcmc-footer-main {
  margin-top: 38px;
  padding-top: 38px;

  display: grid;
  grid-template-columns: 1fr 0.7fr 1fr;
  gap: 34px;

  border-top: 1px solid rgba(255,255,255,0.10);
}

.hcmc-footer-main h3 {
  margin: 0 0 18px;

  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.hcmc-footer-links nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 12px 18px;
}

.hcmc-footer-links a {
  color: rgba(243,238,228,0.68);
  text-decoration: none;
  font-weight: 700;

  transition:
    color 0.22s ease,
    transform 0.22s ease;
}

.hcmc-footer-links a:hover {
  color: #9fcb7b;
  transform: translateX(4px);
}

.hcmc-footer-social div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hcmc-footer-social a {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: rgba(255,255,255,0.08);
  color: #ffffff;

  text-decoration: none;

  transition:
    transform 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}

.hcmc-footer-social a:hover {
  transform: translateY(-4px);
  background: #9fcb7b;
  color: #101813;
}

.hcmc-footer-note p {
  margin: 0;
  max-width: 380px;

  color: rgba(243,238,228,0.64);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 600;
}

/* bottom */
.hcmc-footer-bottom {
  margin-top: 44px;
  padding-top: 22px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  border-top: 1px solid rgba(255,255,255,0.10);

  color: rgba(243,238,228,0.52);
  font-size: 0.86rem;
  font-weight: 650;
}

.hcmc-footer-bottom p {
  margin: 0;
}

.hcmc-footer-bottom span {
  color: rgba(159,203,123,0.78);
}

/* responsive */
@media (max-width: 900px) {
  .hcmc-footer {
    padding: 74px 18px 30px;
  }

  .hcmc-footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .hcmc-footer-grid {
    grid-template-columns: 1fr;
  }

  .hcmc-footer-main {
    grid-template-columns: 1fr;
  }

  .hcmc-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hcmc-footer-brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .hcmc-footer-logo {
    width: 84px;
    height: 84px;
  }

  .hcmc-footer-logo img {
    width: 70px;
    height: 70px;
  }

  .hcmc-footer-links nav {
    grid-template-columns: 1fr;
  }

  .hcmc-footer-cta {
    width: 100%;
    justify-content: center;
  }
}
/* =========================================
   HCMC PRELOADER - 4 BOXES LOGO STYLE
========================================= */

.hcmc-preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(circle at 20% 20%, rgba(159, 203, 123, 0.08), transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.04), transparent 28%),
    linear-gradient(135deg, #050807 0%, #0b1110 48%, #11140f 100%);

  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hcmc-preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hcmc-preloader-inner {
  text-align: center;
}

.hcmc-preloader-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;

  width: fit-content;
  margin: 0 auto;

  animation: hcmcGridFloat 2.2s ease-in-out infinite;
}

.hcmc-box {
  width: clamp(82px, 10vw, 110px);
  height: clamp(82px, 10vw, 110px);

  display: flex;
  align-items: center;
  justify-content: center;

  

  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;

  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  user-select: none;
}

.hcmc-box-white {
  background: #f4f1e8;
  color: #0b1110;

  animation: hcmcWhitePulse 1.8s ease-in-out infinite;
}

.hcmc-box-green {
  background: #9fcb7b;
  color: #0b1110;
}

.hcmc-box-rotate {
  transform-origin: center;
  animation: hcmcRotateBox 1.6s ease-in-out infinite alternate;
}

.delay-box {
  animation-delay: 0.25s;
}

.hcmc-preloader-text {
  margin-top: 26px;

  color: rgba(243, 238, 228, 0.78);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  animation: hcmcTextBlink 1.6s ease-in-out infinite;
}

/* prevent scroll while loading */
body.hcmc-loading {
  overflow: hidden;
}

/* animations */
@keyframes hcmcRotateBox {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(30deg) scale(1.04);
  }
}

@keyframes hcmcWhitePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 18px 38px rgba(0, 0, 0, 0.22),
      0 0 0 rgba(255,255,255,0);
  }
  50% {
    transform: scale(1.03);
    box-shadow:
      0 22px 42px rgba(0, 0, 0, 0.26),
      0 0 26px rgba(255,255,255,0.18);
  }
}

@keyframes hcmcGridFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes hcmcTextBlink {
  0%, 100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

/* mobile */
@media (max-width: 520px) {
  .hcmc-preloader-grid {
    gap: 12px;
  }

  .hcmc-box {
    border-radius: 14px;
  }

  .hcmc-preloader-text {
    font-size: 0.72rem;
    padding: 0 12px;
  }
}
.lang-options{
  background:transparent ;
  border: none;
}

/* ===== FIX HCMC PRELOADER WHEN ARABIC ===== */
.hcmc-preloader,
.hcmc-preloader-inner,
.hcmc-preloader-grid,
.hcmc-box {
  direction: ltr !important;
  unicode-bidi: isolate !important;
}

.hcmc-preloader-grid {
  grid-auto-flow: row !important;
}

/* =================================================
   HCMC PARTNERS SECTION
================================================= */

.hcmc-partners-section {
  position: relative;
  padding: 100px 22px 110px;
  overflow: hidden;

  color: #071b16;
}
.hcmc-partners-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    radial-gradient(circle at 10% 10%, rgba(159, 203, 123, 0.20), transparent 26%),
    radial-gradient(circle at 92% 88%, rgba(10, 17, 16, 0.08), transparent 28%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 84px,
      rgba(17, 21, 18, 0.035) 85px,
      transparent 86px
    );
}



.hcmc-partners-wrap {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}

.hcmc-partners-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.hcmc-partners-head span {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(156, 205, 98, 0.18);
  color: #0b5b39;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hcmc-partners-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.06em;
  color: #071b16;
}

.hcmc-partners-head p {
  margin: 18px auto 0;
  max-width: 620px;
  color: rgba(7, 27, 22, 0.68);
  font-size: 1rem;
  line-height: 1.8;
}

.hcmc-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
  max-width: 260px; /* حيت دابا عندك غير logo واحد */
  margin: 0 auto;
}

.hcmc-partner-card {
  min-height: 96px;
  padding: 24px 28px;
 
 

 
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hcmc-partner-card:hover {
  transform: translateY(-7px);
 
}

.hcmc-partner-card img {
  max-width: 300px;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
  
  opacity: 0.86;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.hcmc-partner-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .hcmc-partners-section {
    padding: 78px 16px 86px;
  }

  .hcmc-partners-head {
    margin-bottom: 30px;
  }

  .hcmc-partners-grid {
    max-width: 100%;
    grid-template-columns: 1fr;
  }

  .hcmc-partner-card {
    min-height: 88px;
  }
}
/* =================================================
   HCMC NEWS ARTICLE MODAL
================================================= */

.hcmc-news-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.hcmc-news-modal.is-open {
  display: flex;
}

.hcmc-news-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hcmc-news-modal-box {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  max-height: 88vh;
  overflow: auto;
  border-radius: 26px;
  background: #f7f5ee;
  color: #111512;
  box-shadow: 0 35px 120px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hcmc-news-modal-close {
  position: sticky;
  top: 16px;
  margin-left: auto;
  margin-right: 16px;
  margin-top: 16px;
  z-index: 4;

  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #111512;
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.hcmc-news-modal-image {
  width: calc(100% - 34px);
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  background: #111512;
}

.hcmc-news-modal-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.hcmc-news-modal-content {
  padding: 34px;
}

.hcmc-news-modal-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: #4f7b3c;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hcmc-news-modal-title {
  margin: 0;
  font-size: clamp(2rem, 4.7vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  font-weight: 950;
}

.hcmc-news-modal-body {
  margin-top: 24px;
  color: rgba(17, 21, 18, 0.76);
  font-size: 1.04rem;
  line-height: 1.9;
  white-space: pre-line;
}

.hcmc-news-modal-link {
  display: none;
  width: fit-content;
  margin-top: 24px;
  padding: 13px 18px;
  border-radius: 999px;
  background: #111512;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hcmc-news-modal-link.is-visible {
  display: inline-flex;
}

.hcmc-news-card {
  cursor: pointer;
}

@media (max-width: 700px) {
  .hcmc-news-modal {
    padding: 14px;
  }

  .hcmc-news-modal-box {
    border-radius: 20px;
    max-height: 90vh;
  }

  .hcmc-news-modal-content {
    padding: 24px 20px 28px;
  }

  .hcmc-news-modal-image {
    width: calc(100% - 24px);
    border-radius: 16px;
  }

  .hcmc-news-modal-close {
    width: 38px;
    height: 38px;
    font-size: 1.35rem;
  }
}

.hcmc-news-featured {
  cursor: pointer;
}
/* =================================================
   HCMC PARTNERS SECTION - LOGO GRID STYLE
================================================= */

.hcmc-partners-section {
  padding: 90px 18px 100px;
  background: #f4f4f1;
  color: #101815;
}

.hcmc-partners-wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.hcmc-partners-head-simple {
  text-align: center;
  margin-bottom: 50px;
}

.hcmc-partners-head-simple span {
  display: inline-block;
  margin-bottom: 12px;
  color: #5b8a41;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hcmc-partners-head-simple h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.06em;
  color: #101815;
}

.hcmc-partners-head-simple p {
  max-width: 620px;
  margin: 18px auto 0;
  color: rgba(16, 24, 21, 0.65);
  font-size: 1rem;
  line-height: 1.7;
}

.hcmc-partners-category {
  margin-top: 38px;
}

.hcmc-partners-category h3 {
  margin: 0 0 16px;
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #101815;
}

.hcmc-partners-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #e2e2df;
  border-left: 1px solid #e2e2df;
  background: #ffffff;
}

.hcmc-partner-logo-card {
  min-height: 126px;
  padding: 22px;
  background: #ffffff;
  border-right: 1px solid #e2e2df;
  border-bottom: 1px solid #e2e2df;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.hcmc-partner-logo-card:nth-child(even) {
  background: #f7f7f5;
}

.hcmc-partner-logo-card:hover {
  background: #f1f4ee;
  transform: translateY(-2px);
}

.hcmc-partner-logo-card img {
  max-width: 150px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.hcmc-partner-empty span {
  color: rgba(16, 24, 21, 0.38);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .hcmc-partners-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hcmc-partner-logo-card {
    min-height: 112px;
  }
}

@media (max-width: 650px) {
  .hcmc-partners-section {
    padding: 70px 14px 80px;
  }

  .hcmc-partners-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hcmc-partner-logo-card {
    min-height: 104px;
    padding: 18px;
  }

  .hcmc-partner-logo-card img {
    max-width: 125px;
    max-height: 58px;
  }
}
/* تكبير logo ديال Hydro Team فقط */
.hydroteam-logo-card img {
  max-width: 230px;
  max-height: 95px;
}
/* =================================================
   PARTNERS MOBILE FIX
================================================= */

@media (max-width: 650px) {
  .hcmc-partners-section {
    padding: 60px 14px 70px;
  }

  .hcmc-partners-head-simple {
    margin-bottom: 34px;
    text-align: center;
  }

  .hcmc-partners-category {
    margin-top: 30px;
  }

  .hcmc-partners-category h3 {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 14px;
  }

  .hcmc-partners-logo-grid {
    grid-template-columns: 1fr;
  }

  .hcmc-partner-logo-card {
    min-height: 115px;
    padding: 18px;
  }

  .hcmc-partner-logo-card img {
    max-width: 78%;
    max-height: 72px;
  }

  .hydroteam-logo-card img {
    max-width: 240px;
    width: 82%;
    max-height: 85px;
  }

  .hcmc-partner-empty {
    min-height: 82px;
  }
}
/* ===============================
   CONTACT SUCCESS MESSAGE
================================ */

.hcmc-form-success {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999999;
  max-width: 360px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #0f1f18;
  color: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  display: none;
  align-items: flex-start;
  gap: 12px;
  animation: hcmcSuccessIn 0.35s ease forwards;
}

.hcmc-form-success.is-visible {
  display: flex;
}

.hcmc-form-success i {
  color: #9ccd62;
  font-size: 1.25rem;
  margin-top: 2px;
}

.hcmc-form-success strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.hcmc-form-success span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
  line-height: 1.5;
}

@keyframes hcmcSuccessIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .hcmc-form-success {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
  }
}