:root {
  --primary-corporate: #f2a63d; /* Golden Orange */
  --secondary-corporate: #e09530; /* Slightly darker for hover */
  --accent-highlight: #f2a63d; /* Consistent with primary */
  --dark-bg: #222;
  --darker-bg: #1a1a1a;
  --text-light: #ccc;
  --text-dark: #333;
  --white: #fff;
  --light-gray: #f8f9fa; /* Bootstrap's light background */
}

body {
  scroll-behavior: smooth;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: var(--primary-corporate);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-corporate);
}

/* Selection */
::selection {
  color: var(--white);
  background-color: var(--primary-corporate);
}

/* Buttons */
.btn-primary-corporate {
  background-color: var(--primary-corporate);
  border-color: var(--primary-corporate);
  color: white;
  transition: background-color 0.3s ease, border-color 0.3s ease,
    transform 0.2s ease;
}
.btn-primary-corporate:hover {
  background-color: var(--secondary-corporate);
  border-color: var(--secondary-corporate);
  color: white;
  transform: translateY(-2px);
}

.btn-outline-light {
  border-color: white;
  color: white;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  /* background-image is set inline in HTML to preserve original URL */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    0,
    0,
    0,
    0.75
  ); /* Darker overlay for better text readability */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4rem; /* Slightly adjusted for corporate feel */
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

/* Section Titles */
.section-title {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333333; /* Use corporate color for titles */
  font-size: 2.8rem;
}

.section-subtitle {
  color: #555;
  font-size: 1.15rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Service Cards */
.service-card {
  transition: all 0.3s ease;
  border: none;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}
.service-icon i {
  font-size: 3.5rem;
  color: var(--primary-corporate); /* Corporate color for icons */
}

/* Feature Images */
.feature-image {
  border-radius: 1rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Tariff Section */
#tariffs .table {
  font-size: 1.05rem;
}
#tariffs .table thead th {
  border-bottom: 2px solid var(--primary-corporate);
  color: var(--primary-corporate);
  font-weight: 600;
}
#tariffs .table tbody tr:hover {
  background-color: var(--light-gray);
}
#tariffs .table-info {
  background-color: rgba(
    242,
    166,
    61,
    0.05
  ) !important; /* Light tint of corporate color */
  font-weight: 500;
}

/* Contact Section */
.contact-section {
  background-color: black; /* Solid corporate color background */
  color: white;
  position: relative;
  z-index: 0;
  /* background-image is set inline in HTML to preserve original URL */
  background-size: cover;
  background-position: center;
}
.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Dark overlay */
  z-index: -1;
}

/* Footer */
.footer-section {
  background-color: var(--darker-bg);
  color: var(--text-light);
}
.footer-section a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-section a:hover {
  color: var(
    --accent-highlight
  ) !important; /* Use accent color for footer link hover */
  text-decoration: underline;
}
.footer-section i {
  transition: color 0.3s ease;
}
.footer-section i:hover {
  color: var(
    --accent-highlight
  ) !important; /* Use accent color for footer icon hover */
}

/* Insights Cards */
.hover-shadow {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  border-radius: 1rem;
}
.hover-shadow:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
.hover-shadow .border-start {
  border-color: var(
    --primary-corporate
  ) !important; /* Corporate color border */
}
.hover-shadow a {
  color: var(--primary-corporate) !important; /* Corporate color for links */
}

/* Animate.css delays for staggered animations */
.animate__delay-0-5s {
  animation-delay: 0.5s;
}
.animate__delay-0-7s {
  animation-delay: 0.7s;
}
.animate__delay-0-9s {
  animation-delay: 0.9s;
}
.animate__delay-1s {
  animation-delay: 1s;
}
.animate__delay-1-1s {
  animation-delay: 1.1s;
}
.animate__delay-1-3s {
  animation-delay: 1.3s;
}
.animate__delay-1-5s {
  animation-delay: 1.5s;
}

@media screen and (max-width: 768px) {
  .isMobile {
    padding-inline: 30px;
    margin-inline: 30px;
  }
  .hero-title {
    font-size: 2rem;
  }
}
