/* ========================================
   MAKOIL GROUP - DESIGN SYSTEM
   ======================================== */

/* CSS Variables */
:root {
  --color-primary: #d32f2f;
  --color-primary-dark: #b71c1c;
  --color-primary-light: #ef5350;
  --color-bg: #ffffff;
  --color-bg-light: #f5f5f5;
  --color-bg-gray: #e8e8e8;
  --color-text: #1a1a1a;
  --color-text-secondary: #666666;
  --color-text-muted: #888888;
  --color-border: #e0e0e0;
  --color-topbar: #1a1a1a;
  --color-navy: #1a2a4a;
  --color-coral: #e85a4f;
  --color-coral-light: #ff7b6f;

  --font-heading: "Bricolage Grotesque", sans-serif;
  --font-body: "Bricolage Grotesque", sans-serif;

  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.section-title.center {
  text-align: center;
}

.section-subtitle {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--color-text-secondary);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

/* Buttons */
.quote-form button[type="submit"] {
  background-color: #000000;
  color: #ffffff;
  width: 100%;
  border-radius: 50px;
}

.quote-form button[type="submit"]:hover {
  background-color: #333333;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  background-color: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-medium);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(211, 47, 47, 0.3);
}

/* Request Quote Button - Pill shape with red bg */
.btn-request-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  background-color: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-medium);
}

.btn-request-quote:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(211, 47, 47, 0.3);
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.text-link:hover {
  color: var(--color-primary);
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
  background-color: var(--color-topbar);
  padding: 10px 0;
}

.top-bar-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4vw;
  display: flex;
  justify-content: flex-end;
  gap: 32px;
}

.top-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 13px;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.top-link:hover {
  opacity: 0.8;
}

.top-link svg {
  flex-shrink: 0;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: sticky;
  top: 0;
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 4vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: 1px;
  line-height: 1;
}

.logo-sub {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 2px;
  line-height: 1;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
}

.dropdown {
  position: relative;
}

.dropdown-arrow {
  font-size: 10px;
  margin-left: 4px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  transition: all var(--transition-fast);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-link {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.mobile-link:hover {
  color: var(--color-primary);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: visible;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4vw;
}

.hero-content {
  max-width: 600px;
  padding-right: 4vw;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-title {
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  line-height: 1.5;
}

/* ========================================
   FLEET SECTION (with overlapping cards)
   ======================================== */
.fleet-section {
  position: relative;
  background-color: var(--color-bg-light);
  padding-bottom: 80px;
  overflow: visible;
}

/* Geometric Shapes */
.geo-shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.geo-top-left {
  top: 67px;
  left: calc(calc(100vw / 2) - 800px);

  z-index: 3;

  &:before {
    content: "";
    display: inline-block;
    height: 75px;
    border: 1px solid #d2242a;
    width: 30vw;
    z-index: 0;
    top: -1px;
    left: -30vw;
    position: absolute;
    background-color: #d2242a;
  }
}

.geo-top-left img {
  width: 280px;
  height: auto;
  display: block;
}

.geo-bottom-right {
  bottom: 20px;
  right: calc(calc(100vw / 2) - 800px);

  &:after {
    content: "";
    display: inline-block;
    height: 85px;

    width: 30vw;
    z-index: 0;
    bottom: -1px;
    right: -30vw;
    position: absolute;
    background-color: #d2242a;
  }
}

.geo-bottom-right img {
  width: 320px;
  height: auto;
  display: block;
}

/* Feature Cards (overlapping hero) */
.feature-cards-container {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: -80px;
}

.feature-card {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-medium);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  color: var(--color-primary);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
}

/* Fleet Content */
.fleet-content-wrapper {
  position: relative;
  z-index: 5;
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 4vw 0;
}

.fleet-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  align-items: start;
}

.fleet-text {
  padding-top: 20px;
}

.fleet-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.fleet-card {
  background-color: var(--color-bg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-medium);
}

.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.fleet-card-image {
  height: 180px;
  overflow: hidden;
}

.fleet-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.fleet-card:hover .fleet-card-image img {
  transform: scale(1.05);
}

.fleet-card-content {
  padding: 20px;
}

.fleet-card-content h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 10px;
}

