/* Theme Custom Variables - DARK Theme focused on Thermal Protection */
:root {
  --frost-shade-bg: #0a0e14;
  --frost-card-surface: rgba(18, 26, 38, 0.75);
  --frost-border-glow: rgba(255, 255, 255, 0.15);
  --thermo-warm-glow: #f39c12;
  --thermo-pulse-hover: #e67e22;
  --cold-crystal-ink: #f0f4f8;
  --cold-muted-ink: #94a3b8;
  --thermal-gradient: linear-gradient(135deg, #0f172a 0%, #0a0e14 100%);
  --accent-fire-glow: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --border-soft-radius: 18px;
  --shadow-deep-depth: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(243, 156, 18, 0.15);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--frost-shade-bg);
  color: var(--cold-crystal-ink);
}

body.hypo-body-base {
  background-color: var(--frost-shade-bg);
  color: var(--cold-crystal-ink);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Scroll Progress Bar Header */
.page-scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--accent-fire-glow);
  width: 100%;
  transform-origin: 0 50%;
  animation: scroll-progress linear;
  animation-timeline: scroll();
  z-index: 100;
}

@keyframes scroll-progress {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

/* Scroll View Animations */
.hypo-section-pad {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
  position: relative;
  z-index: 10;
  animation: fade-in-up linear both;
  animation-timeline: view();
  animation-range: entry 10% cover 30%;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.thermo-main-holder {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header (Variant 2: Nav Left + Logo Right) */
.thermo-header-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 14, 20, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--frost-border-glow);
  z-index: 90;
  padding: 15px 0;
}

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

.nav-toggle-input {
  display: none;
}

.nav-toggle-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 100;
}

.nav-toggle-burger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--cold-crystal-ink);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.thermo-nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
}

.thermo-nav-link {
  color: var(--cold-crystal-ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.thermo-nav-link:hover {
  color: var(--thermo-warm-glow);
}

.thermo-brand-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* PRESET H HERO */
.hypo-hero-viewport {
  position: relative;
  height: 75vh;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  padding: 0 5%;
}

.diagonal-accent-blade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-fire-glow);
  opacity: 0.85;
  clip-path: polygon(0 0, 35% 0, 20% 100%, 0 100%);
  z-index: 2;
}

.hero-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(10,14,20,0.4) 0%, rgba(10,14,20,0.95) 70%);
}

.hero-stage-content {
  position: relative;
  z-index: 10;
  max-width: 650px;
  text-align: right;
}

.hero-heading-main {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--cold-crystal-ink);
  margin-bottom: 20px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

.hero-lead-text {
  font-size: 1.15rem;
  color: var(--cold-muted-ink);
  margin-bottom: 30px;
}

.hero-action-pill {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 999px;
  background: var(--accent-fire-glow);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.hero-action-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 107, 107, 0.6);
}

/* Headings */
.section-title-wrap {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading-custom {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--cold-crystal-ink);
  margin-bottom: 12px;
}

.section-sub-custom {
  color: var(--cold-muted-ink);
  font-size: 1.1rem;
}

/* Glassmorphism Feature Cards */
.glass-shield-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.glass-shield-item {
  background: var(--frost-card-surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--frost-border-glow);
  border-radius: var(--border-soft-radius);
  padding: 35px 25px;
  box-shadow: var(--shadow-deep-depth);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-shield-item:hover {
  transform: translateY(-8px);
  border-color: var(--thermo-warm-glow);
}

.shield-icon-bubble {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(243, 156, 18, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--thermo-warm-glow);
}

.shield-svg {
  width: 32px;
  height: 32px;
}

.shield-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--cold-crystal-ink);
}

.shield-desc {
  color: var(--cold-muted-ink);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Content Split Sections */
.thermal-content-flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

.diagonal-clip-left-box {
  flex: 0 0 45%;
  height: 380px;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  border-radius: var(--border-soft-radius);
  overflow: hidden;
}

.diagonal-clip-right-box {
  flex: 0 0 45%;
  height: 380px;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  border-radius: var(--border-soft-radius);
  overflow: hidden;
}

.content-diagonal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-text-side {
  flex: 0 0 55%;
}

.content-paragraph {
  color: var(--cold-muted-ink);
  font-size: 1.05rem;
  margin-top: 15px;
}

/* Divider */
.thermal-divider-strip {
  padding: 20px 0;
  display: flex;
  justify-content: center;
}

.divider-line-glow {
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--thermo-warm-glow), transparent);
}

