/* Fonts */
:root {
  --default-font:
    "Outfit", "Open Sans", 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: "Bebas Neue", "Jost", sans-serif;
  --nav-font: "Outfit", "Poppins", sans-serif;
}

/* Global Colors - Dacarz navy/gold theme */
:root {
  --background-color: #f8f9fc; /* Background color for the entire website */
  --default-color: #1a1a2e; /* Default color used for the majority of the text content */
  --heading-color: #0d1b3e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #f5c518; /* Gold accent — buttons, links, highlights */
  --surface-color: #ffffff; /* Background of boxed elements like cards */
  --contrast-color: #0d1b3e; /* Text on gold/accent backgrounds */
  /* Dacarz palette */
  --navy: #1a2e6c;
  --navy-dark: #0d1b3e;
  --deep-blue: #004aad;
  --gold: #f5c518;
  --gold-light: #ffd84d;
  --white: #f8f9fc;
  --text: #1a1a2e;
  --gray: #6b7280;
  --card-bg: #ffffff;
}

/* Nav Menu Colors */
:root {
  --nav-color: #ffffff;
  --nav-hover-color: #f5c518;
  --nav-mobile-background-color: #0d1b3e;
  --nav-dropdown-background-color: #0d1b3e;
  --nav-dropdown-color: #f8f9fc;
  --nav-dropdown-hover-color: #f5c518;
}

/* Color Presets */

.light-background {
  --background-color: #f0f2f8;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0d1b3e;
  --default-color: #f8f9fc;
  --heading-color: #f8f9fc;
  --surface-color: #1a2e6c;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

strong {
  color: var(--white);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

/* a:hover {
  color: color-mix(in srgb, var(--surface-color), transparent 25%);
  text-decoration: none;
} */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  /* Reset browser/Bootstrap default sizes so sections control their own sizing */
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: var(--navy-dark);
  border-bottom: 3px solid var(--gold);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  margin-right: 10px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  object-fit: cover;
}

.header .logo h1 {
  font-family: "Bebas Neue";
  font-size: 1.8rem;
  margin: 0;
  font-weight: 400;
  color: #f8f9fc;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.logo {
  gap: 8px;
}

.logo-img {
  height: 40px; /* adjust as needed */
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.top-text {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-text {
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 8px;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(13, 27, 62, 0);
  --heading-color: #ffffff;
  --nav-color: #ffffff;
  background-color: transparent;
  border-bottom: 3px solid rgba(245, 197, 24, 0.5);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: rgba(13, 27, 62, 0.95);
  background-color: rgba(13, 27, 62, 0.95);
  border-bottom: 3px solid var(--gold);
}

/*--------------------------------------------------------------
# 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 a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 400;
    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;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-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(--nav-dropdown-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(--nav-dropdown-hover-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;
  }

  .navmenu .megamenu {
    position: static;
  }

  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover > a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu ul li a:hover,
  .navmenu .megamenu ul li .active,
  .navmenu .megamenu ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .megamenu:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dd-box-shadow {
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-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(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-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(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .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;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: rgba(248, 249, 252, 0.65);
  background-color: var(--navy-dark);
  border-top: 3px solid var(--gold);
  font-size: 14px;
  padding: 40px 0 30px;
  position: relative;
}

.footer .sitename {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 2px;
  color: var(--white);
}
.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.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 {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 600;
  /* text-transform: uppercase; */
  font-family: var(--heading-font);
}

.footer .copyright p {
  margin-bottom: 0;
  color: rgba(248, 249, 252, 0.5);
}

.footer .copyright .sitename {
  color: var(--gold);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-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(--accent-color) transparent var(--accent-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(--gold);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--navy-dark);
  line-height: 0;
}

.scroll-top:hover {
  background-color: var(--gold-light);
  color: var(--navy-dark);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 88px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--navy-dark);
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

/* When .section-title wraps an <h2>, inherit sizing instead of re-declaring large px values */
.section-title h2 {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: inherit;
  text-transform: inherit;
  margin-bottom: 1rem;
  padding-bottom: 0;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--gray);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* ── HERO ── */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  background: linear-gradient(
    160deg,
    var(--navy-dark) 0%,
    #0f1f4a 45%,
    #162560 75%,
    #1e3a8a 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Animated gold orb glow */
.hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 197, 24, 0.12) 0%,
    transparent 65%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulseGlow 4s ease-in-out infinite;
}

/* Subtle grid overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 197, 24, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 197, 24, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 70% 70% at 50% 50%,
    black 0%,
    transparent 100%
  );
}

/* Stats bar */
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 3.5rem;
  animation: fadeUp 0.7s 0.45s ease both;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

/* decorative circles — now centered */
.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245, 197, 24, 0.12);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hc1 {
  width: 780px;
  height: 780px;
}
.hc2 {
  width: 560px;
  height: 560px;
  border-color: rgba(245, 197, 24, 0.18);
}
.hc3 {
  width: 360px;
  height: 360px;
  background: rgba(245, 197, 24, 0.04);
  border-color: rgba(245, 197, 24, 0.28);
}