.fleet-card-content p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

/* ========================================
   SERVICES HEADER
   ======================================== */
.services-header {
  padding: 80px 0 40px;
  background-color: var(--color-bg);
}

.services-header-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
  padding: 40px 4vw 80px;
  background-color: var(--color-bg);
}

.services-container {
  max-width: 1400px;
  padding-left: 4vw;
  padding-right: 4vw;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition-medium);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.service-image {
  overflow: hidden;
  aspect-ratio: 410 / 364;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 24px;
}

.service-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 12px;
}

.service-content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

/* ========================================
   QUOTE SECTION (Dark Blue Background)
   ======================================== */
.quote-section {
  position: relative;
  padding: 100px 4vw;
  background-color: var(--color-navy);
  overflow: hidden;
}

.quote-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.quote-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.quote-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 42, 74, 0.95) 0%,
    rgba(26, 42, 74, 0.85) 100%
  );
}

.quote-container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.quote-header {
  text-align: center;
  margin-bottom: 50px;
}

.quote-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.quote-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.quote-form-wrapper {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 30px 40px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

/* do not disable this need this in the design */
.quote-form-wrapper::before,
.quote-form-wrapper::after {
  content: "";
  border: 1px solid #fff;
  display: block;
  position: absolute;
  border-radius: 16px;
  z-index: -1;
}

.quote-form-wrapper::before {
  top: 20px;
  left: -25px;
  width: calc(105.96%);
  height: calc(94.49%);
}

.quote-form-wrapper::after {
  height: calc(89.86%);
  width: calc(106.32%);
  top: 47px;
  left: -12px;
  border: 1px solid white;
}

.form-title {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  background-color: var(--color-primary);
  padding: 12px 32px;
  border-radius: 50px;
  margin-bottom: 30px;
  text-transform: capitalize;
}

.form-label {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background-color: #f0f0f0;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  color: #1a1a1a;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  transition: all var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #888888;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: #e8e8e8;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 12px;
  color: #666666;
  text-align: right;
  margin-top: 12px;
  line-height: 1.5;
}

.form-note a {
  color: var(--color-primary);
  text-decoration: none;
}

.form-note a:hover {
  text-decoration: underline;
}

/* ========================================
   STATISTICS SECTION
   ======================================== */
.stats-section {
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.stats-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-left: 4vw;
  padding-right: 4vw;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 50px 3vw;
  border-right: 1px solid var(--color-border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon {
  width: 48px;
  height: 48px;
  color: var(--color-text);
}

.stat-icon svg {
  width: 100%;
  height: 100%;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-top: 4px;
}

/* ========================================
   COMPREHENSIVE SERVICES SECTION
   ======================================== */
.comprehensive-services {
  padding: 80px 0 0 0;
  background-color: var(--color-bg);
}

.comprehensive-header {
  max-width: 1400px;
  margin: 0 auto 50px;
  padding: 0 4vw;
  text-align: center;
}

.comprehensive-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.comprehensive-slider {
  position: relative;
  background-color: var(--color-bg-light);
  overflow: hidden;
}

.slider-images {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slider-image.active {
  opacity: 1;
}

.slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-nav {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 10;
}

.slider-btn {
  width: 46px;
  height: 86px;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 33%;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.slider-btn:hover {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 1);
}

.slider-counter-current {
  font-size: 28px;
}

.slider-counter {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.comprehensive-panel {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-dark) 100%
  );
  padding: 80px 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.comprehensive-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.2;
}

.comprehensive-text {
  color: rgba(255, 255, 255, 0.9);
}

.comprehensive-text p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.comprehensive-text p:last-child {
  margin-bottom: 0;
}

/* ========================================
   TECHNICAL MANAGEMENT SECTION
   ======================================== */
.technical-section {
  padding: 100px 4vw;
  background-color: var(--color-bg-light);
}

.technical-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-right: 4vw;
  padding-left: 4vw;
}

.technical-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.technical-image img {
  width: 100%;
  height: auto;
  display: block;
}

.technical-content {
  padding: 20px 0;
}

.technical-content .section-title {
  font-size: clamp(32px, 3.5vw, 42px);
  margin-bottom: 24px;
}

/* ========================================
   FAQ SECTION (White Background)
   ======================================== */
.faq-section {
  padding: 100px 4vw;
  background-color: var(--color-bg);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 50px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--color-primary);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  transition: background-color var(--transition-fast);
}

.faq-question:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.faq-question span:first-child {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
}

.faq-icon {
  width: 28px;
  height: 28px;
  background-color: var(--color-bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  background-color: var(--color-primary);
  color: #ffffff;
}

.faq-item.active .faq-icon svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer > p {
  padding: 0 28px 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  transition: max-height 0.4s ease-in;
}

/* ========================================
   CONTACT CARDS SECTION
   ======================================== */
.contact-cards-section {
  position: relative;
  padding: 20px 4vw;
  background-color: #1a1a1a;
  border-bottom: 1px solid #333;
  overflow: hidden;
}

/* Red notch graphic on the left */
.contact-cards-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 242px;
  height: 70px;
  background-color: var(--color-primary);
  clip-path: polygon(0 0, 100% 0, 60% 100%, 0 100%);
}

.contact-cards-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  padding: 0 4vw;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 20px 0;
  background-color: transparent;
  border-radius: 0;
}

