
/* ===================================================================
   MOBILE/Tablets RESPONSIVENESS BASE
   
=================================================================== */
/*==========================
    HTML-BODY
============================*/

@media (max-width: 1380px) {

  /* Allow the page to scale correctly */
  html, body {
    min-width: 100%;
    overflow-x: hidden;
  }

  body {
    font-size: 16px;
  }

}
/* =====================
   HEADER
============================ */
@media (min-width: 1024px) and (max-width: 1380px) {
  .header-frame { height: 100px; }
  .header-image { width: 100px; margin-top: 0.5rem; }
  .header-left { margin-top: 1.2rem; }
  .header-text h1 { font-size: 46px; }
  .header-text h2 { font-size: 18px; }
}

@media (min-width: 900px) and (max-width: 1020px) {
  .header-frame { height: 97px; }
  .header-image { width: 97px; margin-top: 0.4rem; }
  .header-left { margin-top: 1.17rem; }
  .header-text h1 { font-size: 45px; }
  .header-text h2 { font-size: 17px; }
}

@media (min-width: 600px) and (max-width: 899px)  {
  .header-frame { height: 93px; }
  .header-image { width: 93px; margin-top: 0.47rem; }
  .header-left { margin-top: 1.05rem; }
  .header-text h1 { font-size: 43px; }
  .header-text h2 { font-size: 16.65px; }
}

@media (min-width: 400px) and (max-width: 599px)  {
  .header-frame { height: 88px; }
  .header-image { width: 88px; margin-top: 0.5rem; }
  .header-left { margin-top: 1rem; }
  .header-text h1 { font-size: 31px; }
  .header-text h2 { font-size: 12px; }


  
   /* --- HAMBURGER MENU FOR SMALL PHONES ONLY --- */
 
 /* Hide header-right on tiny phones */
   .header-right {
  display: none !important;
  
  }
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 1px;
  cursor: pointer;
  z-index: 9990;
  position: absolute;
  top: 0.7rem;        /* move up */
  right: 1rem;      /* keep aligned to the right */
  width: 28px;
  
  
}

.hamburger-arrow span {

  position: relative;
  width: 26px;
  height: 5px;
  background-color: var(--accent) !important;
  border-radius: 5px;
  display: block;
    background: black;
    margin: 3px 0;
    transition: all 0.3s ease;
	
}
/*Default CLOSED state*/
.hamburger-arrow span:nth-child(1) {
    transform-origin: center bottom; 
	transform: rotate(-32deg);
}

.hamburger-arrow span:nth-child(2) {
  transform-origin: center top;
   transform: rotate(32deg);
}
/*Active state*/

.hamburger-arrow.active span:nth-child(1) {
  transform: rotate(32deg);
}

.hamburger-arrow.active span:nth-child(2) {
  transform: rotate(-32deg);
}

/* =============== MOBILE SLIDE-IN MENU =============== */

/* MOBILE MENU — hidden by default */
.mobile-menu {
  position: fixed;
  top: 6rem;
  border-radius: 40% / 40%;
  right: -130px;      /* fully hidden off-screen */
  width: 130px;       /* slide-in panel width */
  height: 12vh;
  background: rgba(11, 156, 49, 0.4);
  z-index: 9995;
  transition: right 0.35s ease;
  padding: 0 1rem ;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  
}

/* When hamburger is active → menu slides in */
.mobile-menu.open {
  right: 0;
}

/* Keep items vertical and centered */
.mobile-menu .menu-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1rem;
  left:0.3rem;
}

.mobile-menu a {
  font-size: 18px;
  color: var(--brand);
}
}

/* =====================
   Mobile Menu-Chatbox
============================ */
@media (max-width: 600px) {
  #chatPopup {
    top: 70px !important;   /* equal to your header height */
    height: calc(70vh - 70px) !important;
    z-index: 9999 !important; /* above everything */
    position: fixed !important;
  }
}

/* =====================
   VERY SMALL PHONES
============================ */
@media (max-width: 399px) {
  .header-frame { height: 58px; }
   .header-left { margin-top: 0.25rem; }
  .header-image { width: 60px; margin-top: 0.3rem; }
  .header-text h1 { font-size: 22px; }
  .header-text h2 { font-size: 8.75px; }
  
   /* --- HAMBURGER MENU FOR SMALL PHONES ONLY --- */
 
 /* Hide header-right on tiny phones */
   .header-right {
  display: none !important;
  
  }
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 1px;
  cursor: pointer;
  z-index: 9990;
  position: absolute;
  top: 0.7rem;        /* move up */
  right: 1rem;      /* keep aligned to the right */
  width: 28px;
  
  
}

