/* ============================================
   Services2 Page CSS - Solar Surge
   Figma-accurate Solutions page
   ============================================ */

:root {
  --sv2-gradient: linear-gradient(90deg, #69eefd 0%, #efc052 54.33%, #f19231 100%);
  --sv2-navy: #0d192e;
  --sv2-orange: #f19231;
  --sv2-cyan: #69eefd;
}

/* ===== HERO ===== */
.sv2-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  max-height: 1080px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sv2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.sv2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0) 17%, rgba(37,74,95,0.4) 100%);
}

.sv2-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1208px;
  text-align: center;
}

.sv2-hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(2.5rem, 4.5vw, 60px);
  line-height: 1.17;
  text-transform: uppercase;
  background: var(--sv2-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.sv2-hero-content p {
  font-size: clamp(1rem, 1.8vw, 30px);
  line-height: 1.38;
  color: #fff;
  max-width: 1180px;
  margin: 0 auto;
}

/* ===== OUR APPROACH ===== */
.sv2-approach {
  background: #fff;
  padding: 110px 0 60px;
}

.sv2-approach-header {
  text-align: center;
  max-width: 1400px;
  margin: 0 auto 60px;
}

.sv2-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--sv2-orange);
  margin-bottom: 11px;
}

.sv2-approach-header h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3.5vw, 60px);
  line-height: 1.15;
  color: var(--sv2-navy);
  margin-bottom: 11px;
}

.sv2-approach-header p {
  font-size: clamp(1rem, 1.5vw, 26px);
  color: var(--sv2-navy);
  max-width: 856px;
  margin: 0 auto;
}

/* Icon Columns */
.sv2-approach-icons {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1284px;
  margin: 0 auto;
  padding: 50px 0;
}

.sv2-icon-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.sv2-icon-img {
  width: 119px;
  height: 95px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sv2-icon-img svg {
  max-width: 100%;
  max-height: 100%;
}

.sv2-icon-col h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 2.5vw, 36px);
  line-height: 1.1;
  color: var(--sv2-navy);
  margin-bottom: 20px;
}

.sv2-icon-col p {
  font-size: 16px;
  color: var(--sv2-navy);
  line-height: 1.5;
  max-width: 289px;
}

.sv2-icon-divider {
  width: 1px;
  height: 349px;
  background: rgba(0,0,0,0.15);
  flex-shrink: 0;
  align-self: center;
}

/* ===== MARQUEE TEXT ===== */
.sv2-marquee {
  padding: 0 0 15px;
  margin-top: -10px;
  overflow: hidden;
  background: #fff;
}

.sv2-marquee-track {
  display: flex;
  width: max-content;
  animation: sv2-marquee-scroll 20s linear infinite;
}

.sv2-marquee-track span {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 210px;
  line-height: 1.3;
  background: linear-gradient(90deg, #f19231 0%, #efc052 40%, #a8d5a2 70%, #69eefd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

@keyframes sv2-marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SOLUTION SECTIONS ===== */
.sv2-solution {
  position: relative;
  width: 100%;
  min-height: 561px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 2px solid rgba(255,255,255,0.2);
}

.sv2-solution--featured {
  min-height: 720px;
}

.sv2-solution-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.sv2-solution-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1320px;
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/* Badge for featured solution */
.sv2-solution-badge {
  display: inline-block;
  background: var(--sv2-cyan);
  color: var(--sv2-navy);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 4px 20px;
  border-radius: 10px;
}

.sv2-solution-content h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 96px);
  line-height: 1.04;
  color: #fff;
}

.sv2-solution-content > p {
  font-size: clamp(1rem, 1.5vw, 26px);
  line-height: 1.38;
  color: rgba(255,255,255,0.6);
  max-width: 900px;
}

/* Feature Tags */
.sv2-solution-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.sv2-solution-tags li {
  font-size: 16px;
  color: var(--sv2-cyan);
}