/* CTA Diagonal Ribbon */
.cta-diagonal-ribbon {
  background: var(--accent-fire-glow);
  clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
  padding: 90px 20px;
  text-align: center;
  margin: 40px 0;
}

.cta-ribbon-inner {
  max-width: 800px;
  margin: 0 auto;
}

.cta-ribbon-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 15px;
}

.cta-ribbon-sub {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.cta-ribbon-inner .hero-action-pill {
  background: #0a0e14;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.cta-ribbon-inner .hero-action-pill:hover {
  background: #1e293b;
}

/* Testimonials: 2 Wide Horizontal Blocks */
.wide-quotes-stack {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.quote-strip-item {
  background: var(--frost-card-surface);
  backdrop-filter: blur(12px);
  border-left: 6px solid var(--thermo-warm-glow);
  border-radius: var(--border-soft-radius);
  padding: 35px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  box-shadow: var(--shadow-deep-depth);
}

.quote-body-text {
  font-style: italic;
  font-size: 1.15rem;
  color: var(--cold-crystal-ink);
  flex: 1;
}

.quote-author-tag {
  text-align: right;
  flex-shrink: 0;
}

.author-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--thermo-warm-glow);
}

.author-role {
  font-size: 0.85rem;
  color: var(--cold-muted-ink);
}

/* Form Section */
.inquiry-form-shell {
  background: var(--frost-card-surface);
  backdrop-filter: blur(16px);
  border: 1px solid var(--frost-border-glow);
  border-radius: var(--border-soft-radius);
  padding: 50px;
  box-shadow: var(--shadow-deep-depth);
}

.form-layout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-panel {
  font-style: normal;
}

.contact-panel-heading {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.contact-panel-desc {
  color: var(--cold-muted-ink);
  margin-bottom: 30px;
}

.contact-meta-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--cold-crystal-ink);
}

.contact-icon {
  width: 24px;
  height: 24px;
  color: var(--thermo-warm-glow);
}

.user-input-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cold-crystal-ink);
}

.field-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--frost-border-glow);
  border-radius: 10px;
  padding: 14px 18px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.field-input:focus {
  border-color: var(--thermo-warm-glow);
}

/* FAQ Open Section */
.open-faq-stack {
  display: flex;
  flex-direction: column;
}

.faq-static-item {
  border-bottom: 1px solid var(--frost-border-glow);
  padding: 30px 0;
}

.faq-static-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}

.faq-plus-symbol {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--thermo-warm-glow);
  line-height: 1;
}

.faq-question-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--cold-crystal-ink);
}

.faq-answer-text {
  color: var(--cold-muted-ink);
  padding-left: 35px;
  font-size: 1rem;
}

/* Footer */
.site-footer-zone {
  background: #06090e;
  border-top: 1px solid var(--frost-border-glow);
  padding: 40px 0;
}

.footer-layout-holder {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand img {
  height: 38px;
  width: auto;
}

.footer-links-list {
  display: flex;
  gap: 25px;
  list-style: none;
}

.footer-link {
  color: var(--cold-muted-ink);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--cold-crystal-ink);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .thermal-content-flex {
    flex-direction: column;
  }

  .diagonal-clip-left-box,
  .diagonal-clip-right-box,
  .content-text-side {
    flex: 0 0 100%;
    width: 100%;
  }

  .diagonal-clip-left-box,
  .diagonal-clip-right-box {
    clip-path: none;
    height: 280px;
  }

  .form-layout-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .quote-strip-item {
    flex-direction: column;
    text-align: center;
  }

  .quote-author-tag {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-toggle-burger {
    display: flex;
  }

  .thermo-nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 20, 0.98);
    padding: 20px 0;
    display: none;
    border-bottom: 1px solid var(--frost-border-glow);
  }

  .nav-toggle-input:checked ~ .thermo-nav-menu {
    display: block;
  }

  .thermo-nav-list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .hypo-hero-viewport {
    justify-content: center;
    text-align: center;
  }

  .diagonal-accent-blade {
    clip-path: polygon(0 0, 100% 0, 100% 20%, 0 40%);
  }

  .hero-stage-content {
    text-align: center;
  }

  .inquiry-form-shell {
    padding: 25px;
  }

  .footer-layout-holder {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links-list {
    flex-wrap: wrap;
    justify-content: center;
  }
}