/* =========================================================
   Root Variables
========================================================= */

:root {
  --color-black: #0b131f;
  --color-black-soft: #121e2d;
  --color-charcoal: #1c2b3d;

  --color-white: #ffffff;
  --color-gray-light: #e0e2e5;
  --color-gray: #9aa3af;

  --color-yellow: #f1cf6d;
  --color-yellow-dark: #d8b450;
  --color-yellow-soft: rgba(241, 207, 109, 0.12);

  --border-light: rgba(255, 255, 255, 0.08);
  --border-yellow: rgba(241, 207, 109, 0.25);

  --navy-shadow: 0 24px 70px rgba(4, 9, 16, 0.5);
  --transition: 300ms cubic-bezier(0.16, 1, 0.3, 1);

  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}


/* =========================================================
   Global Styles
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--color-white);
  background:
    linear-gradient(
      180deg,
      var(--color-black) 0%,
      var(--color-black-soft) 100%
    );
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.2px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.obfuscatedEmail a{
  color: #0F1926;
}

/* =========================================================
   Site Header
========================================================= */

.site-header {
  position: absolute;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  overflow: visible;
}

.custom-navbar {
  min-height: 124px;
  padding: 18px 0;
  overflow: visible;
  border-bottom: 1px solid var(--border-light);
  background: rgba(11, 19, 31, 0.88);
  box-shadow: 0 12px 35px rgba(4, 9, 16, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.custom-navbar > .container,
.custom-navbar .navbar-collapse,
.custom-navbar .navbar-nav {
  overflow: visible;
}


/* =========================================================
   Navbar Logo
========================================================= */

.navbar-brand {
  display: flex;
  align-items: center;
  margin-right: 32px;
  padding: 0;
}

.navbar-logo {
  display: block;
  width: auto;
  height: 92px;
  max-width: 100%;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.navbar-brand:hover .navbar-logo,
.navbar-brand:focus .navbar-logo {
  opacity: 0.92;
  transform: scale(1.02);
}


/* =========================================================
   Navbar Links
========================================================= */

.navbar-nav {
  align-items: center;
  gap: 8px;
}

.custom-navbar .nav-link {
  position: relative;
  padding: 14px 14px !important;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  white-space: nowrap;
  transition: color var(--transition);
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link:focus,
.custom-navbar .nav-link.active,
.custom-navbar .nav-link.show {
  color: var(--color-yellow);
}

.custom-navbar .nav-link:not(.dropdown-toggle)::before {
  position: absolute;
  right: 14px;
  bottom: 6px;
  left: 14px;
  height: 1px;
  content: "";
  background: var(--color-yellow);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.custom-navbar .nav-link:not(.dropdown-toggle):hover::before,
.custom-navbar .nav-link:not(.dropdown-toggle):focus::before,
.custom-navbar .nav-link.active::before {
  transform: scaleX(1);
}


/* =========================================================
   Contact Navigation Button (Enlarged Font Size & Padding)
========================================================= */

.nav-contact-item {
  margin-left: 18px;
}

.nav-contact-link {
  display: inline-flex;
  min-height: 62px; /* Increased height */
  align-items: center;
  justify-content: center;
  padding: 15px 36px; /* Increased horizontal and vertical padding */
  gap: 12px;
  border: 1px solid var(--color-yellow);
  border-radius: 3px;
  color: var(--color-black);
  background: var(--color-yellow);
  box-shadow: 0 10px 28px rgba(241, 207, 109, 0.22);
  font-family: var(--font-body);
  font-size: 16.5px; /* Significantly increased font size */
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
  transition:
    color var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.nav-contact-link:hover,
.nav-contact-link:focus {
  border-color: var(--color-yellow);
  color: var(--color-yellow);
  background: transparent;
  box-shadow: 0 14px 34px rgba(241, 207, 109, 0.3);
  transform: translateY(-2px);
}


/* =========================================================
   Animated Phone Icon
========================================================= */

@keyframes ringPhone {
  0% { transform: rotate(0deg); }
  15% { transform: rotate(14deg); }
  30% { transform: rotate(-14deg); }
  45% { transform: rotate(10deg); }
  60% { transform: rotate(-10deg); }
  75% { transform: rotate(4deg); }
  85% { transform: rotate(-4deg); }
  100% { transform: rotate(0deg); }
}

.animated-phone {
  display: inline-block;
  font-size: 19px; /* Scaled up to match the larger button text */
  animation: ringPhone 2s infinite ease-in-out;
  transform-origin: center;
}

.nav-contact-link:hover .animated-phone {
  animation: ringPhone 0.6s infinite ease-in-out;
}


/* =========================================================
   Services Dropdown — Stable Desktop and Mobile Version
========================================================= */

.custom-navbar,
.custom-navbar .container,
.custom-navbar .navbar-collapse,
.custom-navbar .navbar-nav,
.custom-navbar .nav-item.dropdown {
  overflow: visible;
}

.custom-navbar .nav-item.dropdown {
  position: relative;
}


/* Dropdown Panel */

.custom-navbar .dropdown-menu {
  min-width: 300px;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--border-yellow);
  border-radius: 4px;
  background: rgba(18, 30, 45, 0.99);
  box-shadow: var(--navy-shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.custom-navbar .dropdown-menu,
.custom-navbar .dropdown-menu li {
  list-style: none;
}


/* Dropdown Links */

.custom-navbar .dropdown-item {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 13px 18px;
  gap: 14px;
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.88);
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition:
    color 200ms ease,
    background-color 200ms ease;
}

.custom-navbar .dropdown-item .bi:not(.animated-phone) {
  display: inline-flex;
  flex: 0 0 22px;
  width: 22px;
  align-items: center;
  justify-content: center;
  color: var(--color-yellow);
  font-size: 1.1rem;
  line-height: 1;
  transition:
    color 200ms ease,
    transform 200ms ease;
}

.custom-navbar .dropdown-item:hover,
.custom-navbar .dropdown-item:focus,
.custom-navbar .dropdown-item.active {
  color: var(--color-black);
  background: var(--color-yellow);
}

.custom-navbar .dropdown-item:hover .bi,
.custom-navbar .dropdown-item:focus .bi,
.custom-navbar .dropdown-item.active .bi {
  color: var(--color-black);
  transform: scale(1.08);
}


/* =========================================================
   Desktop Dropdown (Hover Mode)
========================================================= */

@media (min-width: 1200px) {

  .custom-navbar .nav-item.dropdown {
    position: relative;
  }

  .custom-navbar .nav-item.dropdown > .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 250ms ease, transform 250ms ease, visibility 250ms;
  }

  .custom-navbar .nav-item.dropdown > .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
  }

  .custom-navbar .nav-item.dropdown:hover > .dropdown-menu,
  .custom-navbar .nav-item.dropdown:focus-within > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .custom-navbar .nav-item.dropdown:hover > .dropdown-toggle {
    color: var(--color-yellow);
  }

  .custom-navbar .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: 0.15em;
    transition: transform 200ms ease;
  }

  .custom-navbar .nav-item.dropdown:hover > .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}


/* =========================================================
   Tablet and Mobile Dropdown
========================================================= */

@media (max-width: 1199.98px) {

  .custom-navbar .navbar-collapse {
    max-height: calc(100vh - 110px);
    margin-top: 14px;
    padding: 16px;
    overflow-x: hidden;
    overflow-y: auto;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: rgba(18, 30, 45, 0.99);
    box-shadow: var(--navy-shadow);
  }

  .custom-navbar .navbar-nav {
    align-items: stretch !important;
    gap: 0;
  }

  .custom-navbar .nav-link {
    padding: 14px 12px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 15px;
  }

  .custom-navbar .nav-link:not(.dropdown-toggle)::before {
    display: none;
  }

  .custom-navbar .dropdown-menu {
    position: static !important;
    display: none;
    width: 100%;
    min-width: 100%;
    margin: 6px 0 10px !important;
    padding: 10px !important;
    transform: none !important;
    inset: auto !important;
    border-color: rgba(255, 255, 255, 0.08);
    background: var(--color-charcoal);
    box-shadow: none;
  }

  .custom-navbar .dropdown-menu.show {
    display: block !important;
  }

  .custom-navbar .dropdown-item {
    padding: 14px 16px;
    font-size: 15px;
  }
}
/* 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 */
/* =========================================================
   Hero Section
========================================================= */
/* =========================================================
   Hero Section & Lighter Gradient Overlay
========================================================= */

.hero-section {
  position: relative;
  display: flex;
  min-height: 860px;
  align-items: center;
  overflow: hidden;
  padding: 185px 0 100px;
  background-image: url("../img/hero-img.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  /* Lightened gradient opacities to let more of the background image show through */
  background: linear-gradient(
    180deg,
    rgba(11, 19, 31, 0.68) 0%,
    rgba(18, 30, 45, 0.58) 50%,
    rgba(11, 19, 31, 0.76) 100%
  );
}

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

.hero-content {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 960px;
  min-height: 560px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  padding: 85px 70px;
  text-align: center;
}

/* Luxury Subtitle Label */
.hero-eyebrow {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--color-yellow);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 5.5px;
}

/* Serif Title with Italicized Highlight */
.hero-title {
  max-width: 900px;
  margin: 0 auto;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(3.8rem, 7vw, 6.4rem);
  font-weight: 600;
  line-height: 1.05;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.hero-title span {
  display: block;
  margin-top: 10px;
  color: var(--color-yellow);
  font-style: italic;
  font-weight: 500;
}

/* Thin Body Description */
.hero-description {
  max-width: 760px;
  margin: 32px auto 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-body);
  font-size: 18.5px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.3px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 44px;
  gap: 18px;
}

/* =========================================================
   Luxury Call-to-Action Buttons (Enlarged Text & Size)
========================================================= */

.hero-btn {
  display: inline-flex;
  min-width: 260px;
  min-height: 68px;
  align-items: center;
  justify-content: center;
  padding: 18px 38px;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
  transition: all var(--transition);
}

.hero-btn:hover,
.hero-btn:focus {
  transform: translateY(-2px);
}

.hero-btn--primary {
  border-color: var(--color-yellow);
  color: var(--color-black);
  background: var(--color-yellow);
  box-shadow: 0 10px 28px rgba(241, 207, 109, 0.15);
}

.hero-btn--primary:hover,
.hero-btn--primary:focus {
  border-color: var(--color-yellow);
  color: var(--color-yellow);
  background: transparent;
  box-shadow: 0 14px 34px rgba(241, 207, 109, 0.25);
}

.hero-btn--secondary {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-btn--secondary:hover,
.hero-btn--secondary:focus {
  border-color: var(--color-white);
  color: var(--color-black);
  background: var(--color-white);
}

/* =========================================================
   Animated Phone Icon & Larger Phone Number Text
========================================================= */

@keyframes ringPhoneHero {
  0% { transform: rotate(0deg); }
  15% { transform: rotate(14deg); }
  30% { transform: rotate(-14deg); }
  45% { transform: rotate(10deg); }
  60% { transform: rotate(-10deg); }
  75% { transform: rotate(4deg); }
  85% { transform: rotate(-4deg); }
  100% { transform: rotate(0deg); }
}

.hero-phone-icon {
  position: relative;
  z-index: 2;
  display: inline-block;
  font-size: 20px;
  animation: ringPhoneHero 2s infinite ease-in-out;
  transform-origin: center;
}

.hero-phone-number {
  font-size: 17.5px;
  letter-spacing: 2.2px;
}

.hero-btn--secondary:hover .hero-phone-icon {
  animation: ringPhoneHero 0.6s infinite ease-in-out;
}

/* =========================================================
   Refined Thin Gold Geometric Frame
========================================================= */

.hero-frame {
  position: absolute;
  z-index: -1;
  top: 18px;
  right: 35px;
  bottom: 18px;
  left: 35px;
  pointer-events: none;
  opacity: 0.65;

  background:
    linear-gradient(var(--color-yellow), var(--color-yellow)) top left / 100% 1px no-repeat,
    linear-gradient(var(--color-yellow), var(--color-yellow)) bottom left / 100% 1px no-repeat,
    linear-gradient(var(--color-yellow), var(--color-yellow)) top left / 1px 45px no-repeat,
    linear-gradient(var(--color-yellow), var(--color-yellow)) top right / 1px 45px no-repeat,
    linear-gradient(var(--color-yellow), var(--color-yellow)) bottom left / 1px 45px no-repeat,
    linear-gradient(var(--color-yellow), var(--color-yellow)) bottom right / 1px 45px no-repeat;
}

/* =========================================================
   Responsive Adjustments
========================================================= */

@media (max-width: 1199.98px) {
  .navbar-collapse {
    margin-top: 15px;
    padding: 18px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    background: rgba(18, 30, 45, 0.98);
    box-shadow: var(--navy-shadow);
  }

  .custom-navbar .nav-link {
    padding: 12px 8px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .dropdown-menu {
    border-color: rgba(255, 255, 255, 0.05);
    background: rgba(11, 19, 31, 0.8);
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 140px 0 60px;
  }

  .hero-content {
    padding: 55px 25px;
  }

  .hero-frame {
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
  }

  .hero-title {
    font-size: clamp(2.8rem, 11vw, 4.2rem);
  }

  .hero-description {
    font-size: 15.5px;
  }

  .hero-btn {
    width: 100%;
    min-width: 0;
  }
}

/* Focus Outline Accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-yellow);
  outline-offset: 4px;
}







/* 0000000000000000000000000000000000000000000000000000000000000000000000 */


/* =========================================================
   Our Values Section (Spaced Arc Graphic)
========================================================= */

.values-section {
  position: relative;
  background-color: var(--color-black);
  color: var(--color-white);
}

.values-eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--color-yellow);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.values-title {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  letter-spacing: 0.5px;
}

/* Value Item Typography */
.value-item-title {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: 0.5px;
}

.value-item-title.text-yellow {
  color: var(--color-yellow);
}

.value-text {
  color: var(--color-gray-light);
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.7;
}

/* =========================================================
   Spaced-Out Circular Diagram Styles
========================================================= */

.values-diagram-container {
  position: relative;
  width: 100%;
  max-width: 440px; /* Increased canvas size for spacing */
  height: 440px;
  margin: 0 auto;
}

/* Subtle connecting ring guide in the background */
.values-diagram-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 240px;
  height: 240px;
  transform: translate(-50%, -50%);
  border: 1px dashed var(--border-yellow);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.6;
}

.arc-card {
  position: absolute;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.arc-card:hover {
  transform: scale(1.08);
  z-index: 10 !important;
}

/* Circular Arc Outer Ring */
.arc-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 16px solid transparent;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.arc-icon-box {
  position: relative;
  z-index: 2;
  font-size: 1.8rem;
}

/* --- Top Arc: Gold Accent (Pushed Up) --- */
.arc-top-yellow {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}
.arc-top-yellow:hover {
  transform: translateX(-50%) scale(1.08);
}
.arc-top-yellow .arc-ring {
  border-top-color: var(--color-yellow);
  border-right-color: var(--color-yellow);
  border-left-color: var(--color-yellow);
  border-bottom-color: transparent;
}
.arc-top-yellow .arc-icon-box {
  color: var(--color-yellow);
}

/* --- Right Arc: Slate / Charcoal Accent (Pushed Right) --- */
.arc-right-gray {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 3;
}
.arc-right-gray:hover {
  transform: translateY(-50%) scale(1.08);
}
.arc-right-gray .arc-ring {
  border-top-color: var(--color-gray);
  border-right-color: var(--color-gray);
  border-bottom-color: var(--color-gray);
  border-left-color: transparent;
}
.arc-right-gray .arc-icon-box {
  color: var(--color-gray-light);
}

/* --- Bottom Arc: Deep Charcoal Accent (Pushed Down) --- */
.arc-bottom-dark {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.arc-bottom-dark:hover {
  transform: translateX(-50%) scale(1.08);
}
.arc-bottom-dark .arc-ring {
  border-right-color: var(--color-charcoal);
  border-bottom-color: var(--color-charcoal);
  border-left-color: var(--color-charcoal);
  border-top-color: transparent;
}
.arc-bottom-dark .arc-icon-box {
  color: var(--color-white);
}

/* --- Left Arc: Soft Black Accent (Pushed Left) --- */
.arc-left-black {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}
.arc-left-black:hover {
  transform: translateY(-50%) scale(1.08);
}
.arc-left-black .arc-ring {
  border-top-color: var(--color-black-soft);
  border-left-color: var(--color-black-soft);
  border-bottom-color: var(--color-black-soft);
  border-right-color: transparent;
  box-shadow: 0 0 0 1px var(--border-light);
}
.arc-left-black .arc-icon-box {
  color: var(--color-yellow);
}

/* =========================================================
   Responsive Adjustments
========================================================= */

@media (max-width: 991.98px) {
  .values-diagram-container {
    max-width: 360px;
    height: 360px;
  }

  .values-diagram-container::before {
    width: 200px;
    height: 200px;
  }

  .arc-card {
    width: 130px;
    height: 130px;
  }

  .arc-ring {
    border-width: 13px;
  }

  .arc-icon-box {
    font-size: 1.4rem;
  }
}

@media (max-width: 575.98px) {
  .values-diagram-container {
    max-width: 300px;
    height: 300px;
  }

  .values-diagram-container::before {
    width: 160px;
    height: 160px;
  }

  .arc-card {
    width: 110px;
    height: 110px;
  }

  .arc-ring {
    border-width: 11px;
  }

  .arc-icon-box {
    font-size: 1.2rem;
  }
}

/* 00000000000000000000000000000000000000000000000000000000000 */


/* Light Section Background */
/* =========================================================
   Variables & Theme Setup
========================================================= */
:root {
  --color-black: #0b131f;
  --color-black-soft: #121e2d;
  --color-charcoal: #1c2b3d;
  --color-white: #ffffff;
  --color-gray-light: #e0e2e5;
  --color-gray: #9aa3af;
  --color-yellow: #f1cf6d;
  --color-yellow-dark: #d8b450;
  --color-yellow-soft: rgba(241, 207, 109, 0.12);
  --border-light: rgba(255, 255, 255, 0.08);
  --border-yellow: rgba(241, 207, 109, 0.25);
  --transition: 0.3s ease;
}

.service-mosaic-section--light {
  background-color: var(--color-gray-light);
}

/* =========================================================
   Typography & Section Headings
========================================================= */
.section-heading {
  font-family: var(--font-heading, sans-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  line-height: 1.15;
}

.service-mosaic-section .small {
  font-size: 1.05rem !important;
}

.service-mosaic-section p {
  font-size: 1.15rem !important;
  line-height: 1.7;
}

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

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

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

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

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

.letter-spacing-1 {
  letter-spacing: 1px;
}

/* =========================================================
   Header CTAs & Buttons
========================================================= */
.mosaic-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-heading, sans-serif);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-yellow);
  background-color: var(--color-charcoal);
  border: 1px solid var(--border-yellow);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(4, 9, 16, 0.3);
}

.mosaic-phone-btn:hover {
  color: var(--color-black);
  background-color: var(--color-yellow);
  border-color: var(--color-yellow);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(241, 207, 109, 0.25);
}

.mosaic-phone-btn .phone-icon {
  font-style: normal;
  font-size: 1.4rem;
  color: var(--color-yellow);
  transition: color 0.3s ease;
}

.mosaic-phone-btn:hover .phone-icon {
  color: var(--color-black);
}

.mosaic-estimate-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0.85rem 1.85rem;
  font-family: var(--font-heading, sans-serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-black);
  background-color: var(--color-yellow);
  border: 1px solid var(--color-yellow);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px var(--color-yellow-soft);
}

.mosaic-estimate-btn i {
  transition: transform 300ms ease;
}

.mosaic-estimate-btn:hover {
  color: var(--color-black);
  background-color: var(--color-yellow-dark);
  border-color: var(--color-yellow-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(241, 207, 109, 0.25);
}

.mosaic-estimate-btn:hover i {
  transform: translateX(6px);
}

/* =========================================================
   Service Mosaic Grid & Cards
========================================================= */
.service-mosaic {
  border: 1px solid var(--border-yellow);
  box-shadow: 0 10px 30px rgba(11, 19, 31, 0.12);
}

.service-mosaic-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  transition: transform var(--transition), background-color var(--transition), box-shadow var(--transition);
}

.service-mosaic-card:hover {
  z-index: 2;
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
}

/* Card Entrance Accent Line */
.service-mosaic-card::before {
  position: absolute;
  z-index: 5;
  width: 100%;
  height: 3px;
  top: 0;
  left: 0;
  content: "";
  background: linear-gradient(90deg, transparent, var(--color-yellow), transparent);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 500ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--reveal-delay, 0s) + 0.3s);
}

