/* --- CUSTOM THEME DESIGN SYSTEM (DARK ORGANIC BLOB PRESET) --- */
:root {
  --hypo-bg: #0b132b;
  --hypo-surface: #1c2541;
  --hypo-surface-light: #2a385b;
  --hypo-thermal-tone: #00b4d8;
  --hypo-thermal-hover: #90e0ef;
  --hypo-warm-accent: #f77f00;
  --hypo-warm-hover: #fcbf49;
  --hypo-ink: #f8fafc;
  --hypo-ink-muted: #94a3b8;
  --hypo-gradient-cool: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
  --hypo-gradient-warm: linear-gradient(135deg, #f77f00 0%, #d62828 100%);
  --hypo-gradient-dark: linear-gradient(180deg, #0b132b 0%, #1c2541 100%);
  
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --border-soft: 16px;
  --shadow-deep: 0 20px 40px -15px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 180, 216, 0.15);
}

/* Global Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--hypo-bg);
  color: var(--hypo-ink);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--hypo-ink);
  margin-top: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Scroll tracker line top */
.scroll-tracker-line {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--hypo-gradient-warm);
  width: 100%;
  transform-origin: left;
  z-index: 100;
  animation: grow-progress linear;
  animation-timeline: scroll();
}

@keyframes grow-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* Section Padding Standard */
.standard-padded-block {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
  position: relative;
}

.section-inner-boundary {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Typography elements */
.section-headline-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle-text {
  color: var(--hypo-ink-muted);
  font-size: 1.1rem;
}

.warmth-tag-pill {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 180, 216, 0.15);
  border: 1px solid var(--hypo-thermal-tone);
  color: var(--hypo-thermal-hover);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

/* Header & Nav Styling */
.thermal-nav-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(11, 19, 43, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
}

.header-inner-shell {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-brand-holder img {
  height: 42px;
  width: auto;
}

.navigation-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.navigation-panel a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--hypo-ink-muted);
}

.navigation-panel a:hover {
  color: var(--hypo-thermal-hover);
}

.header-action-pill {
  padding: 8px 20px !important;
  background: var(--hypo-gradient-warm);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(247, 127, 0, 0.3);
}

.header-action-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247, 127, 0, 0.5);
}

