@import url("./index.css");


/* =========================================
   GO ENERGY - VISITOR BENEFITS SECTION
========================================= */

.visitor-benefits-section {
  position: relative;
  overflow: hidden;
  padding: 90px 6%;
  background:
    radial-gradient(
      circle at top right,
      rgba(229, 132, 38, 0.1),
      transparent 35%
    ),
    #f7f5f1;
}

.visitor-benefits-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 6%;
  width: 90px;
  height: 4px;
  background: #e58426;
}

.visitor-benefits-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.visitor-benefits-heading {
  max-width: 820px;
  margin-bottom: 48px;
}

.visitor-benefits-label {
  display: inline-block;
  margin-bottom: 15px;
  color: #e58426;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.visitor-benefits-heading h2 {
  max-width: 780px;
  margin: 0 0 20px;
  color: #182b3f;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.visitor-benefits-heading p {
  max-width: 760px;
  margin: 0;
  color: #5f6872;
  font-size: 17px;
  line-height: 1.8;
}

.visitor-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.visitor-benefit-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  min-height: 250px;
  padding: 34px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(24, 43, 63, 0.1);
  border-radius: 4px;
  box-shadow: 0 14px 40px rgba(24, 43, 63, 0.06);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.visitor-benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #e58426;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.visitor-benefit-card::after {
  content: "";
  position: absolute;
  right: -65px;
  bottom: -65px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(229, 132, 38, 0.15);
  border-radius: 50%;
  transition: transform 0.4s ease;
}

.visitor-benefit-card:hover {
  transform: translateY(-7px);
  border-color: rgba(229, 132, 38, 0.4);
  box-shadow: 0 22px 50px rgba(24, 43, 63, 0.12);
}

.visitor-benefit-card:hover::before {
  transform: scaleY(1);
}

.visitor-benefit-card:hover::after {
  transform: scale(1.2);
}

.visitor-benefit-number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: #ffffff;
  background: #182b3f;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.visitor-benefit-card:hover .visitor-benefit-number {
  background: #e58426;
  transform: rotate(-8deg);
}

.visitor-benefit-content {
  position: relative;
  z-index: 1;
}

.visitor-benefit-content h3 {
  margin: 4px 0 15px;
  color: #182b3f;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.25;
}

