/* ==============================
   GLOBAL LAYOUT
============================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  
  /* Glassmorphism Core */
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* ==============================
   LOGO
============================== */
.logo img {
  height: 60px;
}

/* ==============================
   NAVIGATION (DESKTOP)
============================== */
.nav-menu {
  display: flex;
  gap: 28px;
}

.nav-menu a {
  font-weight: 600;
  color: #0a1a3c;
  font-size: 15px;
  transition: color 0.2s ease;
  text-decoration: none;
}

.nav-menu a:hover {
  color: #FF8C00; /* Brand orange hover */
}

/* ==============================
   HAMBURGER (DEFAULT HIDDEN)
============================== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #0a1a3c;
  margin: 4px 0;
  border-radius: 5px;
}

/* Typography */
h1 { font-size: 40px; font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: 30px; font-weight: 600; letter-spacing: -0.015em; }
h3 { font-size: 18px; font-weight: 600; }
p { font-size: 15.5px; color: #334155; }

/* ==============================
   HERO SECTION
============================== */
.hero {
  position: relative;
  padding: 120px 20px;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(135deg, #0a1a3c 0%, #0055a5 100%);
  overflow: hidden;
}

/* New: Glass Panel Wrapper for Hero Content */
.hero-glass-panel {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 20px;
  
  /* Dark Glass */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  
  position: relative;
  z-index: 2;
}

.hero h1 { font-size: 42px; line-height: 1.2; margin-bottom: 18px; }
.hero p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
}

/* ==============================
   SECTION DEFAULT
============================== */
section {
  padding: 70px 20px;
  text-align: center;
}

/* ==============================
   MOBILE RESPONSIVE
============================== */
@media (max-width: 768px) {
  .logo img { height: 70px; }
  .hamburger { display: flex; z-index: 1001; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    
    /* Mobile Glass Menu */
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 25px 0;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    z-index: 1000;
  }
  .nav-menu.active { display: flex; }
  .nav-menu a { font-size: 16px; }
  .hero { padding: 70px 15px; }
  .hero h1 { font-size: 26px; }
  .hero p { font-size: 15px; }
  .hero-glass-panel { padding: 25px 15px; }
  section { padding: 50px 15px; }
}

/* ==============================
   LOCATION / GOOGLE MAP
============================== */
.location { text-align: center; }
.map-wrapper { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.map-wrapper iframe { 
  width: 100%; height: 450px; border: 0; border-radius: 14px; 
  box-shadow: 0 8px 32px rgba(0,0,0,0.05); 
}
@media (max-width: 768px) { .map-wrapper iframe { height: 300px; } }