.service-reveal.is-visible .service-mosaic-card::before {
  opacity: 1;
  transform: scaleX(1);
}

/* Image Tile Variants */
.service-mosaic-card--image {
  padding: 0;
}

.service-mosaic-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-mosaic-card--image:hover .service-mosaic-image {
  transform: scale(1.065);
}

/* Dark Navy Tile Variants */
.service-mosaic-card--navy-soft {
  color: var(--color-gray-light);
  background-color: var(--color-black-soft);
  border-bottom: 1px solid var(--border-light);
}

.service-mosaic-card--navy-charcoal {
  color: var(--color-gray-light);
  background-color: var(--color-charcoal);
  border-top: 1px solid var(--border-light);
}

.service-mosaic-card--navy-dark {
  color: var(--color-gray-light);
  background-color: var(--color-black);
  border-top: 1px solid var(--border-light);
}

/* =========================================================
   Typography Inside Tiles
========================================================= */
.service-mosaic-title {
  font-family: var(--font-heading, sans-serif);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.service-mosaic-list {
  font-family: var(--font-body, sans-serif);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-gray-light);
}

.service-mosaic-list li {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.service-reveal.is-visible .service-mosaic-list li {
  opacity: 1;
  transform: translateX(0);
}

.service-reveal.is-visible .service-mosaic-list li:nth-child(1) { transition-delay: 0.35s; }
.service-reveal.is-visible .service-mosaic-list li:nth-child(2) { transition-delay: 0.45s; }
.service-reveal.is-visible .service-mosaic-list li:nth-child(3) { transition-delay: 0.55s; }
.service-reveal.is-visible .service-mosaic-list li:nth-child(4) { transition-delay: 0.65s; }

.service-mosaic-bullet {
  flex-shrink: 0;
  font-size: 1.35rem;
  line-height: 1;
  display: inline-flex;
  transition: color 250ms ease, transform 250ms ease;
}

.service-mosaic-list li:hover .service-mosaic-bullet {
  transform: scale(1.5) rotate(12deg);
}

/* Tile Buttons */
.service-mosaic-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-heading, sans-serif);
  text-decoration: none;
  color: var(--color-black);
  background-color: var(--color-yellow);
  border: 1px solid var(--color-yellow);
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  margin-top: auto;
}

.service-mosaic-btn::before {
  position: absolute;
  width: 45%;
  height: 180%;
  top: -40%;
  left: -75%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: rotate(20deg);
  transition: left 650ms ease;
}