/* Mobile burger menu (CSS-only) */
.burger-trigger-button {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.burger-line {
  width: 25px;
  height: 3px;
  background-color: var(--hypo-ink);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* HERO SECTION (Preset N Layout) */
.hero-stage-viewport {
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem 0;
  background: radial-gradient(circle at 80% 20%, rgba(0, 180, 216, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(247, 127, 0, 0.1) 0%, transparent 50%);
}

.hero-content-boundary {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
}

.hero-primary-headline {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #90e0ef 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-descriptive-body {
  font-size: 1.15rem;
  color: var(--hypo-ink-muted);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-buttons-cluster {
  gap: 1rem;
}

.warm-cta-pill {
  padding: 14px 32px;
  background: var(--hypo-gradient-warm);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 25px rgba(247, 127, 0, 0.35);
  display: inline-block;
}

.warm-cta-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(247, 127, 0, 0.5);
  color: #fff;
}

.cold-ghost-pill {
  padding: 14px 32px;
  background: transparent;
  border: 2px solid var(--hypo-surface-light);
  color: var(--hypo-ink);
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
}

.cold-ghost-pill:hover {
  border-color: var(--hypo-thermal-tone);
  color: var(--hypo-thermal-hover);
}

/* Organic Blob Mask for Hero Image */
.organic-blob-mask-box {
  width: 100%;
  max-width: 480px;
  height: 480px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  border: 4px solid rgba(255, 255, 255, 0.1);
  transition: border-radius 1s ease;
}

.organic-blob-mask-box:hover {
  border-radius: 40% 60% 70% 30% / 50% 60% 40% 50%;
}

.hero-main-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FEATURES SECTION (Preset N Layout) */
.features-blob-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-blob-item {
  background: var(--hypo-surface);
  padding: 2.5rem 2rem;
  border-radius: var(--border-soft);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-blob-item:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 180, 216, 0.3);
  box-shadow: var(--shadow-deep);
}

.blob-icon-housing {
  width: 64px;
  height: 64px;
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  background: var(--hypo-gradient-cool);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 1.5rem;
  transition: border-radius 0.6s ease;
}

.feature-blob-item:hover .blob-icon-housing {
  border-radius: 40% 60% 40% 60% / 60% 40% 60% 40%;
}

.feature-item-headline {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-item-paragraph {
  color: var(--hypo-ink-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* CONTENT SECTION 1: Elliptical Blob Image */
.elliptical-blob-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  clip-path: ellipse(50% 46% at 55% 50%);
  border-radius: 20px;
}

.content-paragraph {
  color: var(--hypo-ink-muted);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.highlight-quote-card {
  background: rgba(0, 180, 216, 0.08);
  border-left: 4px solid var(--hypo-thermal-tone);
  padding: 1.25rem 1.5rem;
  border-radius: 0 12px 12px 0;
}

.quote-text {
  font-style: italic;
  color: var(--hypo-ink);
  margin: 0;
  font-size: 1rem;
}

/* CTA STRIP: Wave separators */
.wave-cta-strip-block {
  position: relative;
  background: var(--hypo-gradient-cool);
  padding: 4rem 0;
  overflow: hidden;
}

.wave-top-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: var(--hypo-bg);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}

.wave-bottom-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: var(--hypo-bg);
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}

/* CONTENT SECTION 2: Full Width bg2.webp + Wave Clip */
.wave-clipped-bg-section {
  position: relative;
  padding: 12dvh 0;
  background-image: url('img/bg2.webp');
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
}

.wave-clipped-bg-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 19, 43, 0.85);
}

.bg-surface-overlay {
  background: rgba(28, 37, 65, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-deep);
}

.check-list-group {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.check-icon-circle {
  width: 24px;
  height: 24px;
  background: var(--hypo-thermal-tone);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

/* TESTIMONIALS (Bubble Shaped) */
.testimonials-asymmetric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.testimonial-bubble-card {
  display: flex;
  flex-direction: column;
}

.bubble-thought-shape {
  background: var(--hypo-surface-light);
  padding: 2rem;
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
  transition: border-radius 0.5s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.testimonial-bubble-card:hover .bubble-thought-shape {
  border-radius: 60% 40% 40% 60% / 50% 60% 40% 50%;
}

.review-quote-body {
  color: var(--hypo-ink);
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
}

.reviewer-meta-holder {
  padding-left: 1.5rem;
}

.reviewer-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.star-rating-row {
  color: var(--hypo-warm-accent);
  letter-spacing: 2px;
  font-size: 0.9rem;
}

/* FORM SECTION: Fluid Centered Card */
.form-hero-wrapper {
  background: var(--hypo-surface);
  border-radius: 28px;
  padding: 3rem;
  box-shadow: var(--shadow-deep);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info-panel {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-right: 2rem;
}

.contact-address-block {
  color: var(--hypo-ink-muted);
  font-size: 0.95rem;
}

.thermal-badge-shield {
  display: inline-block;
  padding: 10px 16px;
  background: rgba(247, 127, 0, 0.1);
  border: 1px dashed var(--hypo-warm-accent);
  border-radius: 12px;
  color: var(--hypo-warm-hover);
  font-size: 0.85rem;
  font-weight: 600;
}

.form-title-text {
  font-size: 1.5rem;
  font-weight: 800;
}

.input-label-text {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hypo-ink-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.custom-form-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--hypo-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--hypo-ink);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.custom-form-input:focus {
  outline: none;
  border-color: var(--hypo-thermal-tone);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.2);
}

.custom-textarea {
  resize: vertical;
}

/* FAQ SECTION: Soft Blob List Items (All Open) */
.faq-soft-node {
  background: var(--hypo-surface);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.faq-node-question {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--hypo-thermal-hover);
  margin-bottom: 0.75rem;
}

.faq-node-answer p {
  color: var(--hypo-ink-muted);
  margin: 0;
  font-size: 0.98rem;
}

/* FOOTER STYLING */
.site-footer-wrapper {
  background: #060b18;
  padding: 4rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner-shell {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

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

.footer-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links-list a {
  color: var(--hypo-ink-muted);
  font-size: 0.9rem;
}

.footer-links-list a:hover {
  color: var(--hypo-thermal-hover);
}

/* Scroll Animation Timeline Effects (CSS Only) */
@supports (animation-timeline: view()) {
  .feature-blob-item,
  .testimonial-bubble-card,
  .faq-soft-node {
    animation: reveal-on-scroll ease-out forwards;
    animation-timeline: view();
    animation-range: entry 10% cover 30%;
  }

  @keyframes reveal-on-scroll {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .burger-trigger-button {
    display: flex;
  }

  .navigation-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--hypo-surface);
    padding: 1.5rem;
    display: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .navigation-panel ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  #burger-state-check:checked ~ .navigation-panel {
    display: block;
  }

  .organic-blob-mask-box {
    height: 320px;
    max-width: 320px;
  }

  .contact-info-panel {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: 0;
    padding-bottom: 2rem;
  }

  .form-hero-wrapper {
    padding: 1.75rem;
  }

  .wave-clipped-bg-section {
    clip-path: none;
    padding: 6dvh 0;
  }
}