:root {
  --primary: #0f1f3d;
  --secondary: #ffffff;
  --accent: #1e293b;
  --light: #f8fafc;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background: var(--secondary);
  color: var(--accent);
}

/* ================= CONTAINER ================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER ================= */
.header {
  position: sticky;
  top: 0;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  z-index: 999;
}

/* NAV BAR */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0; /* reduced height */
}

/* LOGO */
.logo img {
  height: 72px; /* increased logo size */
  width: auto;
}

/* ================= NAV LINKS ================= */
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* NAV LINK BASE */
.nav-links a {
  position: relative;
  text-decoration: none;
  color: #000; /* BLACK */
  font-weight: 500;
  font-size: 15px;
  padding: 6px 0;
  transition: color 0.3s ease;
}

/* HOVER */
.nav-links a:hover {
  color: var(--primary);
}

/* ACTIVE LINK */
.nav-links a.active {
  color: var(--primary);
  font-weight: 600;
}

/* UNDERLINE BASE */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* HOVER LINE */
.nav-links a:hover::after {
  width: 100%;
}

/* ACTIVE LINE */
.nav-links a.active::after {
  width: 100%;
}

/* NAV BUTTON */
.nav-btn {
  margin-left: 8px;
  padding: 10px 20px;
}

/* ================= BUTTON ================= */
.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 28px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #0b1630;
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
}

/* ================= HERO SECTION ================= */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: space-between; /* space between text and image */
  padding: 0 50px; /* spacing from sides */
  background:
    linear-gradient(rgba(15,31,61,0.85), rgba(15,31,61,0.85)),
    url('hero.png') center/cover no-repeat; /* background */
  color: #fff;
}

.hero-content {
  max-width: 50%; /* left side text */
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 46px;
  margin-bottom: 16px;
}

.hero h1 span {
  color: #c7d2fe;
}

.hero p {
  font-size: 17px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.btn-outline:hover {
  background: #fff;
  color: var(--primary);
}

/* ===== Right side image ===== */
.hero-image {
  max-width: 80%; /* image takes right side */
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero {
    flex-direction: column; /* text first, image below */
    text-align: center;
    padding: 20px;
    gap: 20px; /* optional spacing between text and image */
  }

  .hero-content,
  .hero-image {
    max-width: 100%;
  }

  .hero-image img {
    width: 80%; /* optional: smaller image on mobile */
    margin: 0 auto; /* center image */
  }
}


/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {

  /* NAV */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    gap: 14px;
    display: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    font-size: 16px;
  }

  .nav-links a::after {
    bottom: 0;
  }

  .nav-btn {
    width: 100%;
    text-align: center;
  }

  /* HERO */
  .hero h1 {
    font-size: 36px;
  }

  .hero-content {
    padding: 0 20px;
  }
}


/* ================= HOME SECOND SECTION ================= */

.home-second {
  background: var(--secondary);
  padding: 90px 20px;
  overflow: hidden;
}

.home-second .second-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* ===== LEFT IMAGE AREA ===== */

.second-image {
  position: relative;
}

.second-image img {
  width: 100%;
  max-width: 520px;
  position: relative;
  z-index: 2;
}

/* VERTICAL SHAPES (Brand Primary Color) */
.second-image::before,
.second-image::after {
  content: "";
  position: absolute;
  background: var(--primary);
  border-radius: 20px;
  z-index: 1;
}

.second-image::before {
  width: 150px;
  height: 420px;
  left: 45%;
  top: -30px;
}

.second-image::after {
  width: 60px;
  height: 380px;
  left: 30%;
  top: 0;
}

/* ===== RIGHT CONTENT ===== */

.second-content h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
}

.second-content h2 span {
  color: var(--primary);
}

.second-content p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--accent);
}

/* CTA BUTTON */
.second-btn {
  display: inline-block;
  margin-top: 26px;
  padding: 14px 34px;
  background: var(--primary);
  color: var(--secondary);
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.second-btn:hover {
  background: #162a52;
  transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .home-second .second-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* TEXT FIRST, IMAGE SECOND */
  .second-content {
    order: 1;
  }

  .second-image {
    order: 2;
  }

  .second-image::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .second-image::after {
    display: none;
  }

  .second-image img {
    margin: auto;
  }
}

@media (max-width: 576px) {
  .home-second {
    padding: 70px 16px;
  }

  .second-content h2 {
    font-size: 30px;
  }

  .second-content p {
    font-size: 15px;
  }

  .second-image::before {
    height: 300px;
    width: 120px;
  }
}




/* ================= OUR SERVICES SECTION ================= */

.services-section {
  position: relative;
  background:
    linear-gradient(rgba(15,31,61,0.85), rgba(15,31,61,0.85)),
    url("hero.png") center/cover no-repeat;
  padding: 110px 20px;
  color: var(--secondary);
}

.services-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.services-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.services-header h2 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #94a3b8;
}

.services-header h3 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  margin-top: 10px;
}

.services-header p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.8;
  color: #cbd5e1;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.service-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 34px 28px;
  border-radius: 18px;
  text-align: center;
  transition: 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}

