body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #f8f8f8;
  line-height: 1.6;
  color: #333;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
header {
  background-color: #1e977f;
  color: #000;
  padding: 0.8rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.logo {
  height: 47px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  padding: 0;
  margin: 0;
}

.logo a {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
}

.logo img {
  height: 100%;
  width: auto;
  cursor: pointer;
  border-radius: 6px;
}

.logo a h4 {
  font-size: 20px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1280px;
}
.support {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 0.875rem;
  text-align: right;
  gap: 0.5rem;
}
.support .support-text {
  color: wheat;
  font-weight: normal;
}
.support .phone-number {
  color: white;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}
.support .phone-number:hover {
  text-decoration: underline;
  color: white;
}
.nav-desktop {
  display: none;
  align-items: center;
  gap: 1rem;
}
.nav-desktop a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  margin: 5px;
}
.nav-desktop a:hover {
  color: cyan;
}
.login-button {
  padding: 0.5rem 1rem;
  border: 1px solid #000;
  border-radius: 999px;
  background-color: #1e977f;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.login-button:hover {
  background-color: cyan;
  color: #000;
}
.nav-mobile {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-mobile .phone-link {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 0.875rem;
  text-align: right;
  color: #fff;
  text-decoration: none;
  padding: 0;
  border-radius: 0;
  background: none;
  font-weight: normal;
}
.hero-section {
  /* background-image: url('https://www.savaari.com/assets/img/homepage/december-banner_desktop.webp'); */
  background-image: url("../images/car_img/hero-section-bg.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  padding: 2rem 1rem 1rem;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #09100f91;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 45vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding-top: 1rem;
}
.hero-content h1 {
  font-size: 6em;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.hero-content p {
  font-size: 2em;
  margin-bottom: 1rem;
}
.hero-btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #1e977f, #2cd3b1);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none; /* remove underline */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(30, 151, 127, 0.4);
  background: linear-gradient(135deg, #2cd3b1, #1e977f);
}

.hero-btn:active {
  transform: scale(0.97);
}

.booking-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  color: #000;
  max-width: 900px;
  display: none;
  width: 100%;
  margin: 0 auto;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  padding-right: 7rem;
}
.tab-buttons-main {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-wrap: nowrap;
  padding: 0;
}
.tab-buttons-main .tab-button {
  flex: 1;
  padding: 0.75rem 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  background-color: #f1f1f1;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  white-space: nowrap;
  text-align: center;
  border-right: 1px solid #ddd;
}
.tab-buttons-main .tab-button:last-child {
  border-right: none;
}
.tab-buttons-main .tab-button.active {
  background-color: #1e977f;
  color: white;
}
.tab-buttons-main .tab-button:not(.active) {
  background-color: #2cd3b1;
  color: black;
}
.tab-buttons-main .tab-button:not(.active):hover {
  background-color: cyan;
}
.section-heading-line {
  font-size: 0.9rem;
  font-weight: 500;
  color: #000;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #000;
  margin-bottom: 1rem;
  text-align: center;
}
.form-section {
  display: none;
}
.form-section.active {
  display: block;
}
.booking-form .form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.input-group {
  display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;
}
.input-group label {
  margin-bottom: 0.25rem;
  font-weight: 600;
  font-size: 0.8rem;
  color: #000;
}
.input-with-icon {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  width: 100%;
  padding: 0.5rem 0.75rem;
}
.input-with-icon:focus-within {
  border-color: #00356d;
  box-shadow: 0 0 0 3px rgba(11, 82, 158, 0.25);
}
.input-with-icon .fa-search {
  padding: 0;
  margin-right: 0.4rem;
  color: #000;
  pointer-events: none;
  font-size: 0.9rem;
}
.input-group input[type="text"] {
  flex-grow: 1;
  padding: 0;
  border: none;
  outline: none;
  border-radius: 0;
  box-sizing: border-box;
  cursor: pointer;
  font-size: 0.9rem;
}
.input-group input[type="date"],
.input-group input[type="time"],
.input-group select {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%234a5568" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-down"><polyline points="6 9 12 15 18 9"></polyline></svg>')
    no-repeat right 0.5rem center;
  background-size: 14px 14px;
  padding-right: 1.8rem;
  font-size: 0.9rem;
}
.input-group input[type="date"]:focus,
.input-group input[type="time"]:focus,
.input-group select:focus {
  border-color: #00356d;
  box-shadow: 0 0 0 3px rgba(5, 52, 102, 0.25);
}
.suggestions-box {
  position: absolute;
  background-color: white;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  max-height: 120px;
  overflow-y: auto;
  width: 100%;
  left: 0;
  top: calc(100% + 0.2rem);
  z-index: 10;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}
.suggestions-box div {
  padding: 0.6rem 0.8rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-size: 0.9rem;
}
.suggestions-box div:hover {
  background-color: #f0f4f8;
}
.swap-button-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 0;
  align-self: flex-end;
  padding-bottom: 0.5rem;
}
.swap-button {
  background-color: #e2e8f0;
  color: #4a5568;
  border-radius: 0.5rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
  font-size: 1rem;
}
.swap-button:hover {
  background-color: #cbd5e0;
}
.explore-cabs-button {
  background-color: #2cd3b1;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  font-weight: bold;
  border-radius: 999px;
  color: black;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
  box-shadow: none;
  margin-top: 1.5rem;
  max-width: 269px;
}
.explore-cabs-button:hover {
  background-color: cyan;
}

@media (max-width: 890px) {
  .explore-cabs-button {
    padding: 8px;
    font-size: small;
  }
}
#messageBox {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  text-align: center;
  font-size: 0.875rem;
}
#messageBox.success {
  background-color: #d1fae5;
  color: #065f46;
}
#messageBox.error {
  background-color: #fee2e2;
  color: #991b1b;
}
.info-icons {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 1.5rem;
  color: #000;
  font-size: 0.875rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.info-icons div {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.info-icons i {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}
.app-download-section {
  padding: 3rem 0;
  background-color: #f9fafb;
  text-align: center;
}
.app-download-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1.5rem;
}
.app-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.app-link-card {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 9999px;
  padding: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  margin-bottom: 1rem;
}
.app-link-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.app-link-card img {
  width: 40px;
  height: 40px;
  margin-right: 0.75rem;
}
.app-link-card div div:first-child {
  font-size: 0.75rem;
  color: #718096;
}
.app-link-card div div:last-child {
  font-weight: 600;
  font-size: 1.125rem;
  color: #1a202c;
}
.promo-section {
  padding: 3rem 0;
  background-color: white;
}
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.promo-card {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promo-card img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  display: block;
}

.promo-card-content {
  padding: 1rem;
}
.promo-card-content h3 {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.promo-card-content p {
  color: #000;
  font-size: 0.875rem;
}
/* Section Title */
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: black;
}

/* Grid Layout */
.apart-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Desktop */
  gap: 20px;
  text-align: center;
  background-color: #fff;
}

