/* =========================================================
   SWAROOP ENERGY — HERO
========================================================= */

.se-hero {
  position: relative;
  padding-top: 200px;
  padding-bottom: 100px;

  width: 100%;
  height: min(900px, 100vh);

  min-height: 680px;

  overflow: hidden;

  background: #0b0d0e;

  color: #ffffff;
}

/* =========================================================
   SWIPER
========================================================= */

.se-hero-swiper {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;
}

/* =========================================================
   HERO IMAGE
========================================================= */

.se-hero-image {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  background-size: cover;

  background-position: center;

  transform: scale(1.04);

  transition: transform 7s cubic-bezier(0.2, 0.6, 0.2, 1);
}

/* Slow cinematic zoom */

.swiper-slide-active .se-hero-image {
  transform: scale(1.1);
}

/* =========================================================
   IMAGE OVERLAY
========================================================= */

.se-hero-overlay {
  position: absolute;

  inset: 0;

  z-index: 2;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(11, 13, 14, 0.94) 0%,
      rgba(11, 13, 14, 0.82) 28%,
      rgba(11, 13, 14, 0.45) 60%,
      rgba(11, 13, 14, 0.3) 100%
    ),
    linear-gradient(
      0deg,
      rgba(11, 13, 14, 0.75) 0%,
      transparent 45%,
      rgba(11, 13, 14, 0.25) 100%
    );
}

/* =========================================================
   CONTAINER
========================================================= */