.service-mosaic-btn .btn-arrow {
  font-style: normal;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.service-mosaic-btn:hover {
  color: var(--color-black);
  background-color: var(--color-yellow-dark);
  border-color: var(--color-yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(241, 207, 109, 0.35);
}

.service-mosaic-btn:hover::before {
  left: 135%;
}

.service-mosaic-btn:hover .btn-arrow {
  transform: translateX(7px);
}

/* =========================================================
   Scroll Reveal Animation Items
========================================================= */
.service-reveal-item {
  opacity: 0;
  visibility: hidden;
  transform: translateY(42px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1), visibility 800ms ease;
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.service-reveal-item--down { transform: translateY(-32px); }
.service-reveal-item--up { transform: translateY(32px); }

.service-reveal.is-visible .service-reveal-item {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* =========================================================
   Phone Ring & Dynamic Animations
========================================================= */
.mosaic-phone-btn--animated {
  position: relative;
  overflow: visible;
  animation: mosaicPhoneGlow 2.6s ease-in-out infinite;
}

.mosaic-phone-btn--animated .phone-icon {
  transform-origin: center;
  animation: mosaicPhoneShake 1.8s ease-in-out infinite;
}

.mosaic-phone-btn--animated::before {
  position: absolute;
  inset: -5px;
  border: 2px solid rgba(241, 207, 109, 0.52);
  border-radius: 9px;
  content: "";
  pointer-events: none;
  animation: mosaicPhoneWave 2s ease-out infinite;
}

@keyframes mosaicPhoneShake {
  0%, 100% { transform: rotate(0deg); }
  12% { transform: rotate(-16deg); }
  24% { transform: rotate(16deg); }
  36% { transform: rotate(-11deg); }
  48% { transform: rotate(11deg); }
  60% { transform: rotate(0deg); }
}

@keyframes mosaicPhoneWave {
  0% { opacity: 0.75; transform: scale(0.94); }
  100% { opacity: 0; transform: scale(1.14); }
}

@keyframes mosaicPhoneGlow {
  0%, 100% { box-shadow: 0 5px 16px rgba(4, 9, 16, 0.28); }
  50% { box-shadow: 0 8px 25px rgba(241, 207, 109, 0.3), 0 0 22px rgba(241, 207, 109, 0.18); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-25px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes softPulse {
  0% { box-shadow: 0 0 0 0 rgba(241, 207, 109, 0.3), 0 4px 12px rgba(0, 0, 0, 0.15); }
  70% { box-shadow: 0 0 0 12px rgba(241, 207, 109, 0), 0 4px 12px rgba(0, 0, 0, 0.15); }
  100% { box-shadow: 0 0 0 0 rgba(241, 207, 109, 0), 0 4px 12px rgba(0, 0, 0, 0.15); }
}

.animated-fade-up { animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both; }
.animated-fade-down { animation: fadeInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) both; }
.animated-pulse { animation: softPulse 2.6s ease-out infinite; }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* =========================================================
   Responsive Breakpoints & Reduced Motion
========================================================= */
@media (max-width: 767.98px) {
  .section-heading { font-size: 2.1rem; }
  .service-mosaic-card { min-height: 270px; }
  .service-mosaic-title { font-size: 1.5rem; }
  .service-mosaic-list { font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .service-reveal-item,
  .service-mosaic-card::before,
  .service-mosaic-image,
  .service-mosaic-list li,
  .service-mosaic-btn,
  .service-mosaic-btn::before,
  .service-mosaic-btn .btn-arrow,
  .mosaic-phone-btn--animated,
  .mosaic-phone-btn--animated::before,
  .mosaic-phone-btn--animated .phone-icon {
    animation: none !important;
    transition: none !important;
  }

  .service-reveal-item,
  .service-mosaic-list li {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}

/* 000000000000000000000000000000000000000000000000000000 */

/* =========================================================
   Garage Door Introduction Section
========================================================= */

.gd-intro {
  --gd-dark: var(--color-black, #0b131f);
  --gd-dark-soft: var(--color-black-soft, #121e2d);
  --gd-charcoal: var(--color-charcoal, #1c2b3d);

  --gd-white: var(--color-white, #ffffff);
  --gd-gray-light: var(--color-gray-light, #e0e2e5);
  --gd-gray: var(--color-gray, #9aa3af);

  --gd-gold: var(--color-yellow, #f1cf6d);
  --gd-gold-dark: var(--color-yellow-dark, #d8b450);
  --gd-gold-soft: var(
    --color-yellow-soft,
    rgba(241, 207, 109, 0.12)
  );

  --gd-border: var(
    --border-light,
    rgba(255, 255, 255, 0.08)
  );

  position: relative;
  isolation: isolate;
  padding: 95px 0;
  color: var(--gd-white);
  background:
    radial-gradient(
      circle at 82% 16%,
      rgba(241, 207, 109, 0.06),
      transparent 31%
    ),
    var(--gd-dark-soft);
}


/* =========================================================
   Container and Background Accent
========================================================= */

.gd-intro__container {
  position: relative;
  z-index: 2;
  width: min(94%, 1640px);
  margin-inline: auto;
  padding-inline: 12px;
}

.gd-intro__accent {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 29%;
  background: var(--gd-dark);
}


/* =========================================================
   Equal-Height Columns
========================================================= */

.gd-intro__visual-column,
.gd-intro__content-column {
  display: flex;
}

.gd-intro__visual-column {
  align-items: stretch;
}

.gd-intro__content-column {
  align-items: center;
}


/* =========================================================
   Wider Image and Gold Frame
========================================================= */

.gd-intro__visual {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 100%;
  padding: 30px 30px 30px 0;
  animation: gdIntroFromLeft 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Offset frame behind the image */
.gd-intro__frame {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 36px;
  border: 8px solid var(--gd-gold);
  pointer-events: none;
}

/* Image fills the entire left column */
.gd-intro__image-box {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 720px;
  overflow: hidden;
  border: 1px solid var(--gd-border);
  background: var(--gd-dark);
  box-shadow:
    0 34px 85px rgba(4, 9, 16, 0.48),
    0 12px 32px rgba(4, 9, 16, 0.3);
}

.gd-intro__image-box::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(
      180deg,
      rgba(11, 19, 31, 0.02),
      rgba(11, 19, 31, 0.19)
    );
  pointer-events: none;
}

.gd-intro__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
  transition:
    filter 650ms ease,
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gd-intro__visual:hover .gd-intro__image {
  filter: grayscale(30%);
  transform: scale(1.045);
}


/* =========================================================
   Content
========================================================= */

.gd-intro__content {
  width: 100%;
  max-width: 650px;
  animation: gdIntroFromRight 900ms 150ms
    cubic-bezier(0.16, 1, 0.3, 1) both;
}

.gd-intro__eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--gd-gold);
  font-family: var(--font-body, Arial, sans-serif);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.26em;
}

.gd-intro__title {
  margin: 0 0 22px;
  color: var(--gd-white);
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(2.25rem, 3vw, 3.35rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.gd-intro__lead {
  margin: 0 0 27px;
  padding-left: 17px;
  border-left: 3px solid var(--gd-gold);
  color: var(--gd-gray-light);
  font-family: var(--font-body, Arial, sans-serif);
  font-size: 1rem;
  line-height: 1.72;
}


/* =========================================================
   Feature Cards
========================================================= */

.gd-intro__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gd-intro__feature {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: start;
  padding: 17px 18px;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 8px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.035),
      rgba(255, 255, 255, 0.012)
    );
  transition:
    border-color 300ms ease,
    background-color 300ms ease,
    box-shadow 300ms ease,
    transform 300ms ease;
}

.gd-intro__feature::after {
  position: absolute;
  width: 3px;
  height: 0;
  top: 50%;
  right: 0;
  content: "";
  background: var(--gd-gold);
  transform: translateY(-50%);
  transition: height 350ms ease;
}

.gd-intro__feature:hover {
  border-color: rgba(241, 207, 109, 0.28);
  background:
    linear-gradient(
      135deg,
      rgba(241, 207, 109, 0.075),
      rgba(255, 255, 255, 0.018)
    );
  box-shadow: 0 18px 38px rgba(4, 9, 16, 0.22);
  transform: translateX(6px);
}

.gd-intro__feature:hover::after {
  height: 65%;
}

.gd-intro__feature-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(241, 207, 109, 0.42);
  border-radius: 50%;
  color: var(--gd-dark);
  background: var(--gd-gold);
  box-shadow: 0 12px 30px rgba(241, 207, 109, 0.16);
  font-size: 1.25rem;
  transition:
    color 300ms ease,
    background-color 300ms ease,
    transform 300ms ease;
}

.gd-intro__feature:hover .gd-intro__feature-icon {
  color: var(--gd-gold);
  background: var(--gd-dark);
  transform: rotate(-6deg) scale(1.06);
}

.gd-intro__feature-copy h3 {
  margin: 0 0 6px;
  color: var(--gd-white);
  font-family: var(--font-heading, Georgia, serif);
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.2;
}

.gd-intro__feature-copy p {
  margin: 0;
  color: rgba(224, 226, 229, 0.78);
  font-family: var(--font-body, Arial, sans-serif);
  font-size: 0.89rem;
  font-weight: 300;
  line-height: 1.6;
}


/* =========================================================
   Large Animated Call Button
========================================================= */

.gd-intro__actions {
  margin-top: 27px;
}

.gd-intro__call {
  position: relative;
  display: inline-flex;
  width: min(100%, 420px);
  min-height: 88px;
  align-items: center;
  gap: 17px;
  overflow: hidden;
  padding: 11px 28px 11px 12px;
  border: 2px solid var(--gd-gold);
  border-radius: 999px;
  color: var(--gd-dark);
  background: var(--gd-gold);
  box-shadow:
    0 20px 48px rgba(241, 207, 109, 0.25),
    0 0 25px rgba(241, 207, 109, 0.08);
  font-family: var(--font-body, Arial, sans-serif);
  text-decoration: none;
  animation: gdIntroButtonGlow 2.7s ease-in-out infinite;
  transition:
    color 300ms ease,
    background-color 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease,
    transform 300ms ease;
}

.gd-intro__call::before {
  position: absolute;
  width: 42%;
  height: 190%;
  top: -45%;
  left: -70%;
  content: "";
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.52),
      transparent
    );
  transform: rotate(20deg);
  animation: gdIntroButtonShine 3.3s ease-in-out infinite;
}

.gd-intro__call > * {
  position: relative;
  z-index: 2;
}

.gd-intro__call:hover,
.gd-intro__call:focus {
  border-color: var(--gd-white);
  color: var(--gd-dark);
  background: var(--gd-white);
  box-shadow:
    0 25px 60px rgba(241, 207, 109, 0.32),
    0 0 35px rgba(241, 207, 109, 0.2);
  transform: translateY(-5px);
}

.gd-intro__call-icon {
  position: relative;
  display: inline-flex;
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--gd-gold-dark);
  background: var(--gd-white);
  box-shadow: 0 8px 22px rgba(11, 19, 31, 0.16);
}

.gd-intro__call-icon i {
  font-size: 1.5rem;
  transform-origin: center;
  animation: gdIntroPhoneRing 1.8s ease-in-out infinite;
}

.gd-intro__call-icon::before,
.gd-intro__call-icon::after {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.gd-intro__call-icon::before {
  inset: -6px;
  animation: gdIntroPhonePulse 2s ease-out infinite;
}

.gd-intro__call-icon::after {
  inset: -12px;
  animation: gdIntroPhonePulse 2s ease-out 0.65s infinite;
}

.gd-intro__call-copy {
  display: flex;
  min-width: 220px;
  flex-direction: column;
  color: var(--gd-dark);
  line-height: 1;
}

.gd-intro__call-copy small {
  margin-bottom: 7px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.17em;
}

.gd-intro__call-copy strong {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.015em;
  white-space: nowrap;
}

.gd-intro__call-arrow {
  margin-left: auto;
  font-size: 1.05rem;
  transition: transform 300ms ease;
}

.gd-intro__call:hover .gd-intro__call-arrow {
  transform: translate(4px, -4px);
}


/* =========================================================
   Animations
========================================================= */

@keyframes gdIntroFromLeft {
  from {
    opacity: 0;
    transform: translateX(-55px);
  }

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

@keyframes gdIntroFromRight {
  from {
    opacity: 0;
    transform: translateX(55px);
  }

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

@keyframes gdIntroPhoneRing {
  0%,
  100% {
    transform: rotate(0deg);
  }

  12% {
    transform: rotate(-17deg) scale(1.08);
  }

  24% {
    transform: rotate(17deg) scale(1.08);
  }

  36% {
    transform: rotate(-11deg) scale(1.04);
  }

  48% {
    transform: rotate(11deg) scale(1.04);
  }

  60% {
    transform: rotate(0deg);
  }
}

@keyframes gdIntroPhonePulse {
  0% {
    opacity: 0.9;
    transform: scale(0.84);
  }

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

@keyframes gdIntroButtonGlow {
  0%,
  100% {
    box-shadow:
      0 20px 48px rgba(241, 207, 109, 0.22),
      0 0 18px rgba(241, 207, 109, 0.08);
  }

  50% {
    box-shadow:
      0 24px 56px rgba(241, 207, 109, 0.32),
      0 0 32px rgba(241, 207, 109, 0.22);
  }
}

@keyframes gdIntroButtonShine {
  0%,
  55% {
    left: -70%;
  }

  85%,
  100% {
    left: 135%;
  }
}


/* =========================================================
   Medium Desktop
========================================================= */

@media (min-width: 992px) and (max-width: 1199.98px) {
  .gd-intro__container {
    width: 96%;
  }

  .gd-intro__image-box,
  .gd-intro__image {
    min-height: 690px;
  }

  .gd-intro__title {
    font-size: clamp(2.05rem, 3vw, 2.75rem);
  }

  .gd-intro__feature {
    grid-template-columns: 50px minmax(0, 1fr);
    padding: 14px;
    gap: 12px;
  }

  .gd-intro__feature-icon {
    width: 50px;
    height: 50px;
  }

  .gd-intro__feature-copy h3 {
    font-size: 1.16rem;
  }

  .gd-intro__feature-copy p {
    font-size: 0.84rem;
  }

  .gd-intro__call {
    min-height: 82px;
  }

  .gd-intro__call-copy strong {
    font-size: 1.65rem;
  }
}


/* =========================================================
   Tablet and Stacked Layout
========================================================= */

@media (max-width: 991.98px) {
  .gd-intro {
    padding: 72px 0;
  }

  .gd-intro__container {
    width: min(92%, 760px);
  }

  .gd-intro__accent {
    width: 100%;
    height: 270px;
    bottom: auto;
  }

  .gd-intro__visual-column,
  .gd-intro__content-column {
    display: block;
  }

  .gd-intro__visual {
    min-height: auto;
    margin-bottom: 42px;
    padding: 28px 25px 28px 0;
  }

  .gd-intro__frame {
    left: 27px;
    border-width: 7px;
  }

  .gd-intro__image-box,
  .gd-intro__image {
    height: 590px;
    min-height: 590px;
  }

  .gd-intro__content {
    max-width: 100%;
  }

  .gd-intro__title {
    font-size: clamp(2.35rem, 5.8vw, 3.15rem);
  }
}


/* =========================================================
   Mobile
========================================================= */

@media (max-width: 767.98px) {
  .gd-intro {
    padding: 58px 0;
  }

  .gd-intro__accent {
    height: 220px;
  }

  .gd-intro__visual {
    margin-bottom: 35px;
    padding: 22px 18px 22px 0;
  }

  .gd-intro__frame {
    left: 20px;
    border-width: 6px;
  }

  .gd-intro__image-box,
  .gd-intro__image {
    height: 470px;
    min-height: 470px;
  }

  .gd-intro__eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
  }

  .gd-intro__title {
    font-size: clamp(2.05rem, 9vw, 2.7rem);
    line-height: 1.13;
  }

  .gd-intro__lead {
    font-size: 1rem;
    line-height: 1.7;
  }

  .gd-intro__feature {
    grid-template-columns: 50px minmax(0, 1fr);
    padding: 15px;
    gap: 13px;
  }

  .gd-intro__feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.15rem;
  }

  .gd-intro__feature-copy h3 {
    font-size: 1.22rem;
  }

  .gd-intro__feature-copy p {
    font-size: 0.89rem;
    line-height: 1.58;
  }

  .gd-intro__call {
    width: 100%;
    min-height: 82px;
    padding-right: 20px;
  }

  .gd-intro__call-icon {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
  }

  .gd-intro__call-copy {
    min-width: 0;
  }

  .gd-intro__call-copy strong {
    font-size: clamp(1.45rem, 6.2vw, 1.85rem);
  }
}


/* =========================================================
   Small Mobile
========================================================= */

@media (max-width: 480px) {
  .gd-intro__visual {
    padding: 18px 14px 18px 0;
  }

  .gd-intro__frame {
    left: 16px;
    border-width: 5px;
  }

  .gd-intro__image-box,
  .gd-intro__image {
    height: 390px;
    min-height: 390px;
  }

  .gd-intro__title {
    font-size: 2rem;
  }

  .gd-intro__feature {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 13px;
    gap: 11px;
  }

  .gd-intro__feature-icon {
    width: 44px;
    height: 44px;
  }

  .gd-intro__call {
    gap: 13px;
    padding: 10px 15px 10px 10px;
  }

  .gd-intro__call-icon {
    width: 55px;
    height: 55px;
    flex-basis: 55px;
  }

  .gd-intro__call-copy small {
    font-size: 0.68rem;
  }

  .gd-intro__call-copy strong {
    font-size: 1.35rem;
  }

  .gd-intro__call-arrow {
    display: none;
  }
}


/* =========================================================
   Accessibility and Reduced Motion
========================================================= */

.gd-intro a:focus-visible {
  outline: 3px solid var(--gd-gold);
  outline-offset: 5px;
}

@media (prefers-reduced-motion: reduce) {
  .gd-intro__visual,
  .gd-intro__content,
  .gd-intro__image,
  .gd-intro__feature,
  .gd-intro__feature-icon,
  .gd-intro__call,
  .gd-intro__call::before,
  .gd-intro__call-icon i,
  .gd-intro__call-icon::before,
  .gd-intro__call-icon::after,
  .gd-intro__call-arrow {
    animation: none !important;
    transition: none !important;
  }
}


/* 000000000000000000000000000000000000000000000000000000000 */



.grid-section {
  --offer-navy: #0b131f;
  --offer-navy-soft: #121e2d;
  --offer-charcoal: #1c2b3d;

  --offer-white: #ffffff;
  --offer-gray-light: #e0e2e5;
  --offer-gray: #9aa3af;
  --offer-light: #d8dce1;

  --offer-gold: #f1cf6d;
  --offer-gold-dark: #d8b450;
  --offer-gold-soft: rgba(241, 207, 109, 0.12);

  --offer-border: rgba(255, 255, 255, 0.09);
  --offer-gold-border: rgba(241, 207, 109, 0.3);

  --offer-shadow: 0 28px 75px rgba(4, 9, 16, 0.5);
  --offer-transition: 300ms cubic-bezier(0.16, 1, 0.3, 1);

  position: relative;
  overflow: hidden;
  padding: 80px 0;

background-image:
  linear-gradient(
    rgba(11, 19, 31, 0.35),
    rgba(18, 30, 45, 0.50)
  ),
  url("../img/offers-bg.webp");

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}


/* =========================================================
   Decorative Background
========================================================= */

.grid-section-bg {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.grid-section-bg::before,
.grid-section-bg::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  filter: blur(8px);
}

.grid-section-bg::before {
  width: 430px;
  height: 430px;
  top: -180px;
  right: -150px;
  background:
    radial-gradient(
      circle,
      rgba(241, 207, 109, 0.16),
      transparent 68%
    );
}

.grid-section-bg::after {
  width: 360px;
  height: 360px;
  bottom: -170px;
  left: -130px;
  background:
    radial-gradient(
      circle,
      rgba(241, 207, 109, 0.1),
      transparent 70%
    );
}


/* =========================================================
   Header
========================================================= */

.offers-header {
  position: relative;
  z-index: 2;
  max-width: 960px;
}

.offers-eyebrow {
  color: var(--offer-gold);
  font-family: var(--font-body, Arial, sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.offers-title {
  color: var(--offer-white);
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.offers-intro {
  max-width: 760px;
  color: var(--offer-gray-light);
  font-family: var(--font-body, Arial, sans-serif);
  font-size: 1.2rem;
  line-height: 1.8;
}


/* =========================================================
   Main Offer Callout
========================================================= */

.offers-callout {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  gap: 18px;
  border: 1px solid var(--offer-gold-border);
  border-radius: 12px;
  background: rgba(18, 30, 45, 0.92);
  box-shadow: 0 20px 55px rgba(4, 9, 16, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.offers-callout__message {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--offer-white);
  font-size: 1.12rem;
  font-weight: 600;
}

.offers-callout__message i {
  color: var(--offer-gold);
  font-size: 1.45rem;
}

.offers-callout__message strong {
  color: var(--offer-gold);
}

.offers-callout__divider {
  display: block;
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.18);
}

.offers-callout__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}


/* =========================================================
   Buttons
========================================================= */

.grid-section .btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  gap: 10px;
  border-radius: 6px;
  font-family: var(--font-body, Arial, sans-serif);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transition:
    color var(--offer-transition),
    background-color var(--offer-transition),
    border-color var(--offer-transition),
    box-shadow var(--offer-transition),
    transform var(--offer-transition);
}

.btn-yellow {
  border: 1px solid var(--offer-gold);
  color: var(--offer-navy);
  background: var(--offer-gold);
}

.btn-yellow:hover,
.btn-yellow:focus {
  border-color: var(--offer-white);
  color: var(--offer-navy);
  background: var(--offer-white);
  transform: translateY(-3px);
}

.btn-outline-yellow {
  border: 1px solid var(--offer-gold);
  color: var(--offer-gold);
  background: transparent;
  font-size: 0.95rem;
  min-height: 52px;
}

.btn-outline-yellow:hover,
.btn-outline-yellow:focus {
  color: var(--offer-navy);
  background: var(--offer-gold);
  box-shadow: 0 14px 30px rgba(241, 207, 109, 0.18);
  transform: translateY(-2px);
}

.btn-dark-offer {
  border: 1px solid var(--offer-navy);
  color: var(--offer-white);
  background: var(--offer-navy);
  font-size: 0.95rem;
  min-height: 52px;
}

.btn-dark-offer:hover,
.btn-dark-offer:focus {
  border-color: var(--offer-gold);
  color: var(--offer-navy);
  background: var(--offer-gold);
  transform: translateY(-2px);
}


/* =========================================================
   Animated Claim Offer Button
========================================================= */

.btn-offer {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--offer-gold);
  border-radius: 999px !important;
  color: var(--offer-gold);
  background: rgba(11, 19, 31, 0.4);
  box-shadow: 0 0 0 rgba(241, 207, 109, 0);
  animation: offerGlow 2.2s ease-in-out infinite;
}

.btn-offer::before {
  position: absolute;
  width: 45%;
  height: 180%;
  top: -40%;
  left: -70%;
  content: "";
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.35),
      transparent
    );
  transform: rotate(20deg);
  animation: offerShine 3.2s ease-in-out infinite;
}

.btn-offer > * {
  position: relative;
  z-index: 2;
}

.btn-offer:hover,
.btn-offer:focus {
  border-color: var(--offer-gold);
  color: var(--offer-navy);
  background: var(--offer-gold);
  box-shadow: 0 18px 40px rgba(241, 207, 109, 0.3);
  transform: translateY(-4px) scale(1.02);
}

.btn-offer .bi-ticket-perforated-fill {
  font-size: 1.25rem;
  transform-origin: center;
  animation: ticketShake 1.7s ease-in-out infinite;
}

.btn-offer--large {
  min-height: 68px !important;
  padding: 18px 38px !important;
  font-size: 1.08rem !important;
  letter-spacing: 0.1em !important;
}


/* =========================================================
   Bento Grid
========================================================= */

.bento-grid {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid var(--offer-border);
  border-radius: 22px;
  background: var(--offer-navy);
  box-shadow: var(--offer-shadow);
}

.bento-column {
  border-right: 1px solid var(--offer-border);
  border-bottom: 1px solid var(--offer-border);
}

.bento-column:nth-child(2),
.bento-column:last-child {
  border-right: 0;
}

.bento-item {
  position: relative;
  display: flex;
  min-height: 340px;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 40px;
  transition:
    transform var(--offer-transition),
    background-color var(--offer-transition),
    box-shadow var(--offer-transition);
}

.bento-item::after {
  position: absolute;
  width: 170px;
  height: 170px;
  right: -90px;
  bottom: -90px;
  border: 1px solid rgba(241, 207, 109, 0.16);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.bento-item:hover {
  z-index: 3;
  box-shadow: inset 0 0 0 1px rgba(241, 207, 109, 0.22);
  transform: translateY(-4px);
}

.bento-item--featured,
.bento-item--light {
  color: var(--offer-navy);
  background:
    linear-gradient(
      135deg,
      #e5e8eb 0%,
      #cfd5db 100%
    );
}

.bento-item--navy {
  color: var(--offer-gray-light);
  background:
    linear-gradient(
      135deg,
      var(--offer-navy-soft),
      var(--offer-charcoal)
    );
}

.bento-item--dark {
  color: var(--offer-gray-light);
  background:
    linear-gradient(
      135deg,
      #080f19,
      var(--offer-navy)
    );
}


/* =========================================================
   Offer Badges and Labels
========================================================= */

.offer-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-bottom: 17px;
  padding: 8px 14px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.offer-badge--dark {
  color: var(--offer-gold);
  background: var(--offer-navy);
}

.offer-badge--gold {
  color: var(--offer-navy);
  background: var(--offer-gold);
}

.offer-label {
  display: block;
  margin-bottom: 8px;
  color: var(--offer-gold);
  font-family: monospace;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}


/* =========================================================
   Offer Typography & Big Numbers
========================================================= */

.bento-title {
  margin: 0 0 14px;
  color: var(--offer-white);
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(1.75rem, 2.9vw, 2.5rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.bento-title--large {
  max-width: 700px;
  color: var(--offer-navy);
  font-size: clamp(2.6rem, 5vw, 4.3rem);
}

.bento-title--gold {
  color: var(--offer-gold);
}

.bento-title--dark {
  color: var(--offer-navy);
}

/* Big prominent offer numbers styling - significantly increased size */
.offer-highlight-number {
  font-size: 1.28em;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.bento-description {
  margin: 0 0 24px;
  color: rgba(224, 226, 229, 0.85);
  font-family: var(--font-body, Arial, sans-serif);
  font-size: 1.08rem;
  line-height: 1.7;
}

.bento-item--featured .bento-description,
.bento-description--dark {
  color: #2b3845;
}


/* =========================================================
   Bento Footer
========================================================= */

.bento-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  gap: 15px;
  border-top: 1px solid rgba(11, 19, 31, 0.15);
}

.offer-code {
  color: var(--offer-navy);
  font-family: monospace;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.bento-footer a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--offer-navy);
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition:
    color var(--offer-transition),
    transform var(--offer-transition);
}

.bento-footer a:hover,
.bento-footer a:focus {
  color: #866a1e;
  transform: translateX(4px);
}

.offer-note,
.bento-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--offer-gold);
  font-size: 0.96rem;
  font-weight: 800;
  text-decoration: none;
}

.bento-text-link {
  width: fit-content;
  transition:
    color var(--offer-transition),
    transform var(--offer-transition);
}

.bento-text-link:hover,
.bento-text-link:focus {
  color: var(--offer-white);
  transform: translateX(4px);
}


/* =========================================================
   Bottom Action
========================================================= */

.offers-bottom-action {
  position: relative;
  z-index: 2;
  margin-top: 35px;
}


/* =========================================================
   Animations
========================================================= */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-22px);
  }

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

@keyframes softPulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(241, 207, 109, 0.2),
      0 20px 55px rgba(4, 9, 16, 0.35);
  }

  70% {
    box-shadow:
      0 0 0 14px rgba(241, 207, 109, 0),
      0 20px 55px rgba(4, 9, 16, 0.35);
  }

  100% {
    box-shadow:
      0 0 0 0 rgba(241, 207, 109, 0),
      0 20px 55px rgba(4, 9, 16, 0.35);
  }
}

@keyframes offerGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 rgba(241, 207, 109, 0),
      0 0 15px rgba(241, 207, 109, 0.08);
  }

  50% {
    box-shadow:
      0 0 26px rgba(241, 207, 109, 0.42),
      0 0 45px rgba(241, 207, 109, 0.13);
  }
}

@keyframes ticketShake {
  0%,
  100% {
    transform: rotate(0deg);
  }

  20% {
    transform: rotate(-12deg);
  }

  40% {
    transform: rotate(10deg);
  }

  60% {
    transform: rotate(-7deg);
  }

  80% {
    transform: rotate(5deg);
  }
}

@keyframes offerShine {
  0%,
  55% {
    left: -70%;
  }

  85%,
  100% {
    left: 135%;
  }
}

.animated-fade-up {
  animation:
    fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.animated-fade-down {
  animation:
    fadeInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.animated-pulse {
  animation:
    softPulse 2.6s ease-out infinite;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}

.delay-4 {
  animation-delay: 0.6s;
}


/* =========================================================
   Responsive
========================================================= */

@media (min-width: 992px) {
  .bento-column:nth-child(3),
  .bento-column:nth-child(6) {
    border-right: 0;
  }

  .bento-column:nth-child(4),
  .bento-column:nth-child(5),
  .bento-column:nth-child(6) {
    border-bottom: 0;
  }
}

@media (max-width: 991.98px) {
  .grid-section {
    padding: 55px 0;
  }
    .grid-section{
        background-attachment: scroll;
        background-position: center;
    }
  .bento-item {
    min-height: 300px;
    padding: 32px;
  }

  .bento-column:nth-child(even) {
    border-right: 0;
  }

  .bento-column:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .grid-section {
    padding: 45px 0;
    background-position: 60% center;
  }

  .offers-header {
    margin-bottom: 36px !important;
  }

  .offers-title {
    font-size: clamp(2.6rem, 11vw, 3.8rem);
  }

  .offers-intro {
    font-size: 1.08rem;
  }

  .offers-callout {
    display: flex;
    width: 100%;
    padding: 17px;
    flex-direction: column;
  }

  .offers-callout__divider {
    width: 100%;
    height: 1px;
  }

  .offers-callout__actions {
    width: 100%;
    flex-direction: column;
  }

  .offers-callout__actions .btn {
    width: 100%;
  }

  .bento-grid {
    border-radius: 15px;
  }

  .bento-column {
    border-right: 0;
  }

  .bento-item {
    min-height: 270px;
    padding: 28px 24px;
  }

  .bento-title--large {
    font-size: clamp(2.3rem, 10vw, 3.2rem);
  }

  .bento-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .offers-callout__message {
    align-items: flex-start;
    text-align: left;
  }

  .bento-item {
    min-height: 255px;
    padding: 24px 20px;
  }

  .bento-title {
    font-size: 1.65rem;
  }

  .bento-description {
    font-size: 0.98rem;
  }

  .btn-offer--large {
    width: 100%;
    padding-inline: 16px !important;
    font-size: 0.92rem !important;
  }
}


/* =========================================================
   Accessibility
========================================================= */

.grid-section a:focus-visible {
  outline: 3px solid var(--offer-gold);
  outline-offset: 4px;
}


/* =========================================================
   Reduced Motion
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .animated-fade-up,
  .animated-fade-down,
  .animated-pulse,
  .btn-offer,
  .btn-offer::before,
  .btn-offer .bi-ticket-perforated-fill {
    animation: none !important;
  }

  .bento-item,
  .grid-section .btn,
  .bento-footer a,
  .bento-text-link {
    transition: none;
  }
}



/* 000000000000000000000000000000000000000000000000000000 */
.mission-section {
  position: relative;
  background-color: var(--color-black-soft);
  color: var(--color-white);
}

/* Left Accent Block using your dark navy/black */
.mission-black-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 28%;
  height: 100%;
  background-color: var(--color-black);
  z-index: 1;
}

/* Image Container Frame Layout */
.image-wrapper {
  position: relative;
  padding: 30px 20px 30px 0;
  max-width: 420px;
  margin: 0 auto;
}

/* Frame using your Champagne Gold CSS Variable */
.yellow-frame {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 35px;
  border: 10px solid var(--color-yellow);
  z-index: 1;
  pointer-events: none;
}

.image-box {
  position: relative;
  z-index: 2;
  height: 480px;
  border: 1px solid var(--border-light);
  box-shadow: var(--navy-shadow);
}

.grayscale {
  filter: grayscale(100%);
  transition: filter var(--transition);
}

.image-wrapper:hover .grayscale {
  filter: grayscale(60%);
}

/* Typography & Titles - Increased Sizes */
.mission-eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--color-yellow);
  font-family: var(--font-body);
  font-size: 13px; /* Slightly bigger */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.mission-title {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.5vw, 3rem); /* Refined & readable proportion */
  line-height: 1.25;
  letter-spacing: 0.5px;
}

.mission-item-title {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.45rem;
  letter-spacing: 0.5px;
}

.mission-text {
  color: var(--color-gray-light);
  font-family: var(--font-body);
  font-size: 16px; /* Increased from 14.5px */
  font-weight: 300;
  line-height: 1.75;
}

/* Number Badges styled with Champagne Gold */
.number-badge {
  display: inline-flex;
  min-width: 34px;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-black);
  background-color: var(--color-yellow);
  box-shadow: 0 4px 14px rgba(241, 207, 109, 0.2);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 2px;
}

/* =========================================================
   ANIMATIONS & CALL BUTTON STYLING
========================================================= */

/* Action Button Wrapper */
.mission-actions {
  margin-top: 20px;
}

/* Animated Call CTA Button */
.mission-call-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  background-color: var(--color-yellow);
  color: var(--color-black);
  text-decoration: none;
  border-radius: 6px;
  overflow: hidden;
  font-family: var(--font-heading);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 6px 20px rgba(241, 207, 109, 0.25);
}

/* Call Button Shimmer Overlay */
.mission-call-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  transition: all 0.6s ease;
}

.mission-call-btn:hover::before {
  left: 100%;
}

.mission-call-btn:hover {
  background-color: var(--color-yellow-dark, #d8b450);
  color: var(--color-black);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(241, 207, 109, 0.4);
}

/* Icon & Text Styling inside Button */
.mission-call-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  animation: phoneRing 2.5s infinite ease-in-out;
}

.mission-call-text {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
}

.mission-call-text strong {
  font-size: 1.15rem;
  font-weight: 800;
}

/* Keyframe Animations */