/* ICON */
.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

/* TEXT */
.service-card h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #e5e7eb;
}

/* HOVER */
.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.14);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-header h3 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .services-section {
    padding: 90px 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-header h3 {
    font-size: 26px;
  }
}



/* ================= OUR CARS SECTION ================= */

.fleet-section {
  background: var(--secondary);
  padding: 100px 20px;
}

.fleet-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.fleet-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.fleet-header h2 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #64748b;
}

.fleet-header h3 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  margin-top: 10px;
  color: var(--primary);
}

.fleet-header p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
}

/* GRID */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.fleet-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #e5e7eb;
  transition: 0.35s ease;
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 31, 61, 0.12);
}

/* IMAGE */
.fleet-img {
  width: 100%;
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  background: #f8fafc;
}

.fleet-img img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* same size look */
}

/* TAG */
.fleet-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}

/* TEXT */
.fleet-card h4 {
  margin-top: 18px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
}

.fleet-card p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  flex-grow: 1;
}

/* ARROW BUTTON */
.fleet-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s ease;
}

.fleet-arrow:hover {
  background: #0b1730;
  transform: rotate(-45deg) scale(1.1);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fleet-header h3 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .fleet-section {
    padding: 80px 16px;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .fleet-img {
    height: 190px;
  }

  .fleet-header h3 {
    font-size: 26px;
  }
}



/* ================= BOOKING PROCESS ================= */

.booking-process {
  position: relative;
  background:
    linear-gradient(
      rgba(15, 31, 61, 0.78),
      rgba(15, 31, 61, 0.78)
    ),
    url('hero.png') center/cover no-repeat;
  padding: 110px 20px;
  color: #ffffff;
  overflow: hidden;
}

.booking-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.booking-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 70px;
}

.booking-header h2 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #cbd5e1;
}

.booking-header h3 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  margin-top: 10px;
}

.booking-header p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.8;
  color: #e5e7eb;
}

/* GRID */
.booking-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* STEP CARD */
.booking-step {
  background: rgba(255, 255, 255, 0.09);
  padding: 38px 26px;
  border-radius: 18px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: 0.35s ease;
}

.booking-step:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}

/* ICON CIRCLE */
.step-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 20px;
  background: #ffffff;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

/* TEXT */
.booking-step h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.booking-step p {
  font-size: 15px;
  line-height: 1.7;
  color: #e5e7eb;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .booking-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-header h3 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .booking-process {
    padding: 90px 16px;
  }

  .booking-steps {
    grid-template-columns: 1fr;
  }

  .booking-header h3 {
    font-size: 26px;
  }
}



/* About Us Page */ 

/* ================= ABOUT HERO ================= */
.about-hero {
  padding: 110px 20px;
  text-align: center;
  background:
    linear-gradient(rgba(15,31,61,0.9), rgba(15,31,61,0.9)),
    url('hero.png') center/cover no-repeat;
}

.about-hero h1 {
  font-family: var(--font-heading);
  font-size: 42px;
  color: white;
  margin-bottom: 16px;
}

.about-hero p {
  font-size: 18px;
  max-width: 760px;
  margin: 0 auto;
  color: white;
  line-height: 1.7;
}




/* ================= MISSION & VISION ================= */
.about-mission {
  padding: 100px 20px;
  background:
    linear-gradient(rgba(15,31,61,0.92), rgba(15,31,61,0.92)),
    url('hero.png') center/cover no-repeat;
  color: #ffffff;
}

.mission-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}

.mission-heading h2 {
  font-family: var(--font-heading);
  font-size: 38px;
  margin-bottom: 12px;
}

.mission-heading p {
  font-size: 17px;
  color: #d1d5db;
  line-height: 1.6;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

/* CARD */
.mission-box {
  background: rgba(255,255,255,0.08);
  padding: 45px 35px;
  border-radius: 22px;
  position: relative;
  transition: all 0.35s ease;
  border: 1px solid rgba(255,255,255,0.15);
}

.mission-box:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 25px 50px rgba(0,0,0,0.35);
}

/* ICON */
.mission-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mission-icon i {
  font-size: 28px;
  color: var(--primary);
}

.mission-box h3 {
  font-size: 26px;
  margin-bottom: 14px;
  font-family: var(--font-heading);
}

.mission-box p {
  font-size: 16px;
  line-height: 1.7;
  color: #e5e7eb;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .mission-heading h2 {
    font-size: 32px;
  }
}


/* ================= WHY CHOOSE US ================= */
.why-us {
  padding: 90px 20px;
  background: #ffffff;
}

.why-us h2 {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 36px;
  margin-bottom: 55px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* CARD */
.why-box {
  background: #f8fafc;
  padding: 40px 28px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.35s ease;
  border: 1px solid #e5e7eb;
}

.why-box i {
  font-size: 42px;
  color: var(--primary);
  margin-bottom: 18px;
}

.why-box h4 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--accent);
}

.why-box p {
  font-size: 15.5px;
  line-height: 1.6;
  color: #475569;
}

