@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   CSS Variables (Design System)
   ========================================================================== */
:root {
  /* Brand Colors */
  --color-primary: #172B58;
  --color-secondary: #243C72;
  --color-gold: #C89A2E;
  --color-gold-light: #D9B45A;
  --color-white: #FFFFFF;
  --color-off-white: #F8F9FC;
  --color-border: #E8ECF2;
  --color-text-dark: #1C2334;
  --color-text-light: #3b4558;

  /* Typography */
  --font-heading: Georgia, 'Times New Roman', Times, serif;
  --font-body: 'Poppins', sans-serif;

  /* Layout */
  --container-width: 1300px;
  --header-height: 90px;

  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-smooth: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);

  /* Shadows */
  --shadow-sm: 0 5px 15px rgba(28, 35, 52, 0.05);
  --shadow-md: 0 10px 30px rgba(28, 35, 52, 0.08);
  --shadow-lg: 0 20px 40px rgba(23, 43, 88, 0.12);
  --shadow-gold: 0 10px 20px rgba(200, 154, 46, 0.2);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text-light);
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

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

a:hover {
  color: var(--color-primary);
}

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

ul {
  list-style: none;
}

/* ==========================================================================
   Layout & Utility Classes
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 100px 0;
}

.bg-off-white {
  background-color: var(--color-off-white);
}

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

.bg-secondary {
  background-color: var(--color-secondary);
}

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

.text-white {
  color: var(--color-white);
}

.text-gold {
  color: var(--color-gold);
}

.section-title {
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-title p {
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-title.light h2,
.section-title.light p {
  color: var(--color-white);
}

.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

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

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 35px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-fast);
  border: 2px solid transparent;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-gold {
  background-color: var(--color-gold);
  color: var(--color-white);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.btn-outline-primary {
  background-color: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-outline-primary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-fast);
  background-color: var(--color-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header.sticky {
  position: fixed;
  background-color: var(--color-white);
  box-shadow: var(--shadow-md);
  border-bottom: none;
}

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

.logo img {
  width: 300px;
  max-width: 100%;
  height: auto;
  display: block;
}

.nav-menu {
  display: flex;
  gap: 35px;
  height: 100%;
  align-items: center;
}

.nav-menu>li {
  height: 5%;
  display: flex;
  align-items: center;
}

.nav-menu>li.mega-dropdown {
  position: static;
}

.nav-menu li a {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-menu li a i {
  font-size: 0.8rem;
  margin-top: 2px;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: var(--transition-fast);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  width: 100%;
}

.btn-quote {
  background-color: var(--color-gold);
  color: var(--color-white);
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-quote:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  background-color: var(--color-white);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.mega-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

.mega-menu-col {
  display: flex;
  flex-direction: column;
}

.mega-col-title {
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.mega-col-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-col-list li a {
  display: inline-flex;
  color: #666666;
  padding: 8px 0;
  font-size: 0.95rem;
  font-weight: 400;
  text-transform: none;
  transition: color 0.2s;
}

.mega-col-list li a:hover {
  color: var(--color-primary);
}

.mega-separator {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding-right: 20px;
}

.header-actions a {
  color: var(--color-off-white);
  transition: color 0.3s ease;
}

.mega-left {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.mega-left h3 {
  color: var(--color-primary);
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 400;
}

.mega-left p {
  color: var(--color-text-dark);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 90%;
}

.mega-btn {
  display: inline-block;
  background-color: #d1d5db;
  /* Light grey as in image */
  color: #111;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.mega-btn:hover {
  background-color: #fff;
}

.mega-mid {
  display: flex;
  align-items: center;
}

.mega-links {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.mega-links li {
  margin-bottom: 20px;
}

.mega-links li:last-child {
  margin-bottom: 0;
}

.mega-links li a {
  color: var(--color-text-dark);
  text-decoration: none;
  font-size: 1.05rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: color 0.2s;
}

.mega-links li a::after {
  display: none;
  /* Hide gold line for mega menu links */
}

.mega-links li a:hover {
  color: var(--color-gold);
}

.mega-links li a .num {
  color: var(--color-text-light);
  font-size: 1.15rem;
}

.mega-right {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 0;
}

.mega-right-overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 43, 88, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px;
}

.mega-right-overlay h3 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.2;
}

.mega-btn-white {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.8);
  color: #111;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.mega-btn-white:hover {
  background-color: #fff;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 150px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  text-decoration: none;
  background-color: transparent;
  color: transparent !important;
}

