/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  overflow-y: scroll;
}

/* ===== VARIABLES ===== */
:root {
  --primary: #ff9900;
  --dark: #0f0f0f;
  --light: #ffffff;
  --gray: #a0a0a0;
  --max-width: 1200px;
}

/* ===== GLOBAL ===== */
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark);
  color: var(--light);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
}

p {
  color: var(--gray);
  margin: 1rem 0;
  font-size: 1.05rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  height: 90px;
  width: 100%;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  padding: 0 0;          
  z-index: 1000;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 1rem;
}

.logo img {
  height: 120px;  
  width: auto;
  padding-top: 20px;
}

/* ===== NAV LINKS ===== */
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--light);
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

/* ===== SOCIALS SECTION ===== */
.nav-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-label {
  font-weight: 600;
  color: var(--light);
}

.social-icon {
  color: var(--light);
  font-size: 1.1rem;
  transition: 0.3s ease;
}

.social-icon:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--primary);
  color: var(--light);
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #ff9900;
  color: var(--dark);
}

.btn-secondary {
  border: 2px solid var(--light);
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  margin-left: 1rem;
  transition: 0.3s ease;
}

.btn-secondary:hover {
  background: var(--light);
  color: var(--dark);
}
/* ===== HERO VIDEO ===== */
.hero-video {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 700px;
}
/* ===== HERO ===== */
.hero {
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.hero-buttons {
  margin-top: 1.5rem;
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 120px 0 80px;
  text-align: center;
  background: #111;
}

.page-hero h1 {
  font-size: 2.8rem;
}

/* ===== ABOUT HOME ===== */
.about-home {
  padding: 6rem 0;
  background: #151515;
}

.about-home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-home-image img {
  width: 100%;
  border-radius: 8px;
}

/* ===== BUSINESS SECTION ===== */
.business-section {
  padding: 6rem 0;
  background: #0f0f0f;
}

.business-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.business-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.business-highlight {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.business-image img {
  width: 100%;
  border-radius: 8px;
}
/* ===== SERVICE LAYOUT ===== */
.split-layout {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.service-intro {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.service-gif {
  margin: 1.5rem 0 2rem 0;
}

.service-gif img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
}

.service-list {
  margin-bottom: 2rem;
  padding-left: 1.2rem;
}

.service-list li {
  margin-bottom: 0.6rem;
  opacity: 0.9;
}

/* Button spacing */
.btn-service {
  display: inline-block;
  margin-top: 1rem;
  padding: 14px 28px;
  font-weight: 600;
}

/* ========================= */
/* TRADITIONAL SECTION */
/* ========================= */

.traditional-section {
  padding: 100px 0;
}

.traditional-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.traditional-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
}

.traditional-text p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.thoughts {
  font-style: italic;
  opacity: 0.85;
}

.transition {
  margin-top: 25px;
  font-weight: 700;
}

/* ========================= */
/* PROGRAM INTRO */
/* ========================= */

.program-intro {
  padding: 100px 0;
  text-align: center;
  background: #111;
}

.program-intro p {
  max-width: 800px;
  margin: 15px auto;
}

/* ============================= */
/* PROGRAM SECTIONS */
/* ============================= */

.program-section{
  padding:100px 0;
}

.program-layout{
  max-width:800px;
}

.program-layout h2{
  font-size:2rem;
  margin-bottom:15px;
}

.program-layout p{
  margin-bottom:20px;
  line-height:1.7;
}

.program-layout ul{
  margin-bottom:30px;
  padding-left:20px;
}

.program-layout li{
  margin-bottom:8px;
}

.alt-section{
  background:#111;
}

/* ========================= */
/* SURGE COMPARISON GRID */
/* ========================= */

.comparison-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  margin-top:40px;
  margin-bottom:40px;
}

.comparison-card{
  background:#1a1a1a;
  padding:30px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.08);
}

.comparison-card h3{
  margin-bottom:15px;
  font-size:1.4rem;
}

.comparison-card p{
  margin-bottom:12px;
  line-height:1.7;
}

.comparison-list{
  list-style:none;
  padding:0;
  margin:15px 0;
}

.comparison-list li{
  margin-bottom:8px;
  position:relative;
  padding-left:18px;
}

.comparison-list li::before{
  content:"•";
  position:absolute;
  left:0;
  color:#fff;
}

.comparison-end{
  margin-top:15px;
  opacity:0.9;
}

/* ========================= */
/* PROGRAM SYSTEM */
/* ========================= */

.program-system {
  padding: 100px 0;
  background: #111;
}

.stage {
  margin-top: 40px;
}

.stage ul {
  padding-left: 20px;
}


/* ========================= */
/* DISCLAIMER */
/* ========================= */

.disclaimer-section {
  padding: 100px 0;
  text-align: center;
}

.disclaimer-section p {
  max-width: 700px;
  margin: 12px auto;
}

.disclaimer-end {
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {

  h1 {
    font-size: 2.2rem;
  }

  .nav-links {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
  }

  .btn-secondary {
    margin-left: 0;
    margin-top: 1rem;
  }

  .logo img {
    height: 36px;
  }
  .about-home-grid,
  .business-grid {
  grid-template-columns: 1fr;
  }
}