/* Feature Item Style */
.feature-item {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s ease;
  background-color: #1e977f;
  color: white;
}

.feature-item:hover {
  background: #2cd3b1;
  color: #000;
  transform: translateY(-5px);
}

.feature-item i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: cyan;
  transition: 0.3s;
}

.feature-item:hover i {
  color: #fff;
}

.our-services-section {
  padding: 4rem 2rem;
  background-color: #ffffff;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: #1e977f;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.our-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #1e977f;
  border-radius: 1rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  padding-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.service-card img {
  width: 100%;
  height: 160px;
}

.card-image {
  position: relative;
}

.card-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.badge-icon {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: #009fe3;
  border-radius: 50%;
  padding: 0.5rem;
}

.badge-icon img {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: 1.2rem;
  color: cyan;
  font-weight: 700;
  margin: 1rem;
}

.service-card p {
  font-size: 0.95rem;
  color: #fff;
  padding: 0 1rem;
}

.service-features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 0 1rem;
  margin-top: 1.2rem;
  gap: 1rem;
}

.service-features div {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.75rem;
  color: #000;
  text-align: center;
}

.service-features img {
  width: 32px;
  height: 32px;
  margin-bottom: 0.3rem;
}
.about-st-section {
  padding: 3rem 0;
  background-color: white;
}
.about-st-section .section-title {
  text-align: left;
}
.about-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.about-st-section p {
  color: #000;
  margin-bottom: 1rem;
}
.about-st-section img {
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
}
.about-st-section .highlight {
  font-weight: 600;
  color: #1e977f;
}
.about-st-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e977f;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.about-st-section .tagline {
  margin-top: 2rem;
  text-align: center;
  font-weight: 600;
  font-size: 1.125rem;
}
footer {
  background-color: #1e977f;
  color: #cbd5e0;
  padding: 3rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.footer-link-group h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}