.se-hero-container {
  position: relative;

  z-index: 3;

  height: 100%;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

/* =========================================================
   HERO CONTENT
========================================================= */

.se-hero-content {
  width: min(850px, 75%);

  padding-top: 50px;
}

/* =========================================================
   EYEBROW
========================================================= */

.se-hero-eyebrow {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 24px;

  font-family: "Inter", sans-serif;

  font-size: 12px;

  font-weight: 600;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  color: #e2d477;
}

.se-hero-line {
  display: block;

  width: 38px;

  height: 1px;

  background: #c6b34f;
}

/* =========================================================
   TITLE
========================================================= */

.se-hero-title {
  margin: 0;

  max-width: 900px;

  font-family: "Sora", sans-serif;

  font-size: clamp(42px, 6vw, 82px);

  font-weight: 600;

  line-height: 0.98;

  letter-spacing: -3px;

  color: #ffffff;
}

/* Gold line */

.se-hero-title span {
  display: block;

  color: #c6b34f;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.se-hero-description {
  max-width: 650px;

  margin: 30px 0 0;

  font-family: "Inter", sans-serif;

  font-size: 16px;

  font-weight: 400;

  line-height: 1.7;

  color: rgba(255, 255, 255, 0.76);
}

/* =========================================================
   CTA
========================================================= */

.se-hero-actions {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 12px;

  margin-top: 35px;
}

/* Common button */

.se-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 14px;

  min-height: 54px;

  padding: 0 22px;

  border-radius: 4px;

  font-family: "Inter", sans-serif;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 0.6px;

  text-decoration: none;

  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

/* Primary */

.se-btn-primary {
  background: #c6b34f;

  border: 1px solid #c6b34f;

  color: #0b0d0e;
}

.se-btn-primary:hover {
  background: #e2d477;

  border-color: #e2d477;

  color: #0b0d0e;

  transform: translateY(-3px);
}

/* Outline */

.se-btn-outline {
  background: rgba(11, 13, 14, 0.2);

  border: 1px solid rgba(255, 255, 255, 0.45);

  color: #ffffff;

  backdrop-filter: blur(8px);
}

.se-btn-outline:hover {
  background: #ffffff;

  border-color: #ffffff;

  color: #0b0d0e;

  transform: translateY(-3px);
}

/* Arrow */

.se-btn-arrow {
  font-size: 16px;

  line-height: 1;

  transition: transform 0.3s ease;
}

.se-btn:hover .se-btn-arrow {
  transform: translate(3px, -3px);
}

/* =========================================================
   HERO CONTROLS
========================================================= */

.se-hero-controls {
  position: absolute;

  right: 0;

  bottom: 65px;

  display: flex;

  align-items: center;

  gap: 35px;
}

/* =========================================================
   COUNTER
========================================================= */

.se-hero-counter {
  display: flex;

  align-items: center;

  gap: 12px;

  font-family: "Inter", sans-serif;

  font-size: 11px;

  font-weight: 600;

  letter-spacing: 1px;

  color: rgba(255, 255, 255, 0.65);
}

.se-hero-counter .current-slide {
  color: #e2d477;

  font-size: 14px;
}

.counter-line {
  width: 55px;

  height: 1px;

  background: rgba(255, 255, 255, 0.35);
}

/* =========================================================
   NAVIGATION
========================================================= */

.se-hero-navigation {
  display: flex;

  gap: 7px;
}

.se-hero-navigation button {
  width: 48px;

  height: 48px;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.3);

  border-radius: 50%;

  background: rgba(11, 13, 14, 0.25);

  color: #ffffff;

  font-size: 18px;

  cursor: pointer;

  backdrop-filter: blur(8px);

  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.se-hero-navigation button:hover {
  background: #c6b34f;

  border-color: #c6b34f;

  color: #0b0d0e;

  transform: scale(1.05);
}

/* =========================================================
   SCROLL INDICATOR
========================================================= */

.se-scroll-indicator {
  position: absolute;

  left: 0;

  bottom: 65px;

  display: flex;

  align-items: center;

  gap: 12px;

  font-family: "Inter", sans-serif;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 2px;

  color: rgba(255, 255, 255, 0.55);
}

.scroll-arrow {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 27px;

  height: 27px;

  border: 1px solid rgba(198, 179, 79, 0.45);

  border-radius: 50%;

  color: #e2d477;

  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

/* =========================================================
   SLIDE TRANSITION
========================================================= */

.se-hero-swiper .swiper-slide {
  overflow: hidden;
}

.se-hero-swiper .swiper-slide-active .se-hero-image {
  animation: heroImageZoom 7s cubic-bezier(0.2, 0.6, 0.2, 1) forwards;
}

@keyframes heroImageZoom {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1.1);
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {
  .se-hero {
    min-height: 700px;
  }

  .se-hero-content {
    width: 85%;
  }

  .se-hero-title {
    font-size: clamp(42px, 7vw, 65px);

    letter-spacing: -2px;
  }

  .se-hero-controls {
    right: 15px;

    bottom: 35px;
  }

  .se-scroll-indicator {
    left: 15px;

    bottom: 35px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {
  .se-hero {
    height: 100svh;

    min-height: 680px;
  }

  .se-hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(11, 13, 14, 0.94) 0%,
        rgba(11, 13, 14, 0.75) 100%
      ),
      linear-gradient(0deg, rgba(11, 13, 14, 0.85) 0%, transparent 60%);
  }

  .se-hero-container {
    justify-content: center;
  }

  .se-hero-content {
    width: 100%;

    padding-top: 20px;
  }

  .se-hero-eyebrow {
    margin-bottom: 20px;

    font-size: 9px;

    line-height: 1.5;

    letter-spacing: 1px;
  }

  .se-hero-line {
    width: 25px;
  }

  .se-hero-title {
    font-size: clamp(39px, 11vw, 52px);

    line-height: 1.02;

    letter-spacing: -1.8px;
  }

  .se-hero-description {
    margin-top: 22px;

    font-size: 14px;

    line-height: 1.65;
  }

  .se-hero-actions {
    align-items: stretch;

    flex-direction: column;

    margin-top: 28px;
  }

  .se-btn {
    width: 100%;

    min-height: 51px;
  }

  .se-hero-controls {
    left: 15px;

    right: 15px;

    bottom: 27px;

    justify-content: space-between;
  }

  .se-hero-navigation button {
    width: 42px;

    height: 42px;
  }

  .se-hero-counter {
    order: 2;
  }

  .se-hero-navigation {
    order: 1;
  }

  .se-scroll-indicator {
    display: none;
  }
}

/* =========================================================
   SOLAR PROJECT CTA — LIGHT THEME
========================================================= */

.solar-cta {

  position: relative;

  padding: 100px 0 30px;

  background: #F7F6EF;

  color: #0B0D0E;

  overflow: hidden;

  isolation: isolate;
}


/* =========================================================
   SUBTLE GOLD GLOW
========================================================= */

.solar-cta-glow {

  position: absolute;

  width: 650px;
  height: 650px;

  right: -280px;
  top: -280px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(198, 179, 79, 0.16) 0%,
      rgba(198, 179, 79, 0.07) 35%,
      transparent 70%
    );

  pointer-events: none;

  z-index: -1;
}


/* =========================================================
   SUBTLE GRID
========================================================= */

.solar-cta-grid {

  position: absolute;

  inset: 0;

  z-index: -1;

  opacity: 0.35;

  background-image:
    linear-gradient(
      rgba(11, 13, 14, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(11, 13, 14, 0.035) 1px,
      transparent 1px
    );

  background-size: 70px 70px;

  mask-image:
    linear-gradient(
      to right,
      transparent,
      black 40%,
      transparent
    );
}


/* =========================================================
   MAIN WRAPPER
========================================================= */

.solar-cta-wrapper {

  display: grid;

  grid-template-columns:
    minmax(0, 1.6fr)
    minmax(300px, 0.7fr);

  gap: 100px;

  align-items: center;

  padding: 65px 70px;

  background: #FFFFFF;

  border: 1px solid
    rgba(11, 13, 14, 0.07);

  border-radius: 20px;

  box-shadow:
    0 20px 60px
    rgba(11, 13, 14, 0.06);

}


/* =========================================================
   LABEL
========================================================= */

.solar-cta-label {

  display: inline-flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 20px;

  font-family: "Inter", sans-serif;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 2.5px;

  color: #75682C;
}


.solar-cta-label::before {

  content: "";

  width: 35px;
  height: 1px;

  background: #C6B34F;
}


/* =========================================================
   HEADING
========================================================= */

.solar-cta-content h2 {

  max-width: 800px;

  margin: 0;

  font-family: "Sora", sans-serif;

  font-size: clamp(
    38px,
    5vw,
    65px
  );

  font-weight: 600;

  line-height: 1.04;

  letter-spacing: -2.5px;

  color: #0B0D0E;
}


.solar-cta-content h2 span {

  display: block;

  color: #C6B34F;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.solar-cta-description {

  max-width: 720px;

  margin: 28px 0 0;

  font-family: "Inter", sans-serif;

  font-size: 15px;

  font-weight: 400;

  line-height: 1.75;

  color: #5A5C60;
}


.solar-cta-description + .solar-cta-description {

  margin-top: 15px;
}


/* =========================================================
   ACTIONS
========================================================= */

.solar-cta-actions {

  display: flex;

  flex-direction: column;

  gap: 10px;
}


.solar-cta-action-intro {

  margin-bottom: 8px;

  font-family: "Inter", sans-serif;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 2px;

  color: #85878A;
}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.solar-cta-primary {

  min-height: 62px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  padding: 0 20px;

  background: #C6B34F;

  border: 1px solid #C6B34F;

  border-radius: 5px;

  font-family: "Inter", sans-serif;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 0.5px;

  color: #0B0D0E;

  text-decoration: none;

  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


.solar-cta-primary:hover {

  background: #E2D477;

  border-color: #E2D477;

  color: #0B0D0E;

  transform: translateY(-3px);

  box-shadow:
    0 10px 25px
    rgba(198, 179, 79, 0.20);
}


/* =========================================================
   SECONDARY BUTTON
========================================================= */

.solar-cta-secondary {

  min-height: 62px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  padding: 0 20px;

  background: #FFFFFF;

  border: 1px solid
    rgba(11, 13, 14, 0.18);

  border-radius: 5px;

  font-family: "Inter", sans-serif;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 0.5px;

  color: #303236;

  text-decoration: none;

  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}


.solar-cta-secondary:hover {

  background: #0B0D0E;

  border-color: #0B0D0E;

  color: #FFFFFF;

  transform: translateY(-3px);
}


/* =========================================================
   ARROW
========================================================= */

.solar-cta-arrow {

  display: flex;

  align-items: center;
  justify-content: center;

  width: 29px;
  height: 29px;

  border: 1px solid
    rgba(11, 13, 14, 0.20);

  border-radius: 50%;

  font-size: 15px;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}


.solar-cta-secondary .solar-cta-arrow {

  border-color:
    rgba(11, 13, 14, 0.18);
}


.solar-cta-secondary:hover .solar-cta-arrow {

  border-color:
    rgba(255, 255, 255, 0.30);
}


.solar-cta-primary:hover .solar-cta-arrow,
.solar-cta-secondary:hover .solar-cta-arrow {

  transform:
    translate(3px, -3px);
}


/* =========================================================
   BOTTOM BRAND LINE
========================================================= */

.solar-cta-bottom {

  display: flex;

  align-items: center;

  gap: 15px;

  padding-top: 22px;

  font-family: "Inter", sans-serif;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 2px;

  color: #929498;
}


.solar-cta-line {

  width: 50px;

  height: 1px;

  background: #C6B34F;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .solar-cta {

    padding: 80px 0 30px;
  }


  .solar-cta-wrapper {

    grid-template-columns: 1fr;

    gap: 45px;

    padding: 55px 50px;
  }


  .solar-cta-content h2 {

    max-width: 700px;
  }


  .solar-cta-description {

    max-width: 750px;
  }


  .solar-cta-actions {

    max-width: 500px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

  .solar-cta {

    padding: 60px 0 25px;
  }


  .solar-cta-glow {

    width: 400px;
    height: 400px;

    right: -220px;
    top: -160px;
  }


  .solar-cta-wrapper {

    gap: 35px;

    padding: 40px 24px;

    border-radius: 15px;
  }


  .solar-cta-label {

    font-size: 9px;

    letter-spacing: 2px;
  }


  .solar-cta-label::before {

    width: 25px;
  }


  .solar-cta-content h2 {

    font-size: 35px;

    letter-spacing: -1.5px;

    line-height: 1.06;
  }


  .solar-cta-description {

    margin-top: 20px;

    font-size: 14px;

    line-height: 1.7;
  }


  .solar-cta-description + .solar-cta-description {

    margin-top: 14px;
  }


  .solar-cta-actions {

    max-width: none;
  }


  .solar-cta-primary,
  .solar-cta-secondary {

    min-height: 55px;

    padding: 0 16px;

    font-size: 11px;
  }


  .solar-cta-arrow {

    width: 27px;
    height: 27px;

    font-size: 13px;
  }


  .solar-cta-bottom {

    padding-top: 18px;

    font-size: 8px;
  }

}