/* 1. Phone Icon Ringing Animation */
@keyframes phoneRing {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-15deg) scale(1.15); }
  20%, 40% { transform: rotate(15deg) scale(1.15); }
  50% { transform: rotate(0deg); }
}

/* 2. Entrance Animations for Section Elements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Section Smooth Entrance Classes */
.mission-animate-left {
  animation: fadeInUp 0.9s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.mission-animate-right {
  animation: fadeInRight 0.9s cubic-bezier(0.25, 0.8, 0.25, 1) 0.2s forwards;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .mission-black-bg {
    width: 100%;
    height: 180px;
  }

  .image-wrapper {
    padding: 20px 10px 20px 0;
  }

  .image-box {
    height: 360px;
  }

  .mission-text {
    font-size: 15px;
  }
}



/* 000000000000000000000000000000000000000000000000000000000000 */
/* =========================================================
   Goals Section
========================================================= */

/* =========================================================
   Goals / Service Process Section
========================================================= */

.goals-section {
  --goals-navy: #101c2b;
  --goals-navy-soft: #1b2a3b;
  --goals-charcoal: #34404d;
  --goals-gray: #687583;
  --goals-light: #f4f6f8;
  --goals-white: #ffffff;
  --goals-gold: #f1cf6d;
  --goals-gold-dark: #d8b450;
  --goals-border: rgba(16, 28, 43, 0.1);
  --goals-shadow: 0 28px 70px rgba(16, 28, 43, 0.13);

  position: relative;
  overflow: hidden;
  padding: 110px 0;

  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(241, 207, 109, 0.12),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f5f7f9 100%
    );
}

.goals-section::before {
  position: absolute;
  top: -180px;
  right: -120px;

  width: 340px;
  height: 340px;

  border: 1px solid rgba(241, 207, 109, 0.25);
  border-radius: 50%;

  content: "";
}

.goals-shell {
  position: relative;
  z-index: 2;
}


/* =========================================================
   Equal-Height Columns
========================================================= */

.goals-section .row.align-items-center,
.goals-section .row.align-items-stretch {
  align-items: stretch !important;
}

.goals-section .col-lg-5,
.goals-section .col-lg-7 {
  display: flex;
}


/* =========================================================
   Section Heading
========================================================= */

.goals-heading {
  max-width: 940px;
  margin: 0 auto 65px;
}