/* Rotating dashed ring */
.hc4 {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 1px dashed rgba(245, 197, 24, 0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spinSlow 30s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid rgba(245, 197, 24, 0.45);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 1.6rem;
  animation: fadeUp 0.7s ease both;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.8rem, 9vw, 6.5rem);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 4px;
  margin-bottom: 1.4rem;
  animation: fadeUp 0.7s 0.12s ease both;
}

.hero-title .gold {
  color: var(--gold);
}

/* Thin gold divider line */
.hero-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 1.6rem;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(248, 249, 252, 0.72);
  margin-bottom: 2.6rem;
  max-width: 520px;
  animation: fadeUp 0.7s 0.25s ease both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.7s 0.35s ease both;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 60px;
  }
  .hero-stats {
    flex-direction: column;
  }

  .stat + .stat {
    border-left: none;
    border-top: 1px solid rgba(245, 197, 24, 0.15);
  }
  .hc1 {
    width: 400px;
    height: 400px;
  }
  .hc2 {
    width: 280px;
    height: 280px;
  }
  .hc3 {
    width: 180px;
    height: 180px;
  }
  .hc4 {
    width: 240px;
    height: 240px;
  }
}

@media (max-width: 768px) {
  /* .nav-links {
    display: none;
  } */
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-stats {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 12px 0;
}

.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  transition: 0.3s;
  padding: 0 10px;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--gold);
}

.about .read-more {
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 8px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent-color);
}

.about .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .read-more:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about .read-more:hover i {
  transform: translate(5px, 0);
}

/*--------------------------------------------------------------
# Mission, Vision, and Core Values
--------------------------------------------------------------*/
.about-us-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.about-us-border-color {
  border-color: rgba(245, 197, 24, 0.4);
}

.mission .vision .core-values {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.emoji-size {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
}

.why-us-section {
  text-align: center;
  padding: 10px 0;
  /* position: relative; */
}

.why-us-section-span {
  text-align: center;
  /* margin-top: 50px; */
  position: relative;
}

.why-us .section-title h2,
.why-us .section-title p,
.why-us .section-title span {
  color: var(--white);
}

.why-us .section-title h2::after {
  background: var(--gold);
}

.why-us .content h2 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 2px;
  color: var(--white);
}

.why-us .content p {
  color: rgba(248, 249, 252, 0.75);
  line-height: 1.7;
}

.why-us .image-wrapper img {
  border-radius: 14px;
  border: 3px solid rgba(245, 197, 24, 0.3);
}

.why-us .faq-container .faq-item {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(245, 197, 24, 0.2);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.why-us .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.why-us .faq-container .faq-item h3 {
  font-weight: 500;
  font-size: 17px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  color: var(--white);
}

.why-us .faq-container .faq-item h3 span {
  color: var(--gold);
  padding-right: 5px;
  font-weight: 600;
}

.why-us .faq-container .faq-item h3:hover {
  color: var(--gold);
}

.why-us .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.why-us .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  color: rgba(248, 249, 252, 0.7);
}

.why-us .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 22px;
  line-height: 0;
  transition: 0.3s;
  color: var(--gold);
}

.why-us .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
  color: rgba(248, 249, 252, 0.6);
}

.why-us .faq-container .faq-item .faq-toggle:hover {
  color: var(--gold);
}

.why-us .faq-container .faq-active h3 {
  color: var(--gold);
}

.why-us .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.why-us .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--gold);
}

.why-us .why-us-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-us .why-us-img img {
  max-height: 70%;
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.skills .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.skills .content p:last-child {
  margin-bottom: 0;
}

.skills .content ul {
  list-style: none;
  padding: 0;
}

.skills .content ul li {
  padding-bottom: 10px;
}

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  color: var(--default-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--heading-color), transparent 90%);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--heading-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: none;
  padding: 2rem;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.services .service-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.services .service-item .icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.services .service-item .icon i {
  color: var(--gold);
  font-size: 1.5rem;
  transition: 0.3s;
}

.services .service-item h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: var(--navy-dark);
}

.services .service-item h4 a {
  color: var(--navy-dark);
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 1.65;
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 0;
}