.visitor-benefit-content p {
  margin: 0;
  color: #68717a;
  font-size: 15.5px;
  line-height: 1.75;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {
  .visitor-benefits-section {
    padding: 75px 5%;
  }

  .visitor-benefits-grid {
    grid-template-columns: 1fr;
  }

  .visitor-benefit-card {
    min-height: auto;
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {
  .visitor-benefits-section {
    padding: 60px 20px;
  }

  .visitor-benefits-heading {
    margin-bottom: 34px;
  }

  .visitor-benefits-heading h2 {
    font-size: 34px;
    letter-spacing: -0.8px;
  }

  .visitor-benefits-heading p {
    font-size: 15.5px;
    line-height: 1.7;
  }

  .visitor-benefits-grid {
    gap: 18px;
  }

  .visitor-benefit-card {
    flex-direction: column;
    gap: 18px;
    padding: 27px 24px;
  }

  .visitor-benefit-number {
    width: 50px;
    height: 50px;
  }

  .visitor-benefit-content h3 {
    font-size: 21px;
  }

  .visitor-benefit-content p {
    font-size: 15px;
  }
}


/* =========================================
   GO ENERGY — TARGET VISITORS
========================================= */

.energy-audience-section {
  position: relative;
  overflow: hidden;
  padding: 72px 6%;
  background: #182b3f;
}

.energy-audience-section::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -100px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.energy-audience-section::after {
  content: "";
  position: absolute;
  right: 70px;
  bottom: -190px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(229, 132, 38, 0.18);
  border-radius: 50%;
}

.energy-audience-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 70px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.energy-audience-intro {
  max-width: 580px;
}

.energy-audience-eyebrow {
  display: inline-block;
  margin-bottom: 15px;
  color: #e58426;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.energy-audience-intro h2 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.3px;
}

.energy-audience-intro p {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.8;
}

.energy-audience-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
}

.energy-audience-tags span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 14px 22px 14px 46px;
  overflow: hidden;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.energy-audience-tags span::before {
  content: "";
  position: absolute;
  left: 21px;
  width: 8px;
  height: 8px;
  background: #e58426;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(229, 132, 38, 0.13);
}

.energy-audience-tags span:hover {
  transform: translateY(-4px);
  background: rgba(229, 132, 38, 0.13);
  border-color: rgba(229, 132, 38, 0.55);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {
  .energy-audience-section {
    padding: 70px 5%;
  }

  .energy-audience-container {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .energy-audience-intro {
    max-width: 720px;
  }

  .energy-audience-intro p {
    max-width: 680px;
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {
  .energy-audience-section {
    padding: 58px 20px;
  }

  .energy-audience-container {
    gap: 32px;
  }

  .energy-audience-intro h2 {
    font-size: 34px;
    letter-spacing: -0.7px;
  }

  .energy-audience-intro p {
    font-size: 15px;
    line-height: 1.7;
  }

  .energy-audience-tags {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .energy-audience-tags span {
    width: 100%;
    min-height: 50px;
    padding: 13px 20px 13px 44px;
  }

  .energy-audience-tags span::before {
    left: 19px;
  }
}



/* =========================================
   GO ENERGY — VISITOR BENEFITS
========================================= */

.visitor-benefits-section {
  position: relative;
  overflow: hidden;
  padding: 90px 6%;
  background:
    radial-gradient(
      circle at top right,
      rgba(229, 132, 38, 0.1),
      transparent 34%
    ),
    #f6f4ef;
}

.visitor-benefits-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 6%;
  width: 100px;
  height: 4px;
  background: #e58426;
}

.visitor-benefits-section::after {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(24, 43, 63, 0.07);
  border-radius: 50%;
}

.visitor-benefits-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}


/* =========================================
   SECTION HEADER
========================================= */

.visitor-benefits-header {
  max-width: 820px;
  margin-bottom: 48px;
}

.visitor-benefits-eyebrow {
  display: inline-block;
  margin-bottom: 15px;
  color: #e58426;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.visitor-benefits-header h2 {
  max-width: 760px;
  margin: 0 0 20px;
  color: #182b3f;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.5px;
}

.visitor-benefits-header p {
  max-width: 780px;
  margin: 0;
  color: #626c76;
  font-size: 16px;
  line-height: 1.8;
}


/* =========================================
   THREE-CARD ROW
========================================= */

.visitor-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}


/* =========================================
   BENEFIT CARD
========================================= */

.visitor-benefit-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-height: 215px;
  padding: 30px 27px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(24, 43, 63, 0.1);
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(24, 43, 63, 0.06);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.visitor-benefit-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: #e58426;
  transition: width 0.35s ease;
}

.visitor-benefit-card::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 125px;
  height: 125px;
  border: 1px solid rgba(229, 132, 38, 0.14);
  border-radius: 50%;
  transition: transform 0.35s ease;
}

.visitor-benefit-card:hover {
  transform: translateY(-7px);
  border-color: rgba(229, 132, 38, 0.42);
  box-shadow: 0 20px 44px rgba(24, 43, 63, 0.11);
}

.visitor-benefit-card:hover::before {
  width: 100%;
}

.visitor-benefit-card:hover::after {
  transform: scale(1.18);
}



/* =========================================
   GO ENERGY — VISITOR BENEFITS
========================================= */

.visitor-benefits-section {
  position: relative;
  overflow: hidden;
  padding: 90px 6%;
  background:
    radial-gradient(
      circle at top right,
      rgba(229, 132, 38, 0.1),
      transparent 34%
    ),
    #f6f4ef;
}

.visitor-benefits-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 6%;
  width: 100px;
  height: 4px;
  background: #e58426;
}

.visitor-benefits-section::after {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(24, 43, 63, 0.07);
  border-radius: 50%;
}

.visitor-benefits-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}


