/* ============================================================
   ELECTRO-LITE SOLUTIONS — sections.css
   Per-section layout and component styles
   ============================================================ */

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 100;
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(3, 36, 77, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--brand-orange);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.nav-logo img {
  height: 44px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-white);
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-orange);
  transition: width 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-orange);
}
.nav-links a.active::after,
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  background: var(--brand-orange) !important;
  color: var(--brand-white) !important;
  border-radius: 24px;
  padding: 10px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--brand-orange-light) !important;
  color: var(--brand-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 119, 34, 0.4);
}

/* Hamburger */
#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
#hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-white);
  border-radius: 2px;
  transition: var(--transition-med);
}
#hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#hamburger.open span:nth-child(2) { opacity: 0; }
#hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
#mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 36, 77, 0.98);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
#mobile-overlay a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-white);
  transition: color 0.2s ease;
}
#mobile-overlay a:hover {
  color: var(--brand-orange);
}
#mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  font-size: 28px;
  line-height: 1;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  #hamburger { display: flex; }
}

/* ===== HERO SECTION ===== */
#hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--brand-blue);
  overflow: hidden;
  scroll-margin-top: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(3, 36, 77, 0.88) 0%,
    rgba(3, 36, 77, 0.55) 60%,
    rgba(232, 119, 34, 0.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  max-width: 800px;
}
.hero-headline {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: clamp(4rem, 8vw, 9rem);
  color: var(--brand-white);
  text-shadow: 0 0 40px rgba(232, 119, 34, 0.5);
  line-height: 1.05;
}
.hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  line-height: 1.6;
  margin-top: 8px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}
.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  z-index: 2;
}

/* ===== ABOUT SECTION ===== */
#about {
  padding: var(--section-pad) 0;
  background-color: var(--brand-blue);
  scroll-margin-top: var(--nav-height);
}
.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(3,36,77,0.93) 0%, rgba(3,36,77,0.78) 100%);
}
.about-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.about-photo-frame {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  border: 4px solid var(--brand-orange);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  overflow: hidden;
  background: rgba(10, 61, 107, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-photo-placeholder svg {
  opacity: 0.4;
}
.about-info-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.info-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 10px 16px;
}
.info-pill svg {
  flex-shrink: 0;
  color: var(--brand-orange);
}
.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}
.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.cred-pill {
  background: rgba(232, 119, 34, 0.12);
  border: 1px solid var(--brand-orange);
  border-radius: 4px;
  padding: 10px 18px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== SERVICES SECTION ===== */
#services {
  padding: var(--section-pad) 0;
  background: var(--brand-blue);
  scroll-margin-top: var(--nav-height);
}
.iv-bag-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}
.iv-bag-svg {
  position: relative;
  display: inline-block;
}
.category-block {
  margin-bottom: 56px;
}
.category-label {
  font-family: var(--font-script);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--brand-white);
  text-align: center;
  margin-bottom: 32px;
  text-shadow: 0 0 20px rgba(232, 119, 34, 0.3);
}
.category-label span {
  color: var(--brand-orange);
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cards-grid.two-col {
  grid-template-columns: repeat(2, 1fr);
}
.service-card {
  background: var(--brand-card-dark);
  border: 1px solid rgba(232, 119, 34, 0.2);
  border-top: 3px solid var(--brand-orange);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--brand-orange);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.card-tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 13px;
  color: rgba(255,255,255,0.52);
  margin-bottom: 16px;
}
.card-divider {
  height: 1px;
  background: rgba(232, 119, 34, 0.28);
  margin-bottom: 12px;
}
.card-ing-label {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--brand-orange);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.card-ingredients {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.card-ingredient {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--brand-white);
  line-height: 1.5;
}
.card-ingredient::before {
  content: '·';
  color: var(--brand-orange);
  margin-right: 6px;
}
.card-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.card-badge {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--brand-orange);
  border: 1px solid var(--brand-orange);
  border-radius: 12px;
  padding: 3px 10px;
  white-space: nowrap;
}
.card-disclaimer {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 10px;
  font-style: italic;
}
.services-cta-wrap {
  text-align: center;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cards-grid,
  .cards-grid.two-col { grid-template-columns: 1fr; }
}

/* ===== FULLSCREEN IMAGE PANELS ===== */
.bg-panel {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* safe default — fixed is broken on iOS/Android */
}
/* Parallax only on desktop with a real pointer */
@media (hover: hover) and (pointer: fine) {
  .bg-panel { background-attachment: fixed; }
}
/* On mobile, match the image's natural 16:9 aspect ratio so nothing is clipped */
@media (max-width: 768px) {
  .bg-panel {
    height: 56.25vw;
    min-height: 200px;
  }
}