.goals-eyebrow {
  display: inline-flex;
  align-items: center;

  margin-bottom: 18px;

  color: var(--goals-gold-dark);

  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.goals-eyebrow::before,
.goals-eyebrow::after {
  width: 38px;
  height: 1px;

  margin-inline: 14px;

  background: var(--goals-gold);

  content: "";
}

.goals-title {
  margin: 0;

  color: var(--goals-navy);

  font-size: clamp(3.4rem, 5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.goals-title span {
  display: block;

  margin-top: 12px;

  color: var(--goals-gold-dark) !important;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem !important;
  font-weight: 500 !important;
  font-style: italic;
  line-height: 1.4;
}

.goals-intro {
  max-width: 850px;

  margin: 28px auto 0;

  color: var(--goals-gray);

  font-size: 1.35rem;
  line-height: 2;
}


/* =========================================================
   Left Image Layout
========================================================= */

.goals-image-wrap {
  position: relative;

  display: flex;

  width: 100%;
  max-width: 520px;
  height: 100%;

  margin: 0 auto;
  padding: 18px 18px 18px 0;
}

.goals-image-frame {
  position: absolute;
  z-index: 1;

  top: 0;
  right: 0;
  bottom: 0;
  left: 30px;

  border: 4px solid var(--goals-gold);
  border-radius: 8px;

  pointer-events: none;
}

.goals-image-box {
  position: relative;
  z-index: 2;

  width: 100%;
  height: 100%;

  overflow: hidden;

  border-radius: 6px;

  background: var(--goals-navy);

  box-shadow:
    0 18px 42px rgba(16, 28, 43, 0.24);
}

.goals-image-box img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition: transform 0.5s ease;
}

.goals-image-wrap:hover .goals-image-box img {
  transform: scale(1.04);
}


/* =========================================================
   Floating Image Badge
========================================================= */

.goals-target-badge {
  position: absolute;
  z-index: 4;

  right: 10px;
  bottom: -15px;

  display: flex;
  align-items: center;

  padding: 16px 24px;
  gap: 14px;

  border: 1px solid var(--goals-gold);
  border-radius: 6px;

  color: var(--goals-white);
  background: var(--goals-navy);

  box-shadow: var(--goals-shadow);
}

.goals-target-badge i {
  color: var(--goals-gold);
  font-size: 1.9rem;
}

.goals-target-badge span {
  display: flex;
  flex-direction: column;

  color: var(--goals-white);

  font-size: 0.95rem;
  line-height: 1.4;
}

.goals-target-badge strong {
  color: var(--goals-white);
  font-size: 1.2rem;
}


/* =========================================================
   Goals List
========================================================= */

.goals-list {
  position: relative;

  display: flex;

  width: 100%;
  height: 100%;

  flex-direction: column;

  gap: 18px !important;
}


/* =========================================================
   Goal Cards
========================================================= */

.goal-card {
  position: relative;

  display: grid;

  width: 100%;
  height: auto;
  min-height: 190px;

  grid-template-columns: 86px minmax(0, 1fr);
  align-items: stretch;

  overflow: visible;

  border: 1px solid var(--goals-border);
  border-radius: 4px 14px 14px 4px;

  background: #6a7580;

  box-shadow:
    0 15px 35px rgba(16, 28, 43, 0.08);

  transition:
    transform 250ms ease,
    box-shadow 250ms ease;
}

.goal-card:hover {
  z-index: 3;

  transform: translateX(8px);

  box-shadow:
    0 22px 45px rgba(16, 28, 43, 0.16);
}

.goal-card--featured {
  background:
    linear-gradient(
      135deg,
      var(--goals-gold) 0%,
      #e3bd4e 100%
    );
}

.goal-card--dark {
  background: var(--goals-navy);
}


/* =========================================================
   Connector Lines
========================================================= */

.goal-card__connector {
  position: absolute;

  top: 50%;
  left: -90px;

  width: 90px;
  height: 1px;

  background: rgba(16, 28, 43, 0.35);
}

.goal-card__connector::before {
  position: absolute;

  top: 50%;
  left: 0;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--goals-gold);

  content: "";

  transform: translateY(-50%);
}


/* =========================================================
   Card Number
========================================================= */

.goal-card__number {
  display: flex;

  align-items: center;
  justify-content: center;

  color: rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.12);

  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.goal-card--featured .goal-card__number {
  color: var(--goals-navy);
  background: rgba(255, 255, 255, 0.2);
}


/* =========================================================
   Card Content
========================================================= */

.goal-card__content {
  display: flex;

  align-items: flex-start;

  padding: 34px;
  gap: 24px;
}

.goal-card__content > div {
  min-width: 0;
  flex: 1;
}

.goal-card__icon {
  display: inline-flex;

  width: 62px;
  height: 62px;
  flex: 0 0 62px;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;

  color: var(--goals-white);
  background: rgba(255, 255, 255, 0.08);

  font-size: 1.8rem !important;

  transition: transform 300ms ease;
}

.goal-card:hover .goal-card__icon {
  transform: scale(1.1);
}

.goal-card--featured .goal-card__icon {
  border-color: rgba(16, 28, 43, 0.18);

  color: var(--goals-navy);
  background: rgba(255, 255, 255, 0.28);
}

.goal-card h3,
.goal-card .h5 {
  margin: 0 0 14px !important;

  color: var(--goals-white);

  font-size: 1.45rem !important;
  font-weight: 800;
  line-height: 1.35;

  overflow-wrap: anywhere;
}

.goal-card p {
  margin: 0;

  color: rgba(255, 255, 255, 0.82);

  font-size: 1.05rem;
  line-height: 1.8;

  overflow-wrap: anywhere;
}

.goal-card--featured h3,
.goal-card--featured .h5,
.goal-card--featured p {
  color: var(--goals-navy);
}


/* =========================================================
   Entrance Animations
========================================================= */

@keyframes goalsFadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

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

.goals-heading {
  animation: goalsFadeUp 0.8s ease both;
}

.goals-image-wrap {
  animation: goalsFadeUp 0.9s ease 0.15s both;
}

.goal-card:nth-child(1) {
  animation: goalsFadeUp 0.8s ease 0.15s both;
}

.goal-card:nth-child(2) {
  animation: goalsFadeUp 0.8s ease 0.3s both;
}

.goal-card:nth-child(3) {
  animation: goalsFadeUp 0.8s ease 0.45s both;
}

.goal-card:nth-child(4) {
  animation: goalsFadeUp 0.8s ease 0.6s both;
}


/* =========================================================
   Desktop Equal-Height Image
========================================================= */

@media (min-width: 992px) {
  .goals-image-wrap {
    min-height: 100%;
  }

  .goals-image-box,
  .goals-image-box img {
    min-height: 100%;
  }

  .goals-list {
    min-height: 100%;
  }
}


/* =========================================================
   Large Tablet
========================================================= */

@media (max-width: 1199.98px) {
  .goals-title {
    font-size: 3.8rem;
  }

  .goals-title span {
    font-size: 1.8rem !important;
  }

  .goals-intro {
    font-size: 1.2rem;
  }

  .goal-card__connector {
    left: -55px;
    width: 55px;
  }

  .goal-card {
    min-height: 180px;
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .goal-card__content {
    padding: 28px;
  }

  .goal-card h3,
  .goal-card .h5 {
    font-size: 1.35rem !important;
  }

  .goal-card p {
    font-size: 1rem;
  }
}


/* =========================================================
   Tablet
========================================================= */

@media (max-width: 991.98px) {
  .goals-section {
    padding: 90px 0;
  }

  .goals-section .col-lg-5,
  .goals-section .col-lg-7 {
    display: block;
  }

  .goals-heading {
    max-width: 850px;
  }

  .goals-title {
    font-size: 3rem;
  }

  .goals-title span {
    font-size: 1.6rem !important;
  }

  .goals-intro {
    font-size: 1.15rem;
    line-height: 1.85;
  }

  .goals-image-wrap {
    display: block;

    max-width: 680px;
    height: auto;
    min-height: auto;

    margin-bottom: 45px;
  }

  .goals-image-box,
  .goals-image-box img {
    height: 600px;
    min-height: 600px;
  }

  .goals-list {
    height: auto;
    min-height: 0;
  }

  .goal-card {
    min-height: auto;
  }

  .goal-card__connector {
    display: none;
  }

  .goal-card:hover {
    transform: translateY(-5px);
  }

  .goal-card h3,
  .goal-card .h5 {
    font-size: 1.3rem !important;
  }

  .goal-card p {
    font-size: 1rem;
  }
}


/* =========================================================
   Mobile
========================================================= */

@media (max-width: 767.98px) {
  .goals-section {
    padding: 75px 0;
  }

  .goals-heading {
    margin-bottom: 45px;
  }

  .goals-eyebrow {
    font-size: 0.88rem;
    letter-spacing: 0.22em;
  }

  .goals-title {
    font-size: 2.6rem;
  }

  .goals-title span {
    font-size: 1.45rem !important;
  }

  .goals-intro {
    font-size: 1.05rem;
    line-height: 1.8;
  }

  .goals-image-wrap {
    max-width: 500px;
  }

  .goals-image-box,
  .goals-image-box img {
    height: 480px;
    min-height: 480px;
  }

  .goals-image-wrap .goals-target-badge {
    right: 15px;
    bottom: -12px;
    left: 15px;
  }

  .goal-card {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .goal-card__number {
    font-size: 1.1rem;
  }

  .goal-card__content {
    padding: 24px 20px;
    gap: 15px;
  }

  .goal-card__icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;

    font-size: 1.55rem !important;
  }

  .goal-card h3,
  .goal-card .h5 {
    font-size: 1.25rem !important;
  }

  .goal-card p {
    font-size: 0.98rem;
    line-height: 1.75;
  }
}


/* =========================================================
   Small Mobile
========================================================= */

@media (max-width: 480px) {
  .goals-title {
    font-size: 2.25rem;
  }

  .goals-title span {
    font-size: 1.25rem !important;
  }

  .goals-intro {
    font-size: 1rem;
  }

  .goals-image-box,
  .goals-image-box img {
    height: 390px;
    min-height: 390px;
  }

  .goals-image-wrap .goals-target-badge {
    right: 12px;
    bottom: -12px;
    left: 12px;
  }

  .goals-image-wrap .goals-target-badge i {
    font-size: 1.5rem;
  }

  .goals-image-wrap .goals-target-badge span {
    font-size: 0.82rem;
  }

  .goals-image-wrap .goals-target-badge strong {
    font-size: 1rem;
  }

  .goal-card {
    grid-template-columns: 1fr;
    border-radius: 12px;
  }

  .goal-card__number {
    display: none;
  }

  .goal-card__content {
    align-items: flex-start;
    padding: 22px;
  }

  .goal-card h3,
  .goal-card .h5 {
    font-size: 1.18rem !important;
  }

  .goal-card p {
    font-size: 0.95rem;
  }
}


/* =========================================================
   Reduced Motion
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .goal-card,
  .goal-card__icon,
  .goals-image-box img {
    animation: none !important;
    transition: none !important;
  }

  .goals-heading,
  .goals-image-wrap,
  .goal-card {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

/* 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000 */



/* =========================================================
   Performance Section
========================================================= */

.performance-section {
  --performance-dark: var(--color-black, #0b131f);
  --performance-dark-soft: var(--color-black-soft, #121e2d);
  --performance-charcoal: var(--color-charcoal, #1c2b3d);

  --performance-white: var(--color-white, #ffffff);
  --performance-gray-light: var(--color-gray-light, #e0e2e5);
  --performance-gray: var(--color-gray, #9aa3af);

  --performance-gold: var(--color-yellow, #f1cf6d);
  --performance-gold-dark: var(--color-yellow-dark, #d8b450);
  --performance-gold-soft: var(
    --color-yellow-soft,
    rgba(241, 207, 109, 0.12)
  );

  --performance-border: var(
    --border-light,
    rgba(255, 255, 255, 0.08)
  );

  --performance-gold-border: var(
    --border-yellow,
    rgba(241, 207, 109, 0.25)
  );

  position: relative;
  isolation: isolate;
  padding: 100px 0;
  color: var(--performance-white);
  background: var(--performance-dark);
}


/* =========================================================
   Background
========================================================= */

.performance-background {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image:
    linear-gradient(
      115deg,
      rgba(11, 19, 31, 0.94) 0%,
      rgba(18, 30, 45, 0.84) 48%,
      rgba(11, 19, 31, 0.94) 100%
    ),
    url("../img/hero-img.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  filter: grayscale(100%);
  transform: scale(1.04);
}

.performance-background::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(
      180deg,
      rgba(11, 19, 31, 0.1),
      rgba(11, 19, 31, 0.55)
    );
}


/* =========================================================
   Decorative Elements
========================================================= */

.performance-decoration {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.performance-orb {
  position: absolute;
  border-radius: 50%;
  background: var(--performance-gold-soft);
  filter: blur(5px);
}

.performance-orb--one {
  width: 290px;
  height: 290px;
  top: -130px;
  left: -100px;
  animation: performanceOrbFloat 10s ease-in-out infinite;
}

.performance-orb--two {
  width: 240px;
  height: 240px;
  right: -80px;
  bottom: -100px;
  animation: performanceOrbFloat 12s ease-in-out -4s infinite;
}

.performance-line {
  position: absolute;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(241, 207, 109, 0.32),
      transparent
    );
}

.performance-line--one {
  width: 420px;
  top: 18%;
  right: -130px;
  transform: rotate(-18deg);
}

.performance-line--two {
  width: 360px;
  bottom: 17%;
  left: -100px;
  transform: rotate(15deg);
}


/* =========================================================
   Main Glass Panel
========================================================= */

.performance-panel {
  position: relative;
  overflow: hidden;
  padding: 62px 48px 42px;
  border: 1px solid var(--performance-gold-border);
  border-radius: 18px;
  background:
    linear-gradient(
      135deg,
      rgba(18, 30, 45, 0.9),
      rgba(11, 19, 31, 0.84)
    );
  box-shadow:
    0 35px 90px rgba(4, 9, 16, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(9px);
}

.performance-panel::before {
  position: absolute;
  width: 45%;
  height: 2px;
  top: 0;
  left: 50%;
  content: "";
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--performance-gold),
      transparent
    );
  transform: translateX(-50%);
}


/* =========================================================
   Header
========================================================= */

.performance-header {
  max-width: 820px;
  margin-bottom: 55px;
  opacity: 0;
  transform: translateY(-28px);
  transition:
    opacity 800ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.performance-section.is-visible .performance-header {
  opacity: 1;
  transform: translateY(0);
}

.performance-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 13px;
  gap: 11px;
  color: var(--performance-gold);
  font-family: var(--font-body, Arial, sans-serif);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.performance-eyebrow::before,
.performance-eyebrow::after {
  width: 32px;
  height: 1px;
  background: var(--performance-gold);
  content: "";
}

.performance-title {
  margin: 0;
  color: var(--performance-white);
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.performance-intro {
  max-width: 720px;
  margin: 20px auto 0;
  color: rgba(224, 226, 229, 0.78);
  font-family: var(--font-body, Arial, sans-serif);
  font-size: 1rem;
  line-height: 1.8;
}


/* =========================================================
   Statistic Cards
========================================================= */

.performance-card {
  position: relative;
  height: 100%;
  min-height: 230px;
  overflow: hidden;
  padding: 32px 24px 28px;
  border: 1px solid var(--performance-border);
  border-radius: 14px;
  background:
    linear-gradient(
      155deg,
      rgba(28, 43, 61, 0.88),
      rgba(11, 19, 31, 0.9)
    );
  box-shadow: 0 22px 50px rgba(4, 9, 16, 0.3);
  opacity: 0;
  transform: translateY(45px);
  transition:
    opacity 800ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 800ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 300ms ease,
    box-shadow 300ms ease;
  transition-delay: var(--card-delay, 0s);
}

.performance-section.is-visible .performance-card {
  opacity: 1;
  transform: translateY(0);
}

.performance-card::before {
  position: absolute;
  width: 100%;
  height: 3px;
  top: 0;
  left: 0;
  content: "";
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--performance-gold),
      transparent
    );
  opacity: 0;
  transform: scaleX(0);
  transition:
    opacity 400ms ease,
    transform 600ms ease;
}

.performance-card:hover {
  border-color: var(--performance-gold-border);
  box-shadow:
    0 30px 65px rgba(4, 9, 16, 0.42),
    0 0 25px rgba(241, 207, 109, 0.09);
  transform: translateY(-8px);
}

.performance-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}


/* =========================================================
   Donut Chart
========================================================= */

.performance-chart {
  display: flex;
  justify-content: center;
  margin-bottom: 29px;
}

.performance-chart__ring {
  position: relative;
  display: grid;
  width: 168px;
  height: 168px;
  place-items: center;
  border-radius: 50%;
  background:
    conic-gradient(
      var(--performance-gold) 0deg,
      var(--performance-gold) 0deg,
      rgba(255, 255, 255, 0.09) 0deg
    );
  box-shadow:
    0 18px 38px rgba(4, 9, 16, 0.34),
    0 0 0 1px rgba(241, 207, 109, 0.16);
}

.performance-section.is-visible .performance-chart__ring {
  animation:
    performanceDonutFill 1.6s
    cubic-bezier(0.16, 1, 0.3, 1)
    var(--card-delay, 0s)
    forwards;
}

.performance-chart__ring::before {
  position: absolute;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  content: "";
  background:
    radial-gradient(
      circle at 35% 30%,
      rgba(255, 255, 255, 0.05),
      transparent 34%
    ),
    var(--performance-dark-soft);
  box-shadow:
    inset 0 0 22px rgba(4, 9, 16, 0.6),
    0 0 0 1px var(--performance-border);
}

.performance-chart__center {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.performance-chart__center i {
  margin-bottom: 7px;
  color: var(--performance-gold);
  font-size: 1.1rem;
}

.performance-chart__center strong {
  color: var(--performance-white);
  font-family: var(--font-heading, Georgia, serif);
  font-size: 1.75rem;
  line-height: 1;
}


/* =========================================================
   Card Content
========================================================= */

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

.performance-card__number {
  display: inline-flex;
  margin-bottom: 11px;
  color: var(--performance-gold-dark);
  font-family: monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.performance-card h3 {
  margin: 0 0 11px;
  color: var(--performance-white);
  font-family: var(--font-heading, Georgia, serif);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.25;
}

.performance-card p {
  margin: 0;
  color: rgba(224, 226, 229, 0.7);
  font-family: var(--font-body, Arial, sans-serif);
  font-size: 0.9rem;
  line-height: 1.65;
}


/* =========================================================
   Trust Bar
========================================================= */

.performance-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 43px;
  padding: 22px 28px;
  gap: 29px;
  border: 1px solid var(--performance-border);
  border-radius: 10px;
  background: rgba(11, 19, 31, 0.58);
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 800ms ease 0.5s,
    transform 800ms ease 0.5s;
}

.performance-section.is-visible .performance-trust {
  opacity: 1;
  transform: translateY(0);
}

.performance-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--performance-gray-light);
  font-family: var(--font-body, Arial, sans-serif);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.performance-trust__item i {
  color: var(--performance-gold);
  font-size: 1.2rem;
}

.performance-trust__divider {
  width: 1px;
  height: 28px;
  background: var(--performance-gold-border);
}


/* =========================================================
   Animations
========================================================= */

@keyframes performanceDonutFill {
  from {
    background:
      conic-gradient(
        var(--performance-gold) 0deg,
        rgba(255, 255, 255, 0.09) 0deg
      );
    transform: rotate(-90deg) scale(0.82);
  }

  to {
    background:
      conic-gradient(
        var(--performance-gold) 0turn var(--progress),
        rgba(255, 255, 255, 0.09) var(--progress) 100%
      );
    transform: rotate(0deg) scale(1);
  }
}

@keyframes performanceOrbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(24px, 18px) scale(1.08);
  }
}


/* =========================================================
   Tablet
========================================================= */

@media (max-width: 1199.98px) {
  .performance-panel {
    padding: 55px 36px 38px;
  }

  .performance-card {
    min-height: 410px;
  }
}

@media (max-width: 991.98px) {
  .performance-section {
    padding: 80px 0;
  }

  .performance-background {
    background-attachment: scroll;
  }

  .performance-panel {
    padding: 48px 28px 34px;
  }

  .performance-trust {
    flex-wrap: wrap;
  }
}


/* =========================================================
   Mobile
========================================================= */

@media (max-width: 767.98px) {
  .performance-section {
    padding: 60px 0;
  }

  .performance-panel {
    padding: 40px 19px 28px;
    border-radius: 12px;
  }

  .performance-header {
    margin-bottom: 38px;
  }

  .performance-title {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .performance-intro {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .performance-card {
    min-height: 390px;
  }

  .performance-trust {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

  .performance-trust__divider {
    width: 100%;
    height: 1px;
  }
}

@media (max-width: 420px) {
  .performance-panel {
    padding-inline: 14px;
  }

  .performance-chart__ring {
    width: 150px;
    height: 150px;
  }

  .performance-chart__ring::before {
    width: 110px;
    height: 110px;
  }
}


/* =========================================================
   Accessibility
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .performance-header,
  .performance-card,
  .performance-chart__ring,
  .performance-trust,
  .performance-orb {
    animation: none !important;
    transition: none !important;
  }

  .performance-header,
  .performance-card,
  .performance-trust {
    opacity: 1;
    transform: none;
  }

  .performance-chart__ring {
    background:
      conic-gradient(
        var(--performance-gold) 0% var(--progress),
        rgba(255, 255, 255, 0.09) var(--progress) 100%
      );
  }
}


/* =========================================================
   Larger Typography — Performance Section
   Paste at the end of the existing CSS
========================================================= */

/* Section eyebrow */
.performance-eyebrow {
  font-size: 1rem;
  letter-spacing: 0.26em;
}

/* Main section title */
.performance-title {
  font-size: clamp(3.4rem, 5vw, 5rem);
  line-height: 1.1;
}

/* Introductory paragraph */
.performance-intro {
  max-width: 820px;
  font-size: 1.25rem;
  line-height: 1.9;
}

/* Donut center icon */
.performance-chart__center i {
  font-size: 1.4rem;
}

/* Donut value */
.performance-chart__center strong {
  font-size: 2.2rem;
}

/* Card number */
.performance-card__number {
  font-size: 0.95rem;
}

/* Card headings */
.performance-card h3 {
  font-size: 1.65rem;
  line-height: 1.3;
}

/* Card descriptions */
.performance-card p {
  font-size: 1.08rem;
  line-height: 1.8;
}

/* Trust bar text */
.performance-trust__item {
  font-size: 1rem;
}

/* Trust bar icons */
.performance-trust__item i {
  font-size: 1.45rem;
}

/* =========================================================
   Responsive Typography
========================================================= */

@media (max-width: 1199.98px) {
  .performance-title {
    font-size: 3.8rem;
  }

  .performance-intro {
    font-size: 1.15rem;
  }

  .performance-card h3 {
    font-size: 1.5rem;
  }

  .performance-card p {
    font-size: 1rem;
  }
}

@media (max-width: 991.98px) {
  .performance-title {
    font-size: 3.1rem;
  }

  .performance-intro {
    font-size: 1.1rem;
  }

  .performance-card h3 {
    font-size: 1.4rem;
  }

  .performance-card p {
    font-size: 1rem;
  }

  .performance-trust__item {
    font-size: 0.95rem;
  }
}

@media (max-width: 767.98px) {
  .performance-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
  }

  .performance-title {
    font-size: clamp(2.5rem, 10vw, 3.2rem);
  }

  .performance-intro {
    font-size: 1.02rem;
    line-height: 1.75;
  }

  .performance-chart__center i {
    font-size: 1.25rem;
  }

  .performance-chart__center strong {
    font-size: 1.9rem;
  }

  .performance-card h3 {
    font-size: 1.35rem;
  }

  .performance-card p {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .performance-card__number {
    font-size: 0.85rem;
  }

  .performance-trust__item {
    font-size: 0.9rem;
  }
}

@media (max-width: 420px) {
  .performance-title {
    font-size: 2.3rem;
  }

  .performance-intro {
    font-size: 0.98rem;
  }

  .performance-card h3 {
    font-size: 1.25rem;
  }

  .performance-card p {
    font-size: 0.95rem;
  }
}
/* 0000000000000000000000000000000000000000000000000000000000000 */
/* =========================================================
   Compact Strategy Section
========================================================= */

.strategy-compact {
  --strategy-navy: #0b131f;
  --strategy-white: #ffffff;
  --strategy-gold: #f1cf6d;
  --strategy-gold-dark: #d8b450;
  --strategy-text-dark: #18202b;

  position: relative;
  min-height: 620px;
  overflow: hidden;
  padding: 65px 0 75px;
  background: var(--strategy-navy);
}


/* Background */

.strategy-compact__background {
  position: absolute;
  inset: 0;
}

.strategy-compact__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
}

.strategy-compact__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(11, 19, 31, 0.88),
      rgba(11, 19, 31, 0.68),
      rgba(11, 19, 31, 0.86)
    );
}


/* Heading */

.strategy-compact__header {
  position: relative;
  z-index: 5;
  margin-bottom: 35px;
}

.strategy-compact__header span {
  display: block;
  margin-bottom: 7px;
  color: var(--strategy-gold);
  font-size: 0.67rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.strategy-compact__header h2 {
  margin: 0;
  color: var(--strategy-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  font-weight: 700;
}


/* Layout */

.strategy-compact__layout {
  position: relative;
  z-index: 4;
  display: grid;
  max-width: 1080px;
  min-height: 430px;
  grid-template-columns: 390px minmax(0, 1fr);
  align-items: center;
  margin-inline: auto;
  gap: 30px;
}


/* Main Circular Graphic */

.strategy-compact__core {
  position: relative;
  width: 360px;
  height: 360px;
  justify-self: center;
}

.strategy-compact__orbit {
  position: absolute;
  border-radius: 50%;
}

.strategy-compact__orbit--outer {
  inset: 0;
  border: 1px solid rgba(241, 207, 109, 0.42);
}

.strategy-compact__orbit--inner {
  inset: 24px;
  border: 2px solid rgba(255, 255, 255, 0.68);
}

.strategy-compact__gold-ring {
  position: absolute;
  width: 260px;
  height: 260px;
  top: 50%;
  left: 50%;
  border: 20px solid var(--strategy-gold);
  border-top-color: transparent;
  border-left-color: rgba(216, 180, 80, 0.65);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-26deg);
}

.strategy-compact__center {
  position: absolute;
  z-index: 3;
  display: flex;
  width: 220px;
  height: 220px;
  top: 50%;
  left: 50%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 9px solid var(--strategy-white);
  border-radius: 50%;
  background: var(--strategy-white);
  box-shadow:
    0 0 0 8px var(--strategy-gold),
    0 22px 45px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%);
}

.strategy-compact__main-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  border-radius: 50%;
  color: var(--strategy-navy);
  background: rgba(241, 207, 109, 0.18);
  font-size: 1.25rem;
}

.strategy-compact__center small {
  margin-bottom: 4px;
  color: var(--strategy-gold-dark);
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.strategy-compact__center strong {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--strategy-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1;
}

.strategy-compact__center em {
  margin-top: 4px;
  color: var(--strategy-gold-dark);
  font-weight: 700;
}


/* Circular Dots */

.strategy-compact__dot {
  position: absolute;
  z-index: 6;
  width: 12px;
  height: 12px;
  border: 3px solid var(--strategy-white);
  border-radius: 50%;
  background: var(--strategy-gold);
}

.strategy-compact__dot--1 {
  top: 30px;
  right: 77px;
}

.strategy-compact__dot--2 {
  top: 96px;
  right: 26px;
}

.strategy-compact__dot--3 {
  top: 50%;
  right: 9px;
  transform: translateY(-50%);
}

.strategy-compact__dot--4 {
  right: 32px;
  bottom: 83px;
}

.strategy-compact__dot--5 {
  right: 82px;
  bottom: 23px;
}


/* Connectors */

.strategy-compact__connectors {
  position: absolute;
  z-index: 1;
  width: 370px;
  height: 430px;
  top: 50%;
  left: 300px;
  overflow: visible;
  pointer-events: none;
  transform: translateY(-50%);
}

.strategy-compact__connectors path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.82);
  stroke-width: 1.8;
  stroke-linecap: round;
}


/* Right List */

.strategy-compact__list {
  position: relative;
  z-index: 4;
  display: flex;
  max-width: 570px;
  flex-direction: column;
  gap: 11px;
}

.strategy-compact__item {
  position: relative;
  display: grid;
  min-height: 68px;
  grid-template-columns: 52px 1fr;
  align-items: center;
  padding: 9px 23px 9px 9px;
  gap: 13px;
  border-radius: 999px;
  background:
    linear-gradient(
      135deg,
      var(--strategy-gold),
      var(--strategy-gold-dark)
    );
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

.strategy-compact__item:hover {
  transform: translateX(6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.strategy-compact__item::before {
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  left: -20px;
  border: 3px solid var(--strategy-white);
  border-radius: 50%;
  background: var(--strategy-gold);
  content: "";
  transform: translateY(-50%);
}

.strategy-compact__item-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 5px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: var(--strategy-navy);
  background: var(--strategy-white);
  font-size: 1rem;
}

.strategy-compact__item h3 {
  margin: 0 0 3px;
  color: var(--strategy-text-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.86rem;
  font-weight: 700;
}

.strategy-compact__item p {
  margin: 0;
  color: rgba(24, 32, 43, 0.78);
  font-size: 0.66rem;
  line-height: 1.35;
}


/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1199.98px) {
  .strategy-compact__layout {
    grid-template-columns: 340px minmax(0, 1fr);
  }

  .strategy-compact__core {
    width: 320px;
    height: 320px;
  }

  .strategy-compact__center {
    width: 195px;
    height: 195px;
  }

  .strategy-compact__gold-ring {
    width: 235px;
    height: 235px;
  }

  .strategy-compact__connectors {
    width: 325px;
    left: 270px;
  }
}

@media (max-width: 991.98px) {
  .strategy-compact {
    padding: 75px 0;
  }

  .strategy-compact__layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .strategy-compact__core {
    width: 340px;
    height: 340px;
  }

  .strategy-compact__connectors {
    display: none;
  }

  .strategy-compact__list {
    width: 100%;
    max-width: 650px;
    margin-inline: auto;
  }

  .strategy-compact__item::before {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .strategy-compact__core {
    width: 280px;
    height: 280px;
  }

  .strategy-compact__center {
    width: 170px;
    height: 170px;
  }

  .strategy-compact__gold-ring {
    width: 205px;
    height: 205px;
    border-width: 16px;
  }

  .strategy-compact__center strong {
    font-size: 1.35rem;
  }

  .strategy-compact__item {
    min-height: 78px;
    grid-template-columns: 45px 1fr;
    padding: 10px 17px 10px 8px;
    border-radius: 22px;
  }

  .strategy-compact__item-icon {
    width: 42px;
    height: 42px;
    border-width: 4px;
  }

  .strategy-compact__item h3 {
    font-size: 0.82rem;
  }

  .strategy-compact__item p {
    font-size: 0.64rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .strategy-compact__item {
    transition: none;
  }
}

        /* 0000000000000000000000000000000000000000000000000000000000000000000000000000000000 */
/* =========================================================
   Brands Section (Enlarged Text & Typography)
========================================================= */

.brands-section {
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.brands-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 13.5px; /* Increased from 12px */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #d8b450;
  margin-bottom: 8px;
}

.brands-title {
  color: #0b131f;
  font-size: clamp(2.2rem, 4vw, 2.8rem); /* Increased and made responsive */
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

/* Marquee Container & Mask */
.marquee-wrapper {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 40px;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 10%,
    rgba(0, 0, 0, 1) 90%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 10%,
    rgba(0, 0, 0, 1) 90%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* Moving Track */
.marquee-track {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 40px;
  min-width: 100%;
  animation: scroll-marquee 25s linear infinite;
}

/* Pause when hover over the marquee wrapper */
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

/* Individual Brand Logos */
.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 160px;
  padding: 10px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e0e2e5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.brand-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 300ms ease, opacity 300ms ease;
}

/* Highlight single logo when hovered */
.brand-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.brand-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Smooth Animation Loop */
@keyframes scroll-marquee {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(calc(-100% - 40px));
  }
}

/* Accessibility: Pause animation for users preferring reduced motion */
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
  .marquee-wrapper {
    overflow-x: auto;
  }
}


/* 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 */
/* Color Variable Definitions */
:root {
  --color-black: #0b131f;
  --color-black-soft: #121e2d;
  --color-charcoal: #1c2b3d;

  --color-white: #ffffff;
  --color-gray-light: #e0e2e5;
  --color-gray: #9aa3af;

  --color-yellow: #f1cf6d;
  --color-yellow-dark: #d8b450;
  --color-yellow-soft: rgba(241, 207, 109, 0.12);

  --border-light: rgba(255, 255, 255, 0.08);
  --border-yellow: rgba(241, 207, 109, 0.25);
}

/* Section Layout & Background */
.custom-solutions-section {
  background-color: var(--color-gray-light);
  color: var(--color-charcoal);
  font-family: var(--font-body, system-ui, -apple-system, sans-serif);
}

.section-glow {
  width: 600px;
  height: 300px;
  background: radial-gradient(
    circle,
    var(--color-yellow-soft) 0%,
    transparent 70%
  );
  filter: blur(50px);
  pointer-events: none;
}

/* Typography & Headings */
.custom-badge {
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--color-yellow-dark);
  background: var(--color-yellow-soft);
  border: 1px solid var(--border-yellow);
  border-radius: 50px;
}

.custom-heading {
  font-family: var(--font-heading, serif, sans-serif);
  font-size: clamp(3rem, 4.5vw, 4.2rem);
  color: var(--color-black);
  letter-spacing: -0.5px;
  line-height: 1.18;
}

.custom-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-yellow),
    transparent
  );
  border-radius: 2px;
}

.custom-lead {
  font-size: 1.3rem;
  line-height: 1.9;
  color: var(--color-charcoal);
}

/* Content Cards Style */
.custom-card {
  background: var(--color-white);
  border: 1px solid rgba(28, 43, 61, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(11, 19, 31, 0.04);
}

.custom-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-yellow);
  box-shadow: 0 12px 30px rgba(11, 19, 31, 0.08);
}

/* Larger Card Titles */
.custom-card h3,
.custom-card .h5,
.custom-card .h6 {
  font-size: 1.65rem !important;
  line-height: 1.35;
  margin-bottom: 14px !important;
}

/* Icons Styling */
.custom-icon-wrapper {
  width: 60px;
  height: 60px;
  background: var(--color-yellow-soft);
  border: 1px solid var(--border-yellow);
  color: var(--color-yellow-dark);
}

.custom-icon {
  font-size: 1.5rem;
}

.custom-card-text {
  font-size: 1.12rem;
  line-height: 1.9;
  color: var(--color-charcoal);
}

/* Image Card & Zoom Effects */
.custom-image-card {
  min-height: 340px;
  border: 1px solid rgba(28, 43, 61, 0.1);
}

.custom-zoom-img {
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.custom-image-card:hover .custom-zoom-img {
  transform: scale(1.05);
}

.custom-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    var(--color-black) 100%
  );
  opacity: 0.8;
}

.custom-image-badge {
  background: rgba(18, 30, 45, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
}

.custom-image-badge span,
.custom-image-badge strong {
  font-size: 1.25rem;
}

.custom-image-badge small {
  color: var(--color-gray);
  font-size: 0.98rem;
}

/* Keyframe Animations */
@keyframes customFadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

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

.custom-fade-in {
  animation: customFadeUp 0.8s
    cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.custom-delay-1 {
  animation-delay: 0.15s;
}

.custom-delay-2 {
  animation-delay: 0.3s;
}

.custom-delay-3 {
  animation-delay: 0.45s;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .custom-image-card {
    min-height: 280px;
  }

  .custom-heading {
    font-size: 2.6rem;
  }

  .custom-lead {
    font-size: 1.15rem;
  }

  .custom-card h3,
  .custom-card .h5,
  .custom-card .h6 {
    font-size: 1.45rem !important;
  }

  .custom-card-text {
    font-size: 1.03rem;
  }

  .custom-icon-wrapper {
    width: 56px;
    height: 56px;
  }

  .custom-icon {
    font-size: 1.4rem;
  }
}

@media (max-width: 767.98px) {
  .custom-heading {
    font-size: 2.2rem;
  }

  .custom-lead {
    font-size: 1.05rem;
    line-height: 1.8;
  }

  .custom-card h3,
  .custom-card .h5,
  .custom-card .h6 {
    font-size: 1.3rem !important;
  }

  .custom-card-text {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .custom-badge {
    font-size: 0.88rem;
  }

  .custom-image-badge span,
  .custom-image-badge strong {
    font-size: 1.08rem;
  }

  .custom-image-badge small {
    font-size: 0.9rem;
  }
}

/* 00000000000000000000000000000000000000000000000000000000000000000 */

/* Color Palette Variables */
:root {
  --color-black: #0b131f;
  --color-black-soft: #121e2d;
  --color-charcoal: #1c2b3d;

  --color-white: #ffffff;
  --color-gray-light: #e0e2e5;
  --color-gray: #9aa3af;

  --color-yellow: #f1cf6d;
  --color-yellow-dark: #d8b450;
  --color-yellow-soft: rgba(241, 207, 109, 0.12);

  --border-light: rgba(255, 255, 255, 0.08);
  --border-yellow: rgba(241, 207, 109, 0.25);
}

/* Section Background with Garage Door Image Overlay */
.why-choose-section {
    position: relative;
    background: linear-gradient(rgba(11, 19, 31, 0.88), rgba(11, 19, 31, 0.88)), 
                url('../img/choose-us-bg.webp') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Even Bigger Header Texts */
.section-main-title {
    color: var(--color-white);
    font-size: 3.25rem;
    letter-spacing: 0.5px;
}

.section-main-desc {
    color: var(--color-gray-light) !important;
    font-size: 1.3rem;
    line-height: 1.7;
    max-width: 850px;
}

/* Call Animated Button Styling */
.call-animated-btn {
    background-color: var(--color-yellow);
    color: var(--color-black);
    font-weight: 700;
    font-size: 1.15rem;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 0 0 rgba(241, 207, 109, 0.4);
    animation: pulse-animation 2s infinite;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.call-animated-btn:hover {
    background-color: var(--color-white);
    color: var(--color-black);
    transform: translateY(-3px);
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(241, 207, 109, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(241, 207, 109, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(241, 207, 109, 0);
    }
}

/* Main Wrapper Card */
.why-choose-card {
    background: var(--color-black-soft);
    border-radius: 25px;
    border: 1px solid var(--border-light);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Hexagon Icon Styling */
.hexagon-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
}

.hexagon {
    width: 68px;
    height: 39.26px;
    background-color: var(--color-charcoal);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-yellow);
    font-size: 24px;
    border-left: 2px solid var(--border-yellow);
    border-right: 2px solid var(--border-yellow);
    transition: all 0.3s ease;
}

.hexagon::before,
.hexagon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 0;
    border-left: 34px solid transparent;
    border-right: 34px solid transparent;
}

.hexagon::before {
    bottom: 100%;
    border-bottom: 19.63px solid var(--color-charcoal);
}

.hexagon::after {
    top: 100%;
    border-top: 19.63px solid var(--color-charcoal);
}

/* Hover effects */
.item-box:hover .hexagon {
    background-color: var(--color-yellow);
    color: var(--color-black);
}
.item-box:hover .hexagon::before {
    border-bottom-color: var(--color-yellow);
}
.item-box:hover .hexagon::after {
    border-top-color: var(--color-yellow);
}
.item-box:hover .connector-line {
    background-color: var(--color-yellow);
}
.item-box:hover .feature-badge {
    background-color: var(--color-yellow);
    color: var(--color-black);
}

/* Vertical Connector Line */
.connector-line {
    width: 2px;
    height: 26px;
    background-color: var(--border-yellow);
    margin: 0 auto;
    transition: background 0.3s ease;
}

/* Feature Badge Styling - Bigger Text */
.feature-badge {
    background-color: var(--color-charcoal);
    color: var(--color-white);
    padding: 9px 16px;
    font-weight: 700;
    font-size: 1.12rem;
    text-align: center;
    border-radius: 6px;
    margin-bottom: 14px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

/* Content Text Styling - Bigger Text */
.feature-content p {
    font-size: 1.02rem;
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 0;
}
/* 0000000000000000000000000000000000000000000000000000000000000000000000 */


/* Color Palette Variables */
:root {
  --color-black: #0b131f;
  --color-black-soft: #121e2d;
  --color-charcoal: #1c2b3d;

  --color-white: #ffffff;
  --color-gray-light: #e0e2e5;
  --color-gray: #9aa3af;

  --color-yellow: #f1cf6d;
  --color-yellow-dark: #d8b450;
  --color-yellow-soft: rgba(241, 207, 109, 0.12);

  --border-light: rgba(255, 255, 255, 0.08);
  --border-yellow: rgba(241, 207, 109, 0.25);
}

/* Base Section Styling */
.installation-section {
  background-color: var(--color-gray-light);
  color: var(--color-charcoal);
  font-family: var(--font-body, system-ui, -apple-system, sans-serif);
}

.installation-glow {
  width: 600px;
  height: 350px;
  background: radial-gradient(
    circle,
    var(--color-yellow-soft) 0%,
    transparent 70%
  );
  filter: blur(60px);
  pointer-events: none;
}

/* Header & Typography */
.install-badge {
  font-size: 1.05rem;
  letter-spacing: 2px;
  color: var(--color-yellow-dark);
  background: var(--color-yellow-soft);
  border: 1px solid var(--border-yellow);
  border-radius: 50px;
}

.install-heading {
  font-family: var(--font-heading, serif, sans-serif);
  font-size: clamp(3.4rem, 5vw, 4.8rem);
  color: var(--color-black);
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.install-divider {
  width: 70px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-yellow-dark),
    transparent
  );
  border-radius: 2px;
}

.install-lead {
  font-size: 1.35rem;
  line-height: 1.9;
  color: var(--color-charcoal);
}

/* =========================================================
   Animated CTA Buttons
========================================================= */

.btn-cta-call {
  background-color: var(--color-black);
  color: var(--color-yellow);
  border: 2px solid var(--color-yellow);
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  animation: callGlowPulse 2.5s infinite;
}

.cta-phone-icon {
  width: 40px;
  height: 40px;
  background-color: var(--color-yellow);
  color: var(--color-black);
}

.cta-phone-icon svg {
  width: 20px;
  height: 20px;
  animation: phoneRing 1.8s infinite ease-in-out;
}

.btn-cta-call:hover {
  background-color: var(--color-yellow);
  color: var(--color-black);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(241, 207, 109, 0.4) !important;
}

.btn-cta-call:hover .cta-phone-icon {
  background-color: var(--color-black);
  color: var(--color-yellow);
}

.btn-cta-estimate {
  background: linear-gradient(
    135deg,
    var(--color-yellow) 0%,
    var(--color-yellow-dark) 100%
  );
  color: var(--color-black);
  border: 2px solid var(--color-yellow-dark);
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cta-sparkle-icon svg {
  width: 25px;
  height: 25px;
  animation: sparkleRotate 4s infinite linear;
}

.btn-cta-estimate:hover {
  background: var(--color-black);
  color: var(--color-yellow);
  border-color: var(--color-black);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(11, 19, 31, 0.25) !important;
}

/* Button Animations */
@keyframes callGlowPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(241, 207, 109, 0.4);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(241, 207, 109, 0);
  }
}

@keyframes phoneRing {
  0%,
  100% {
    transform: rotate(0deg);
  }

  10%,
  30% {
    transform: rotate(-15deg) scale(1.1);
  }

  20%,
  40% {
    transform: rotate(15deg) scale(1.1);
  }

  50% {
    transform: rotate(0deg);
  }
}

@keyframes sparkleRotate {
  0% {
    transform: rotate(0deg);
  }

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

/* Content Card Styling */
.install-card {
  background: var(--color-white);
  border: 1px solid rgba(28, 43, 61, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(11, 19, 31, 0.04);
}

.install-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-yellow);
  box-shadow: 0 12px 30px rgba(11, 19, 31, 0.08);
}

.install-card h3,
.install-card .h5,
.install-card .h6 {
  font-size: 1.7rem !important;
  line-height: 1.3;
  margin-bottom: 14px !important;
}

.install-card-text {
  font-size: 1.12rem;
  line-height: 1.9;
  color: var(--color-charcoal);
}

/* Animated Card Icons */
.install-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 12px;
  background: var(--color-yellow-soft);
  border: 1px solid var(--border-yellow);
  transition: all 0.4s ease;
}

.install-svg-icon {
  width: 31px;
  height: 31px;
  stroke: var(--color-yellow-dark);
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    stroke 0.3s ease;
  animation: installFloatPulse 3s infinite ease-in-out;
}

.install-card:hover .install-icon-box {
  background: var(--color-yellow);
  border-color: var(--color-yellow-dark);
  box-shadow: 0 0 15px rgba(241, 207, 109, 0.4);
}

.install-card:hover .install-svg-icon {
  stroke: var(--color-black);
  transform: scale(1.15) rotate(5deg);
  animation: none;
}

@keyframes installFloatPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-3px) scale(1.05);
  }
}

