
/* ===================================================================
   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: var(--bg7); 
  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(--bg0);
}
}

/* =====================
   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: var(--bg7); 
  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(--bg0);
}
}



/*====================================
      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) {

.slogan h1 { font-size: 2.8vw !important; }
  .slogan h2 { font-size: 2.5vw !important; }

.policy-container {
    max-width: 1000px;
    padding: 30px;
  }

}

@media (min-width: 900px) and (max-width:1023px){
    
.slogan h1 { font-size: 3.1vw !important; }
  .slogan h2 { font-size: 2.8vw !important; }
  
  .policy-container {
    max-width: 850px;
    padding: 25px 20px;
  }
  .policy-container h1 {
    font-size: 1.9rem;
  }
  .policy-container h2 {
    font-size: 1.4rem;
  }
}

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

 
  .slogan h1 { font-size: 3.4vw !important; }
  .slogan h2 { font-size: 3.1vw !important; }
  
   .policy-container {
    max-width: 90%;
    padding: 20px;
    font-size: 1rem;
  }
  .policy-container h1 {
    font-size: 1.7rem;
    text-align: center;
  }
  .policy-container h2 {
    font-size: 1.3rem;
  }
  .policy-container ul {
    padding-left: 20px;
  }
}

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

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


  .policy-container {
    max-width: 95%;
    padding: 15px;
    font-size: 0.95rem;
  }
  .policy-container h1 {
    font-size: 1.5rem;
  }
  .policy-container h2 {
    font-size: 1.2rem;
  }
  .policy-container ul {
    padding-left: 18px;
  }
}

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

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




.policy-container {
    padding: 10px;
    font-size: 0.9rem;
  }
  .policy-container h1 {
    font-size: 1.3rem;
  }
  .policy-container h2 {
    font-size: 1.1rem;
  }
  .policy-container ul {
    padding-left: 15px;
  }
}