/* Hover Effect */
.why-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  background: #ffffff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-us h2 {
    font-size: 30px;
  }
}


/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .about-flex {
    flex-direction: column;
    text-align: center;
  }

  .about-text, .about-image {
    max-width: 100%;
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: 32px;
  }
}



/* ================= OUR CARS HERO ================= */
.cars-hero {
  padding: 110px 20px;
  text-align: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
    url('hero.png') center/cover no-repeat;
}
.cars-hero h1 {
  font-family: var(--font-heading);
  font-size: 42px;
  color: #0f1f3d;
  margin-bottom: 16px;
}

.cars-hero p {
  font-size: 18px;
  max-width: 780px;
  margin: 0 auto;
  color: #0f1f3d;
  line-height: 1.7;
}

/* ================= CAR SECTION ================= */
.car-detail {
  padding: 100px 20px;
  position: relative;
}

/* Background variants */
.bg-light {
  background:
    linear-gradient(rgba(15,31,61,0.88), rgba(15,31,61,0.88)),
    url('hero.png') center/cover no-repeat;
}

.bg-white {
  background: #ffffff;
}

/* ================= GRID ================= */
.car-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* Alternating layout */
.car-container.reverse {
  grid-template-areas: "image content";
}

.car-container:not(.reverse) {
  grid-template-areas: "content image";
}

.car-content {
  grid-area: content;
}

.car-image {
  grid-area: image;
  position: relative;
}

/* ================= IMAGE STYLE ================= */
.car-image img {
  width: 100%;
  max-width: 520px;
  position: relative;
  z-index: 2;
  border-radius: 18px;
}

/* Vertical decorative bars */
.car-image::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 100%;
  background: var(--primary); /* default primary */
  border-radius: 18px;
  top: -20px;
  right: -30px;
  z-index: 1;
}

/* Reverse layout line for alternate sections */
.car-container.reverse .car-image::before {
  left: -30px;
  right: auto;
}

/* White vertical line for bg-image sections */
.bg-light .car-image::before {
  background: #ffffff;
}

/* ================= CONTENT ================= */
.car-content h2 {
  font-size: 36px;
  font-family: var(--font-heading);
  margin: 12px 0 16px;
}

.bg-light .car-content h2,
.bg-light .car-content p,
.bg-light .car-features li {
  color: #f8fafc;
}

.car-content p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 18px;
}

.car-features {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}

.car-features li {
  margin-bottom: 8px;
}

/* ================= TAG ================= */
.car-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.car-tag.economy { background: #e0f2fe; color: #0369a1; }
.car-tag.comfort { background: #dcfce7; color: #166534; }
.car-tag.vip { background: #fef3c7; color: #92400e; }

/* ================= BUTTON ================= */
.car-btn {
  padding: 14px 34px;
  background: var(--primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.car-btn:hover {
  background: #0f172a;
  transform: translateY(-3px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .car-container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "image";
    text-align: center;
    gap: 50px;
  }

  /* Reverse layout still shows text first on mobile */
  .car-container.reverse {
    grid-template-areas:
      "content"
      "image";
  }

  /* Hide vertical decorative line on mobile */
  .car-image::before {
    display: none;
  }

  .car-image img {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .cars-hero h1 {
    font-size: 30px;
  }

  .cars-hero p {
    font-size: 16px;
  }

  .car-content h2 {
    font-size: 26px;
  }

  .car-detail {
    padding: 80px 16px;
  }
}

/* ================= WHITE BG SECTION MOBILE ADJUST ================= */
.bg-white {
  padding: 100px 20px;
}

.bg-white .car-content p,
.bg-white .car-features li {
  color: #475569;
}

@media (max-width: 992px) {
  .bg-white .car-container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "image";
    text-align: center;
    gap: 45px;
  }

  .bg-white .car-image img {
    margin: auto;
  }
}

@media (max-width: 576px) {
  .bg-white {
    padding: 80px 16px;
  }

  .bg-white .car-content h2 {
    font-size: 26px;
  }

  .bg-white .car-content p {
    font-size: 15px;
  }
}



/* ================= CTA ACTION SECTION ================= */
.cta-action {
  padding: 80px 20px;
  text-align: center;
}

.cta-action h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  margin-bottom: 16px;
  color: var(--accent);
}

.cta-action p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #475569;
  line-height: 1.7;
}

.cta-action .cta-btn {
  padding: 16px 40px;
  font-size: 18px;
  border-radius: 30px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.cta-action .cta-btn:hover {
  background: #0f172a;
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .cta-action h2 {
    font-size: 28px;
  }

  .cta-action p {
    font-size: 16px;
  }

  .cta-action .cta-btn {
    padding: 14px 28px;
    font-size: 16px;
  }
}


.hero-btn {
  display: inline-block;
  background-color: var(--primary); /* Primary accent color */
  color: #ffffff; /* White text */
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 30px; /* Top-Bottom 14px, Left-Right 30px */
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hero-btn:hover {
  background-color: grey; /* Darker shade on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}