/* Image Card Styling */
.install-image-card {
  min-height: 380px;
  border: 1px solid rgba(28, 43, 61, 0.1);
}

.install-zoom-img {
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.install-image-card:hover .install-zoom-img {
  transform: scale(1.06);
}

.install-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    var(--color-black) 100%
  );
  opacity: 0.8;
}

.install-image-badge {
  background: rgba(18, 30, 45, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
}

.install-image-badge span,
.install-image-badge strong {
  font-size: 1.25rem;
}

.install-badge-sub {
  color: var(--color-gray);
  font-size: 1rem;
}

/* Entrance Animations */
@keyframes installFadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

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

.install-fade-in {
  animation: installFadeUp 0.7s
    cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.install-delay-1 {
  animation-delay: 0.1s;
}

.install-delay-2 {
  animation-delay: 0.25s;
}

.install-delay-3 {
  animation-delay: 0.4s;
}

/* Tablet */
@media (max-width: 991.98px) {
  .install-heading {
    font-size: 2.8rem;
  }

  .install-lead {
    font-size: 1.18rem;
  }

  .install-image-card {
    min-height: 280px;
  }

  .install-card h3,
  .install-card .h5,
  .install-card .h6 {
    font-size: 1.45rem !important;
  }

  .install-card-text {
    font-size: 1.03rem;
  }

  .btn-cta-call,
  .btn-cta-estimate {
    font-size: 1.08rem;
  }

  .install-icon-box {
    width: 56px;
    height: 56px;
  }

  .install-svg-icon {
    width: 28px;
    height: 28px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .install-badge {
    font-size: 0.9rem;
  }

  .install-heading {
    font-size: 2.3rem;
  }

  .install-lead {
    font-size: 1.05rem;
    line-height: 1.8;
  }

  .install-card h3,
  .install-card .h5,
  .install-card .h6 {
    font-size: 1.3rem !important;
  }

  .install-card-text {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .install-image-badge span,
  .install-image-badge strong {
    font-size: 1.08rem;
  }

  .install-badge-sub {
    font-size: 0.9rem;
  }
}
/* 000000000000000000000000000000000000000000000000000000000000000000000000000 */

/* Color Palette Variables */
:root {
  --color-black: #0b131f;
  --color-black-soft: #121e2d;
  --color-charcoal: #1c2b3d;

  --color-white: #ffffff;
  --color-gray-light: #e0e2e5;
  --color-gray: #9aa3af;

  --color-yellow: #f1cf6d;
  --color-yellow-dark: #d8b450;
  --color-yellow-soft: rgba(241, 207, 109, 0.12);

  --border-light: rgba(255, 255, 255, 0.08);
  --border-yellow: rgba(241, 207, 109, 0.25);
}

/* Base Dark Section Styling */
.testimonials-dark-section {
  background-color: var(--color-black);
  color: var(--color-gray-light);
  font-family: var(--font-body, system-ui, -apple-system, sans-serif);
}

.testimonials-dark-glow {
  width: 700px;
  height: 400px;
  background: radial-gradient(
    circle,
    var(--color-yellow-soft) 0%,
    transparent 70%
  );
  filter: blur(80px);
  pointer-events: none;
}

/* Header & Typography */
.testimonial-dark-badge {
  font-size: 1.05rem;
  letter-spacing: 2px;
  color: var(--color-yellow);
  background: var(--color-yellow-soft);
  border: 1px solid var(--border-yellow);
  border-radius: 50px;
}

.testimonial-dark-heading {
  font-family: var(--font-heading, serif, sans-serif);
  font-size: clamp(3.4rem, 5vw, 4.8rem);
  color: var(--color-white);
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.testimonial-dark-divider {
  width: 70px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-yellow),
    transparent
  );
  border-radius: 2px;
}

.testimonial-dark-lead {
  font-size: 1.35rem;
  line-height: 1.9;
  color: var(--color-gray);
}

/* Dark Card Styling */
.testimonial-dark-card {
  background: var(--color-black-soft);
  border: 1px solid var(--border-light);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-dark-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-yellow);
  box-shadow: 0 15px 35px rgba(241, 207, 109, 0.12);
}

/* Larger testimonial text */
.testimonial-dark-card-text {
  font-size: 1.12rem;
  line-height: 1.85;
  color: var(--color-gray-light);
  font-style: italic;
}

/* Larger customer name */
.testimonial-dark-card h3,
.testimonial-dark-card .h5,
.testimonial-dark-card .h6 {
  font-size: 1.45rem !important;
  line-height: 1.3;
}

/* Star Rating Animation & Styling */
.star-rating .star-svg {
  width: 22px;
  height: 22px;
  color: var(--color-yellow);
  animation: starPulse 2.5s infinite ease-in-out;
}

/* Stagger star pulse animations */
.star-rating .star-svg:nth-child(1) {
  animation-delay: 0.1s;
}

.star-rating .star-svg:nth-child(2) {
  animation-delay: 0.2s;
}

.star-rating .star-svg:nth-child(3) {
  animation-delay: 0.3s;
}

.star-rating .star-svg:nth-child(4) {
  animation-delay: 0.4s;
}

.star-rating .star-svg:nth-child(5) {
  animation-delay: 0.5s;
}

/* Client Avatar Styling */
.client-dark-avatar {
  width: 54px;
  height: 54px;
  background-color: var(--color-charcoal);
  color: var(--color-yellow);
  font-size: 1.1rem;
  border: 1px solid var(--border-yellow);
}

.testimonial-dark-badge-sub {
  color: var(--color-gray);
  font-size: 0.95rem;
}

/* Animated SVG Icon Box */
.testimonial-dark-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--color-yellow-soft);
  border: 1px solid var(--border-yellow);
  transition: all 0.4s ease;
}

.testimonial-dark-svg-icon {
  width: 27px;
  height: 27px;
  stroke: var(--color-yellow);
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    stroke 0.3s ease;
  animation: floatPulse 3s infinite ease-in-out;
}

/* Hover Reactions */
.testimonial-dark-card:hover .testimonial-dark-icon-box {
  background: var(--color-yellow);
  border-color: var(--color-yellow-dark);
  box-shadow: 0 0 15px rgba(241, 207, 109, 0.4);
}

.testimonial-dark-card:hover .testimonial-dark-svg-icon {
  stroke: var(--color-black);
  transform: scale(1.15) rotate(5deg);
  animation: none;
}

/* Animations Keyframes */
@keyframes floatPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-3px) scale(1.05);
  }
}

@keyframes starPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.75;
    transform: scale(0.92);
  }
}

@keyframes testimonialFadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

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

