/* HERO SECTION */
.index-main {
  position: relative;
  text-align: center;
  height: 69vh;
  overflow: hidden;
  --bg-image: url("../images/gasstation1.webp");
}

.index-main::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  animation: zoomEffect 20s ease-in-out infinite;
  transition: background-image 1s ease-in-out;
  filter: brightness(0.8);
}

.index-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(148, 25, 25, 0.97) 0%, rgba(4, 21, 98, 0.92) 40%, rgba(4, 21, 98, 0.80) 80%);
  z-index: 1;
  pointer-events: none;
}

.main-intro,
.index-main-link {
  position: absolute;
  z-index: 2;
}

.main-intro {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
  text-align: center;
}

.main-intro h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 18rem;
  color: var(--text-white);
  margin: 0;
  white-space: nowrap;
}

.index-main-link {
  position: absolute;
  top: 50%;
  transform: translateY(-20%);
  z-index: 3;
}

.index-main-link h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 6rem;
  color: #ff2e2e;
  margin: 0;
  white-space: nowrap;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 2s ease-out, opacity 2s ease-out;
  line-height: 1.2;
  text-align: left;
  padding-left: 20px;
  display: inline-block;
}


@keyframes slideUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.index-main-link h2.animate-text {
  animation: slideUp 2s ease-out forwards;
}

@keyframes zoomEffect {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}


/* WE-ARE SECTION */
.we-are {
  background: var(--bg-gray);
  padding: 80px 0;
}

.we-are-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.we-are-image {
  flex: 0 0 50%;
}

.we-are-image img {
  width: 100%;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  aspect-ratio:4/3;
  background:#111;
}

.we-are-content {
  flex: 0 0 50%;
}

.we-are-content h2 {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  color: var(--text);
}

.we-are-content p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 24px;
}

.we-are-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.we-are-list li {
  font-family: var(--font-body);
  font-size: 16px;
  margin-bottom: 12px;
  padding-left: 22px;
  position: relative;
  color: var(--text);
}

.we-are-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 22px;
  color: var(--brand-600);
  line-height: 18px;
}

/* Hero Mobile Responsive */
@media (max-width: 900px) {
  .index-main {
    height: 60vh;
  }
  
  .main-intro h1 {
    font-size: 10rem;
  }
  
  .index-main-link h2 {
    font-size: 4rem;
  }
}

@media (max-width: 600px) {
  .index-main {
    height: 50vh;
  }
  
  .main-intro {
    top: 25%;
  }
  
  .main-intro h1 {
    font-size: 6rem;
  }
  
  .index-main-link h2 {
    font-size: 2.8rem;
    padding-left: 10px;
  }
}

@media (max-width: 400px) {
  .main-intro h1 {
    font-size: 5rem;
  }
  
  .index-main-link h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 900px) {
  .we-are-inner {
    flex-direction: column;
    gap: 32px;
  }

  .we-are-image,
  .we-are-content {
    flex: 1;
  }

  .we-are-content h2 {
    font-size: 22px;
  }
}

/* SERVICE SECTION */
.service-partner {
  background: var(--bg-gray);
  padding: 80px 0;
}

.service-partner-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.service-partner h2 {
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  color: var(--text);
}

.service-partner-intro {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}

.service-partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-partner-card {
  background: var(--surface);
  padding: 32px 28px;
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.service-partner-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.service-partner-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}

@media (max-width: 900px) {
  .service-partner-grid {
    grid-template-columns: 1fr;
  }

  .service-partner-card {
    text-align: center;
  }
}

/* Service Area Section */
.service-map {
  background: var(--bg-gray);
  padding: 80px 0;
}

.service-map-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.service-map-image {
  flex: 0 0 60%;
}

.service-map-image img {
  width: 100%;
  max-width: 760px;
  display: block;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  aspect-ratio:4/3;
  background:#111;
}

.service-map-content {
  flex: 0 0 40%;
  max-width: 420px;
}

.service-map-content h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  line-height: 1.3;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color:var(--text);
  margin: 0 0 32px;
}

.service-map-btn {
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  border: 2px solid var(--brand-600);
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-600);
}

.service-map-btn span {
  white-space: nowrap;
}

.service-map-btn:hover {
  background: var(--brand);
  color: var(--text-white);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .service-map-inner {
    flex-direction: column;
    padding: 0 20px;
    gap: 32px;
  }

  .service-map-image,
  .service-map-content {
    flex: 1 1 auto;
    max-width: 100%;
  }

  .service-map-content h2 {
    font-size: 20px;
  }
}

/* Industry Providers */
.providers-section {
  background: var(--bg-gray);
  padding: 80px 0;
  text-align: center;
}

.providers-section h2 {
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
  color: var(--text);
}

.providers-scroll {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

.providers-track {
  display: flex;
  gap: 40px;
  animation: providerScroll 40s linear infinite;
  will-change: transform;
}

.provider-card {
  background: var(--surface);
  width: 210px;
  height: 210px;
  min-width: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}

.provider-card img {
  max-width: 75%;
  max-height: 75%;
  object-fit: contain;
}

@keyframes providerScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

@media (max-width: 700px) {
  .provider-card {
    width: 150px;
    height: 150px;
    min-width: 150px;
  }
}

/* ABOUT */
.index-about {
  width: 100%;
  padding: 80px 0;
  background: var(--bg-gray);
}

.index-about-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 60px;
  row-gap: 40px;
  flex-wrap: nowrap;
}

.index-about-image {
  flex: 0 0 40%;
}

.index-about-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.index-about-text {
  flex: 1;
  max-width: 540px;
  color: var(--text);
}

.index-about-text h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  color: var(--text);
}

.index-about-text p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 14px;
}

.index-about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 36px;
  margin: 22px 0 28px;
}

.index-about-highlight {
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.highlight-number {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-600);
}

.highlight-label {
  font-size: 13px;
  color: var(--text);
}

.index-about-text a {
  font-size: 1.4rem;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  background-color: var(--brand);
  padding: 0 18px;
  color: var(--text-white);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.index-about-text a:hover {
  background-color: var(--brand-600);
}

@media (max-width: 900px) {
  .index-about {
    padding: 60px 0;
  }

  .index-about-flex {
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .index-about-image {
    flex: 1;
    width: 100%;
  }

  .index-about-image img {
    max-width: 420px;
  }

  .index-about-text {
    max-width: 100%;
  }

  .index-about-highlights {
    gap: 12px 20px;
  }
}
