/* Fonts */
:root {
  /* Fonts */
  --default-font:
    "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;

  /* Global Colors */
  --primary-color: #020307;
  --primary-text-color: #ffffff;
  --secondary-color: #f4f5fe;
  --secondary-text-color: #000000;
  --background-color: #000000;
  --section-background-color: #0f172a;
  --card-background-color: #1e293b;
  /* --accent-color: #A4DBB6; */
  --accent-light: #a4dbb6;
  --accent-color: #66beab;

  /* --accent-light: #66BEAB; */

  /* Smooth scroll */
  scroll-behavior: smooth;
}

.environmental-policy,
.contact-section,
.terms-section {
  background-color: #162033;
  color: var(--primary-text-color) !important;
}

.service-section,
.footer-section {
  background-color: #0f172a;
  color: var(--primary-text-color) !important;
}

.pet-section {
  background-color: #162033;
  color: var(--primary-text-color) !important;
}

.plane-section,
.faq-section {
  background-color: var(--section-background-color);
  color: var(--primary-text-color) !important;
}

.pet-section-body-content {
  background-color: #162033 !important;
  color: var(--primary-text-color) !important;
}

.text-primary {
  color: var(--primary-text-color) !important;
}

.text-secondary {
  color: var(--secondary-text-color) !important;
}

.news {
  cursor: pointer;
  text-decoration: none;
  color: var(--primary-text-color);
  cursor: pointer;
}

.pic img {
  width: 100%;
  object-fit: fill;
}

.aboutuspic img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 1.5rem;
}

.passenger img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.plane-section img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.section {
  width: 100%;
  height: 100vh;
}

.align-items-end {
  margin-right: 150px;
}

@media (max-width: 768px) {
  .align-items-end {
    margin-right: 20px;
  }

  .table-bordered {
    font-size: 9px;
  }

  .p-5 {
    padding: 3px !important;
    font-size: 8px;
  }

  .hero-waves {
    height: 50px !important;
  }

  .cookie-banner {
    font-size: 12px;
  }

  .cookie-buttons {
    flex-direction: column;
  }
}

/* Smooth scroll */
/* Removed redundant :root block */

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--secondary-text-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: #007bff;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--primary-text-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary-text-color);
  font-weight: bold;
  font-family: var(--heading-font);
}

/*Email Form Messages
------------------------------*/
.email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.email-form .loading {
  display: none;
  background: var(--primary-text-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--primary-color);
  border-top-color: var(--secondary-color);
  animation: email-form-loading 1s linear infinite;
}

@keyframes email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.justify-content-between {
  flex-direction: column-reverse !important;
}

.header-footer-bg {
  background-color: var(--primary-color);
  color: var(--primary-text-color);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--primary-text-color);
  background-color: var(--primary-color);
  padding: 5px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 2px solid var(--primary-color);
  box-shadow: 0px 4px 8px rgba(39, 3, 3, 0.8);
}

.brand-logo {
  margin-left: 85px;
  min-width: 120px;
  max-width: 200px;
  flex-shrink: 0;
}

.navbar-items {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  overflow: visible;
}

.brand-logo-other {
  margin-left: 85px;
  max-width: 100%;
}

.header .logo img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.passenger {
  border-radius: 1.5rem;
  box-shadow: 0px 4px 8px rgba(39, 3, 3, 0.8);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu > ul > li {
    white-space: nowrap;
    padding: 15px 8px;
    color: #dbc4fc;
  }

  .navmenu > ul > li > a {
    color: #dbc4fc;
  }

  .navmenu > ul > li > a:hover {
    color: #ffffff;
  }

  .navmenu > ul > li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--primary-text-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--secondary-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover > a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 25px;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--primary-text-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--primary-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--primary-text-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--secondary-text-color);
    background-color: var(--secondary-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .align-items-end {
    margin-right: 150px;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--primary-text-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--primary-color);
    color: var(--primary-text-color);
    border: 1px solid
      color-mix(in srgb, var(--primary-text-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--primary-text-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--primary-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--primary-color);
    color: var(--primary-text-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--secondary-text-color);
    background-color: var(--secondary-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--primary-color);
    color: var(--primary-text-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--primary-color);
    transition: none;
    display: none;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block !important;
    background-color: color-mix(in srgb, var(--primary-color), transparent 10%);
    margin: 10px 0;
    padding: 10px 0;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }

  .brand-logo {
    margin-left: 30px;
  }

  .align-items-end {
    margin-right: 20px;
  }
}

