.flip-gas-section {
  max-width: 1170px;
  margin: 60px auto;
  text-align: center;
  padding: 0 15px;
}

.flip-gas-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #2b2d42;
  margin-bottom: 40px;
}

.flip-gas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.flip-gas-card {
  flex: 1 1 calc(25% - 30px);
  perspective: 1000px;
  height: 260px;
}

.flip-gas-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.flip-gas-card:hover .flip-gas-card-inner {
  transform: rotateY(180deg);
}

.flip-gas-front, .flip-gas-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f9fafb, #eef1f5);
  padding: 20px;
}

.flip-gas-front img {
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 50%;
  padding: 6px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

.flip-gas-front .title {
  font-size: 16px;
  font-weight: 600;
  color: #2b2d42;
}

.flip-gas-back {
  transform: rotateY(180deg);
  background: #ffffff;
  color: #2b2d42;
  padding: 25px;
  box-shadow: inset 0 0 15px rgba(0,0,0,0.05);
}

.flip-gas-back .text {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.flip-gas-back a {
  display: inline-block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  background-color: #2b2d42;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.flip-gas-back a:hover {
  color:#fff;
  background-color: #1f2333;
}

@media (max-width: 992px) {
  .flip-gas-card {
    flex: 1 1 calc(50% - 30px);
  }
}

@media (max-width: 576px) {
  .flip-gas-card {
    flex: 1 1 100%;
  }
}
.styled-gas-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-family: 'Segoe UI', sans-serif;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
  }

  .styled-gas-table th {
    background: #2b2d42;
    color: #fff;
    padding: 16px;
    text-align: left;
    font-size: 16px;
  }

  .styled-gas-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #e5e5e5;
    vertical-align: middle;
  }

  .styled-gas-table tr:nth-child(even) td {
    background: #f8f9fb;
  }

  .styled-gas-table td:first-child a {
    font-weight: 600;
    color: #007bff;
    text-decoration: none;
  }

  .styled-gas-table td:first-child a:hover {
    text-decoration: underline;
  }

  .styled-gas-table .action-btn {
    background: #1a73e8;
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s ease;
    display: inline-block;
    margin-left: 8px;
  }

  .styled-gas-table .action-btn:hover {
    background: #0f5bdc;
  }
.hero-fullscreen.gas-page-hero {
  padding: 60px 20px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.hero-fullscreen .hero-title {
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.hero-fullscreen.gas-page-hero p {
  font-size: 18px;
  color: #444;
  max-width: 800px;
  margin: 0 auto 28px;
}

.hero-fullscreen .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.hero-fullscreen .hero-buttons a {
  display: inline-block;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  min-width: 160px;
  text-align: center;
}

.hero-fullscreen .hero-buttons a:not(.secondary):not(.whatsapp):not(.call) {
  background: #0066ff;
  color: #fff;
}

.hero-fullscreen .hero-buttons .secondary {
    background: transparent !important;
    border: 2px solid #ffffff;
    color: #ffffff !important;
}

.hero-fullscreen .hero-buttons .secondary:hover {
  background: #eaf2ff;
}

.hero-fullscreen .hero-buttons .whatsapp {
  background: #25d366;
  color: white;
}

.hero-fullscreen .hero-buttons .whatsapp:hover {
  background: #1ebe57;
}

.hero-fullscreen .hero-buttons .call {
  background: #0066ff;
  color: white;
}

.hero-fullscreen .hero-buttons .call:hover {
  background: #e8683e;
}

@media (max-width: 768px) {
  .hero-fullscreen .hero-title {
    font-size: 24px;
  }
  .hero-fullscreen.gas-page-hero p {
    font-size: 16px;
  }
  .hero-fullscreen .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}