/* Learn More Button */
.sv2-solution-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 14px 40px;
  background: #fff;
  border: 2px solid var(--sv2-cyan);
  border-radius: 73px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sv2-solution-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(105, 238, 253, 0.3);
}

/* ===== CTA ===== */
.sv2-cta {
  background: var(--sv2-navy);
  padding: 100px 0;
  text-align: center;
}

.sv2-cta h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 96px);
  line-height: 1.04;
  color: #fff;
  max-width: 1320px;
  margin: 0 auto 15px;
}

.sv2-cta p {
  font-size: clamp(1rem, 1.5vw, 26px);
  color: rgba(255,255,255,0.6);
  margin-bottom: 48px;
}

.sv2-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 400px;
  height: 82px;
  padding: 0 60px;
  background: var(--sv2-gradient);
  border-radius: 73px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #000;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sv2-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(241, 146, 49, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .sv2-marquee-track span {
    font-size: 100px;
  }
}

@media (max-width: 1024px) {
  .sv2-hero-content {
    padding: 0 40px;
  }

  .sv2-approach-icons {
    gap: 20px;
  }

  .sv2-icon-divider {
    height: 200px;
  }

  .sv2-solution-tags {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .sv2-hero {
    height: auto;
    min-height: 60vh;
    padding: 120px 20px 60px;
  }

  .sv2-hero-content {
    padding: 0;
  }

  .sv2-approach {
    padding: 50px 20px 10px;
  }

  .sv2-approach-header {
    margin-bottom: 40px;
  }

  .sv2-approach-header h2 {
    font-size: clamp(1.4rem, 5vw, 2.5rem);
  }

  .sv2-approach-header p {
    font-size: 0.95rem;
  }

  .sv2-approach-icons {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .sv2-icon-col {
    max-width: 300px;
  }

  .sv2-icon-divider {
    width: 120px;
    height: 1px;
  }

  .sv2-marquee {
    padding: 0 0 10px;
  }

  .sv2-marquee-track span {
    font-size: 60px;
  }

  .sv2-solution {
    min-height: auto;
    padding: 0;
  }

  .sv2-solution--featured {
    min-height: auto;
  }

  .sv2-solution-content {
    padding: 60px 20px;
  }

  .sv2-solution-content h2 {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
  }

  .sv2-solution-content > p {
    font-size: 0.95rem;
  }

  .sv2-solution-tags {
    flex-direction: column;
    gap: 8px;
  }

  .sv2-solution-tags li {
    font-size: 0.85rem;
  }

  .sv2-solution-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .sv2-cta {
    padding: 60px 20px;
  }

  .sv2-cta h2 {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .sv2-cta p {
    font-size: 0.95rem;
  }

  .sv2-cta-btn {
    min-width: auto;
    width: 100%;
    max-width: 400px;
    height: 56px;
    font-size: 16px;
    padding: 0 24px;
  }

}

@media (max-width: 480px) {
  .sv2-hero {
    min-height: 50vh;
    padding: 100px 16px 50px;
  }

  .sv2-hero-content h1 {
    font-size: 1.5rem;
  }

  .sv2-hero-content p {
    font-size: 0.9rem;
  }

  .sv2-approach {
    padding: 40px 16px 5px;
  }

  .sv2-label {
    font-size: 14px;
  }

  .sv2-icon-img {
    width: 80px;
    height: 80px;
  }

  .sv2-icon-col h4 {
    font-size: 1rem;
  }

  .sv2-icon-col p {
    font-size: 0.85rem;
  }

  .sv2-marquee-track span {
    font-size: 40px;
  }

  .sv2-solution-content {
    padding: 40px 16px;
  }

  .sv2-solution-content h2 {
    font-size: 1.5rem;
  }

  .sv2-solution-badge {
    font-size: 0.7rem;
  }

  .sv2-cta {
    padding: 40px 16px;
  }
}