.contact-card-number {
  width: 70px;
  height: 70px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

.contact-card-content h3 {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.contact-card-content p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: 60px 4vw 0;
  background-color: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 60px;
  padding: 0 4vw 40px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-logo .logo-main {
  color: #ffffff;
}

.footer-logo .logo-sub {
  color: rgba(255, 255, 255, 0.7);
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 300px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-contact a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   SCROLL REVEAL ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
  .feature-cards-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: -100px;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .fleet-cards {
    grid-template-columns: 1fr;
  }

  .geo-shape {
    display: block;
  }

  .geo-top-left img {
    width: 180px;
  }

  .geo-bottom-right img {
    width: 200px;
  }

  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-container {
    grid-template-columns: 1fr;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    padding: 20px;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
  }

  .stat-item:nth-child(2n) {
    border-right: none;
  }

  .stat-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .comprehensive-content {
    grid-template-columns: 1fr;
  }

  .comprehensive-slider {
    min-height: 400px;
  }

  .technical-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-cards-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-card {
    padding: 20px 0;
  }

  .contact-cards-section::before {
    width: 80px;
    height: 60px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    height: 50vh;
    min-height: 400px;
  }

  .hero-content {
    padding: 0 6vw;
  }

  .feature-cards-container {
    grid-template-columns: 1fr;
    margin-top: -60px;
  }

  .feature-card {
    padding: 30px 24px;
  }

  .geo-shape {
    display: none;
  }

  .services-container {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .quote-form-wrapper {
    padding: 30px 20px;
    overflow: hidden;
  }

  .stats-container {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding: 20px;
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .comprehensive-panel {
    padding: 50px 30px;
  }

  .faq-section {
    padding: 60px 4vw;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-question span:first-child {
    font-size: 14px;
    padding-right: 10px;
  }

  .contact-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.d-none {
  display: none;
}

footer::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0px;
  width: 300px;
  height: 70px;
  background-color: var(--color-primary);
  clip-path: polygon(0 0, 100% 0, 60% 100%, 0 100%);
  transform: rotate(180deg);

  @media (max-width: 800px) {
    right: -156px;
  }
}

.contact-card-content {
  max-width: 350px;
}