.header-contact-btn:hover {
  box-shadow: 2px 2px 25px rgba(37, 37, 37, 0.3);
}

.header-contact-btn::after {
  content: "Let's Talk";
  height: 100%;
  width: 100%;
  background-color: var(--color-primary);
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(50px);
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
  letter-spacing: 0.5px;
}

.header-contact-btn::before {
  content: "CONTACT US";
  height: 100%;
  width: 100%;
  background-color: var(--color-gold);
  color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(0px) scale(1.2);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
  letter-spacing: 0.5px;
}

.header-contact-btn:hover::after {
  transform: translateY(0) scale(1.2);
}

.header-contact-btn:hover::before {
  transform: translateY(-50px) scale(0) rotate(120deg);
}

.header-search-btn {
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.3s;
}

.header-search-btn:hover {
  color: var(--color-gold);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--color-primary);
  cursor: pointer;
  background: none;
  border: none;
}


/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-color: var(--color-primary);
  /* Fallback */
  padding-top: var(--header-height);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(23 43 88 / 0%) 0%, rgb(23 42 88 / 0%) 60%, rgba(23, 42, 88, 0) 100%);
  z-index: 1;
}

/* Add a subtle world map overlay if desired */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/world-map-pattern.png');
  background-size: cover;
  opacity: 0.1;
  z-index: 1;
  pointer-events: none;
}

.hero-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.hero-text {
  max-width: 850px;
}

.hero-text .subtitle {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 25px;
  display: block;
}

.hero-text h1 {
  color: var(--color-white);
  margin-bottom: 30px;
  font-size: 4rem;
}

.hero-text h1 span {
  color: var(--color-gold);
}

.hero-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  margin-bottom: 40px;
  max-width: 700px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

/* Diagonal Gold Line */
.hero-diagonal-line {
  position: absolute;
  bottom: 5%;
  right: 0;
  width: 50%;
  height: 4px;
  background: var(--color-gold);
  transform: rotate(-10deg) scaleX(1.5);
  transform-origin: right bottom;
  z-index: 1;
  opacity: 0.8;
}

/* Hero Stats - New Layout */
.hero-stats-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  transform: translateY(50px);
  /* Overlap into the next section */
}

.stats-card-new {
  background: var(--color-white);
  border-radius: 16px;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.stat-item-new {
  text-align: center;
  position: relative;
}

.stat-item-new:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background-color: var(--color-border);
}

.stat-item-new i {
  font-size: 2.2rem;
  color: var(--color-text-light);
  /* Darker icon color as in reference */
  margin-bottom: 15px;
}

.stat-item-new h3 {
  color: var(--color-gold);
  font-size: 2.5rem;
  margin-bottom: 5px;
}