.services .service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26, 46, 108, 0.12);
  border-color: var(--gold);
}

.services .service-item:hover::after {
  transform: scaleX(1);
}

.services .service-item:hover h4 a {
  color: var(--navy);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-section {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}
.contact-section-p {
  font-size: 2rem;
  text-align: center;
  position: relative;
}

.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 30px;
  height: 100%;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--gold);
  background: rgba(245, 197, 24, 0.1);
  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: 1rem;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  letter-spacing: normal;
  text-transform: none;
  margin-bottom: 5px;
  color: var(--navy-dark);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--gold);
  color: var(--navy-dark);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(
    in srgb,
    var(--background-color),
    transparent 50%
  );
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--gold);
}

.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type="submit"] {
  color: var(--navy-dark);
  background: var(--gold);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 8px;
  font-weight: 700;
}

.contact .php-email-form button[type="submit"]:hover {
  background: var(--gold-light);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid
    color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .error-404 .error-title {
    font-size: 1.5rem;
  }

  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .error-404 .search-box {
    margin: 0 20px;
  }
}

/* in case */

:root {
  --navy: #1a2e6c;
  --navy-dark: #0d1b3e;
  --gold: #f5c518;
  --gold-light: #ffd84d;
  --white: #f8f9fc;
  --text: #1a1a2e;
  --gray: #6b7280;
  --card-bg: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  padding: 15px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(245, 197, 24, 0.4);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(245, 197, 24, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 15px 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid rgba(248, 249, 252, 0.3);
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245, 197, 24, 0.06);
}

.stat {
  text-align: center;
  padding: 1.4rem 2.2rem;
  flex: 1;
}

.stat + .stat {
  border-left: 1px solid rgba(245, 197, 24, 0.15);
}

.stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  color: var(--gold);
  letter-spacing: 2px;
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: rgba(248, 249, 252, 0.55);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes spinSlow {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* ── SERVICES ── */
.section {
  padding: 90px 5%;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.section-sub {
  max-width: 520px;
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
  cursor: default;
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26, 46, 108, 0.12);
  border-color: var(--gold);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  letter-spacing: normal;
  color: var(--navy-dark);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ── WHY US ── */
.why-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
}

.why-section .section-title {
  color: var(--white);
}
.why-section .section-sub {
  color: rgba(248, 249, 252, 0.65);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: 14px;
  padding: 1.8rem;
  transition: background 0.25s;
}

.why-card:hover {
  background: rgba(245, 197, 24, 0.08);
}

.why-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  letter-spacing: normal;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.why-card p {
  font-size: 0.88rem;
  color: rgba(248, 249, 252, 0.6);
  line-height: 1.6;
}

/* ── FLEET ── */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.fleet-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: var(--card-bg);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(26, 46, 108, 0.13);
}

.fleet-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a8a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.fleet-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(13, 27, 62, 0.6));
}

.fleet-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.fleet-info {
  padding: 1.4rem;
}
.fleet-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  letter-spacing: normal;
  color: var(--navy-dark);
  margin-bottom: 0.4rem;
}
.fleet-info p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.fleet-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.tag {
  background: #eef2ff;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
}

/* ── BOOKING ── */
.booking-section {
  background: var(--navy-dark);
  color: var(--white);
}

.booking-section .section-title {
  color: var(--white);
}
.booking-section .section-sub {
  color: rgba(248, 249, 252, 0.65);
}

.booking-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: 18px;
  padding: 2.5rem;
  max-width: 680px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(248, 249, 252, 0.7);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-size: 0.93rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group select option {
  background: var(--navy-dark);
  color: var(--white);
}
.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 15px;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.tcard {
  background: var(--card-bg);
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.8rem;
  position: relative;
}

.tcard-quote {
  font-size: 3rem;
  color: var(--gold);
  font-family: Georgia, serif;
  line-height: 0.5;
  margin-bottom: 1rem;
}

.tcard p {
  font-size: 0.93rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.tcard-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}
.tcard-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy-dark);
}
.tcard-role {
  font-size: 0.78rem;
  color: var(--gray);
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

/* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  border-top: 3px solid var(--gold);
  padding: 60px 5% 30px;
  color: rgba(248, 249, 252, 0.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo-text {
  margin-bottom: 1rem;
  display: block;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 260px;
}

footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  /* text-transform: uppercase; */
  margin-bottom: 1.2rem;
}

footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
footer ul a {
  color: rgba(248, 249, 252, 0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
footer ul a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(248, 249, 252, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.footer-gold {
  color: var(--gold);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
