
/* ===================================================================
   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: 105px; margin-top: 0.3rem; }
  .header-left { margin-top: 1.2rem; }
  .header-text h1 { font-size: 43px;margin-top: 0.01px; }
  .header-text h2 { font-size: 20px; transform: translateX(0.8);}
}

@media (min-width: 900px) and (max-width: 1020px) {
  .header-frame { height: 97px; }
  .header-image { width: 100px; margin-top: 0.3rem; }
  .header-left { margin-top: 1.17rem; }
  .header-text h1 { font-size: 43px;margin-top: 0.01px; }
  .header-text h2 { font-size: 20px; transform: translateX(0.8);}
}

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

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

  
   /* --- 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 */
  left: 1rem;      /* keep aligned to the left */
  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%;
  left: -130px;      /* fully hidden off-screen */
  width: 130px;       /* slide-in panel width */
  height: 12vh;
  background: rgb(0, 30, 70);
  z-index: 9995;
  transition: left 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 {
  left: 0;
}

/* Keep items vertical and centered */
.mobile-menu .menu-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1rem;
  right: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 */
  left: 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%;
  left: -130px;      /* fully hidden off-screen */
  width: 130px;       /* slide-in panel width */
  height: 12vh;
  background: rgb(0, 30, 70);
  z-index: 9995;
  transition: left 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 {
  left: 0;
}

/* Keep items vertical and centered */
.mobile-menu .menu-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1rem;
  right: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: 23px;
  }

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

  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: 21px;
  }

  .footer-col .links a {
    font-size: 17px;
    padding: 4px 8px;
  }
  .links a i {
  font-size: 19px;
  }
 .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: 20px;
  }

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

  .footer-col .links a {
    font-size: 16px;
    padding: 6px 12px;
  }
  .links a i {
  font-size: 18px;
  }
   .quote h3{ 
    font-size:22px; 
    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.5vw !important; }
  .slogan h2 { font-size: 1.8vw !important; }



}

@media (min-width: 900px) and (max-width:1023px){
  
  .slogan{margin: 1rem 6rem 0 3rem;}   
.slogan h1 { font-size: 2.5vw !important; }
  .slogan h2 { font-size: 2vw !important; }
  
  
}

@media (min-width: 700px) and (max-width:899px) {
 
.slogan{margin: 1rem 6rem 0 3rem;}   
.slogan h1 { font-size: 3.5vw !important; }
  .slogan h2 { font-size: 2.8vw !important; }
  
}

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

.slogan{margin: 1rem 5rem 0 3rem;}
 .slogan h1 { font-size: 3.4vw !important; line-height: 1.1;}
  .slogan h2 { font-size: 2.8vw !important; }
  
  
}

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

.slogan{margin: 1rem 5rem 0 3rem;}
  .slogan h1 { font-size: 4vw !important; line-height:1.1;}
  .slogan h2 { font-size: 3vw !important; }

}

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

.slogan{margin: 1rem 3.8rem 0 3rem;}
.slogan h1 { font-size: 4vw !important; line-height:1.1;}
  .slogan h2 { font-size: 3.7vw !important; }

}

/*-----------------------------------------
   languages-page-section
   ----------------------------------------*/

/* ========================================
   TABLET
======================================== */

@media (max-width: 992px) {
 

.languages-page-section h3{
 font-size:30px;
 
}

.languages-page-section h2{
 
 font-weight:400;
 font-size: 26px;
}
 
  .languages {
    margin-bottom: 28px;
    font-size: 26px;
  }

  

  .languages-body {
    min-height: 60%px;
    padding: 24px;
  }

  .languages-content p {
    font-size: 21px;
    line-height: 1.5;
  }
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {
  
  
  .languages-page-section h3{
 font-size:26px;
 
}

.languages-page-section h2{

 font-weight:400;
 font-size: 20px;
}

  .languages {
    margin-bottom: 22px;
  }

  .languages-title {
    font-size: 21px;
    
    letter-spacing: 0.05em;
  }

  .languages-title::after {
    left: 16px;
    font-size: 1.45rem;
  }

  .languages-body {
    min-height: 50%;
    padding: 20px;
  }

  
  .languages-content p {
    font-size: 18px;
    line-height: 1.55;
    
  
  } 
}

/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 480px) {
  .languages-page-section h3{
 font-size:24px;
 
}

.languages-page-section h2{

 font-weight:400;
 font-size: 18px;
}
  
  .languages-title {
    font-size: 18px;
  }

  .languages-body {
    min-height: 50%;
    padding: 18px;
  }

  
  .languages-content p {
    font-size: 16px;
      backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  }
    
}