.footer-link-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-link-group a {
  color: #cbd5e0;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}
.footer-link-group a:hover {
  color: white;
}
.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.social-icons a {
  font-size: 1.25rem;
  color: #cbd5e0;
  transition: color 0.2s ease;
}
.social-icons a:hover {
  color: white;
}
.footer-copyright {
  text-align: center;
  color: #a0aec0;
  font-size: 0.875rem;
  margin-top: 2rem;
}
.hidden {
  display: none !important;
}
.location-selector-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 100;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}
.location-selector-overlay.active {
  transform: translateY(0);
}
.overlay-header {
  display: flex;
  align-items: center;
  padding: 1rem;
  background-color: #007bff;
  color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.overlay-header .back-button {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  margin-right: 1rem;
}
.overlay-header input {
  flex-grow: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0.5rem;
  outline: none;
  font-size: 1rem;
  color: #333;
}
.overlay-content {
  flex-grow: 1;
  padding: 1rem;
  overflow-y: auto;
}
.overlay-section-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #718096;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.overlay-list-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e2e8f0;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-align: left;
}
.overlay-list-item:hover {
  background-color: #f0f4f8;
}
.overlay-list-item:last-child {
  border-bottom: none;
}
body.no-scroll {
  overflow: hidden;
}
.swap-button-wrapper-desktop {
  display: none;
}
.swap-button-wrapper-mobile {
  display: flex;
}
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .booking-form .form-grid {
    grid-template-columns: 1fr auto 1fr 1fr 1fr;
    gap: 1rem;
    align-items: end;
  }
  .booking-form .round-trip .form-grid {
    grid-template-columns: 1fr auto 1fr 1fr 1fr 1fr;
  }

  .promo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .apart-features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .apart-images-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .our-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .location-selector-overlay {
    display: none !important;
  }
  .swap-button-wrapper-desktop {
    display: flex;
  }
  .swap-button-wrapper-mobile {
    display: none;
  }
}
@media (min-width: 1024px) {
  .booking-form .form-grid {
    grid-template-columns: 1fr auto 1fr 1fr 1fr;
  }
  .booking-form.round-trip .form-grid {
    grid-template-columns: 1fr auto 1fr 1fr 1fr 1fr;
  }
  .our-services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.grid {
  display: grid;
  gap: 20px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin: 10px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-illustration {
    max-width: 200px;
    margin: 0 auto;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Layout Stacking */
  .booking .container,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .booking-text {
    text-align: center;
  }
  .booking-form {
    justify-self: center;
    margin-top: 30px;
  }

  .popular-cities {
    display: none !important;
  }
  .section-heading,
  .booking h1 {
    font-size: 30px;
    line-height: 1.3;
  }

  .contact-section {
    padding: 40px 0;
  }
  .contact-wrapper {
    padding: 30px;
  }
}
@media (max-width: 500px) {
  .container {
    padding: 0 20px;
  }
  .booking h1 {
    font-size: 26px;
  }
  .section-heading {
    font-size: 24px;
  }
}

.tour-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tour-card {
  text-align: center;
  flex: 1 1 300px;
  max-width: 400px;
}

.tourPackages {
  width: 100%;
  border-radius: 10px;
}

.tour_link {
  text-decoration: none;
}

.tour_btn {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  color: White;
  background-color: #ff6a00;
  border-radius: 10px;
  border-color: white;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 10px 20px,
    rgba(0, 0, 0, 0.12) 0px -2px 6px;
}

.tour-img {
  width: 100%;
  height: 266px;
}

/* overlay system*/

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  width: 50%;
}

.tourPackages {
  width: 100%;
  display: block;
  border-radius: 10px;
  transition: transform 0.5s ease;
}

.image-wrapper:hover .tourPackages {
  transform: scale(1.1); /*zoom effect */
}

/* Overlay styling */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 20px;
  text-align: center;
}

.image-wrapper:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.overlay p {
  font-size: 14px;
  margin-bottom: 15px;
}
/* 
.overlay-btn {
  padding: 8px 16px;
  font-size: 14px;
  background: #ff6a00;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.overlay-btn:hover {
  background: #e65c00;
} */

/* Extras Section */
.extras-section {
  margin-bottom: 60px;
  padding: 0px 0;
  background-color: #fff;
}

.extras-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.extras-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.extra-card {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 25px;
  border: 2px solid #15735f;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.extra-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.extra-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.extra-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}

.extra-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #15735f;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease;
}

.extra-btn:hover {
  background: #15735f; /* darker shade of primary */
}