.hamburger-arrow span {

  position: relative;
  width: 26px;
  height: 5px;
  background-color: var(--accent) !important;
  border-radius: 5px;
  display: block;
    background: black;
    margin: 3px 0;
    transition: all 0.3s ease;
	
}
/*Default CLOSED state*/
.hamburger-arrow span:nth-child(1) {
    transform-origin: center bottom; 
	transform: rotate(-32deg);
}

.hamburger-arrow span:nth-child(2) {
  transform-origin: center top;
   transform: rotate(32deg);
}
/*Active state*/

.hamburger-arrow.active span:nth-child(1) {
  transform: rotate(32deg);
}

.hamburger-arrow.active span:nth-child(2) {
  transform: rotate(-32deg);
}

/* =============== MOBILE SLIDE-IN MENU =============== */

/* MOBILE MENU — hidden by default */
.mobile-menu {
  position: fixed;
  top: 4rem;
  border-radius: 40% / 40%;
  right: -130px;      /* fully hidden off-screen */
  width: 130px;       /* slide-in panel width */
  height: 12vh;
  background: rgba(11, 156, 49, 0.4);
  z-index: 9995;
  transition: right 0.35s ease;
  padding: 0 1rem ;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  
}

/* When hamburger is active → menu slides in */
.mobile-menu.open {
  right: 0;
}

/* Keep items vertical and centered */
.mobile-menu .menu-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1rem;
  left:0.3rem;
}

.mobile-menu a {
  font-size: 18px;
  color: var(--brand);
}
}

/*====================================
      Footer 
====================================*/

@media (min-width: 1024px) and (max-width: 1380px) {
  .footer-columns {
    gap: 1.5rem;
  }

  .footer-col h3 {
    font-size: 18px;
  }

  .footer-col .links a {
    font-size: 15px;
    padding: 5px 10px;
  }
  .links a i {
  font-size: 28px;
  }

  footer {
    font-size: 14px;
  }
  
   .quote h3{ 
    font-size:26px; 
    padding: 0 8rem; 
    margin: 0 ;
}

  .footer-image {
  width: 3%  ;
  }
}

@media (min-height: 600px) and (max-width: 1023px) {

  .footer-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .footer-col h3 {
    font-size: 16px;
  }

  .footer-col .links a {
    font-size: 15px;
    padding: 4px 8px;
  }
  .links a i {
  font-size: 26px;
  }
 .quote h3{ 
    font-size:24px; 
    padding: 0 8rem; 
    margin: 0 ;
}
    
  .footer-image {
  width: 3%  ;
  }
}

@media (min-width: 400px) and (max-width: 599px) {

  /* Stack columns vertically */
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  /* text scaling */
  .footer-col h3 {
    font-size: 18px;
  }

  footer {
    font-size: 14px;
    padding-top: 0.5rem;
  }

  .footer-col .links a {
    font-size: 14px;
    padding: 6px 12px;
  }
  .links a i {
  font-size: 23px;
  }
   .quote h3{ 
    font-size:18px; 
    padding: 0 8rem; 
    margin: 0 ;
}

  /* icons */
  .footer-col:last-child .links a {
    font-size: 1.1rem;
  }
  .footer-image {
  width: 5%  ;
  }
}

/* =====================
   VERY SMALL PHONES
============================ */
@media (max-width: 399px) {
.footer-columns {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    text-align: center;
  }
  footer {
    font-size: 12px;
  }

  .footer-col h3 {
    font-size: 16px;
  }

  .footer-col .links a {
    font-size: 14px;
    padding: 4px 8px;
  }
  .links a i {
  font-size: 23px;
  }
 .quote h3{ 
    font-size:20px; 
    padding: 0 5rem; 
    margin: 0 ;
}

  .footer-col:last-child .links a {
    font-size: 1.1rem;
  }
  .footer-image {
  width: 5%  ;
  }
}


/*=============================
         Main
============================ */
@media (min-width: 1024px) and (max-width: 1380px) {

main {
    margin: 0.5rem 1rem;
    padding: 0;
    max-width: 100%;
	
  }
.slogan h1 { font-size: 2.8vw !important; }
  .slogan h2 { font-size: 2.5vw !important; }



  /* INFO BOXES */
  .info-boxes {
   grid-template-columns: repeat(auto-fit, minmax(1350px, 1fr));
    gap: 0;
    max-width: 100%;
  }

  .info-boxes .box {
    width: 100%;
    height: auto;
  }
 .mobile-more {
    display: block;
    margin-top: auto;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand); 
  }
  
}