.testimonial-fade-in {
  animation: testimonialFadeUp 0.7s
    cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.testimonial-delay-1 {
  animation-delay: 0.1s;
}

.testimonial-delay-2 {
  animation-delay: 0.25s;
}

.testimonial-delay-3 {
  animation-delay: 0.4s;
}

/* Tablet */
@media (max-width: 991.98px) {
  .testimonial-dark-heading {
    font-size: 2.8rem;
  }

  .testimonial-dark-lead {
    font-size: 1.18rem;
  }

  .testimonial-dark-card h3,
  .testimonial-dark-card .h5,
  .testimonial-dark-card .h6 {
    font-size: 1.3rem !important;
  }

  .testimonial-dark-card-text {
    font-size: 1.03rem;
  }

  .testimonial-dark-badge-sub {
    font-size: 0.9rem;
  }

  .star-rating .star-svg {
    width: 20px;
    height: 20px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .testimonial-dark-badge {
    font-size: 0.9rem;
  }

  .testimonial-dark-heading {
    font-size: 2.3rem;
  }

  .testimonial-dark-lead {
    font-size: 1.05rem;
    line-height: 1.8;
  }

  .testimonial-dark-card h3,
  .testimonial-dark-card .h5,
  .testimonial-dark-card .h6 {
    font-size: 1.2rem !important;
  }

  .testimonial-dark-card-text {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .client-dark-avatar {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .testimonial-dark-icon-box {
    width: 48px;
    height: 48px;
  }

  .testimonial-dark-svg-icon {
    width: 24px;
    height: 24px;
  }
}
/* 0000000000000000000000000000000000000000000000000000000000000000000000000000000 */
/* Color Palette Variables */
:root {
  --color-black: #0b131f;
  --color-black-soft: #121e2d;
  --color-charcoal: #1c2b3d;

  --color-white: #ffffff;
  --color-gray-light: #e0e2e5;
  --color-gray: #9aa3af;

  --color-yellow: #f1cf6d;
  --color-yellow-dark: #d8b450;
  --color-yellow-soft: rgba(241, 207, 109, 0.12);

  --border-light: rgba(255, 255, 255, 0.08);
  --border-yellow: rgba(241, 207, 109, 0.25);
}

/* Base Light Section Styling */
.maint-section {
  background-color: var(--color-gray-light);
  color: var(--color-charcoal);
  font-family: var(--font-body, system-ui, -apple-system, sans-serif);
}

.maint-glow {
  width: 600px;
  height: 350px;
  background: radial-gradient(
    circle,
    var(--color-yellow-soft) 0%,
    transparent 70%
  );
  filter: blur(60px);
  pointer-events: none;
}

/* Header & Typography */
.maint-badge {
  font-size: 1.05rem;
  letter-spacing: 2px;
  color: var(--color-yellow-dark);
  background: var(--color-yellow-soft);
  border: 1px solid var(--border-yellow);
  border-radius: 50px;
}

.maint-heading {
  font-family: var(--font-heading, serif, sans-serif);
  font-size: clamp(3.4rem, 5vw, 4.8rem);
  color: var(--color-black);
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.maint-divider {
  width: 70px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-yellow-dark),
    transparent
  );
  border-radius: 2px;
}

.maint-lead {
  font-size: 1.35rem;
  line-height: 1.9;
  color: var(--color-charcoal);
}

/* Maintenance Image Wrapper */
.maint-image-wrapper {
  border: 1px solid rgba(28, 43, 61, 0.12);
  transition: border-color 0.4s ease;
}

.maint-img {
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.maint-image-wrapper:hover .maint-img {
  transform: scale(1.04);
}

.maint-image-wrapper:hover {
  border-color: var(--border-yellow);
}

.maint-img-overlay {
  background: linear-gradient(
    to top,
    rgba(11, 19, 31, 0.6) 0%,
    transparent 50%
  );
}

.maint-img-badge {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(241, 207, 109, 0.4);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.maint-img-badge span,
.maint-img-badge strong {
  font-size: 1.25rem;
}

.maint-img-badge small {
  font-size: 0.98rem;
}

/* Maintenance Cards Styling */
.maint-card {
  background: var(--color-white);
  border: 1px solid rgba(28, 43, 61, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(11, 19, 31, 0.04);
}

.maint-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-yellow);
  box-shadow: 0 12px 30px rgba(11, 19, 31, 0.08);
}

.maint-card h3,
.maint-card .h5,
.maint-card .h6 {
  font-size: 1.7rem !important;
  line-height: 1.3;
  margin-bottom: 14px !important;
}

.maint-card-text {
  font-size: 1.12rem;
  line-height: 1.9;
  color: var(--color-charcoal);
}

.maint-card-sub {
  font-size: 1rem;
}

/* Component Checklist Tags */
.component-tag {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-charcoal);
  background: rgba(11, 19, 31, 0.05);
  border: 1px solid rgba(28, 43, 61, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.maint-card:hover .component-tag {
  background: var(--color-yellow-soft);
  border-color: var(--border-yellow);
  color: var(--color-black);
}

/* Benefits Checkmarks */
.maint-benefits-list {
  font-size: 1.08rem;
  color: var(--color-charcoal);
}

.benefit-check-icon {
  color: var(--color-yellow-dark);
  font-size: 1.15rem;
  font-weight: bold;
}

/* Animated SVG Icon Box */
.maint-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 12px;
  background: var(--color-yellow-soft);
  border: 1px solid var(--border-yellow);
  transition: all 0.4s ease;
}

.maint-svg-icon {
  width: 31px;
  height: 31px;
  stroke: var(--color-yellow-dark);
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    stroke 0.3s ease;
  animation: maintFloatPulse 3s infinite ease-in-out;
}

/* Hover Reaction */
.maint-card:hover .maint-icon-box {
  background: var(--color-yellow);
  border-color: var(--color-yellow-dark);
  box-shadow: 0 0 15px rgba(241, 207, 109, 0.4);
}

.maint-card:hover .maint-svg-icon {
  stroke: var(--color-black);
  transform: scale(1.15) rotate(5deg);
  animation: none;
}

/* Entrance & Keyframe Animations */
@keyframes maintFloatPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-3px) scale(1.05);
  }
}

@keyframes maintFadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

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

.maint-fade-in {
  animation: maintFadeUp 0.7s
    cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.maint-delay-1 {
  animation-delay: 0.1s;
}

.maint-delay-2 {
  animation-delay: 0.25s;
}

.maint-delay-3 {
  animation-delay: 0.4s;
}

/* Tablet */
@media (max-width: 991.98px) {
  .maint-heading {
    font-size: 2.8rem;
  }

  .maint-lead {
    font-size: 1.18rem;
  }

  .maint-image-wrapper {
    min-height: 350px;
  }

  .maint-card h3,
  .maint-card .h5,
  .maint-card .h6 {
    font-size: 1.45rem !important;
  }

  .maint-card-text {
    font-size: 1.03rem;
  }

  .maint-card-sub {
    font-size: 0.94rem;
  }

  .component-tag {
    font-size: 0.88rem;
  }

  .maint-benefits-list {
    font-size: 1rem;
  }

  .maint-icon-box {
    width: 56px;
    height: 56px;
  }

  .maint-svg-icon {
    width: 28px;
    height: 28px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .maint-badge {
    font-size: 0.9rem;
  }

  .maint-heading {
    font-size: 2.3rem;
  }

  .maint-lead {
    font-size: 1.05rem;
    line-height: 1.8;
  }

  .maint-card h3,
  .maint-card .h5,
  .maint-card .h6 {
    font-size: 1.3rem !important;
  }

  .maint-card-text {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .maint-card-sub {
    font-size: 0.9rem;
  }

  .component-tag {
    font-size: 0.84rem;
  }

  .maint-benefits-list {
    font-size: 0.96rem;
  }

  .maint-img-badge span,
  .maint-img-badge strong {
    font-size: 1.08rem;
  }

  .maint-img-badge small {
    font-size: 0.9rem;
  }
}


/* 00000000000000000000000000000000000000000000000000000000000000000000000000000000 */
:root {
  --color-black-deep: #070c14;
  --color-black-card: #0f1926;

  --gold-metallic-primary: #f1cf6d;
  --gold-metallic-dark: #cba23e;
  --gold-metallic-bright: #ffe699;

  --gold-gradient-primary: linear-gradient(
    135deg,
    #f1cf6d 0%,
    #cba23e 50%,
    #f7df94 100%
  );

  --gold-gradient-subtle: linear-gradient(
    90deg,
    transparent 0%,
    #f1cf6d 50%,
    transparent 100%
  );

  --gold-glass-bg: rgba(241, 207, 109, 0.08);

  --border-gold-soft: rgba(241, 207, 109, 0.22);
  --border-gold-bright: rgba(241, 207, 109, 0.7);
}

/* Base Section Styling */
.faq-luxury-section {
  background-color: var(--color-black-deep);
  color: #e0e2e5;
  font-family: var(
    --font-body,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif
  );
}

/* Background Ambient Glow & Horizontal Gold Border Lines */
.faq-luxury-glow {
  width: 800px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(241, 207, 109, 0.12) 0%,
    transparent 70%
  );
  filter: blur(90px);
  pointer-events: none;
}

.faq-gold-line-top,
.faq-gold-line-bottom {
  height: 2px;
  background: var(--gold-gradient-subtle);
  opacity: 0.7;
}

/* Header Badge & Gold Accents */
.faq-luxury-badge {
  background: var(--gold-glass-bg);
  border: 1px solid var(--border-gold-bright);
  color: var(--gold-metallic-primary);
  font-size: 1.2rem;
  letter-spacing: 2px;
  box-shadow: 0 0 15px rgba(241, 207, 109, 0.15);
}

.gold-diamond {
  font-size: 1rem;
  color: var(--gold-metallic-primary);
  animation: diamondGlow 2.5s infinite alternate;
}

.faq-luxury-heading {
  font-family: var(--font-heading, serif, sans-serif);
  font-size: clamp(4.3rem, 5.5vw, 5.5rem);
  color: #ffffff;
  letter-spacing: -0.5px;
  line-height: 1.12;
}

.faq-gold-divider {
  width: 160px;
  height: 2px;
  background: var(--gold-gradient-subtle);
}

.divider-center-gem {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--gold-metallic-primary);
  box-shadow: 0 0 10px var(--gold-metallic-primary);
  transform: translate(-50%, -50%) rotate(45deg);
}

.faq-luxury-lead {
  font-size: 1.65rem;
  line-height: 1.9;
  color: #b8c2d0;
}

/* Running-Bond Brick Grid Layout */
.faq-brick-wall-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.75rem;
}

/* Alternating Row Spans */
.brick-item-1 {
  grid-column: span 7;
}

.brick-item-2 {
  grid-column: span 5;
}

.brick-item-3 {
  grid-column: span 5;
}

.brick-item-4 {
  grid-column: span 7;
}

.brick-item-5 {
  grid-column: span 7;
}

.brick-item-6 {
  grid-column: span 5;
}

/* Brick Card Container Styling */
.faq-luxury-card {
  position: relative;
  background-color: var(--color-black-card);
  border: 1px solid var(--border-gold-soft) !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

/* Corner Gold Decorator Accent */
.card-gold-corner-tr {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 30px 30px 0;
  border-color:
    transparent
    var(--gold-metallic-primary)
    transparent
    transparent;
  opacity: 0.4;
  transition:
    opacity 0.4s ease,
    border-color 0.4s ease;
}

.faq-luxury-card:hover .card-gold-corner-tr,
.faq-luxury-card:has(.accordion-button:not(.collapsed))
  .card-gold-corner-tr {
  opacity: 1;
}

.faq-luxury-card:hover {
  border-color: var(--border-gold-bright) !important;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(241, 207, 109, 0.12);
}

/* Accordion Trigger Button */
.faq-luxury-button {
  background-color: transparent !important;
  color: #ffffff !important;
  box-shadow: none !important;
  transition: all 0.3s ease;
}

.faq-question-text {
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: -0.2px;
  text-align: left;
}

.faq-luxury-button:not(.collapsed) {
  color: var(--gold-metallic-bright) !important;
}

.faq-luxury-button::after {
  filter:
    invert(85%)
    sepia(30%)
    saturate(1000%)
    hue-rotate(338deg)
    brightness(105%)
    contrast(95%);
  transition: transform 0.4s ease;
  transform: scale(1.28);
}

/* Accordion Body Sizing & Border */
.faq-luxury-body {
  color: #d1d5db;
  font-size: 1.32rem;
  line-height: 1.9;
}

.body-inner-border {
  border-color: rgba(241, 207, 109, 0.15) !important;
}

/* Animated SVG Icon Box */
.faq-luxury-icon-box {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gold-bright);
  border-radius: 14px;
  background: var(--gold-glass-bg);
  box-shadow: 0 0 12px rgba(241, 207, 109, 0.1);
  transition: all 0.4s ease;
}

.faq-svg-icon {
  width: 28px;
  height: 28px;
  stroke: var(--gold-metallic-primary);
  transition:
    transform 0.4s ease,
    stroke 0.3s ease;
  animation: luxuryFloat 3.5s infinite ease-in-out;
}

/* Hover Reactions */
.faq-luxury-button:hover .faq-luxury-icon-box,
.faq-luxury-button:not(.collapsed) .faq-luxury-icon-box {
  background: var(--gold-gradient-primary);
  border-color: var(--gold-metallic-bright);
  box-shadow: 0 0 18px rgba(241, 207, 109, 0.4);
}

.faq-luxury-button:hover .faq-svg-icon,
.faq-luxury-button:not(.collapsed) .faq-svg-icon {
  stroke: var(--color-black-deep);
  transform: scale(1.15) rotate(4deg);
  animation: none;
}

/* Continuous Animations */
@keyframes luxuryFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes diamondGlow {
  0% {
    opacity: 0.4;
    filter: drop-shadow(
      0 0 0 var(--gold-metallic-primary)
    );
  }

  100% {
    opacity: 1;
    filter: drop-shadow(
      0 0 6px var(--gold-metallic-primary)
    );
  }
}

@keyframes luxuryFadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

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

.faq-fade-in {
  animation: luxuryFadeUp 0.7s
    cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.faq-delay-1 {
  animation-delay: 0.1s;
}

.faq-delay-2 {
  animation-delay: 0.2s;
}

.faq-delay-3 {
  animation-delay: 0.3s;
}

.faq-delay-4 {
  animation-delay: 0.4s;
}

.faq-delay-5 {
  animation-delay: 0.5s;
}

.faq-delay-6 {
  animation-delay: 0.6s;
}

/* Tablet */
@media (max-width: 991.98px) {
  .faq-brick-wall-grid {
    grid-template-columns: 1fr;
  }

  .brick-item-1,
  .brick-item-2,
  .brick-item-3,
  .brick-item-4,
  .brick-item-5,
  .brick-item-6 {
    grid-column: span 12;
  }

  .faq-luxury-heading {
    font-size: 3.4rem;
  }

  .faq-luxury-lead {
    font-size: 1.35rem;
  }

  .faq-question-text {
    font-size: 1.35rem;
  }

  .faq-luxury-body {
    font-size: 1.18rem;
  }

  .faq-luxury-badge {
    font-size: 1.05rem;
  }

  .faq-luxury-icon-box {
    width: 54px;
    height: 54px;
  }

  .faq-svg-icon {
    width: 26px;
    height: 26px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .faq-luxury-heading {
    font-size: 2.7rem;
  }

  .faq-luxury-lead {
    font-size: 1.15rem;
    line-height: 1.8;
  }

  .faq-question-text {
    font-size: 1.2rem;
    line-height: 1.45;
  }

  .faq-luxury-body {
    font-size: 1.05rem;
    line-height: 1.8;
  }

  .faq-luxury-badge {
    font-size: 0.95rem;
  }

  .faq-luxury-icon-box {
    width: 50px;
    height: 50px;
  }

  .faq-svg-icon {
    width: 24px;
    height: 24px;
  }

  .gold-diamond {
    font-size: 0.9rem;
  }
}
/* 000000000000000000000000000000000000000000000000000000000000000000 */
        
/* Custom Light Luxury Color Palette */
:root {
  --bg-light-main: #f8f9fa;
  --bg-light-card: #ffffff;
  --bg-light-input: #f1f3f5;

  --text-dark-navy: #0f1926;
  --text-body-muted: #495057;

  --gold-accent: #b8860b;
  --gold-accent-hover: #966d08;
  --gold-bg-glass: rgba(184, 134, 11, 0.08);

  --gold-gradient-light: linear-gradient(
    135deg,
    #d4af37 0%,
    #b8860b 100%
  );

  --gold-gradient-subtle: linear-gradient(
    90deg,
    transparent 0%,
    #d4af37 50%,
    transparent 100%
  );

  --border-gold-soft: rgba(184, 134, 11, 0.25);
  --border-light-subtle: #e9ecef;
}

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

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

.border-gold-soft {
  border-color: var(--border-gold-soft) !important;
}

/* =========================================================
   Section Base
========================================================= */

.contact-section-light {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-light-main);
  color: var(--text-body-muted);
  font-family: var(
    --font-body,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif
  );
}

.contact-gold-line-top {
  height: 3px;
  background: var(--gold-gradient-subtle);
}

/* Main row stretches both columns equally */
.contact-section-light .row {
  align-items: stretch !important;
}

/* =========================================================
   Balanced Columns
========================================================= */

.contact-info-column,
.contact-form-column {
  display: flex;
  flex-direction: column;
}

.contact-info-column {
  justify-content: flex-start;
}

.contact-form-column {
  align-items: stretch;
  justify-content: center;
}

.contact-content-column {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
}

/* =========================================================
   Header and Typography
========================================================= */

.contact-badge-light {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: var(--gold-bg-glass);
  border: 1px solid var(--border-gold-soft);
  border-radius: 50px;
  color: var(--gold-accent);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.contact-heading-light {
  max-width: 650px;
  margin-bottom: 18px;
  color: var(--text-dark-navy);
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(3rem, 4.5vw, 4.3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.contact-divider-light {
  width: 70px;
  height: 3px;
  margin-bottom: 22px;
  border-radius: 2px;
  background: var(--gold-gradient-light);
}

.contact-lead-light {
  max-width: 650px;
  margin-bottom: 14px;
  color: var(--text-dark-navy);
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.8;
}

.contact-sub-light {
  max-width: 650px;
  margin-bottom: 26px;
  color: var(--text-body-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* =========================================================
   Contact Information Cards
========================================================= */

.contact-info-list,
.contact-info-cards {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 14px;
}

.contact-info-card-light {
  display: flex;
  width: 100%;
  min-height: 74px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--border-light-subtle);
  border-radius: 8px;
  background: var(--bg-light-card);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.contact-info-card-light:hover {
  border-color: var(--gold-accent);
  box-shadow: 0 5px 16px rgba(184, 134, 11, 0.12);
  transform: translateY(-2px);
}

.contact-info-card-light h3,
.contact-info-card-light .h5,
.contact-info-card-light .h6 {
  margin-bottom: 4px !important;
  color: var(--text-dark-navy);
  font-size: 1.18rem !important;
  line-height: 1.3;
}

.contact-info-card-light p,
.contact-info-card-light a,
.contact-info-card-light span {
  color: var(--text-body-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.contact-info-card-light a {
  text-decoration: none;
}

.contact-info-card-light a:hover {
  color: var(--gold-accent);
}

.contact-icon-box-light {
  display: inline-flex;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gold-soft);
  border-radius: 10px;
  color: var(--gold-accent);
  background: var(--gold-bg-glass);
  font-size: 1.45rem;
}

/* =========================================================
   Form Wrapper
========================================================= */

.contact-form-wrapper-light {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 690px;
  min-height: 640px;
  margin-left: auto;
  flex-direction: column;
  justify-content: center;
  padding: 38px !important;
  border: 1px solid var(--border-gold-soft);
  border-radius: 14px;
  background: var(--bg-light-card);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06) !important;
}

.contact-form-wrapper-light h2,
.contact-form-wrapper-light h3,
.contact-form-wrapper-light .h4,
.contact-form-wrapper-light .h5 {
  margin-bottom: 10px;
  color: var(--text-dark-navy);
  font-family: var(--font-heading, Georgia, serif);
  font-size: 1.8rem !important;
  line-height: 1.3;
}

.contact-form-wrapper-light > p,
.contact-form-wrapper-light .form-intro {
  margin-bottom: 24px;
  color: var(--text-body-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.form-gold-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 30px 30px 0;
  border-color:
    transparent
    var(--gold-accent)
    transparent
    transparent;
}

/* =========================================================
   Form Grid
========================================================= */

.booking-form .row {
  align-items: stretch !important;
}

.booking-field {
  position: relative;
  margin-bottom: 0.4rem;
}

.booking-field__control {
  width: 100%;
  min-height: 60px;
  padding: 1.35rem 2.7rem 0.55rem 1rem !important;
  border: 1px solid var(--border-light-subtle) !important;
  border-radius: 8px !important;
  color: var(--text-dark-navy) !important;
  background-color: var(--bg-light-input) !important;
  font-size: 1rem !important;
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease !important;
}

.booking-field__control::placeholder {
  color: transparent;
}

.booking-field__control:focus {
  outline: none;
  border-color: var(--gold-accent) !important;
  background-color: #ffffff !important;
  box-shadow: 0 0 10px rgba(184, 134, 11, 0.2) !important;
}

.booking-field label {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 1rem;
  color: #6c757d;
  font-size: 0.95rem;
  pointer-events: none;
  transform: translateY(-50%);
  transition:
    top 0.25s ease,
    color 0.25s ease,
    font-size 0.25s ease,
    transform 0.25s ease;
}

.booking-field__control:focus ~ label,
.booking-field__control:not(:placeholder-shown) ~ label,
.booking-field--select .booking-field__control ~ label {
  top: 0.58rem;
  left: 1rem;
  color: var(--gold-accent);
  font-size: 0.76rem;
  font-weight: 700;
  transform: translateY(0);
}

.booking-field__icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 1rem;
  color: var(--gold-accent);
  font-size: 1.15rem;
  opacity: 0.85;
  pointer-events: none;
  transform: translateY(-50%);
}

.booking-field--textarea .booking-field__control {
  min-height: 145px;
  padding-top: 1.7rem !important;
  resize: vertical;
}

.booking-field--textarea label {
  top: 1.3rem;
  transform: none;
}

.booking-field--textarea .booking-field__icon {
  top: 1.3rem;
  transform: none;
}

.booking-field--textarea .booking-field__control:focus ~ label,
.booking-field--textarea
  .booking-field__control:not(:placeholder-shown)
  ~ label {
  top: 0.55rem;
}

/* Select fields */
.booking-field select.booking-field__control {
  cursor: pointer;
}

/* =========================================================
   Submit Button
========================================================= */

.booking-form__submit {
  display: inline-flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background: var(--gold-gradient-light);
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.25);
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.booking-form__submit:hover {
  color: #ffffff;
  background: linear-gradient(
    135deg,
    #b8860b 0%,
    #966d08 100%
  );
  box-shadow: 0 7px 22px rgba(184, 134, 11, 0.35);
  transform: translateY(-2px);
}

.booking-form__submit-arrow {
  font-size: 1.15rem;
  transition: transform 0.3s ease;
}

.booking-form__submit:hover .booking-form__submit-arrow {
  transform: translateX(5px);
}

.booking-form-note,
.booking-form__note {
  margin-top: 14px;
  color: #6c757d;
  font-size: 0.88rem;
  line-height: 1.6;
  text-align: center;
}

/* =========================================================
   Entrance Animation
========================================================= */

@keyframes contactFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.contact-fade-in {
  animation: contactFadeUp 0.6s
    cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.contact-delay-1 {
  animation-delay: 0.15s;
}

/* =========================================================
   Desktop Balance
========================================================= */

@media (min-width: 992px) {
  .contact-section-light .contact-main-row,
  .contact-section-light .row.align-items-stretch {
    min-height: 680px;
  }

  .contact-info-column,
  .contact-form-column {
    min-height: 680px;
  }

  .contact-info-list,
  .contact-info-cards {
    margin-top: auto;
  }

  .contact-form-wrapper-light {
    min-height: 640px;
  }
}

/* =========================================================
   Tablet
========================================================= */

@media (max-width: 991.98px) {
  .contact-info-column,
  .contact-form-column {
    display: block;
    min-height: auto;
  }

  .contact-heading-light {
    font-size: 2.8rem;
  }

  .contact-lead-light {
    font-size: 1.15rem;
  }

  .contact-sub-light {
    font-size: 1rem;
  }

  .contact-form-wrapper-light {
    max-width: none;
    min-height: auto;
    margin-top: 35px;
    margin-left: 0;
    padding: 30px !important;
  }

  .contact-form-wrapper-light h2,
  .contact-form-wrapper-light h3,
  .contact-form-wrapper-light .h4,
  .contact-form-wrapper-light .h5 {
    font-size: 1.6rem !important;
  }

  .booking-field__control {
    min-height: 58px;
  }
}

/* =========================================================
   Mobile
========================================================= */

@media (max-width: 767.98px) {
  .contact-heading-light {
    font-size: 2.25rem;
    line-height: 1.15;
  }

  .contact-lead-light {
    font-size: 1.05rem;
    line-height: 1.75;
  }

  .contact-sub-light {
    font-size: 0.96rem;
  }

  .contact-badge-light {
    font-size: 0.88rem;
  }

  .contact-info-card-light {
    min-height: 68px;
    padding: 12px 14px;
  }

  .contact-icon-box-light {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    font-size: 1.25rem;
  }

  .contact-info-card-light h3,
  .contact-info-card-light .h5,
  .contact-info-card-light .h6 {
    font-size: 1.08rem !important;
  }

  .contact-info-card-light p,
  .contact-info-card-light a,
  .contact-info-card-light span {
    font-size: 0.92rem;
  }

  .contact-form-wrapper-light {
    padding: 22px !important;
  }

  .contact-form-wrapper-light h2,
  .contact-form-wrapper-light h3,
  .contact-form-wrapper-light .h4,
  .contact-form-wrapper-light .h5 {
    font-size: 1.4rem !important;
  }

  .booking-field__control {
    min-height: 56px;
    font-size: 0.96rem !important;
  }

  .booking-field label {
    font-size: 0.88rem;
  }

  .booking-field__control:focus ~ label,
  .booking-field__control:not(:placeholder-shown) ~ label,
  .booking-field--select .booking-field__control ~ label {
    font-size: 0.72rem;
  }

  .booking-field--textarea .booking-field__control {
    min-height: 125px;
  }

  .booking-form__submit {
    min-height: 54px;
    font-size: 1.05rem;
  }
}

/* =========================================================
   Small Mobile
========================================================= */

@media (max-width: 480px) {
  .contact-heading-light {
    font-size: 2rem;
  }

  .contact-form-wrapper-light {
    padding: 18px !important;
  }

  .booking-field__control {
    padding-right: 2.4rem !important;
  }
}

/* =========================================================
   Reduced Motion
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .contact-fade-in,
  .contact-info-card-light,
  .booking-field__control,
  .booking-form__submit,
  .booking-form__submit-arrow {
    animation: none !important;
    transition: none !important;
  }

  .contact-fade-in {
    opacity: 1;
    transform: none;
  }
}


/* 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 */



/* Custom Dark Footer Theme Variables & Styles */
:root {
  --footer-bg-dark: #0f1926;
  --footer-card-dark: #162232;
  --footer-border-dark: rgba(184, 134, 11, 0.25);
  
  --gold-accent: #b8860b;
  --gold-accent-hover: #d4af37;
  --gold-gradient-light: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  --gold-gradient-subtle: linear-gradient(90deg, transparent 0%, #d4af37 50%, transparent 100%);
}

.footer-section-dark {
  background-color: var(--footer-bg-dark);
  color: #adb5bd;
  font-family: var(--font-body, system-ui, -apple-system, sans-serif);
}

.footer-gold-line-top {
  height: 3px;
  background: var(--gold-gradient-subtle);
}

.footer-logo-img {
  transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
  opacity: 0.9;
}

.footer-lead-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #e2e8f0;
}

.footer-map-wrapper {
  border-color: var(--footer-border-dark) !important;
  background-color: var(--footer-card-dark);
}

.footer-divider {
  width: 60px;
  height: 2px;
  background: var(--gold-gradient-light);
  border-radius: 2px;
}

/* Social Media Buttons */
.footer-social-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--footer-card-dark);
  border: 1px solid var(--footer-border-dark);
  color: var(--gold-accent);
  font-size: 1.15rem;
  transition: all 0.3s ease;
}

.footer-social-btn:hover {
  background-color: var(--gold-accent);
  color: #ffffff;
  border-color: var(--gold-accent);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

.footer-section-dark a.text-gold:hover {
  color: var(--gold-accent-hover) !important;
}


/* 00000000000000000000000000000000000000000000000000000000000 */
/* service locations section */


:root {
  --color-black: #0b131f;
  --color-black-soft: #121e2d;
  --color-charcoal: #1c2b3d;

  --color-white: #ffffff;
  --color-gray-light: #e0e2e5;
  --color-gray: #9aa3af;

  --color-yellow: #f1cf6d;
  --color-yellow-dark: #d8b450;
  --color-yellow-soft: rgba(241, 207, 109, 0.12);

  --border-light: rgba(255, 255, 255, 0.08);
  --border-yellow: rgba(241, 207, 109, 0.25);
}

/* =========================================================
   Service Locations Section
========================================================= */

.locations-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      #f8f9fb 0%,
      var(--color-white) 55%,
      #eef1f4 100%
    );
  color: var(--color-charcoal);
  font-family:
    var(
      --font-body,
      system-ui,
      -apple-system,
      BlinkMacSystemFont,
      "Segoe UI",
      sans-serif
    );
}

.locations-glow {
  width: 760px;
  height: 520px;
  background:
    radial-gradient(
      circle,
      rgba(241, 207, 109, 0.2) 0%,
      rgba(241, 207, 109, 0.08) 38%,
      transparent 72%
    );
  filter: blur(75px);
  pointer-events: none;
}

/* =========================================================
   Section Header
========================================================= */

.locations-badge {
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--color-yellow-dark);
  background: var(--color-yellow-soft);
  border: 1px solid var(--border-yellow);
  border-radius: 50px;
}

.locations-heading {
  font-family: var(--font-heading, serif, sans-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
  letter-spacing: -0.7px;
  color: var(--color-black);
}

.locations-divider {
  width: 90px;
  height: 3px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--color-yellow-dark),
      transparent
    );
  border-radius: 50px;
}

.locations-lead {
  max-width: 800px;
  margin-inline: auto;
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--color-charcoal);
}

/* =========================================================
   Location Cards
========================================================= */

.location-card {
  position: relative;
  min-height: 104px;
  overflow: hidden;

  color: var(--color-white);
  background:
    linear-gradient(
      135deg,
      var(--color-black-soft),
      var(--color-charcoal)
    );

  border: 1px solid var(--border-light);
  border-radius: 18px;

  box-shadow:
    0 10px 24px rgba(11, 19, 31, 0.18);

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.location-card:hover {
  color: var(--color-white);
  background:
    linear-gradient(
      135deg,
      var(--color-black),
      var(--color-black-soft)
    );

  border-color: var(--color-yellow);
  transform: translateY(-6px);

  box-shadow:
    0 18px 36px rgba(11, 19, 31, 0.3),
    0 0 24px rgba(241, 207, 109, 0.14);
}

.location-card:focus-visible {
  color: var(--color-white);
  outline: 3px solid var(--color-yellow);
  outline-offset: 4px;
}

.location-card__content {
  min-width: 0;
}

/* =========================================================
   Location Icon
========================================================= */

.location-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 50px;
  height: 50px;
  flex-shrink: 0;

  color: var(--color-yellow);
  background: var(--color-yellow-soft);
  border: 1px solid var(--border-yellow);
  border-radius: 14px;

  font-size: 1.25rem;

  transition:
    color 0.35s ease,
    background-color 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.location-card:hover .location-card__icon {
  color: var(--color-black);
  background: var(--color-yellow);
  border-color: var(--color-yellow);
  transform: scale(1.08);

  box-shadow:
    0 0 18px rgba(241, 207, 109, 0.35);
}

/* =========================================================
   Location Name
========================================================= */

.location-card__name {
  font-family: var(--font-heading, serif, sans-serif);
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--color-white);
}

/* =========================================================
   Location Arrow
========================================================= */

.location-card__arrow {
  flex-shrink: 0;
  font-size: 1.15rem;
  color: var(--color-gray);

  transition:
    color 0.35s ease,
    transform 0.35s ease;
}

.location-card:hover .location-card__arrow {
  color: var(--color-yellow);
  transform: translate(4px, -4px);
}

/* =========================================================
   Bottom CTA
========================================================= */

.locations-cta {
  background:
    linear-gradient(
      135deg,
      var(--color-black-soft),
      var(--color-charcoal)
    );

  border: 1px solid var(--border-yellow);
  border-radius: 22px;

  box-shadow:
    0 16px 36px rgba(11, 19, 31, 0.2);
}

.locations-cta__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 1.8px;
  color: var(--color-yellow);
}

.locations-cta__title {
  font-family: var(--font-heading, serif, sans-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--color-white);
}

.locations-cta__text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-gray-light);
}

