/* --- RESPONSIVE STYLESHEET --- */

@media (max-width: 1199px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }
  
  .hero-slider {
    height: 650px;
  }
  
  .hero-slider-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  h3 { font-size: 1.4rem; }
  
  .pt-100 { padding-top: 60px; }
  .pb-100 { padding-bottom: 60px; }
  .pt-70 { padding-top: 40px; }
  .pb-70 { padding-bottom: 40px; }
  
  .section-title {
    margin-bottom: 35px;
  }
  
  .section-title h2 {
    font-size: 30px;
  }
  
  /* Flex columns fallback for tablet */
  .col-md-6, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8 {
    width: 50%;
  }
  .col-12 {
    width: 100%;
  }
  
  /* Header & Navigation Mobile adjustments */
  .desktop-nav {
    display: none;
  }
  
  .top-header {
    font-size: 13px;
  }
  .top-header .row {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .top-header .col-lg-9, .top-header .col-lg-3 {
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
  }
  .top-header .d-flex {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .top-header a {
    white-space: nowrap;
  }
  #country {
    margin-left: 0;
  }
  .header-right-content {
    justify-content: center;
  }
  
  /* Navigation Mobile Responsive Toggler styling */
  .navbar-nav {
    display: none; /* JS will handle showing this in mobile drawer */
  }
  
  .mobile-responsive-nav {
    display: block;
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
  }
  
  .mobile-responsive-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .mobile-responsive-menu .logo img {
    height: 38px;
  }
  
  .hamburger-menu {
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
  }
  
  .hamburger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--dark-color);
    border-radius: 2px;
    transition: var(--transition);
  }
  
  /* Mobile Sidebar/Drawer Overlay */
  .navbar-nav-mobile {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 80px 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  
  .navbar-nav-mobile.active {
    right: 0;
  }
  
  .navbar-nav-mobile .nav-item {
    width: 100%;
  }
  
  .navbar-nav-mobile .nav-link {
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 8px;
  }
  
  .navbar-nav-mobile .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding: 5px 15px;
    transform: none;
    display: none;
  }
  
  .navbar-nav-mobile .dropdown-menu.show {
    display: block;
  }
  
  .navbar-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  
  .navbar-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* Hero Slider Layout adjustments for mobile/tablet */
  .hero-slider {
    height: auto;
    min-height: 550px;
    padding: 60px 0;
  }
  
  .hero-slider-item {
    position: relative;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  
  .hero-slider-item.active {
    display: flex;
  }
  
  .hero-slider .row {
    flex-direction: column-reverse;
    gap: 30px;
  }
  
  .hero-slider .col-lg-7, .hero-slider .col-lg-5 {
    width: 100%;
  }
  
  .hero-slider-content {
    text-align: center;
  }
  
  .slider-img img {
    max-height: 280px;
  }
  
  /* Process steps flex adjust */
  .process-flow {
    flex-direction: column;
    gap: 30px;
  }
  
  .process-step {
    width: 80%;
  }
  
  .process-line {
    display: none;
  }
}

@media (max-width: 767px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  
  .col-md-6, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8 {
    width: 100%;
  }
  
  .hero-slider-content h1 {
    font-size: 28px;
  }
  
  .hero-slider-content p {
    font-size: 15px;
  }
  
  .contact-form {
    padding: 25px 15px;
  }
  
  .contact-info {
    padding: 25px 15px;
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 26px;
  }
  
  .default-btn {
    padding: 12px 26px;
    font-size: 14px;
  }
  
  .hero-slider-content h1 {
    font-size: 24px;
  }
}