.stat-item-new p {
  color: var(--color-text-dark);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

/* ==========================================================================
   Page Banner (Inner Pages)
   ========================================================================== */
.page-banner {
  background-color: var(--color-primary);
  background-image: url('../images/page-banner-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 150px 0 80px;
  text-align: center;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(23, 43, 88, 0.85);
}

.page-banner-content {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  color: var(--color-white);
  margin-bottom: 15px;
  font-size: 3.5rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
  color: var(--color-gold);
}

.breadcrumb i {
  font-size: 0.8rem;
  color: var(--color-gold);
}

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   Footer
   ========================================================================== */
/* Footer Wrapper */
.footer-wrapper {
  position: relative;
  background-color: var(--color-white);
  padding-top: 80px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  /* add a subtle border to separate from white sections above if needed */
}

/* Footer Modern */
.footer-modern {
  padding-bottom: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 30px;
}

.footer-brand .footer-logo {
  width: 180px;
  height: auto;
  margin-bottom: 30px;
  display: block;
  margin-bottom: 20px;

}

.footer-brand p {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-info {
  display: flex;
  gap: 40px;
}

.contact-info>div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-info .label,
.footer-links-col .label {
  color: var(--color-primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: capitalize;
}

.contact-info .val {
  color: #444;
  font-size: 0.95rem;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links-col .label {
  margin-bottom: 10px;
}

.footer-links-col a {
  color: #555;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links-col a:hover {
  color: var(--color-gold);
}

.footer-bottom-modern {
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 30px;
}

.footer-bottom-modern p {
  color: #777;
  font-size: 0.85rem;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .cta-floating-card {
    flex-direction: column;
    padding: 40px;
    text-align: center;
  }

  .cta-map {
    margin-top: 30px;
    width: 100%;
    max-width: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-info {
    flex-direction: column;
    gap: 20px;
  }

  .cta-text h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 568px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    flex-direction: column;
    gap: 20px;
  }

  .cta-text h2 {
    font-size: 2.5rem;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .hero-text h1 {
    font-size: 3.5rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p {
    margin: 0 auto 40px;
  }

  .hero-buttons {
    justify-content: center;
    margin-bottom: 50px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--color-white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
  }

  .nav-menu.active {
    left: 0;
  }

  .mobile-menu-btn {
    display: block;
  }

  .header-actions .btn {
    display: none;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .btn-quote {
    display: none;
  }
}

/* Standard Dropdown */
.std-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 280px;
  background-color: var(--color-white);
  border-top: 3px solid var(--color-gold);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.has-dropdown:hover>.std-dropdown {
  opacity: 1;
  visibility: visible;
}

.std-dropdown>li {
  position: relative;
  display: block;
}

.std-dropdown>li>a {
  display: flex !important;
  justify-content: space-between;
  padding: 12px 25px;
  color: var(--color-primary);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: none;
  transition: all 0.2s;
}

.std-dropdown>li>a:hover {
  background-color: rgba(0, 0, 0, 0.03);
  color: var(--color-gold);
}

.std-dropdown>li>a::after {
  display: none !important;
}

/* Nested Dropdown */
.has-nested {
  position: relative;
}

.nested-dropdown {
  position: absolute;
  top: 0;
  left: 100%;
  width: 320px;
  background-color: var(--color-white);
  border-top: 3px solid var(--color-gold);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.has-nested:hover>.nested-dropdown {
  opacity: 1;
  visibility: visible;
}

.nested-dropdown li a {
  display: block;
  padding: 12px 25px;
  color: var(--color-primary);
  font-size: 0.95rem;
  text-transform: none;
}

.nested-dropdown li a:hover {
  background-color: rgba(0, 0, 0, 0.03);
  color: var(--color-gold);
}

/* ==========================================================================
   Sleek Hero Design (Minimalist Luxury)
   ========================================================================== */
.hero-sleek {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}



.hero-content-sleek {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 80px 0;
}

.hero-badge-sleek {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.hero-badge-sleek .line {
  width: 50px;
  height: 2px;
  background-color: var(--color-gold);
}

.hero-badge-sleek .text {
  color: var(--color-gold);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero-title-sleek {
  font-family: 'Playfair Display', 'Times New Roman', Times, serif;
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 10px;
  letter-spacing: 0;
}

.hero-title-sleek span {
  font-weight: 600;
  color: var(--color-gold);
}

.hero-desc-sleek {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 650px;
}

.hero-buttons-sleek {
  display: flex;
  gap: 20px;
}

.btn-sleek {
  padding: 14px 35px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.4s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-sleek-primary {
  background-color: var(--color-gold);
  color: var(--color-white);
  border: 1px solid var(--color-gold);
}

.btn-sleek-primary:hover {
  background-color: transparent;
  color: var(--color-gold);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.btn-sleek-outline {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-gold);
}

.btn-sleek-outline:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
}

/* Hero Stats Bar */
.hero-stats-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(50%);
  z-index: 10;
}

.hero-stats-bar {
  background: var(--color-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.8rem;
}

.stat-icon img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.stat-text h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-gold);
  margin-bottom: 2px;
  line-height: 1;
}

.stat-text p {
  font-size: 0.95rem;
  color: var(--color-primary);
  margin: 0;
  font-weight: 700;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .hero-title-sleek {
    font-size: 4rem;
  }
}

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

  .hero-buttons-sleek {
    flex-direction: row;
  }

  .hero-desc-sleek {
    font-size: 1.05rem;
  }

  .hero-sleek {
    height: 100vh;
    padding: 50px 10px 10px;
  }

  .hero-sleek::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(23, 43, 88, 0.95) 0%, rgba(23, 43, 88, 0.7) 50%, rgba(23, 43, 88, 0.2) 100%);
    z-index: 1;
  }
  .hero-stats-wrapper {
    transform: translateY(86%);
}
.hero-stats-bar{
    gap: 10px;
}
.stat-divider {
  width: 1px;
  height: 20px;
  background-color: rgba(0, 0, 0, 0.1);
}
}

@media (max-width: 568px) {

  .hero-buttons-sleek {
    flex-direction: column;
  }
}