.locations-call-btn {
  flex-shrink: 0;
  min-height: 58px;
  padding: 0 28px;

  color: var(--color-black);
  background:
    linear-gradient(
      135deg,
      var(--color-yellow),
      var(--color-yellow-dark)
    );

  border: 2px solid var(--color-yellow);
  border-radius: 50px;

  font-size: 1.08rem;
  font-weight: 800;

  box-shadow:
    0 10px 24px rgba(241, 207, 109, 0.24);

  transition:
    transform 0.3s ease,
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.locations-call-btn:hover {
  color: var(--color-yellow);
  background: var(--color-black);
  border-color: var(--color-yellow);

  transform: translateY(-3px);

  box-shadow:
    0 14px 30px rgba(11, 19, 31, 0.25),
    0 0 20px rgba(241, 207, 109, 0.12);
}

.locations-call-btn:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 4px;
}

/* =========================================================
   Responsive Adjustments
========================================================= */

@media (max-width: 991.98px) {
  .locations-heading {
    font-size: 2.7rem;
  }

  .locations-lead {
    font-size: 1.08rem;
  }

  .location-card__name {
    font-size: 1.15rem;
  }
}

@media (max-width: 767.98px) {
  .location-card {
    min-height: 94px;
    padding: 1.15rem !important;
  }

  .location-card__icon {
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
  }

  .location-card__name {
    font-size: 1.08rem;
  }

  .locations-call-btn {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .locations-heading {
    font-size: 2.2rem;
  }

  .locations-lead {
    font-size: 1rem;
    line-height: 1.75;
  }

  .location-card {
    min-height: 88px;
    padding: 1rem !important;
  }

  .location-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .location-card__name {
    font-size: 1rem;
  }

  .location-card__arrow {
    font-size: 1rem;
  }
}

/* =========================================================
   Reduced Motion
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .location-card,
  .location-card__icon,
  .location-card__arrow,
  .locations-call-btn {
    transition: none !important;
  }

  .location-card:hover,
  .locations-call-btn:hover {
    transform: none;
  }

  .location-card:hover .location-card__icon,
  .location-card:hover .location-card__arrow {
    transform: none;
  }
}


/* before and after */
:root {
  --color-black: #0b131f;
  --color-black-soft: #121e2d;
  --color-charcoal: #1c2b3d;

  --color-white: #ffffff;
  --color-gray-light: #e0e2e5;
  --color-gray: #9aa3af;

  --color-yellow: #f1cf6d;
  --color-yellow-dark: #d8b450;
  --color-yellow-soft: rgba(241, 207, 109, 0.12);

  --border-light: rgba(11, 19, 31, 0.1);
  --border-yellow: rgba(241, 207, 109, 0.3);
}

/* =========================================================
   Before & After Section
========================================================= */

.before-after-section {
  background:
    linear-gradient(
      135deg,
      #f7f8fa 0%,
      var(--color-white) 55%,
      #eef1f4 100%
    );

  color: var(--color-charcoal);

  font-family:
    var(
      --font-body,
      system-ui,
      -apple-system,
      BlinkMacSystemFont,
      "Segoe UI",
      sans-serif
    );
}

/* =========================================================
   Header
========================================================= */

.before-after-badge {
  color: var(--color-yellow-dark);
  background: var(--color-yellow-soft);
  border: 1px solid var(--border-yellow);
  border-radius: 50px;

  font-size: 0.9rem;
  letter-spacing: 1.8px;
}

.before-after-heading {
  color: var(--color-black);

  font-family: var(--font-heading, serif, sans-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.15;
  letter-spacing: -0.6px;
}

.before-after-divider {
  width: 90px;
  height: 3px;

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--color-yellow-dark),
      transparent
    );

  border-radius: 50px;
}

.before-after-lead {
  max-width: 820px;
  margin-inline: auto;

  color: var(--color-charcoal);

  font-size: 1.12rem;
  line-height: 1.85;
}

/* =========================================================
   Cards
========================================================= */

.before-after-card {
  background: var(--color-white);
  border: 1px solid rgba(11, 19, 31, 0.09);

  box-shadow:
    0 12px 34px rgba(11, 19, 31, 0.08);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.before-after-card:hover {
  transform: translateY(-6px);

  border-color: var(--border-yellow);

  box-shadow:
    0 18px 42px rgba(11, 19, 31, 0.13),
    0 0 22px rgba(241, 207, 109, 0.08);
}

/* =========================================================
   Images
========================================================= */

.before-after-image-wrap {
  aspect-ratio: 16 / 10;
  background: var(--color-gray-light);
}

.before-after-image {
  height: 100%;
  object-fit: cover;

  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.before-after-card:hover .before-after-image {
  transform: scale(1.04);
}

/* =========================================================
   Before / After Labels
========================================================= */

.before-after-label {
  position: absolute;
  top: 20px;
  left: 20px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 92px;
  min-height: 42px;

  padding: 0 18px;

  border-radius: 50px;

  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;

  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.before-after-label--before {
  color: var(--color-white);
  background: var(--color-black);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.before-after-label--after {
  color: var(--color-black);
  background:
    linear-gradient(
      135deg,
      var(--color-yellow),
      var(--color-yellow-dark)
    );

  border: 1px solid var(--color-yellow-dark);
}

/* =========================================================
   Card Content
========================================================= */

.before-after-content {
  position: relative;
}

.before-after-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;
  flex-shrink: 0;

  color: var(--color-yellow);
  background: var(--color-black-soft);

  border: 1px solid var(--color-charcoal);
  border-radius: 14px;

  font-size: 1.25rem;
}

.before-after-icon--after {
  color: var(--color-black);
  background: var(--color-yellow);
  border-color: var(--color-yellow-dark);
}

.before-after-card-title {
  color: var(--color-black);

  font-family: var(--font-heading, serif, sans-serif);
  font-size: 1.5rem;
  line-height: 1.3;
}

.before-after-text {
  color: var(--color-charcoal);

  font-size: 1rem;
  line-height: 1.8;
}

/* =========================================================
   Bottom CTA
========================================================= */

.before-after-cta {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      var(--color-black-soft),
      var(--color-charcoal)
    );

  border: 1px solid var(--border-yellow);

  box-shadow:
    0 16px 38px rgba(11, 19, 31, 0.18);
}

.before-after-cta::before {
  content: "";

  position: absolute;
  width: 340px;
  height: 340px;
  right: -110px;
  top: -170px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(241, 207, 109, 0.16) 0%,
      transparent 70%
    );

  pointer-events: none;
}

.before-after-cta-eyebrow {
  color: var(--color-yellow);

  font-size: 0.82rem;
  letter-spacing: 1.8px;
}

.before-after-cta-title {
  position: relative;

  color: var(--color-white);

  font-family: var(--font-heading, serif, sans-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.before-after-cta-text {
  position: relative;

  color: var(--color-gray-light);

  font-size: 1.02rem;
  line-height: 1.75;
}

/* =========================================================
   CTA Button
========================================================= */

.before-after-btn {
  position: relative;
  z-index: 2;

  min-height: 58px;
  padding: 0 28px;

  color: var(--color-black);

  background:
    linear-gradient(
      135deg,
      var(--color-yellow),
      var(--color-yellow-dark)
    );

  border: 2px solid var(--color-yellow);
  border-radius: 50px;

  font-size: 1.06rem;
  font-weight: 800;

  box-shadow:
    0 10px 24px rgba(241, 207, 109, 0.22);

  transition:
    transform 0.3s ease,
    color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.before-after-btn:hover {
  color: var(--color-yellow);
  background: var(--color-black);

  transform: translateY(-3px);

  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.24);
}

.before-after-btn:focus-visible {
  outline: 3px solid var(--color-white);
  outline-offset: 4px;
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 991.98px) {

  .before-after-heading {
    font-size: 2.7rem;
  }

  .before-after-lead {
    font-size: 1.06rem;
  }

  .before-after-image-wrap {
    aspect-ratio: 16 / 9;
  }

}

@media (max-width: 767.98px) {

  .before-after-heading {
    font-size: 2.3rem;
  }

  .before-after-card-title {
    font-size: 1.35rem;
  }

  .before-after-text {
    font-size: 0.98rem;
  }

}

@media (max-width: 575.98px) {

  .before-after-heading {
    font-size: 2rem;
  }

  .before-after-lead {
    font-size: 1rem;
    line-height: 1.75;
  }

  .before-after-image-wrap {
    aspect-ratio: 4 / 3;
  }

  .before-after-label {
    top: 14px;
    left: 14px;

    min-width: 80px;
    min-height: 38px;

    padding: 0 14px;

    font-size: 0.78rem;
  }

  .before-after-icon {
    width: 44px;
    height: 44px;
  }

  .before-after-card-title {
    font-size: 1.2rem;
  }

  .before-after-btn {
    width: 100%;
  }

}

/* =========================================================
   Reduced Motion
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .before-after-card,
  .before-after-image,
  .before-after-btn {
    transition: none;
  }

  .before-after-card:hover,
  .before-after-btn:hover {
    transform: none;
  }

  .before-after-card:hover .before-after-image {
    transform: none;
  }

}