/* ==========================================================================
   DESIGN SYSTEM & CUSTOM VARIABLES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors */
  --primary-red: #dc2626;       /* Vibrant Red */
  --primary-red-hover: #b91c1c; /* Darker Red */
  --primary-red-light: #fef2f2; /* Ultra-light tint */
  --dark-bg: #0b0b0c;           /* Near Black */
  --dark-card: #151518;         /* Card background in dark sections */
  --dark-border: #222227;       /* Border for dark cards */
  --light-bg: #ffffff;          /* Pure White */
  --light-gray: #f8f9fa;        /* Light Gray section background */
  --border-color: #e4e4e7;      /* Clean border color */
  --text-dark: #121214;         /* Charcoal Black for ultimate readability */
  --text-muted: #52525b;        /* Muted Gray for subtitles */
  --text-light: #f4f4f5;        /* Light text for dark sections */
  --text-light-muted: #a1a1aa;  /* Muted light text */
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Layout details */
  --max-width: 1280px;
  --header-height: 80px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  
  /* Animation and Shadows */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08), 0 3px 6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12), 0 6px 12px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ==========================================================================
   REUSABLE UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-dark {
  background-color: var(--dark-bg);
  color: var(--text-light);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--text-light);
}

.section-gray {
  background-color: var(--light-gray);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.section-header .subtitle {
  color: var(--primary-red);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 2px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0.75rem;
  position: relative;
}

.section-header .subtitle::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--primary-red);
  margin: 0.5rem auto 0 auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
}

.section-dark .section-header p {
  color: var(--text-light-muted);
}

/* Text Accent */
.text-red {
  color: var(--primary-red);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--primary-red);
  color: var(--light-bg);
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
  background-color: var(--dark-bg);
  color: var(--light-bg);
  border: 1px solid var(--dark-border);
}

.btn-secondary:hover {
  background-color: #1a1a1e;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--primary-red);
  color: var(--primary-red);
}

.btn-outline:hover {
  background-color: var(--primary-red);
  color: var(--light-bg);
  transform: translateY(-2px);
}

.btn-outline-white {
  border: 2px solid var(--light-bg);
  color: var(--light-bg);
}

.btn-outline-white:hover {
  background-color: var(--light-bg);
  color: var(--dark-bg);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   NAVIGATION HEADER
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  background-color: rgba(11, 11, 12, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.header.sticky {
  height: 70px;
  background-color: rgba(11, 11, 12, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  background-color: var(--primary-red);
  color: var(--light-bg);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  font-family: var(--font-heading);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--light-bg);
  line-height: 1.1;
}

.logo-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--primary-red);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

.nav-link {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-red);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-red);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Dropdowns */
.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius-sm);
  width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  list-style: none;
  padding: 0.5rem 0;
  box-shadow: var(--shadow-lg);
  z-index: 1010;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 0.6rem 1.25rem;
  color: var(--text-light-muted);
  font-size: 0.9rem;
  font-weight: 500;
  border-left: 2px solid transparent;
}

.dropdown-link:hover {
  color: var(--light-bg);
  background-color: rgba(255, 255, 255, 0.03);
  border-left-color: var(--primary-red);
  padding-left: 1.5rem;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--light-bg);
  transition: var(--transition);
}

/* Header Action */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ==========================================================================
   HERO BANNER
   ========================================================================== */
.hero {
  height: 90vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--light-bg);
  overflow: hidden;
  background-color: var(--dark-bg);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img, .hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, var(--dark-bg) 0%, rgba(11, 11, 12, 0.7) 50%, rgba(11, 11, 12, 0.5) 100%);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  max-width: 700px;
}

.hero-tagline {
  display: inline-block;
  background-color: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: var(--primary-red);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--light-bg);
  margin-bottom: 1.25rem;
  line-height: 1.15;
  font-weight: 800;
}

.hero-subheading {
  font-size: 1.25rem;
  color: var(--text-light-muted);
  margin-bottom: 2.25rem;
  font-weight: 500;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Quick Booking Form */
.quick-booking-card {
  background-color: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  z-index: 4;
}

.quick-booking-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--light-bg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quick-booking-card h3 i {
  color: var(--primary-red);
}

.quick-booking-card p {
  color: var(--text-light-muted);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.form-group {
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-light-muted);
  margin-bottom: 0.4rem;
}

.form-control-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.form-icon {
  position: absolute;
  left: 1rem;
  color: var(--primary-red);
  font-size: 1rem;
}

.form-control {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-border);
  color: var(--light-bg);
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-red);
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2);
}

.form-control option {
  background-color: var(--dark-card);
  color: var(--light-bg);
}

.booking-submit-btn {
  width: 100%;
  margin-top: 0.5rem;
}