/* ===== IV BAG LOGO ===== */
.iv-bag-container {
  position: relative;
  display: inline-block;
}
.iv-bag-img {
  width: 180px;
  height: auto;
  display: block;
}
.iv-drip-overlay {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.iv-drip-overlay .iv-drip-drop {
  width: 7px;
  height: 10px;
  background: rgba(232, 119, 34, 0.9);
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
}

/* ===== BENEFITS SECTION ===== */
#benefits {
  padding: var(--section-pad) 0;
  background-color: var(--brand-blue);
  scroll-margin-top: var(--nav-height);
}
.benefits-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3,36,77,0.90), rgba(10,61,107,0.82));
}
.benefits-inner {
  position: relative;
  z-index: 2;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.benefit-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(232, 119, 34, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.benefit-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--brand-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.benefit-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}
@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ===== PARTNERS — EAPC ===== */
#partners-eapc {
  padding: var(--section-pad) 0;
  background: var(--brand-blue-mid);
  scroll-margin-top: var(--nav-height);
}
.eapc-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: center;
}
.eapc-logo-card {
  background: var(--brand-white);
  border-radius: 12px;
  padding: 28px;
  max-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.eapc-logo-card img {
  max-width: 220px;
  width: 100%;
}
.eapc-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.eapc-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  max-width: 560px;
}
.eapc-address {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
@media (max-width: 768px) {
  .eapc-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .eapc-logo-card { margin: 0 auto; }
  .eapc-text { align-items: center; text-align: center; }
  .eapc-body { text-align: center; }
}

/* ===== PARTNERS — GUNNERS ===== */
#partners-gunners {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, #0A0A0A 0%, #1C1C1E 100%);
  border-top: 1px solid rgba(232, 119, 34, 0.25);
}
.gunners-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.gunners-badge {
  max-width: 320px;
  filter: drop-shadow(0 8px 24px rgba(255,255,255,0.12));
}
.gunners-body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  max-width: 620px;
  line-height: 1.8;
}

/* ===== CONTACT SECTION ===== */
#contact {
  padding: var(--section-pad) 0;
  background-color: var(--brand-blue);
  scroll-margin-top: var(--nav-height);
}
.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 36, 77, 0.91);
}
.contact-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--brand-orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.contact-item svg {
  flex-shrink: 0;
  color: var(--brand-orange);
  margin-top: 2px;
}
.contact-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 24px 0;
}
.social-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 12px;
}
.social-icons {
  display: flex;
  gap: 12px;
}
.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-white);
  cursor: pointer;
  background: transparent;
}
/* Form container */
.form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(232, 119, 34, 0.3);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-field:last-of-type { margin-bottom: 0; }
.form-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.form-input,
.form-select,
.form-textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  color: var(--brand-white);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  width: 100%;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255,255,255,0.35);
}
.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23E87722' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-select option {
  background: var(--brand-blue);
  color: var(--brand-white);
}
.form-select optgroup {
  color: var(--brand-orange);
  font-weight: 700;
}
.form-textarea {
  resize: vertical;
  min-height: 100px;
}
.form-submit {
  width: 100%;
  height: 56px;
  background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-light) 100%);
  color: var(--brand-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(232, 119, 34, 0.35);
  margin-top: 20px;
  border: none;
  cursor: pointer;
}
@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }
}

/* ===== CTA STRIP ===== */
#cta-strip {
  padding: 36px clamp(20px, 5vw, 60px);
  background: linear-gradient(135deg, var(--brand-orange) 0%, #C4621A 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-strip-text {
  font-family: var(--font-script);
  font-size: clamp(22px, 3vw, 32px);
  color: var(--brand-white);
}
.cta-strip-btn {
  background: var(--brand-white);
  color: var(--brand-blue);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  white-space: nowrap;
  transition: var(--transition-fast);
}
.cta-strip-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
@media (max-width: 600px) {
  #cta-strip {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== FOOTER ===== */
footer {
  background: #020F1F;
  border-top: 1px solid;
  border-image: linear-gradient(to right, var(--brand-orange), var(--brand-blue-light)) 1;
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 14px;
}
.footer-tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  margin-top: 4px;
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--brand-orange); }
.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact-item {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social a {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s ease;
}
.footer-social a:hover { color: var(--brand-orange); }
.footer-bottom {
  margin-top: 48px;
  padding: 20px clamp(20px, 5vw, 60px);
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.22);
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}
