/* ==================== MOBILE RESPONSIVE OVERRIDES ==================== */
@media (max-width: 768px) {
  .header {
    padding: 12px 0;
  }

  .header .container {
    min-height: 62px;
    padding: 0 15px;
    gap: 10px;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    /* background: rgba(7, 13, 25, 0.82); */
    /* backdrop-filter: blur(14px); */
    border-bottom: 1px solid rgba(255,255,255,0.06);
    z-index: 1500;
    overflow: hidden;
    width: 100%;
  }

  .logo-section {
    flex: 1;
    gap: 10px;
    min-width: 0;
    order: 1;
    align-items: center;
    display: flex;
    overflow: hidden;
  }

  .logo-img {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-tagline {
    font-size: 12px;
    display: none;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    order: 2;
    z-index: 1501;
    margin-left: auto;
  }

  .nav-actions .btn-call-enquiry {
    display: none;
  }

  .hamburger {
    display: flex;
    order: 1;
    margin-right: 8px;
    padding: 10px;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    position: relative;
    z-index: 1401;
  }

  .hamburger span {
    width: 24px;
    height: 3px;
    background: #fff;
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(82vw, 320px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 100px 16px 24px;
    background: rgba(8, 14, 28, 0.98);
    backdrop-filter: blur(24px);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04), -20px 0 60px rgba(0, 0, 0, 0.35);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
    z-index: 1501;
    overflow-y: auto;
    overflow-x: hidden;
    max-width: 100%;
    border-radius: 0 0 0 24px;
    box-sizing: border-box;
  }

  .nav.show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 50%;
    color: #f8fafc;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    z-index: 1510;
  }

  .nav-close:hover {
    color: var(--primary-color);
  }

  .nav-link {
    width: 100%;
    display: flex;
    align-items: center;
    color: #f8fafc;
    padding: 16px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.4;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link.active,
  .nav-link:hover {
    color: var(--primary-color);
    background: rgba(212, 165, 116, 0.14);
    border-radius: 10px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 8px;
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    overflow: hidden;
    border-radius: 12px;
  }

  .nav-dropdown.active .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-dropdown.active > .dropdown-toggle {
    color: var(--primary-color);
  }

  .dropdown-item {
    color: #f8fafc;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.95rem;
  }

  .dropdown-item:last-child {
    border-bottom: none;
  }

  .nav-link,
  .dropdown-item,
  .nav-dropdown > .dropdown-toggle {
    color: #f8fafc;
  }

  .nav-overlay {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(2, 6, 23, 0.75);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 1400;
    pointer-events: none;
  }

  .nav-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }
  }

  .hero-title.main-line {
    font-size: 36px;
  }

  .hero-subtitle.sub-line {
    font-size: 17px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .modal-content {
    width: 96%;
    padding: 20px;
  }


@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title.main-line {
    font-size: 28px;
  }

  .hero-subtitle.sub-line {
    font-size: 15px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .modal-header h2 {
    font-size: 22px;
  }
}

@media (max-width: 300px) {
  .brand-name {
    font-size: 16px;
  }

  .brand-tagline {
    display: none;
  }

  .hamburger {
    margin-right: 4px;
  }
}