/* global p font size */
p {
  font-size: 14px !important;
}

.email-form label {
  font-size: 14px !important;
}

.col-lg-3.col-md-3.footer-links ul li {
  line-height: 0.6;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--primary-text-color);
  background-color: var(--primary-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid
    color-mix(in srgb, var(--primary-text-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  max-width: 150px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--primary-text-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid
    color-mix(in srgb, var(--primary-text-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--primary-text-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: color-mix(in srgb, var(--secondary-color), transparent 25%);
  border-color: var(--secondary-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

ul li,
ol li {
  font-size: 14px !important;
}
.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--primary-text-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--secondary-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  /* border: 1px solid var(--primary-text-color); */
  display: flex;
  background-color: var(--primary-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--secondary-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--section-background-color);
  color: var(--primary-text-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type="submit"] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  color: black;
  background: var(--primary-text-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type="submit"]:hover {
  background: var(--primary-text-color);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid
    color-mix(in srgb, var(--primary-text-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--secondary-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--primary-color) transparent var(--primary-color)
    transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--primary-text-color);
  line-height: 0;
}

.scroll-top:hover {
  background: color-mix(in srgb, var(--primary-color), transparent 25%);
  color: var(--primary-text-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--primary-text-color);
  background-color: var(--background-color);
  padding: 40px 0;
  scroll-margin-top: 63px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

.bg-info {
  background-color: var(--primary-color) !important;
  color: var(--primary-text-color) !important;
}

.planes-container {
  align-items: end !important;
  justify-content: space-around !important;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--secondary-text-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--primary-color);
  margin: 4px 10px;
}

.section-title div {
  color: var(--secondary-text-color);
  margin: 0;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 120px 0 120px 0;
  display: flex;
  align-items: center;
}

.table-highlight {
  color: var(--primary-text-color);
  background: var(--primary-color);
  font-family: var(--heading-font);
  padding: 10px !important;
}

.table-highlight-body tr td {
  padding: 10px;
}

.register-now {
  justify-content: center;
}

.hero .hero-bg {
  margin-top: 70px;
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 80%;
  object-fit: fill;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--secondary-color), transparent 10%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  margin: 0 0 20px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: color-mix(in srgb, var(--secondary-text-color), transparent 30%);
}

.hero h1 span {
  color: var(--secondary-text-color);
  border-bottom: 4px solid var(--primary-color);
}

.hero p {
  color: color-mix(in srgb, var(--secondary-text-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 22px;
  font-weight: 400;
}

.btn-change-language {
  width: 100%;
  text-align: start;
  color: var(--primary-text-color);
  background: var(--primary-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 10px;
  margin-left: 5px;
  /* border-radius: 50px; */
  border: 0px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-rounded {
    font-size: 10px;
  }
}

.hero .hero-waves {
  display: block;
  width: 100%;
  height: 120px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: var(--secondary-text-color);
  opacity: 0.6;
}

.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: var(--secondary-text-color);
  opacity: 0.4;
}

.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: var(--secondary-text-color);
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Enhanced Card Designs
--------------------------------------------------------------*/

/* Modern Card Container */
.card-item {
  background: var(--card-background-color) !important;
  border-radius: 15px !important;
  border: 1px solid #334155;
  overflow: visible;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bio {
  color: var(--accent-color);
}

.card-item:hover {
  transform: translateY(-10px);
}

.card-item .rounded {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  /* padding: 2rem !important; */
  border-radius: 12px !important;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Card Header Styling */
.card-item h4 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  font-family: var(--heading-font);
}

/* Icon Container */
.card-item .icon {
  position: relative;
  margin-bottom: 1.5rem;
  padding: 20px;
  background: rgba(74, 107, 255, 0.1);
  border-radius: 12px;
  display: inline-block;
}

.card-item .icon img {
  max-height: 80px;
  width: auto;
  filter: brightness(1.2) drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

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

/* Card Content Styling */
.card-item .text-start h6 {
  color: var(--primary-text-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.card-item .text-start h6:before {
  /* content: '▸'; */
  position: absolute;
  left: 0;
  color: var(--primary-text-color);
  font-size: 1.2rem;
}

.card-item .text-start p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Card Badge */
.card-item .card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(74, 107, 255, 0.3);
}

/* Full-width Cards Styling */
.col-lg-12 .card-item {
  background: linear-gradient(
    135deg,
    rgba(29, 38, 79, 0.95),
    rgba(44, 47, 97, 0.95)
  ) !important;
  border: 1px solid rgba(74, 107, 255, 0.2) !important;
}

.col-lg-12 .card-item .rounded {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.col-lg-12 .card-item h1 {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  background: linear-gradient(90deg, var(--accent-color), #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.col-lg-12 .card-item h4 {
  text-align: center;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
}

.col-lg-12 .card-item ol {
  padding-left: 1.5rem;
}

.col-lg-12 .card-item ol li {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.8rem;
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  padding-left: 10px;
}

.col-lg-12 .card-item ol li:before {
  /* content: '✓'; */
  position: absolute;
  left: -25px;
  color: var(--accent-light);
  font-weight: bold;
}

/* Pet Images Styling */
.col-lg-12 .row .icon {
  background: transparent;
  padding: 0;
}

.col-lg-12 .row .icon:before {
  display: none;
}

.col-lg-12 .row .icon img {
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.col-lg-12 .row .icon:hover img {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* On-Demand Card */
.card.shadow-lg.border-0 {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--background-color) 100%
  ) !important;
  border: none !important;
  border-radius: 15px !important;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25) !important;
  transition: transform 0.3s ease;
}

.card.shadow-lg.border-0:hover {
  transform: translateY(-5px);
}

.pet-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.management-section {
  background: var(--section-background-color) !important;
  color: var(--primary-text-color);
}

.card-body-environmental {
  background: var(--section-background-color) !important;
  padding: 2rem !important;
  color: var(--primary-text-color);
  border-radius: 12px !important;
}

.card-body {
  background: var(--card-background-color) !important;
  padding: 2rem !important;
  color: var(--primary-text-color);
  border-radius: 12px !important;
}

.card-body-black {
  background: var(--section-background-color) !important;
  padding: 2rem !important;
  color: var(--primary-text-color);
  border-radius: 12px !important;
  border: 1px solid #334155 !important;
}

.section-content {
  background: var(--section-background-color) !important;
  padding: 2rem !important;
  color: var(--primary-text-color);
}

.section-body-content {
  background: var(--section-background-color) !important;
  color: var(--primary-text-color);
}

.section-content-odd {
  background: var(--background-color) !important;
  padding: 2rem !important;
  color: var(--primary-text-color);
}

.card-body ol {
  padding-left: 1.5rem;
}

.card-body ol li {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  padding-left: 10px;
  position: relative;
}

.card-body ol li:before {
  /* content: '•'; */
  position: absolute;
  left: -15px;
  color: var(--accent-light);
  font-size: 1.5rem;
}

/* Table Styling */
.tables .table-bordered {
  width: 100%;
  background: var(--section-background-color) !important;
  border: none !important;
  border-radius: 10px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  color: var(--primary-text-color) !important;
  border-color: var(--card-background-color) !important;
}

.tables .table-bordered thead {
  background: var(--card-background-color);
  border-bottom: 2px solid var(--card-background-color) !important;
}

.tables .table-bordered th {
  /* color: #ffffff !important; */
  font-weight: 600;
  padding: 1rem !important;
  border-color: var(--card-background-color) !important;
}

.tables .table-bordered td {
  /* color: rgba(255, 255, 255, 0.9) !important; */
  padding: 1rem !important;
  border-color: var(--card-background-color) !important;
  font-weight: 500;
}

.tables .table-bordered tbody tr {
  border-bottom: 1px solid #334155;
  /* subtle row separator */
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 100px;
}

.about .content h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  padding: 10px 0px;
  background: color-mix(in srgb, var(--primary-color), transparent 95%);
  color: black;
  border-radius: 7px;
  display: inline-block;
}

.about .content h2 {
  font-weight: 700;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--primary-color);
  color: var(--primary-text-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--primary-color), transparent 25%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  background: color-mix(in srgb, var(--primary-color), transparent 25%);
  margin-left: 10px;
}

.about .icon-boxes {
  align-items: stretch;
}

.about .icon-box {
  background-color: #162033;
  color: var(--primary-text-color) !important;
  padding: 50px 40px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease-out 0s;
}

.about .icon-box i {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 70px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: var(--background-color);
  color: var(--primary-text-color) !important;
}

.about .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-text-color) !important;
}

.about .icon-box p {
  margin-bottom: 0;
}

.about .icon-box:hover {
  background: var(--card-background-color);
  color: var(--primary-text-color) !important;
}

.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {
  .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  background-color: var(--primary-text-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid
    color-mix(in srgb, var(--secondary-text-color), transparent 90%);
  position: relative;
}

.features .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .features-item h3 a {
  color: var(--secondary-text-color);
  transition: 0.3s;
}

.features .features-item:hover {
  border-color: var(--primary-color);
}

.features .features-item:hover h3 a {
  color: var(--primary-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .member-info {
  background-color: var(--primary-text-color);
  color: color-mix(in srgb, var(--secondary-text-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  padding: 20px 15px;
  overflow: hidden;
  transition: 0.5s;
}

.member-info h4 {
  margin-top: 10px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--secondary-text-color), transparent 60%);
  bottom: 0;
  left: 0;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--secondary-text-color), transparent 70%);
}

.team .member .social a:hover {
  color: var(--primary-color);
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

.member .pic {
  width: 200px;
  /* adjust size as needed */
  height: 200px;
  margin: 0 auto 50px;
  /* center + spacing */
  border-radius: 50%;
  /* makes the container circular */
  overflow: hidden;
  /* clips the image into the circle */
}

.member .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* keeps proper crop */
  border-radius: 50%;
  /* ensures perfect round image */
}

/* Smooth zoom animation */
.member .pic img {
  transition: transform 0.4s ease-in-out;
}

/* Zoom in on hover */
.member:hover .pic img {
  transform: scale(1.15);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  color: color-mix(in srgb, var(--secondary-text-color), transparent 30%);
}

.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background: rgba(255, 255, 255, 0.05);
  color: var(--primary-text-color);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem !important;
  border-radius: 12px !important;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 17px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
  color: var(--primary-text-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--primary-text-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  left: 20px;
  font-size: 22px;
  line-height: 0;
  transition: 0.3s;
  color: var(--primary-text-color);
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--primary-text-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--primary-text-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--primary-text-color);
}

.highlight {
  font-weight: bold;
  color: var(--primary-text-color);
}

.team-members {
  margin-top: 20px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item + .info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--primary-text-color);
  background: var(--primary-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .email-form {
  height: 100%;
}

.contact .email-form input[type="text"],
.contact .email-form input[type="email"],
.contact .email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  color: var(--primary-text-color);
  background-color: var(--section-background-color);
  border-color: color-mix(
    in srgb,
    var(--section-background-color),
    transparent 80%
  );
}

.contact .email-form input[type="text"]:focus,
.contact .email-form input[type="email"]:focus,
.contact .email-form textarea:focus {
  border-color: var(--primary-color);
  background-color: #dee0ea;
  color: black;
}

.contact .email-form input[type="text"]:not(:focus),
.contact .email-form input[type="email"]:not(:focus),
.contact .email-form textarea:not(:focus) {
  color: var(--primary-text-color);
}

.contact .email-form input[type="text"]::placeholder,
.contact .email-form input[type="email"]::placeholder,
.contact .email-form textarea::placeholder {
  color: color-mix(in srgb, var(--secondary-text-color), transparent 70%);
}

/*------------------------------------------------------
# Cookies Banner styles
--------------------------------------------------------------
 */

.cookie-banner {
  font-family: Arial, sans-serif;
  background-color: var(--section-background-color);
  color: var(--primary-text-color);
  border-top: 1px solid var(--section-background-color);
  padding: 25px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  z-index: 99999;
  display: none;
}

.cookie-banner h2 {
  margin: 0 0 10px;
  font-size: 18px;
}

.cookie-banner p {
  margin: 0 0 15px;
  line-height: 1.5;
}

.cookie-banner a {
  color: #007bff;
  text-decoration: none;
}

.cookie-banner a:hover {
  text-decoration: underline;
}

.cookie-banner .buttons {
  display: flex;
  gap: 10px;
}

.cookie-banner button {
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

.cookie-banner .accept {
  background-color: var(--primary-text-color);
  color: black;
}

.cookie-banner .decline {
  border: 1px solid red;
  color: red;
  background: none;
}

.terms-headings {
  font-size: 1.5rem;
  font-family: "EB Garamond", serif;
}

.contents p {
  padding: 5px 0;
  line-height: 1.6;
  font-family: Inter, sans-serif;
}

.contents li {
  padding: 5px 0;
  line-height: 1.6;
  font-family: Inter, sans-serif;
}

/* //new  */
/* Layout wrapper */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Background video */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Background image (mobile fallback) */
.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* responsive show/hide */
.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }
}

/* Dark readable gradient overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.7)
  );
  z-index: 10;
}

/* Centered content */
.hero-content {
  position: absolute;
  inset: 0;
  max-width: 1064px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 30;
}

/* Heading */
.hero-title {
  color: white;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.02em;
  font-size: 2rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(to right, white, #ec4899);
  -webkit-background-clip: text;
  color: transparent;
}

/* Subtitle */
.hero-subtitle {
  color: #e5e7eb;
  font-weight: 300;
  font-size: 1.875rem !important;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.875rem !important;
  }
}

/* Plane image position */
.plane-wrapper {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 20;
}

@media (min-width: 768px) {
  .plane-wrapper {
    right: 4rem;
    bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .plane-wrapper {
    right: 6rem;
    bottom: 3rem;
  }
}

/* Plane sizing and shadow */
.plane-img {
  width: 240px;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.35));
}

@media (min-width: 640px) {
  .plane-img {
    width: 300px;
  }
}

@media (min-width: 768px) {
  .plane-img {
    width: 360px;
  }
}

@media (min-width: 1024px) {
  .plane-img {
    width: 460px;
  }
}

/* Responsive Design for Cards */
@media (max-width: 768px) {
  .card-item {
    margin-bottom: 2rem;
  }

  .card-item .rounded {
    padding: 1.5rem !important;
  }

  .card-item h4 {
    font-size: 1.3rem;
  }

  .col-lg-12 .card-item h1 {
    font-size: 2rem;
  }

  .table.table-bordered {
    font-size: 0.85rem;
  }

  .table.table-bordered th,
  .table.table-bordered td {
    padding: 0.5rem !important;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUp {
  animation: fadeInUp 0.6s ease-out;
}

/* Card Footer (if needed) */
.card-item-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Card Stats (for future use) */
.card-stats {
  display: flex;
  justify-content: space-around;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1.5rem;
}

.stat-item {
  text-align: center;
}

.stat-value {
  color: var(--accent-light);
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.membership-card {
  background-color: var(--card-background-color);
  color: var(--primary-text-color);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--card-border-color);
  max-width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-headers {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.logo-m {
  font-weight: 900;
  font-size: 24px;
  margin-right: 20px;
}

.card-headers h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.card-content {
  line-height: 1.6;
}

.content-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
}

.item-number {
  min-width: 30px;
  font-weight: 400;
}

.content-item p {
  margin: 0;
  font-size: 16px;
  color: #cbd5e0;
  /* Subtle grey-blue text */
}

/* Responsive adjustment */
@media (max-width: 600px) {
  .membership-card {
    margin: 20px;
    padding: 25px;
  }
}

.drinks-menu-container {
  max-width: 100%;
  /* margin: 0 auto; */
  /* padding: 30px; */
  background-color: var(--section-background-color);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Main heading styles */
.main-heading {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-text-color);
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 15px;
}

/* Section container */
.sections-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.refreshments > h2 {
  text-align: center;
  margin-bottom: 20px;
}

/* Individual section styles */
.section {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.section:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.section-heading {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--primary-text-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  align-items: center;
}

/* Item list styles */
.item-list {
  list-style-type: none;
  text-align: center;
}

.item-list li {
  padding: 6px 0;
  font-size: 1.1rem;
  align-items: center;
}

.item-list li:last-child {
  border-bottom: none;
}

/* Divider styles */
.divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--accent-color),
    transparent
  );
  margin: 20px 0;
  display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sections-container {
    grid-template-columns: 1fr;
  }

  .divider {
    display: block;
  }

  .main-heading {
    font-size: 2rem;
  }

  .drinks-menu-container {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .main-heading {
    font-size: 1.6rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .item-list li {
    font-size: 1rem;
  }

  body {
    padding: 10px;
  }
}

/* Footer note */
.footer-note {
  text-align: center;
  margin-top: 40px;
  font-family: var(--nav-font);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.image-container {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  border-radius: 0.25rem;
  margin-bottom: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.spec-card {
  background-color: #162033;
  /* Card dark navy background */
  border: 1px solid #1e293b;
  /* Subtle card border */
  border-radius: 10px;
  padding: 30px;
  max-width: 650px;
  margin: auto;
  color: #fff;
}

.spec-section {
  margin-bottom: 35px;
}

.spec-section h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #89909c;
  /* Line under headings */
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 16px;
}

.label {
  color: #94a3b8;
  /* Dimmed grey for labels */
  width: 45%;
}

.value {
  color: var(--primary-text-color);
  /* Teal/Cyan color for data */
  width: 55%;
  text-align: left;
  line-height: 1.4;
}

/* Remove bottom margin from last section */
.spec-section:last-child {
  margin-bottom: 0;
}

.planes {
  display: grid;
  place-items: center;
  /* Centers both horizontally and vertically in one go */
  min-height: 700px;
}

.planes img {
  width: 100%;
  border-radius: 12px;
  height: auto;
  display: block;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.environmental img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
  border-radius: 12px;
}

/* FAQ Section Styles */
.faq-section .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  background: var(--card-background-color);
  transition: all 0.3s ease-in-out;
}

/* buttons  */
.app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  background-color: var(--primary-text-color);
  color: var(--secondary-text-color);
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  outline: none;
  min-width: 180px;
}

.btn-rounded {
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.btn-right-rounded {
  border-radius: 0 50px 50px 0;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.app-btn:hover {
  /* transform: translateY(-5px); */
  box-shadow:
    0 0 20px rgba(255, 255, 255, 0.8),
    0 0 40px rgba(255, 255, 255, 0.6),
    0 0 60px rgba(255, 255, 255, 0.4);
  background-color: white;
  color: black;
}

/* Pulse animation for rounded button */
.btn-rounded:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  background-color: rgba(255, 249, 249, 0.1);
  animation: pulse 1.5s infinite;
}

/* Shine effect for right-rounded button */
.btn-right-rounded:hover::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  animation: shine 1.5s ease-out infinite;
}

/* Keyframes for pulse animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.1);
    opacity: 0;
  }

  100% {
    transform: scale(1.1);
    opacity: 0;
  }
}

/* Keyframes for shine animation */
@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(30deg);
  }

  100% {
    transform: translateX(100%) rotate(30deg);
  }
}

/* Icon styles */
.app-btn i {
  margin-right: 10px;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .button-group {
    flex-direction: column;
    align-items: center;
  }

  .app-btn {
    width: 100%;
    max-width: 280px;
  }

  .container {
    padding: 25px;
  }
}

/* --- Aurora effect --- */
.aurora {
  /* Customise these per-instance via inline styles or a class */
  --c1: #2c2f61;
  --c2: #9175a1;
  --c3: #66beab;
  --c4: #a4dbb6;
  --speed: 2;

  /* Internal tunables */
  --dur: calc(10s / var(--speed));
  --grad: linear-gradient(
    135deg,
    var(--c1),
    var(--c2),
    var(--c3),
    var(--c4),
    var(--c1)
  );
  --bg-size: 200% 200%;
  --blur: 12px;
  --glow-opacity: 0.6;

  position: relative;
  display: inline-block;
  isolation: isolate; /* contains the glow layer */
  color: transparent;
  background-image: var(--grad);
  background-size: var(--bg-size);
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: aurora var(--dur) ease-in-out infinite alternate;
}

.paragraph-spacing {
  font-size: 1rem !important;
}
.list-counter {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
}

.list-counter li {
  counter-increment: item;
  margin-bottom: 8px;
  font-size: 14px !important;
}

.list-counter li::before {
  content: "●";
  font-weight: bold;
  margin-right: 6px;
}

/* Glow layer */
.aurora::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: -1;

  background-image: var(--grad);
  background-size: var(--bg-size);
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;

  filter: blur(var(--blur));
  opacity: var(--glow-opacity);

  animation: aurora var(--dur) ease-in-out infinite alternate;
}

@keyframes aurora {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 50% 100%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 50% 0%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Variant: subtle glow */
.aurora--subtle {
  --blur: 9px;
  --glow-opacity: 0.4;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .aurora,
  .aurora::before {
    animation: none;
  }
}
