:root {
  --primary-orange: #ff7a18;
  --primary-blue: #0c2340;
  --dark-blue: #0f2746;
  --text-dark: #0f172a;
  --text-gray: #5a6b7d;
  --text-light: #9ca3af;
  --bg-light: #f7f9fb;
  --white: #ffffff;
  --max-width: 1440px;
  --container-width: 1280px;
}

* {
  box-sizing: border-box;
}

/* FIX: Prevent horizontal scroll on mobile due to 
  off-screen animations or wide elements 
*/
html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.9;
}

.btn-primary {
  background-color: var(--primary-orange);
  color: var(--white);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-gray);
  line-height: 1.5;
}

/* Utility for spacing */
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }

/* ============================
   HAMBURGER MENU STYLES
   ============================ */

/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  z-index: 2000;
  cursor: pointer;
}

.hamburger .bar {
  width: 100%;
  height: 3px;
  background-color: var(--primary-blue);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Active State (X shape) */
.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 65px; /* Height of header */
  left: 0;
  width: 100%;
  height: calc(100vh - 65px);
  background-color: var(--white);
  z-index: 1500;
  padding: 40px 20px;
  transform: translateX(100%); /* Hidden by default */
  transition: transform 0.3s ease-in-out;
  border-top: 1px solid #e6eef7;
  overflow-y: auto;
}

.mobile-menu-overlay.active {
  transform: translateX(0); /* Slide in */
}

.mobile-menu-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-link {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-blue);
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 12px;
}

.mobile-nav-link:hover {
  color: var(--primary-orange);
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Show Hamburger on Tablet/Mobile */
@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }
}