/* Horizontal variation on other pages */
.booking-horizontal-section {
  background-color: var(--dark-bg);
  padding: 3rem 0;
  border-bottom: 4px solid var(--primary-red);
}

.booking-horizontal-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) 200px;
  gap: 1rem;
  align-items: flex-end;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--light-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-red-light);
  color: var(--primary-red);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--primary-red);
  color: var(--light-bg);
  transform: rotate(5deg) scale(1.05);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-features li {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features li i {
  color: var(--primary-red);
}

.service-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-red);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.service-link:hover {
  color: var(--primary-red-hover);
}

.service-link i {
  transition: var(--transition);
}

.service-card:hover .service-link i {
  transform: translateX(5px);
}

/* ==========================================================================
   FLEET PREVIEW SECTION
   ========================================================================== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.fleet-card {
  background-color: var(--light-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.fleet-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background-color: #eaeaea;
}

.fleet-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.fleet-card:hover .fleet-img-wrap img {
  transform: scale(1.08);
}

.fleet-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--primary-red);
  color: var(--light-bg);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  text-transform: uppercase;
}

.fleet-content {
  padding: 1.75rem;
}

.fleet-content h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.fleet-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-color);
}

.fleet-spec-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.fleet-spec-item i {
  color: var(--primary-red);
  width: 16px;
}

.fleet-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fleet-price {
  font-family: var(--font-heading);
}

.fleet-price span {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
}

.fleet-price strong {
  font-size: 1.25rem;
  color: var(--primary-red);
}

/* ==========================================================================
   POPULAR PACKAGES
   ========================================================================== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2rem;
}

.package-card {
  background-color: var(--light-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.package-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.package-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.package-card:hover .package-img-wrap img {
  transform: scale(1.08);
}

.package-duration {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background-color: rgba(11, 11, 12, 0.8);
  color: var(--light-bg);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.package-duration i {
  color: var(--primary-red);
}

.package-content {
  padding: 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.package-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.package-rating {
  color: #ffb703;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.package-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.package-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  flex-grow: 1;
}

.package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color);
}

.package-price {
  font-family: var(--font-heading);
}

.package-price span {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
}

.package-price strong {
  font-size: 1.3rem;
  color: var(--text-dark);
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-image {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-image img {
  width: 100%;
  object-fit: cover;
  height: 500px;
}

.why-experience-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background-color: var(--primary-red);
  color: var(--light-bg);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
  font-family: var(--font-heading);
  animation: pulse 3s infinite;
}

.why-experience-badge strong {
  font-size: 2.5rem;
  display: block;
  line-height: 1;
}

.why-experience-badge span {
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.why-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.why-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.why-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.why-feature-item {
  display: flex;
  gap: 1rem;
}

.why-feature-icon {
  width: 45px;
  height: 45px;
  background-color: var(--primary-red-light);
  color: var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.why-feature-text h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.why-feature-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ==========================================================================
   REVIEWS & TESTIMONIALS
   ========================================================================== */
.reviews-slider-wrap {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.review-slide {
  min-width: 100%;
  padding: 1rem;
}

.review-card {
  background-color: var(--dark-card);
  border: 1px solid var(--dark-border);
  padding: 3rem;
  border-radius: var(--border-radius-md);
  text-align: center;
  position: relative;
}

.review-stars {
  color: #ffb703;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.review-text {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--text-light);
  line-height: 1.7;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.review-author-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-red);
  background-color: #333;
}

.review-author-info {
  text-align: left;
}

.review-author-info h4 {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 0.15rem;
}

.review-author-info span {
  font-size: 0.8rem;
  color: var(--text-light-muted);
}

.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.reviews-btn {
  width: 45px;
  height: 45px;
  background-color: var(--dark-card);
  border: 1px solid var(--dark-border);
  color: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.reviews-btn:hover {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
}

/* ==========================================================================
   GALLERY PAGE & COMPONENT
   ========================================================================== */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.gallery-filter-btn {
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filter-btn.active, .gallery-filter-btn:hover {
  background-color: var(--primary-red);
  color: var(--light-bg);
  border-color: var(--primary-red);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 250px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 11, 12, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
  padding: 1.5rem;
  text-align: center;
  color: var(--light-bg);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 2rem;
  color: var(--primary-red);
  margin-bottom: 0.75rem;
  transform: translateY(15px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
  transform: translateY(0);
}

.gallery-overlay h4 {
  font-size: 1.25rem;
  color: var(--light-bg);
  margin-bottom: 0.25rem;
}

.gallery-overlay span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light-muted);
}

/* Lightbox Styling */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  position: relative;
}

.lightbox-content img, .lightbox-content video {
  max-width: 100%;
  max-height: 80vh;
  border: 4px solid #fff;
  border-radius: var(--border-radius-sm);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--primary-red);
}