@media (min-width: 900px) and (max-width:1023px){
 main {
    margin: 0.5rem 0.4rem;
    padding: 0;
    max-width: 100%;
	
  }
  main h2 {
	
	font-size: 26px; 
	
	}
  
 
  .slogan h1 { font-size: 3.1vw !important; }
  .slogan h2 { font-size: 2.8vw !important; }

  .intro-text {
    font-size: 18px;
    max-width: 900px;
    padding: 0 1rem;
  }

  /* INFO BOXES – single column */
  .info-boxes {
    grid-template-columns: repeat(auto-fit, minmax(1300px, 1fr));
    gap: 0;
    max-width: 100%;;
  }

  .info-boxes .box {
    width: 100%;
    height: auto;
  }

  .info-boxes .box p {
    font-size: 14px;
  }
 
 .info-boxes .box.open p {
  opacity: 1 !important;
}

.info-boxes .box.opened:hover {
  transform: scale(1.02) !important; /* smaller hover */

}
.mobile-more {
    display: block;
    margin-top: auto;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand); 
    
  }
}
 
@media (min-width: 600px) and (max-width:899px) {

main {
    margin: 0.3rem 0.3rem;
    padding: 0;
    max-width: 100%;
	
  }


  .slogan h1 { font-size: 3.4vw !important; }
  .slogan h2 { font-size: 3.1vw !important; }




  /* INFO BOXES */
  .info-boxes {
    grid-template-columns: repeat(auto-fit, minmax(1250px, 1fr));
    gap: 1rem;
    max-width: 1280px;
    padding: 1rem 0 2.3rem 0;
  }

  .info-boxes .box {
    width: 100%;
    height: auto;
  }
   
    .info-boxes .box.open p {
  opacity: 1 !important;
}

.info-boxes .box.opened:hover {
  transform: scale(1.02) !important; /* smaller hover */

}
.mobile-more {
    display: block;
    margin-top: auto;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand); 
     
  }
}


@media (min-width: 400px) and (max-width: 599px) {
 main {
    margin: 0.3rem 0.3rem;
    padding: 0;
    max-width: 100%;
	
  }
  
  .slogan h1 { font-size: 3.7vw !important; line-height:1.1;}
  .slogan h2 { font-size: 3.4vw !important; }





  /* INFO BOXES  */
  .info-boxes {
    grid-template-columns: repeat(auto-fit, minmax(1200px, 1fr));
    max-width: 100%;
    padding: 0.8rem 0 2rem 0;
  }

  .info-boxes .box {
    width: 92%;
    height: auto;
    padding: 1rem 0.7rem;
  }

  .info-boxes .box h3 {
    font-size: 22px;
    line-height: 1.6rem;
  }

  .info-boxes .box p {
    font-size: 14px;
    padding: 0.8rem;
  }
   
      .info-boxes .box.open p {
  opacity: 1 !important;
}

.info-boxes .box.opened:hover {
  transform: scale(1.02) !important; /* smaller hover */

}
.mobile-more {
    display: block;
    margin-top: auto;
    font-size: 1px;
    font-weight: 600;
    color: var(--brand); 
    
  }
}

 

/* =====================
   VERY SMALL PHONES
============================ */
@media (max-width: 399px) {

  /* MAIN / SLOGAN / INTRO */
  main {
    margin: 0.2rem;
    padding: 0;
    max-width: 100%;
	
  }

  .slogan h1 { font-size: 4vw !important; line-height:1.1;}
  .slogan h2 { font-size: 3.7vw !important; }




  /* INFO BOXES */
  .info-boxes {
    grid-template-columns: repeat(auto-fit, minmax(1000px, 1fr));
    max-width: 100%;
    padding: 0.5rem 0 1.8rem 0;
  }

  .info-boxes .box {
    width: 94%;
    height: auto;
    padding: 0.9rem 0.6rem;
  }

  .info-boxes .box h3 {
    font-size: 20px;
  }

  .info-boxes .box p {
    font-size: 13px;
    padding: 0.6rem;
  }
   
     .info-boxes .box.open p {
  opacity: 1 !important;
}

.info-boxes .box.opened:hover {
  transform: scale(1.02) !important; /* smaller hover */

}
.mobile-more {
    display: block;
    margin-top: auto;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand); 
     
  }

}