/* =========================================
   SECTION HEADER
========================================= */

.visitor-benefits-header {
  max-width: 820px;
  margin-bottom: 48px;
}

.visitor-benefits-eyebrow {
  display: inline-block;
  margin-bottom: 15px;
  color: #e58426;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.visitor-benefits-header h2 {
  max-width: 760px;
  margin: 0 0 20px;
  color: #182b3f;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.5px;
}

.visitor-benefits-header p {
  max-width: 780px;
  margin: 0;
  color: #626c76;
  font-size: 16px;
  line-height: 1.8;
}


/* =========================================
   THREE-CARD ROW
========================================= */

.visitor-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}


/* =========================================
   BENEFIT CARD
========================================= */

.visitor-benefit-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-height: 215px;
  padding: 30px 27px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(24, 43, 63, 0.1);
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(24, 43, 63, 0.06);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.visitor-benefit-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: #e58426;
  transition: width 0.35s ease;
}

.visitor-benefit-card::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 125px;
  height: 125px;
  border: 1px solid rgba(229, 132, 38, 0.14);
  border-radius: 50%;
  transition: transform 0.35s ease;
}

.visitor-benefit-card:hover {
  transform: translateY(-7px);
  border-color: rgba(229, 132, 38, 0.42);
  box-shadow: 0 20px 44px rgba(24, 43, 63, 0.11);
}

.visitor-benefit-card:hover::before {
  width: 100%;
}

.visitor-benefit-card:hover::after {
  transform: scale(1.18);
}


/* =========================================
   CARD NUMBER
========================================= */

.visitor-benefit-number {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: #ffffff;
  background: #182b3f;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.visitor-benefit-card:hover .visitor-benefit-number {
  background: #e58426;
  transform: rotate(-8deg);
}


/* =========================================
   CARD CONTENT
========================================= */

.visitor-benefit-content {
  position: relative;
  z-index: 1;
}

.visitor-benefit-content h3 {
  margin: 2px 0 11px;
  color: #182b3f;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
}

.visitor-benefit-content p {
  margin: 0;
  color: #69737d;
  font-size: 14px;
  line-height: 1.7;
}


/* Center the final two cards on desktop */

.visitor-benefit-card:nth-child(7) {
  grid-column: 1 / 2;
  transform: translateX(52%);
}

.visitor-benefit-card:nth-child(8) {
  grid-column: 2 / 3;
  transform: translateX(52%);
}

.visitor-benefit-card:nth-child(7):hover,
.visitor-benefit-card:nth-child(8):hover {
  transform: translateX(52%) translateY(-7px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {
  .visitor-benefits-section {
    padding: 75px 5%;
  }

  .visitor-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visitor-benefit-card {
    min-height: 195px;
  }

  .visitor-benefit-card:nth-child(7),
  .visitor-benefit-card:nth-child(8) {
    grid-column: auto;
    transform: none;
  }

  .visitor-benefit-card:nth-child(7):hover,
  .visitor-benefit-card:nth-child(8):hover {
    transform: translateY(-7px);
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {
  .visitor-benefits-section {
    padding: 60px 20px;
  }

  .visitor-benefits-header {
    margin-bottom: 34px;
  }

  .visitor-benefits-header h2 {
    font-size: 34px;
    letter-spacing: -0.8px;
  }

  .visitor-benefits-header p {
    font-size: 15px;
    line-height: 1.7;
  }

  .visitor-benefits-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .visitor-benefit-card {
    min-height: auto;
    padding: 24px 21px;
  }

  .visitor-benefit-number {
    width: 42px;
    height: 42px;
  }

  .visitor-benefit-content h3 {
    font-size: 18px;
  }
}