.lightbox-caption {
  color: #fff;
  text-align: center;
  margin-top: 1rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

/* ==========================================================================
   BLOG GRID
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background-color: var(--light-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-img img {
  transform: scale(1.08);
}

.blog-meta-date {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--primary-red);
  color: var(--light-bg);
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.2;
}

.blog-meta-date span {
  display: block;
  font-size: 1.1rem;
}

.blog-content {
  padding: 1.75rem;
}

.blog-author {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.blog-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-max {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  margin-bottom: 1rem;
  overflow: hidden;
  background-color: var(--light-bg);
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary-red);
  box-shadow: var(--shadow-sm);
}

.faq-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: var(--light-bg);
  font-weight: 600;
  font-size: 1.05rem;
  font-family: var(--font-heading);
  transition: var(--transition);
}

.faq-header:hover {
  background-color: var(--primary-red-light);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--primary-red);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: var(--light-bg);
}

.faq-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-top: 1px solid transparent;
}

.faq-item.active .faq-body {
  max-height: 500px;
}

.faq-item.active .faq-content {
  border-top-color: var(--border-color);
}

/* ==========================================================================
   CONTACT DETAILS & MAPS
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-info-card {
  background-color: var(--light-gray);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-info-card i {
  color: var(--primary-red);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-info-card h4 {
  font-size: 1.1rem;
}

.contact-info-card p, .contact-info-card a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-info-card a:hover {
  color: var(--primary-red);
}

.contact-map-wrap {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 350px;
  background-color: #eaeaea;
}

.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact / Enquiry Form */
.enquiry-card {
  background-color: var(--light-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.enquiry-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.enquiry-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.contact-form-grid .form-group-full {
  grid-column: span 2;
}

.enquiry-card .form-control {
  background-color: var(--light-gray);
  border-color: var(--border-color);
  color: var(--text-dark);
}

.enquiry-card .form-control:focus {
  background-color: #ffffff;
  border-color: var(--primary-red);
}

/* ==========================================================================
   GLOBAL FOOTER
   ========================================================================== */
.footer {
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: 5rem 0 2rem 0;
  border-top: 3px solid var(--primary-red);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 1.75rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--primary-red);
}

.footer-about-text {
  color: var(--text-light-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 0.8rem;
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  background-color: var(--dark-card);
  border: 1px solid var(--dark-border);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social-icon:hover {
  background-color: var(--primary-red);
  color: var(--light-bg);
  border-color: var(--primary-red);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link-item a {
  color: var(--text-light-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-link-item a:hover {
  color: var(--primary-red);
  padding-left: 5px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-light-muted);
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  line-height: 1.5;
}

.footer-contact-item i {
  color: var(--primary-red);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-contact-item strong {
  color: var(--text-light);
  display: block;
}

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: var(--text-light-muted);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a:hover {
  color: var(--primary-red);
}

/* ==========================================================================
   LEAD CAPTURE / BOOKING MODAL
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1500;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
  padding: 1.5rem;
}

.modal-backdrop.active {
  display: flex;
  opacity: 1;
}

.modal-card {
  background-color: var(--light-bg);
  border-radius: var(--border-radius-md);
  width: 100%;
  max-width: 550px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  transform: translateY(30px);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.modal-backdrop.active .modal-card {
  transform: translateY(0);
}

.modal-header {
  background-color: var(--dark-bg);
  color: var(--light-bg);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid var(--primary-red);
}

.modal-header h3 {
  font-size: 1.35rem;
  color: var(--light-bg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-header h3 i {
  color: var(--primary-red);
}

.modal-close {
  color: var(--text-light-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--primary-red);
}

.modal-body {
  padding: 2rem;
}

/* Successful Alert Popup overlay style */
.toast-alert {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--dark-bg);
  color: var(--light-bg);
  border-left: 4px solid var(--primary-red);
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.toast-alert.active {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS (MOBILE CAPTURE)
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.35rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.float-btn:hover {
  transform: scale(1.1) rotate(5deg);
}

.float-whatsapp {
  background-color: #25d366;
}

.float-call {
  background-color: var(--primary-red);
}

/* ==========================================================================
   VEHICLE DETAIL PAGE / ITINERARY ACCORDION SPECIALS
   ========================================================================== */
.vehicle-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.vehicle-carousel-main {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
  height: 450px;
  background-color: #eaeaea;
}

.vehicle-carousel-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-carousel-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.vehicle-thumb {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  height: 80px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  background-color: #eaeaea;
}

.vehicle-thumb.active, .vehicle-thumb:hover {
  border-color: var(--primary-red);
}

.vehicle-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spec-list-horizontal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.spec-list-item-horizontal {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.spec-list-item-horizontal i {
  color: var(--primary-red);
  font-size: 1.25rem;
}

/* Tour Itinerary Timeline styles */
.itinerary-timeline {
  margin-top: 2rem;
}

.itinerary-day {
  position: relative;
  padding-left: 2.5rem;
  padding-bottom: 2rem;
}

.itinerary-day::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 24px;
  width: 2px;
  height: 100%;
  background-color: var(--border-color);
}

.itinerary-day:last-child::before {
  display: none;
}

.itinerary-day-badge {
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--primary-red);
  border: 4px solid var(--light-bg);
  box-shadow: 0 0 0 2px var(--primary-red);
}

.itinerary-day-header {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.itinerary-day-header span {
  color: var(--primary-red);
  font-weight: 800;
  margin-right: 0.5rem;
}

.itinerary-day-body {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.inc-dec-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2.5rem 0;
}

.inc-dec-col {
  padding: 2rem;
  border-radius: var(--border-radius-md);
}

.inc-dec-col-inclusions {
  background-color: rgba(37, 211, 102, 0.05);
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.inc-dec-col-exclusions {
  background-color: rgba(220, 38, 38, 0.05);
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.inc-dec-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.inc-dec-col-inclusions h4 {
  color: #128c7e;
}

.inc-dec-col-exclusions h4 {
  color: var(--primary-red);
}

.inc-dec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.inc-dec-item {
  font-size: 0.9rem;
  display: flex;
  gap: 0.5rem;
}

.inc-dec-col-inclusions .inc-dec-item i {
  color: #25d366;
}

.inc-dec-col-exclusions .inc-dec-item i {
  color: var(--primary-red);
}

/* ==========================================================================
   PAGINATION & SUB-BANNER
   ========================================================================== */
.inner-banner {
  padding: 7rem 0 4rem 0;
  background-color: var(--dark-bg);
  background-image: linear-gradient(rgba(11, 11, 12, 0.8), rgba(11, 11, 12, 0.95)), url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  color: var(--light-bg);
  border-bottom: 1px solid var(--dark-border);
}

.inner-banner-content h1 {
  font-size: 3rem;
  color: var(--light-bg);
  margin-bottom: 0.75rem;
}

.breadcrumbs {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-light-muted);
}

.breadcrumbs li a:hover {
  color: var(--primary-red);
}

.breadcrumbs li::after {
  content: '/';
  margin-left: 0.5rem;
}

.breadcrumbs li:last-child::after {
  display: none;
}

.breadcrumbs li:last-child {
  color: var(--primary-red);
  font-weight: 600;
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4);
  }
  70% {
    transform: scale(1.02);
    box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  h1 { font-size: 2.75rem; }
  .hero h1 { font-size: 2.75rem; }
  .hero .container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .why-image img {
    height: 400px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .vehicle-hero-grid {
    grid-template-columns: 1fr;
  }
  .vehicle-carousel-main {
    height: 350px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  .section {
    padding: 3.5rem 0;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  
  /* Mobile Menu Toggling */
  .nav {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--dark-bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem;
    gap: 2rem;
    overflow-y: auto;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 998;
    border-top: 1px solid var(--dark-border);
  }
  
  .nav.active {
    left: 0;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 1.5rem;
  }
  
  .nav-link {
    font-size: 1.1rem;
    width: 100%;
    display: block;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: transparent;
    border: none;
    padding-left: 1.25rem;
    display: none;
  }
  
  .nav-item-dropdown.active .dropdown-menu {
    display: block;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  /* Toggled hamburger animation */
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .header-actions .btn {
    display: none; /* Hide header action button on mobile to prevent clutter */
  }
  
  .contact-info-cards {
    grid-template-columns: 1fr;
  }
  
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-grid .form-group-full {
    grid-column: span 1;
  }
  
  .inc-dec-box {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  .hero h1 { font-size: 2.2rem; }
  .section-header h2 { font-size: 1.75rem; }
  .fleet-specs {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   IMAGE-BASED SERVICES CARD STYLING (HOMEPAGE)
   ========================================================================== */
.service-card-img-layout {
  background-color: var(--light-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card-img-layout:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card-img-layout:hover .service-img-wrap img {
  transform: scale(1.08);
}

.service-icon-floating {
  position: absolute;
  top: 175px;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  background-color: var(--primary-red);
  color: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
  z-index: 2;
  transition: var(--transition);
}

.service-card-img-layout:hover .service-icon-floating {
  transform: rotate(15deg) scale(1.1);
  background-color: var(--primary-red-hover);
}

.service-card-body {
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

.service-card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
  line-height: 1.6;
}

.service-card-body .service-features {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-card-body .service-features li {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card-body .service-features li i {
  color: var(--primary-red);
}

.service-card-body .service-link {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--primary-red);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
  margin-top: auto;
}

.service-card-body .service-link i {
  transition: var(--transition);
}

.service-card-img-layout:hover .service-link i {
  transform: translateX(5px);
}


