/* Header Styles - NEW FILE TO BYPASS CACHE */
.main-header {
  width: 100%;
  background: #f0f0f0;
  padding: 10px 0;
  border-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

/* Logo */
.logo-container {
  flex: 0 0 180px;
  z-index: 1000;
}

.logo-container img {
  height: 180px;
  margin-top: 0px;
  width: 180px;
  transition: all 0.3s ease;
}

/* Desktop Navigation */
.desktop-nav {
  flex: 1;
  text-align: center;
}

.desktop-nav a {
  margin: 0 12px;
  text-decoration: none;
  font-weight: 700;
  color: #0a1a4a;
  font-size: 18px;
  position: relative;
  transition: all 0.3s ease;
}

.desktop-nav a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(135deg, #ffe89f 0%, #75561d 100%);
  transition: width 0.3s ease;
}

.desktop-nav a:hover:after {
  width: 100%;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  background: linear-gradient(135deg, #ffed66 0%, #8b6423 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.desktop-nav a.active:after {
  width: 100%;
}

/* Enquire Button */
.enquire-btn {
  background: #0a1a4a;
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid #0a1a4a;
}

.enquire-btn:hover {
  background: #d4af37;
  color: white !important;
  border-color: #d4af37;
  transform: translateY(-2px);
}

/* CSS-Only Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1003;
  padding: 10px;
  background: none;
  border: none;
  position: relative;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background: #0a1a4a;
  margin: 6px 0;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}

/* CSS-Only Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: white;
  padding: 100px 30px 30px;
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  transition: right 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
  z-index: 1001;
  will-change: transform;
  pointer-events: none;
}

/* Enable pointer events when menu is open */
.mobile-menu-toggle:checked ~ .mobile-menu {
  pointer-events: auto;
}

/* Show menu when checkbox is checked */
.mobile-menu-toggle:checked ~ .mobile-menu {
  right: 0;
}

/* Show overlay when menu is open */
.mobile-menu-toggle:checked ~ .overlay {
  opacity: 1;
  visibility: visible;
}

/* Hamburger animation when checkbox is checked */
.mobile-menu-toggle:checked ~ header .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}

.mobile-menu-toggle:checked ~ header .hamburger span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle:checked ~ header .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu a {
  display: block;
  margin: 20px 0;
  text-decoration: none;
  color: #0a1a4a;
  font-weight: 600;
  font-size: 18px;
  transition: color 0.3s ease;
  text-align: left;
  position: relative;
  z-index: 1002;
  padding: 10px 0;
  pointer-events: auto;
  cursor: pointer;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: #d4af37;
}

.mobile-menu .enquire-btn {
  margin-top: 30px;
  text-align: center;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 998;
}

/* Responsive */
@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }
  
  .enquire-btn.desktop {
    display: none;
  }
  
  .hamburger {
    display: block;
  }
  
  .logo-container {
    flex: 0 0 auto;
  }
}

/* @media (max-width: 768px) {
  .logo-container img {
    height: 50px;
  }
}

