@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* ==========================================================================
   1. DESIGN SYSTEM CUSTOM PROPERTIES
   ========================================================================== */
:root {
  --color-primary: #a11b1c;
  --color-secondary: #7a2b2c;
  --color-secondary-tint: rgba(122, 43, 44, 0.08);
  --color-accent: #ff4041;
  --color-success: #2E8B57;
  --color-bg: #FFFFFF;
  --color-bg-section: #F8F9FA;
  --color-text-primary: #1F2937;
  --color-text-secondary: #6B7280;
  --color-border: #E5E7EB;
  --color-divider: #F1F3F5;
  --color-badge-tint: #EAF4FF;
  --radius-notch-cut: 56px;

  /* New Tokens */
  --color-footer-bg: #0A0E14;
  --color-footer-muted: rgba(255, 255, 255, 0.55);
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --font-serif: "Playfair Display", Georgia, serif;

  /* Shadows */
  --shadow-sm: 0 8px 20px rgba(0, 0, 0, .05);
  --shadow-md: 0 15px 40px rgba(0, 0, 0, .08);
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, .12);
  --shadow-focus: 0 0 0 4px rgba(30, 136, 229, 0.15);
}

/* ==========================================================================
   2. CSS RESET & BASE STYLES
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  line-height: 30px;
  color: var(--color-text-primary);
  background-color: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 72px;
  line-height: 82px;
  letter-spacing: -2px;
}

h2 {
  font-size: 56px;
  line-height: 64px;
}

h3 {
  font-size: 40px;
  line-height: 48px;
  font-weight: 600;
}

h4 {
  font-size: 30px;
  line-height: 38px;
  font-weight: 600;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--color-primary);
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* ==========================================================================
   3. LAYOUT & UTILITY CLASSES
   ========================================================================== */
.container {
  width: 92%;
  max-width: 1420px;
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: 140px 0;
}

.section--primary-conversion {
  padding: 140px 0;
}

.bg-section {
  background-color: var(--color-bg-section);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-secondary {
  color: var(--color-text-secondary);
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-8 {
  margin-bottom: 32px;
}

.mb-12 {
  margin-bottom: 48px;
}

/* ==========================================================================
   4. GLOBAL COMPONENTS
   ========================================================================== */

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-badge-tint);
  color: var(--color-primary);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 18px 34px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.35s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: #000;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* .btn-primary:after {
  content: '»';
  position: absolute;
  opacity: 0;
  top: 14px;
  right: -20px;
  transition: 0.5s;
}

.btn-primary:hover:after {
  opacity: 1;
  right: 10px;
} */


.btn-secondary {
  background-color: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  transform: translateY(-3px);
}

.btn-secondary--white {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.btn-secondary--white:hover {
  background-color: #ffffff;
  color: var(--color-primary);
  transform: translateY(-3px);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Text link with arrow */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  transition: color 0.3s ease;
}

.text-link span {
  display: inline-block;
  transition: transform 0.25s ease;
}

.text-link:hover {
  color: var(--color-secondary);
}

.text-link:hover span {
  transform: translateX(4px);
}

/* Cards (Base) */
.card-base {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.card-base:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* Form Controls */
.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text-primary);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  height: 58px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid #D9DDE3;
  background-color: #ffffff;
  font-size: 17px;
  color: var(--color-text-primary);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-textarea {
  height: auto;
  min-height: 180px;
  padding: 18px;
  resize: vertical;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-focus);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 15px;
  line-height: 22px;
  color: var(--color-text-secondary);
}

.form-checkbox input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid #D9DDE3;
}

.form-error {
  display: block;
  font-size: 14px;
  color: #D32F2F;
  margin-top: 6px;
}

/* ==========================================================================
   5. HEADER COMPONENT
   ========================================================================== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 15px 0px;
  display: flex;
  align-items: center;
  background-color: transparent;
  transition: height 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.site-header--sticky {
  padding: 7px 0px;
  background-color: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
  border-bottom: 1px solid var(--color-divider);
  animation: slideDown 0.35s ease-out;
  position: fixed;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 92%;
  max-width: 1320px;
  margin: 0 auto;
}

.site-logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
}

.site-logo svg {
  width: 28px;
  height: 28px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2.5px;
  transition: stroke 0.35s ease;
}

.site-logo img {
  max-height: 100px;
}

.site-header .site-logo img.sticky {
  display: none;
}


.site-header--sticky .site-logo {
  color: var(--color-primary);
}

.site-header--sticky .site-logo img {
  display: none;
}

.site-header--sticky .site-logo img.sticky {
  display: block;
}

.site-header--sticky .site-logo svg {
  stroke: var(--color-primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 0;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.site-header--sticky .nav-link {
  color: var(--color-text-primary);
}

.nav-link:hover,
.nav-item--active .nav-link {
  color: #ffffff;
}

.site-header--sticky .nav-link:hover,
.site-header--sticky .nav-item--active .nav-link {
  color: var(--color-primary);
}

/* Nav Underline Animation */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

.site-header--sticky .nav-link::after {
  background-color: var(--color-primary);
}

.nav-link:hover::after,
.nav-item--active .nav-link::after {
  width: 100%;
}

/* Dropdown styling */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 280px;
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  padding: 16px 0;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
}

.nav-item--has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: block;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-primary);
  transition: background-color 0.25s ease, color 0.25s ease;
}

.dropdown-link:hover {
  background-color: var(--color-badge-tint);
  color: var(--color-primary);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-cta .btn {
  height: 48px;
  padding: 0 24px;
  font-size: 16px;
}

/* Hamburger & Mobile Nav */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10000;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) {
  transform-origin: top left;
}

.menu-toggle span:nth-child(3) {
  transform-origin: bottom left;
}

.site-header--sticky .menu-toggle span {
  background-color: var(--color-text-primary);
}

.menu-toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(1px, -1px);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(1px, 1px);
}

/* Header Navigation Theme Classes (Light/Dark initial states) */
body.page--dark-hero .site-header:not(.site-header--sticky) {
  background-color: rgba(0, 0, 0, 0.5);
}

body.page--dark-hero .site-header:not(.site-header--sticky) .site-logo {
  color: #ffffff;
}

body.page--dark-hero .site-header:not(.site-header--sticky) .site-logo svg {
  stroke: #ffffff;
}

body.page--dark-hero .site-header:not(.site-header--sticky) .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

body.page--dark-hero .site-header:not(.site-header--sticky) .nav-link:hover,
body.page--dark-hero .site-header:not(.site-header--sticky) .nav-item--active .nav-link {
  color: #ffffff;
}

body.page--dark-hero .site-header:not(.site-header--sticky) .menu-toggle span {
  background-color: #ffffff;
}

body.page--light-header .site-header:not(.site-header--sticky) {
  background-color: rgba(255, 255, 255, 0.6);
}

body.page--light-header .site-header:not(.site-header--sticky) .site-logo {
  color: var(--color-primary);
}

body.page--light-header .site-header:not(.site-header--sticky) .site-logo svg {
  stroke: var(--color-primary);
}

body.page--light-header .site-header:not(.site-header--sticky) .nav-link {
  color: var(--color-text-primary);
}

body.page--light-header .site-header:not(.site-header--sticky) .nav-link:hover,
body.page--light-header .site-header:not(.site-header--sticky) .nav-item--active .nav-link {
  color: var(--color-primary);
}

body.page--light-header .site-header:not(.site-header--sticky) .menu-toggle span {
  background-color: var(--color-text-primary);
}

/* ==========================================================================
   6. FOOTER COMPONENT (Dark, Oversized Wordmark Style)
   ========================================================================== */
.site-footer {
  background: url(../images/hero.png) no-repeat center center;
  background-size: cover;
  background-color: var(--color-footer-bg);
  color: var(--color-footer-muted);
  padding: 100px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.site-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--color-primary);
  opacity: .95;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1.3fr);
  gap: 48px;
  margin-bottom: 60px;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  color: #000;
  border-radius: 25px;
  padding: 25px;
  text-align: center;
  align-items: center;
}

.site-footer__brand .site-logo {
  color: #ffffff;
}

.site-footer__brand .site-logo svg {
  stroke: #ffffff;
}

.site-footer__tagline {
  font-size: 16px;
  color: #000;
}

.site-footer__text {
  font-size: 14px;
  color: #000;
  line-height: 24px;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.site-footer__col h4 {
  color: white;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 16px;
}

.site-footer__col a {
  font-size: 16px;
  color: white;
  text-decoration: none;
  transition: color 0.25s ease;
  line-height: 1.6;
  display: block;
}

.site-footer__col a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.site-footer__wordmark {
  font-size: clamp(48px, 9vw, 140px);
  font-weight: 800;
  color: #ffffff;
  opacity: 0.6;
  text-align: center;
  margin: 80px 0 40px;
  user-select: none;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer__decor {
  width: 120px;
  height: 12px;
  margin: 0 auto 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer__status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-success);
  border-radius: 50%;
  display: inline-block;
  animation: statusPulse 2s infinite ease-in-out;
}

@keyframes statusPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.25);
    opacity: 0.5;
  }
}


/* @media query moved to responsive.css: @media (prefers-reduced-motion: reduce) */


.site-footer__legal {
  display: flex;
  gap: 24px;
}

.site-footer__legal a {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-footer__legal a:hover {
  color: #ffffff;
}

/* Footer Responsive overrides */

/* @media query moved to responsive.css: @media (max-width: 1023px) */



/* @media query moved to responsive.css: @media (max-width: 767px) */


/* ==========================================================================
   Page Header (Inner-Page Header)
   ========================================================================== */
.page-header {
  position: relative;
  padding: 180px 0 0px;
  overflow: hidden;
  margin-bottom: 100px;
}

.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/inner-header.jpg) no-repeat right 0px;
  background-size: 1000px;
  /* background-image: radial-gradient(var(--color-divider) 1px, transparent 1px);
  background-size: 24px 24px; */
  /* opacity: 0.25; */
  pointer-events: none;
  z-index: 1;
}

.page-header__container {
  position: relative;
  z-index: 2;
  width: 92%;
  max-width: 1320px;
  margin: 0 auto;
}

.page-header__breadcrumb {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
}

.page-header__breadcrumb a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-header__breadcrumb a:hover {
  color: var(--color-primary);
}

.page-header__breadcrumb span {
  margin: 0 8px;
  color: var(--color-border);
}

.page-header__breadcrumb span[aria-current="page"] {
  color: var(--color-text-primary);
}

.page-header__heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  line-height: 1.05;
}

.page-header__heading-bold {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  color: var(--color-text-primary);
  display: block;
}

.page-header__heading-accent {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 64px);
  font-style: italic;
  font-weight: 400;
  color: var(--color-primary);
  display: block;
}

.page-header__description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 620px;
  margin-bottom: 32px;
}

.page-header__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
}

.page-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-header__secondary {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-primary);
  text-decoration: none;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.page-header__secondary:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.page-header__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 24px;
  display: none;
}

.page-header__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 150px;
}

.page-header__stat strong {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}

.page-header__stat span {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
}

/* Mobile responsive styles */

/* @media query moved to responsive.css: @media (max-width: 767px) */


/* ==========================================================================
   7. HOMEPAGE SPECIFIC SECTIONS
   ========================================================================== */

/* 7.1 HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  min-height: 780px;
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
  background-color: var(--color-primary);
}

.hero__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero_video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__scrim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .6);
}

.hero__watermark {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  font-size: 140px;
  font-weight: 800;
  color: rgba(255, 255, 255, .04);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 4px;
  z-index: 2;
}

.hero__container {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  height: 100%;
  padding-top: 96px;
  /* Offset fixed header */
}

.hero__content {
  max-width: 100%;
}

.hero__badge-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.hero__avatars {
  display: flex;
  align-items: center;
}

.hero__avatars img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--color-primary);
  margin-left: -8px;
}

.hero__avatars img:first-child {
  margin-left: 0;
}

.hero__rating {
  color: #FFC107;
  letter-spacing: 1px;
  font-size: 13px;
}

.hero__title {
  color: #ffffff;
  margin-bottom: 24px;
  font-size: 120px;
  line-height: 140px;
}

.hero__title em {
  font-style: normal;
  font-size: 80px;
  color: var(--color-accent);
  display: block;
  width: 100%;
  font-weight: 400;
  line-height: 1.2;
}

.hero__description {
  font-size: 19px;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__secondary-link {
  color: #ffffff;
}

.hero__secondary-link:hover {
  color: var(--color-accent);
}

/* Hero Stat Cluster (Right aligned) */
.hero__stat-cluster {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
  position: relative;
  max-width: 440px;
}

.hero__stat-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-md);
  color: var(--color-text-primary);
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.3s ease;
}

.hero__stat-card:hover {
  transform: translateY(-4px);
}

.hero__stat-card-num {
  font-size: 34px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.hero__stat-card-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-secondary);
}

.hero__badge-circles {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.hero__badge-circle {
  background-color: #ffffff;
  color: var(--color-text-primary);
  width: 108px;
  height: 108px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  line-height: 1.2;
}

.hero__badge-circle-num {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
}

.hero__badge-circle-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  margin-top: 2px;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 48px;
  border-radius: 99px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  z-index: 3;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero__scroll-indicator::after {
  content: '';
  width: 6px;
  height: 10px;
  background-color: #ffffff;
  border-radius: 99px;
  animation: scrollDown 1.8s infinite ease-in-out;
}

@keyframes scrollDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(12px);
    opacity: 0.3;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* 7.2 CLIENTS MARQUEE (Vertical Waterfall Logo Grid) */

.trust-strip {
  background-color: #ffffff;
  padding: 25px 0px;
  margin-bottom: 30px;
}

.trust-strip__title {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.trust-strip__marquee {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.trust-strip__track {
  display: flex;
  flex-shrink: 0;
  gap: 40px;
  padding-right: 40px;
}

.trust-strip__logo {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-strip__logo img {
  max-width: 200px;
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
}

.trust-strip__logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}



.clients-marquee {
  position: relative;
  background-color: var(--color-bg);
  overflow: hidden;
  border-bottom: 1px solid var(--color-divider);
}

.clients-marquee__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.clients-marquee__intro {
  flex: 0 0 35%;
  max-width: 420px;
}

.clients-marquee__intro h2 {
  font-size: clamp(3rem, 3.5vw, 2.5rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--color-text-primary);
  margin-top: 16px;
  margin-bottom: 20px;
}

.clients-marquee__intro p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
  max-width: 400px;
}

.clients-marquee__intro .btn {
  margin-top: 24px;
}

.clients-marquee__columns {
  flex: 0 0 60%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  height: 560px;
  position: relative;
  overflow: hidden;
  /* Top and bottom fade mask for smooth logo entrance/exit */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, white 12%, white 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, white 12%, white 88%, transparent 100%);
}

.clients-marquee__column {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.clients-marquee__track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  will-change: transform;
}

.clients-marquee__logo {
  background: #ffffff;
  border: 1px solid #ccc;
  border-radius: 16px;
  overflow: hidden;
  padding: 20px;
  height: 158px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
  max-width: 99%;
}

.clients-marquee__logo img {
  max-width: 70%;
  object-fit: contain;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}


/* @media query moved to responsive.css: @media (hover: hover) */


/* Tablet Layout */

/* @media query moved to responsive.css: @media (max-width: 1023px) */


/* Mobile Layout */

/* @media query moved to responsive.css: @media (max-width: 767px) */


/* Visually hidden screen reader class */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}


/* Business Segments Section */
.business-segments-section {
  background-color: var(--white-color);
}

.business-segments-section .section-title h2 {
  font-size: 86px;
  line-height: 1.2;
  font-weight: 300;
  color: var(--color-text-primary);
  margin-top: 12px;
}

.segments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.segment-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-primary);
  font-weight: 300;
  font-size: 28px;
  padding: 20px 30px;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid #000;
}

.segment-card:hover {
  transform: translateY(-3px);
}

.segment-card i {
  font-size: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  text-decoration: none;
  font-style: normal;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.segment-card:hover i {
  transform: translate(3px, -3px);
}


/* @media query moved to responsive.css: @media only screen and (max-width: 767px) */


/* 7.3 WHY CHOOSE US — INTRO + PHOTO COLLAGE */
.why-intro__header {
  /* display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px; */
  margin-bottom: 56px;
  text-align: center;
}

.why-intro h2 {
  font-size: 86px;
  font-weight: 300;
  line-height: 90px;
  margin-bottom: 46px;
  text-align: center;
}

.why-intro__header p {
  font-size: 26px;
  line-height: 46px;
  color: var(--color-text-secondary);
  margin-top: 10px;
}

.why-intro__collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-intro__collage figure {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  aspect-ratio: 1 / 1.15;
  background-color: var(--color-divider);
}

.why-intro__collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-intro__collage figure:hover img {
  transform: scale(1.04);
}

/* 7.4 BENEFIT ROW LIST */

.benefits.section h2 {
  font-size: 86px;
  font-weight: 300;
  line-height: 90px;
  margin-bottom: 46px;
  text-align: center;
}

.benefits.section .benefit-block {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.benefits.section .benefit-block img {
  max-width: 30%;
}

.benefit-list {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
}

.benefit-row {
  display: inline-block;
  align-items: center;
  justify-content: space-between;
  width: 32%;
  min-height: 88px;
  padding: 36px;
  background: var(--color-primary);
  color: #fff;
}

.benefit-row:last-child {
  border-bottom: none;
}

.benefit-row__label {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 0 0 340px;
  margin-bottom: 10px;
}

.benefit-row__icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: #fff;
  flex-shrink: 0;
}

.benefit-row__icon svg {
  width: 22px;
  height: 22px;
}

.benefit-row__label h3 {
  font-size: 26px;
  font-weight: 300;
  line-height: 1.3;
  color: #fff;
}

.benefit-row__points {
  flex: 1;
  display: block;
  gap: 24px;
  margin-left: 0px;
  color: #fff;
}

.benefit-row__point {
  font-size: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.benefit-row__point::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff;
  flex-shrink: 0;
}

/* 7.5 OUR PROCESS SECTION */
.process {
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: 32px;
  padding: 120px 0;
}

.process__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 72px;
}

.process__header h2 {
  color: #ffffff;
  max-width: 500px;
}

.process__header p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 420px;
  font-size: 17px;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.process-step {
  background-color: #ffffff;
  color: var(--color-text-primary);
  border-radius: 24px;
  padding: 36px 32px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.process-step__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.process-step__num {
  font-size: 40px;
  font-weight: 700;
  color: rgba(13, 74, 117, 0.15);
  line-height: 1;
}

.process-step__duration {
  font-size: 13px;
  font-weight: 600;
  background-color: var(--color-badge-tint);
  color: var(--color-primary);
  padding: 6px 12px;
  border-radius: 99px;
  text-transform: uppercase;
}

.process-step h3 {
  font-size: 22px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.process-step__bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.process-step__bullet {
  font-size: 15px;
  color: var(--color-text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.process-step__bullet svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-secondary);
  margin-top: 3px;
  flex-shrink: 0;
}

.process-step--highlighted {
  margin-top: -24px;
  background-color: #ffffff;
  border: 2px solid var(--color-secondary);
  box-shadow: var(--shadow-lg);
  z-index: 5;
}

.process-step--highlighted .process-step__num {
  color: var(--color-secondary);
  opacity: 0.3;
}

/* 7.6 SERVICES FEATURED CAROUSEL */
.service-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 48px;
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 32px;
  padding: 48px;
  box-shadow: var(--shadow-sm);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.service-feature__visual {
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  background-color: var(--color-divider);
}

.service-feature__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-feature__summary {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-feature__icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background-color: var(--color-badge-tint);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-feature__icon svg {
  width: 36px;
  height: 36px;
}

.service-feature__summary h3 {
  font-size: 36px;
  line-height: 1.2;
}

.service-feature__price {
  background-color: var(--color-bg-section);
  border-radius: 12px;
  padding: 12px 20px;
  display: inline-flex;
  flex-direction: column;
  align-self: flex-start;
}

.service-feature__price span {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.service-feature__price strong {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
}

.service-feature__list {
  border-left: 1px solid var(--color-border);
  padding-left: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-feature__list>span {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.service-feature__list ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-feature__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 500;
}

.service-feature__list li svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-success);
  flex-shrink: 0;
}

.service-feature__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
}

.service-feature__nav {
  display: flex;
  gap: 16px;
}

.service-feature__nav-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-primary);
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.service-feature__nav-btn:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  transform: scale(1.05);
}

.service-feature__nav-btn svg {
  width: 20px;
  height: 20px;
}

/* 7.7 TESTIMONIALS STRIP */
.testimonials-strip {
  overflow: hidden;
  background-color: var(--color-bg-section);
  padding: 100px 0;
}

.testimonials-strip .section-header {
  margin-bottom: 56px;
}

.testimonial-carousel {
  position: relative;
  width: 100%;
}

.testimonial-track {
  display: flex;
  gap: 32px;
  width: max-content;
  cursor: grab;
}

.testimonial-track:active {
  cursor: grabbing;
}

.testimonial-mini {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 32px;
  width: 320px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
}

.testimonial-mini__user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-mini__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--color-divider);
}

.testimonial-mini__meta h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.testimonial-mini__meta span {
  font-size: 13px;
  color: var(--color-text-secondary);
}

.testimonial-mini p {
  font-size: 16px;
  line-height: 26px;
  font-style: italic;
  color: var(--color-text-primary);
}

/* 7.8 COMPANY STATS + IMAGE */

.section.teaser-wrapper {
  padding: 0px 0 120px;
}

.company-teaser {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  padding-top: 80px;
}

.company-teaser__image-wrapper {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 1 / 1.1;
}

.company-teaser__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-teaser__credential {
  position: absolute;
  top: 24px;
  left: 24px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.company-teaser__credential svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-secondary);
}

.company-teaser__content h2 {
  margin-bottom: 30px;
}

.company-teaser__content h3 {
  font-size: 62px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.company-teaser__content p {
  color: var(--color-text-secondary);
  font-size: 18px;
  margin-bottom: 36px;
}

.company-teaser__stats {
  display: flex;
  margin-bottom: 36px;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.company-teaser__stat {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-divider);
  background: #f5f5f5;
  border-radius: 15px;
  width: 48%;
  padding: 35px;
}

.company-teaser__stat:last-child {
  border-bottom: none;
}

.company-teaser__stat strong {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

.company-teaser__stat span {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-secondary);
}

/* 7.9 FINAL CTA SECTION */
.final-cta {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  color: #ffffff;
  background-color: var(--color-primary);
}

.final-cta__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.final-cta__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta__scrim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .75);
}

.final-cta__container {
  position: relative;
  z-index: 3;
  padding: 90px 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.final-cta__content h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.final-cta__content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  margin-bottom: 36px;
  max-width: 580px;
}

.final-cta__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Glass Card Form (Homepage & Contact) */
.final-cta__glass-card {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
  color: #ffffff;
}

.final-cta__glass-card h3 {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 24px;
}

.final-cta__glass-card .form-group label {
  color: rgba(255, 255, 255, 0.9);
}

.final-cta__glass-card .form-input,
.final-cta__glass-card .form-select {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.final-cta__glass-card .form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.final-cta__glass-card .form-select option {
  background-color: var(--color-primary);
  color: #ffffff;
}

.final-cta__glass-card .form-input:focus,
.final-cta__glass-card .form-select:focus {
  border-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.final-cta__glass-card .btn-primary {
  background-color: #ffffff;
  color: var(--color-primary);
  width: 100%;
}

.final-cta__glass-card .btn-primary:hover {
  background-color: var(--color-badge-tint);
  transform: translateY(-2px);
}

/* ==========================================================================
   8. INNER PAGES STYLE UTILITIES
   ========================================================================== */

/* Breadcrumbs */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-top: 120px;
  /* Below fixed header */
  margin-bottom: 32px;
}

.breadcrumb a {
  color: var(--color-text-secondary);
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.breadcrumb svg {
  width: 14px;
  height: 14px;
  color: var(--color-border);
}

.breadcrumb__current {
  color: var(--color-text-primary);
  font-weight: 600;
}

/* 8.1 ABOUT PAGE SPECIFICS */
.about-intro {
  align-items: center;
  padding: 100px 0px;
}

.about-intro h2 {
  font-size: 62px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-text-primary);
  margin-bottom: 36px;
}

.about-intro p {
  margin-bottom: 15px;
  font-size: 18px;
}

.about-intro .company-overview {}

.about-intro__image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}

.about-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-intro__image:hover img {
  transform: scale(1.03);
}

.about-story {
  position: relative;
  overflow: hidden;
  padding: 80px 0px;
}

.about-story__blueprint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  opacity: 0.03;
  pointer-events: none;
  background-image: radial-gradient(var(--color-primary) 1px, transparent 1px);
  background-size: 24px 24px;
}

.about-story__content {}

.about-story__content h2 {
  margin-bottom: 32px;
}

.about-story__content p {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 24px;
}

.about-story .mision-vision {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.about-story .mision-vision h2 {
  font-size: 34px;
  color: white;
  line-height: 1.5;
}

.about-story .mision-vision h3 {
  font-size: 18px;
  font-weight: 300;
  color: white;
}

.about-story .mision-vision p {
  color: white;
}

.about-story .mision-vision .vision_card {
  background: var(--color-primary);
  color: white;
  padding: 25px;
}

/* Vision / Mission & Core Values Grid */
.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.about-card {
  min-height: 280px;
}

.about-card svg {
  color: var(--color-secondary);
  margin-bottom: 20px;
}

.about-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.about-card p {
  color: var(--color-text-secondary);
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.core-value-card {
  height: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.core-value-card svg {
  color: var(--color-secondary);
  transition: transform 0.3s ease;
}

.core-value-card:hover {
  border-color: var(--color-secondary);
}

.core-value-card:hover svg {
  transform: scale(1.1);
}

/* Managing Director Message */
.md-message {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.md-message__portrait {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
}

.md-message__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.md-message__quote blockquote {
  font-size: 20px;
  line-height: 34px;
  font-style: italic;
  color: var(--color-text-primary);
  border-left: 4px solid var(--color-secondary);
  padding-left: 24px;
  margin-bottom: 24px;
}

.md-message__sig {
  font-weight: 600;
}

.md-message__sig span {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-secondary);
}

/* Timeline */
.timeline-section {
  overflow: hidden;
}

.timeline {
  display: flex;
  position: relative;
  padding: 60px 0;
  gap: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 96px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-border);
  z-index: 1;
}

.timeline__progress-line {
  position: absolute;
  top: 96px;
  left: 0;
  height: 2px;
  background-color: var(--color-secondary);
  z-index: 2;
  width: 0%;
  /* Animated via GSAP */
}

.timeline-node {
  flex: 1;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  padding-top: 60px;
}

.timeline-node__dot {
  position: absolute;
  top: 36px;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 4px solid var(--color-border);
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.timeline-node--active .timeline-node__dot {
  border-color: var(--color-secondary);
  background-color: var(--color-secondary);
}

.timeline-node__year {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.timeline-node__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline-node__desc {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 24px;
}

/* Certifications */
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.cert-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  height: 160px;
}

.cert-card svg {
  color: var(--color-primary);
}

.cert-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
}

/* Office Locations Split & Map */
.office-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
}

.office-map {
  border-radius: 24px;
  overflow: hidden;
  height: 450px;
  box-shadow: var(--shadow-sm);
}

.office-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.office-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.office-card {
  padding: 24px;
}

.office-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.office-card__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
  color: var(--color-text-secondary);
}

.office-card__detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.office-card__detail svg {
  color: var(--color-secondary);
  margin-top: 4px;
  flex-shrink: 0;
}

/* Gallery & Lightbox */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 74, 117, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Lightbox overlay */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox__content {
  position: relative;
  max-width: 80%;
  max-height: 80%;
}

.lightbox__image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox__close {
  position: absolute;
  top: -48px;
  right: 0;
  color: #ffffff;
  font-size: 32px;
  background: none;
  border: none;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 48px;
  background: none;
  border: none;
  cursor: pointer;
}

.lightbox__nav--prev {
  left: -80px;
}

.lightbox__nav--next {
  right: -80px;
}

/* Timeline/About Stats Box */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.about-stat-card {
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: 24px;
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-stat-card strong {
  display: block;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}

.about-stat-card span {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

/* 8.2 SERVICES PAGE SPECIFICS */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}

.service-card-full {
  display: flex;
  flex-direction: row;
  border-radius: 26px;
  overflow: hidden;
  height: 100%;
}

.service-card-full__img-wrapper {
  width: 35%;
  overflow: hidden;
  position: relative;
}

.service-card-full__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-card-full__img-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(13, 74, 117, 0) 60%, rgba(13, 74, 117, 0.18) 100%);
}

.service-card-full__icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background-color: var(--color-badge-tint);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -36px 0 24px 32px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease;
  display: none;
}

.service-card-full__icon svg {
  width: 34px;
  height: 34px;
}

.service-card-full__body {
  padding: 0 32px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-full h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.service-card-full p {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
}

.service-card-full__checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0px;
  /* Push CTA to bottom */
}

.service-card-full__checkitem {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
}

.service-card-full__checkitem svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-secondary);
  flex-shrink: 0;
}

.service-card-full__cta {
  margin-top: 32px;
}

.service-card-full:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card-full:hover .service-card-full__img-wrapper img {
  transform: scale(1.08);
}

.service-card-full:hover .service-card-full__icon {
  transform: rotate(5deg) scale(1.05);
}

/* SINGLE PAGE */

.page-intro.section {
  text-align: center;
  padding: 0px;
}

.page-intro .container {
  text-align: center;
  max-width: 1000px;
}

.page-intro p {
  font-size: 26px;
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 400;
}

/* 8.3 PROJECTS FILTER & CARDS */
.projects-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 56px;
}

.filter-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.filter-btn {
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background-color: var(--color-bg-section);
  border-color: var(--color-primary);
}

.filter-btn--active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
}

/* Featured Project */
.featured-project {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background-color: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 56px;
  min-height: 540px;
}

.featured-project__image-wrapper {
  overflow: hidden;
  position: relative;
}

.featured-project__image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 74, 117, 0.2);
}

.featured-project__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-project:hover .featured-project__img {
  transform: scale(1.05);
}

.featured-project__content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}

.featured-project__title {
  font-size: 48px;
  line-height: 1.1;
}

.featured-project__desc {
  font-size: 16px;
  color: var(--color-text-secondary);
}

.featured-project__info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  margin-top: 10px;
}

.featured-project__info-item {
  border-left: 3px solid var(--color-primary);
  padding-left: 12px;
}

.featured-project__info-label {
  display: block;
  font-size: 13px;
  color: var(--color-text-secondary);
  font-weight: 500;
  text-transform: uppercase;
}

.featured-project__info-val {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-primary);
}

/* Project Grid Card */
.project-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.project-card__img-wrapper {
  height: 400px;
  overflow: hidden;
  position: relative;
}

.project-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card__img-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.project-card:hover .project-card__img {
  transform: scale(1.08);
}

.project-card:hover .project-card__img-wrapper::after {
  opacity: 1;
}

.project-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 12px;
}

.project-card__title {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
}

.project-card__location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.project-card__location svg {
  width: 16px;
  height: 16px;
}

.project-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}

.project-card__tag {
  background-color: var(--color-bg-section);
  color: var(--color-text-secondary);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 99px;
  border: 1px solid var(--color-border);
}

.project-card__body .text-link {
  display: none;
}

/* 8.4 PROJECT DETAILS SPECIFICS */
.project-details-hero {
  position: relative;
  height: 480px;
  border-radius: 32px;
  overflow: hidden;
  margin-top: 120px;
  margin-bottom: 56px;
  display: flex;
  align-items: flex-end;
  color: #ffffff;
  padding: 56px;
}

.project-details-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.project-details-hero__scrim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(13, 74, 117, 0) 30%, rgba(13, 74, 117, 0.8) 100%);
  z-index: 2;
}

.project-details-hero__content {
  position: relative;
  z-index: 3;
}

.project-details-hero__content h1 {
  font-size: 56px;
  line-height: 64px;
  color: #ffffff;
  margin-top: 12px;
}

.project-details-split {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 56px;
  margin-bottom: 56px;
}

.project-details-main h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.project-details-main p {
  font-size: 17px;
  line-height: 28px;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
}

.project-details-main ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.project-details-main li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  color: var(--color-text-primary);
}

.project-details-main li svg {
  color: var(--color-secondary);
  margin-top: 4px;
  flex-shrink: 0;
}

.project-details-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.project-meta-card {
  padding: 32px;
}

.project-meta-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.project-meta-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.project-meta-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-divider);
  padding-bottom: 12px;
}

.project-meta-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.project-meta-item strong {
  font-size: 15px;
  color: var(--color-text-secondary);
  font-weight: 500;
}

.project-meta-item span {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-primary);
}

/* 8.5 CONTACT PAGE & FAQ ACCORDION */
.contact-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}

.contact-card-info {
  height: max-content;
}

.contact-form-wrapper {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h3 {
  font-size: 32px;
  margin-bottom: 24px;
}

/* Form Success State styling */
.form-success-message {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success-message svg {
  color: var(--color-success);
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.form-success-message h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.form-success-message p {
  color: var(--color-text-secondary);
  margin-bottom: 32px;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  background: none;
  border: none;
  font-size: 22px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.faq-question svg {
  width: 24px;
  height: 24px;
  color: var(--color-text-secondary);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), opacity 0.3s ease, padding 0.3s ease;
  padding: 0 28px;
}

.faq-answer p {
  font-size: 17px;
  line-height: 28px;
  color: var(--color-text-secondary);
  padding-bottom: 28px;
}

/* Active FAQ Item styling */
.faq-item--active {
  border-color: var(--color-secondary);
}

.faq-item--active .faq-question svg {
  transform: rotate(180deg);
  color: var(--color-secondary);
}

.faq-item--active .faq-answer {
  max-height: 1000px;
  /* High enough value to accommodate all text */
  opacity: 1;
  transition: max-height 0.3s ease-in, opacity 0.3s ease, padding 0.3s ease;
}

/* Floating Actions & Sticky Contact Bar */
.floating-actions {
  position: fixed;
  bottom: 100px;
  right: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.floating-action-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.floating-action-btn:hover {
  transform: scale(1.08);
}

.floating-action-btn--whatsapp {
  background-color: #25D366;
}

.floating-action-btn--phone {
  background-color: var(--color-secondary);
}

.floating-action-btn--totop {
  background-color: var(--color-primary);
}

.floating-action-btn svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.5px;
}

.sticky-contact-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background-color: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  z-index: 999;
  grid-template-columns: repeat(3, 1fr);
}

.sticky-contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-primary);
  border-right: 1px solid var(--color-divider);
  gap: 4px;
}

.sticky-contact-btn:last-child {
  border-right: none;
  background-color: var(--color-primary);
  color: #ffffff;
}

.sticky-contact-btn svg {
  width: 20px;
  height: 20px;
}

/* Download Profile Section */
.download-profile-box {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.download-profile-box__content {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.download-profile-box__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background-color: var(--color-badge-tint);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.download-profile-box__icon svg {
  width: 32px;
  height: 32px;
}

.download-profile-box__text h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.download-profile-box__text p {
  font-size: 16px;
  color: var(--color-text-secondary);
}

.download-profile-box__meta {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-top: 6px;
}

/* 8.6 404 PAGE SPECIFICS */
.error-page {
  padding: 160px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.error-page__num {
  font-size: 140px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -4px;
}

.error-page__title {
  font-size: 40px;
  margin-bottom: 16px;
}

.error-page__desc {
  font-size: 18px;
  color: var(--color-text-secondary);
  max-width: 480px;
  margin-bottom: 36px;
}

.error-page__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.error-page__blueprint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 240px;
  font-weight: 800;
  color: rgba(13, 74, 117, 0.02);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
}

.error-page__num,
.error-page__title,
.error-page__desc,
.error-page__actions {
  position: relative;
  z-index: 2;
}

/* 8.7 PRIVACY & TERMS TABLE OF CONTENTS */
.legal-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 56px;
  align-items: start;
}

.legal-toc-card {
  position: sticky;
  top: 110px;
  padding: 24px;
}

.legal-toc-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.legal-toc-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-toc-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-secondary);
}

.legal-toc-link:hover,
.legal-toc-link--active {
  color: var(--color-primary);
}

.legal-content h1 {
  font-size: 56px;
  margin-bottom: 12px;
}

.legal-content__meta {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 32px;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-divider);
}

.legal-content p {
  font-size: 17px;
  line-height: 28px;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

/* ==========================================================================
   9. RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Laptop: 1024px to 1199px */

/* @media query moved to responsive.css: @media (max-width: 1199px) */


/* Tablet: 768px to 1023px */

/* @media query moved to responsive.css: @media (max-width: 1023px) */


/* Mobile: 480px to 767px */

/* @media query moved to responsive.css: @media (max-width: 767px) */


/* Small Mobile: below 480px */

/* @media query moved to responsive.css: @media (max-width: 479px) */


/* ==========================================================================
   10. ADDITIONAL HOMEPAGE SECTIONS
   ========================================================================== */

/* 10.1 INTRO + STATS SECTION */
.intro-stats {
  background-color: #ffffff;
  padding: 100px 0;
}

.intro-stats__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4%;
  align-items: start;
}

.intro-stats__col-left h3 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.intro-stats__col-left p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.intro-stats__col-right h3 {
  font-size: 52px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-primary);
}

.intro-stats__col-right h3 span.muted {
  font-weight: 400;
  color: var(--color-accent);
}

.intro-stats__divider {
  height: 1px;
  background-color: var(--color-border);
  margin: 48px 0;
  border: none;
}

.intro-stats__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.intro-stats__stat {
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid var(--color-border);
}

.intro-stats__stat:first-child {
  padding-left: 0;
}

.intro-stats__stat:last-child {
  border-right: none;
  padding-right: 0;
}

.intro-stats__stat-number {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.intro-stats__stat-label {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text-secondary);
}

/* 10.2 HORIZONTAL SERVICE ACCORDION SECTION */
.service-accordion-h {
  background-color: var(--color-bg-section);
  padding: 140px 0;
}

.service-accordion-h__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.service-accordion-h__header h2 {
  font-size: 86px;
  line-height: 1.2;
  font-weight: 300;
  color: var(--color-text-primary);
  margin-top: 12px;
}

.service-accordion-h__header-left {
  max-width: 600px;
}

.service-accordion-h__eyebrow {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-secondary);
}

.service-accordion-h__more {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.25s ease;
}

.service-accordion-h__more:hover {
  text-decoration: underline;
  color: var(--color-secondary);
}

.service-accordion-h__row {
  display: flex;
  height: 480px;
  gap: 12px;
}

.service-accordion-h__panel {
  flex: 1 1 0;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  text-align: left;
}

/* Base outline style focus for accessibility */
.service-accordion-h__panel:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 2px;
}

.service-accordion-h__panel--active {
  cursor: default;
}

.service-accordion-h__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
}

.service-accordion-h__scrim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.15) 45%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.service-accordion-h__arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  z-index: 2;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.service-accordion-h__panel:hover .service-accordion-h__arrow,
.service-accordion-h__panel:focus-within .service-accordion-h__arrow {
  transform: rotate(45deg);
  background-color: var(--color-primary);
  color: #ffffff;
}

.service-accordion-h__tags {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: calc(100% - 100px);
  z-index: 2;
  opacity: 0;
  transform: translateY(-8px);
}

.service-accordion-h__panel--active .service-accordion-h__tags {
  opacity: 1;
  transform: translateY(0);
}

.service-accordion-h__tag {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
}

.service-accordion-h__content {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  z-index: 2;
  color: #ffffff;
  pointer-events: none;
}

.service-accordion-h__title {
  font-size: 24px;
  font-weight: 300;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.1;
  text-transform: uppercase;
  transition: font-size 0.3s ease;
}

.service-accordion-h__panel--active .service-accordion-h__title {
  font-size: 56px;
}

.service-accordion-h__desc {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  transition: font-size 0.4s ease, color 0.4s ease;
}

.service-accordion-h__panel--active .service-accordion-h__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  -webkit-line-clamp: 3;
}

/* 10.2.5 PROJECT SHOWCASE CAROUSEL SECTION */
.project-showcase {
  background-color: var(--color-bg);
  overflow: hidden;
}

.project-showcase__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 56px;
}

.project-showcase__heading {
  font-size: 78px;
  line-height: 1.15;
  font-weight: 300;
  color: var(--color-text-primary);
  flex: 0 0 65%;
}

.project-showcase__description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-secondary);
  flex: 0 0 45%;
  max-width: 380px;
  margin: 0;
}

.project-showcase__swiper {
  width: 100%;
  padding-bottom: 24px;
}

/* Swiper slides spacing and centering */
.project-showcase__swiper .swiper-slide {
  width: 820px;
  /* Card width on desktop */
  opacity: 0.3;
  filter: saturate(0.7);
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transform: scale(0.94);
  padding: 50px 0px 0px;
}

.project-showcase__swiper .swiper-slide-active {
  opacity: 1;
  filter: none;
  transform: scale(1.1) !important;
}

/* Card Visual styling */
.project-showcase__swiper-card {
  text-align: left;
  padding: 36px;
}

.project-card__media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 500px;
  width: 100%;
  margin-bottom: 20px;
}

.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-card__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  color: #ffffff;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  z-index: 2;
}

.project-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.project-card__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
}

.project-card__value {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.project-card__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin: 0 0 20px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 48px;
  /* Fixed height for 2 lines to align footer */
}

.project-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-divider);
  padding-top: 20px;
}

.project-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.project-card__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.project-card__icon {
  width: 16px;
  height: 16px;
  color: var(--color-text-secondary);
}

.project-card__divider {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  opacity: 0.4;
}

.project-card__cta {
  background-color: var(--color-text-primary);
  color: #ffffff;
  height: 48px;
  border-radius: 999px;
  padding: 0 28px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.project-card__cta:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

/* Controls row styling */
.project-showcase__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.project-showcase__nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  border: none;
  padding: 0;
}

.project-showcase__nav svg {
  width: 20px;
  height: 20px;
}

.project-showcase__nav--prev {
  background-color: #ffffff;
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
}

.project-showcase__nav--prev:hover {
  transform: scale(1.08);
  border-color: var(--color-text-primary);
  background-color: var(--color-bg-section);
}

.project-showcase__nav--next {
  background-color: var(--color-text-primary);
  color: #ffffff;
}

.project-showcase__nav--next:hover {
  transform: scale(1.08);
  background-color: var(--color-primary);
}

.project-showcase__pagination {
  display: flex;
  align-items: center;
  gap: 12px;
  width: auto !important;
  /* Override swiper defaults */
}

/* Custom Swiper Bullet Styling */
.project-showcase__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-border);
  opacity: 1;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.project-showcase__pagination .swiper-pagination-bullet-active {
  background-color: var(--color-text-primary);
  transform: scale(1.2);
}

/* Responsive Overrides */

/* @media query moved to responsive.css: @media (max-width: 1199px) */



/* @media query moved to responsive.css: @media (max-width: 1023px) */



/* @media query moved to responsive.css: @media (max-width: 767px) */


/* 10.3 BENTO COLLAGE GRID */
.proof-collage {
  background-color: #ffffff;
  padding: 120px 0;
}

.proof-collage__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  grid-template-rows: 250px 250px;
  gap: 20px;
  margin-top: 48px;
}

.proof-collage__tile {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
}

.proof-collage__tile--text {
  background-color: var(--color-secondary-tint);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: none;
  box-shadow: none;
}

.proof-collage__caption {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.proof-collage__stat {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.1;
  margin: 12px 0 4px;
}

.proof-collage__label {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.proof-collage__tile--photo {
  background-color: var(--color-divider);
}

.proof-collage__image-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.proof-collage__image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.proof-collage__tile--photo:hover .proof-collage__image-container img {
  transform: scale(1.04);
}

.proof-collage__tile--tall {
  grid-row: span 2;
  height: 100%;
}

.proof-collage__scrim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
}

.proof-collage__overlay-top {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
  color: #ffffff;
}

.proof-collage__overlay-top .stat-num {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.proof-collage__overlay-top .stat-lbl {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

.proof-collage__overlay-bottom {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.5;
}

/* ==========================================================================
   11. ADDITIONAL RESPONSIVE RULES
   ========================================================================== */

/* @media query moved to responsive.css: @media (max-width: 1199px) */



/* @media query moved to responsive.css: @media (max-width: 1023px) */



/* @media query moved to responsive.css: @media (max-width: 767px) */


/* ==========================================================================
   12. ROUND 2 NEW SECTIONS
   ========================================================================== */

/* 12.1 VISION & MISSION + STAT GRID (SECTION A) */
.company-intro {
  padding: 100px 0;
  background-color: #ffffff;
}

.company-intro__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-accent);
  margin-bottom: 24px;
}

.company-intro__eyebrow::before,
.company-intro__eyebrow::after {
  content: "";
  width: 20px;
  height: 1px;
  background-color: var(--color-accent);
}

.company-intro__heading {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text-primary);
  max-width: 620px;
  margin-bottom: 40px;
}

.company-intro__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.company-intro__pillar h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 12px;
}

.company-intro__pillar h3 svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-primary);
  stroke-width: 2.2px;
  fill: none;
}

.company-intro__pillar p {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-text-secondary);
}

.company-intro__media {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 24px;
  align-items: stretch;
}

.company-intro__photo {
  border-radius: 28px;
  overflow: hidden;
  clip-path: polygon(0 var(--radius-notch-cut), var(--radius-notch-cut) var(--radius-notch-cut), var(--radius-notch-cut) 0, 100% 0, 100% 100%, 0 100%);
  position: relative;
  background-color: var(--color-divider);
}

.company-intro__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-intro__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.company-intro__stat {
  background-color: var(--color-bg-section);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.company-intro__stat:not(.company-intro__stat--photo):hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.company-intro__stat--photo {
  padding: 0;
  overflow: hidden;
}

.company-intro__stat--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-intro__stat-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-secondary);
}

.company-intro__stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 16px 0;
  line-height: 1.1;
  display: block;
}

.company-intro__stat-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-text-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.company-intro__stat-arrow svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
  stroke-width: 2.5px;
  fill: none;
  transform: rotate(-45deg);
  transition: transform 0.25s ease;
}

.company-intro__stat:hover .company-intro__stat-arrow {
  background-color: var(--color-primary);
}

.company-intro__stat:hover .company-intro__stat-arrow svg {
  transform: rotate(0deg);
}

/* 12.2 WHY CHOOSE US CARDS (SECTION B) */
.why-us-cards {
  padding: 80px 0;
  background-color: var(--color-primary);
}

.why-us-cards__panel {
  padding: 56px;
}

.why-us-cards__header {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-bottom: 48px;
}

.why-us-cards__header h2 {
  color: white;
  font-size: 66px;
  font-weight: 300;
  line-height: 90px;
  margin-bottom: 26px;
}

.why-us-cards__header p {
  font-size: 26px;
  color: white;
  line-height: 1.6;
  font-weight: 300;
}

.why-us-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-us-cards__card {
  background-color: var(--color-badge-tint);
  border-radius: 20px;
  padding: 28px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us-cards__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.why-us-cards__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #ffffff;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.why-us-cards__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2px;
  fill: none;
}

.why-us-cards__card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.why-us-cards__card p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.why-us-cards__card-cta {
  height: 40px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  background-color: var(--color-primary);
  color: #ffffff;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease;
}

.why-us-cards__card-cta:hover {
  background-color: var(--color-secondary);
  color: #ffffff;
}

/* Active Inverted Card */
.why-us-cards__card--active {
  background-color: var(--color-primary);
  color: rgba(255, 255, 255, 0.9);
}

.why-us-cards__card--active h3 {
  color: #ffffff;
}

.why-us-cards__card--active p {
  color: rgba(255, 255, 255, 0.85);
}

.why-us-cards__card--active .why-us-cards__icon {
  background-color: #ffffff;
  color: var(--color-primary);
}

.why-us-cards__card--active .why-us-cards__card-cta {
  background-color: #ffffff;
  color: var(--color-primary);
}

.why-us-cards__card--active .why-us-cards__card-cta:hover {
  background-color: var(--color-badge-tint);
  color: var(--color-primary);
}

/* 12.3 PROVEN EXECUTION & CAPACITY (SECTION C) */
.execution-capacity {
  background: url(../images/hero.png) no-repeat center center;
  background-size: cover;
  position: relative;
}

.execution-capacity::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .6);
  z-index: 1;
  content: "";
}

.execution-capacity .container {
  position: relative;
  z-index: 3;
}

.execution-capacity__header {
  text-align: center;
  margin-bottom: 60px;
}

.execution-capacity__header h2 {
  font-size: 74px;
  line-height: 1.2;
  font-weight: 300;
  color: rgb(255, 255, 255);
  margin: 16px 0px;
  padding: 0px 10%;
}

.execution-capacity__header p {
  font-size: 17px;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.execution-capacity__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.execution-capacity__stat {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.execution-capacity__label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.execution-capacity__bullet {
  width: 6px;
  height: 6px;
  background-color: var(--color-primary);
  flex-shrink: 0;
  display: inline-block;
}

.execution-capacity__number {
  font-size: 38px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 12px 0;
  line-height: 1.2;
}

.execution-capacity__stat p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

/* ==========================================================================
   13. ADDITIONAL RESPONSIVE RULES FOR ROUND 2
   ========================================================================== */

/* @media query moved to responsive.css: @media (max-width: 1199px) */



/* @media query moved to responsive.css: @media (max-width: 767px) */


/* Tablet Horizontal Accordion Layout */

/* @media query moved to responsive.css: @media (min-width: 768px) and (max-width: 1023px) */


/* ==========================================================================
   14. PRELOADER COMPONENT
   ========================================================================== */
.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--color-footer-bg, #0A0E14);
}

.site-preloader__progress {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 4px;
  height: 90px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
}

.site-preloader__progress-track {
  display: block;
  width: 100%;
  height: 100%;
}

.site-preloader__progress-dot {
  position: absolute;
  top: 0;
  left: -3px;
  width: 10px;
  height: 10px;
  background-color: var(--color-accent, #B20000);
  border-radius: 50%;
  transform: translateY(0);
}

.site-preloader__center {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.site-preloader__logo {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0px;
}

.site-preloader__logo img {
  opacity: 0;
}

.site-preloader__icon {
  width: auto;
  height: clamp(40px, 6vw, 56px);
  max-width: 100%;
}

.site-preloader__text {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 2px;
  margin: 0;
  line-height: 1;
  opacity: 0;
}

.site-preloader__tagline {
  position: absolute;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 7vw, 90px);
  font-weight: 700;
  letter-spacing: 2px;
  color: #FFFFFF;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: center;
  pointer-events: none;
}

.site-preloader__word {
  display: inline-block;
  opacity: 0;
}

.site-preloader__word--accent {
  color: var(--color-accent, #B20000);
  font-weight: 700;
}

body.is-loading {
  overflow: hidden !important;
}

/* ==========================================================================
   15. STACKED PANEL TRANSITIONS (SECTION PINNING)
   ========================================================================== */
.pin-panel {
  position: relative;
  background-color: var(--color-bg-primary, #ffffff);
  z-index: 1;
  overflow: clip;
}

.pin-panel.pin-spacer {
  background-color: transparent !important;
}

.pin-panel__inner {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: inherit;
}

/* Background overrides for dark/photographic sections to prevent overlap transparency */
.hero.pin-panel {
  background-color: transparent;
}

.pin-panel.teaser-wrapper {
  background-color: #fff;
}

.execution-capacity.pin-panel {
  background-color: transparent;
}

.cta-wrapper.pin-panel {
  background-color: #0A0E14;
}

/* ==========================================================================
   16. SCROLL TO TOP PROGRESS BUTTON
   ========================================================================== */
.scroll-progress {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: var(--shadow-md);
  z-index: 10001;
  cursor: pointer;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.scroll-progress--active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-progress__ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  transform-origin: center;
}

.scroll-progress__ring path {
  fill: none;
  stroke-width: 4px;
}

.scroll-progress__track {
  stroke: var(--color-border);
  opacity: 0.3;
}

.scroll-progress__bar {
  stroke: var(--color-primary);
  stroke-linecap: round;
  transition: stroke-dashoffset 10ms linear;
}

.scroll-progress__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

/* Hover effects */
.scroll-progress:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.scroll-progress--active:hover {
  transform: scale(1.05) translateY(0);
}


/* @media query moved to responsive.css: @media (max-width: 767px) */


/* ==========================================================================
   17. FULL-SCREEN SITE OVERLAY MENU
   ========================================================================== */
.site-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  display: flex;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  /* transition handled entirely by GSAP to avoid conflicts */
}

/* Scroll lock when open */
body.menu-open {
  overflow: hidden !important;
}

/* Two panes layout */
.site-menu__pane {
  height: 100%;
  overflow-y: auto;
  padding: 60px 40px;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}

/* Contact Pane (28%) */
.site-menu__pane--contact {
  width: 28%;
  background-color: #ffffff;
  color: var(--color-text-primary, #1A1A1A);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--color-border);
}

.site-menu__pane--contact h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-primary);
  line-height: 1.2;
}

.site-menu__pane--contact p {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 40px;
}

.site-menu__pane--contact h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  margin-top: 24px;
  color: var(--color-text-primary);
}

.site-menu__pane--contact a:not(.btn) {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s ease;
}

.site-menu__pane--contact a:not(.btn):hover {
  color: var(--color-accent);
}

.site-menu__contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.site-menu__contact-links svg {
  width: 18px;
  height: 18px;
  stroke-width: 2px;
}

.site-menu__pane--contact .btn {
  margin-top: 32px;
  align-self: flex-start;
  padding: 14px 28px;
}

.site-menu__social {
  display: flex;
  gap: 16px;
  margin-top: auto;
  padding-top: 40px;
}

.site-menu__social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-bg-secondary, #f5f5f5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-primary) !important;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-menu__social a:hover {
  background-color: var(--color-primary) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.site-menu__social a svg {
  width: 20px;
  height: 20px;
}

/* Menu Pane (72%) */
.site-menu__pane--menu {
  width: 72%;
  background-color: var(--color-footer-bg, #0A0E14);
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.site-menu__header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 48px;
}

.site-menu__header h2 {
  font-size: 40px;
  font-weight: 700;
  margin: 0;
}

.site-menu__close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: none;
  color: #ffffff;
  font-size: 20px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.site-menu__close:hover {
  background-color: #ffffff;
  color: var(--color-footer-bg);
  border-color: #ffffff;
}

/* Grid Layout */
.site-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.site-menu__item {
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  color: #ffffff;
  cursor: pointer;
  display: block;
  text-decoration: none;
  width: 100%;
  transition: none !important;
  /* Disable global a tag transitions to prevent GSAP conflicts */
}

.site-menu__item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.site-menu__item h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}

.site-menu__arrow {
  font-size: 24px;
  color: var(--color-accent);
  transition: transform 0.2s ease;
}

.site-menu__item:hover .site-menu__arrow {
  transform: translateX(4px);
}

.site-menu__plus {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.site-menu__item p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin: 0;
}

/* Expandable lists styling */
.site-menu__sublist {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
}

.site-menu__sublist li {
  margin-bottom: 10px;
}

.site-menu__sublist li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease;
  display: block;
}

.site-menu__sublist li a:hover {
  color: var(--color-accent);
}

/* Banner Card styling */
.site-menu__banner {
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  transition: background-color 0.2s ease !important;
  /* Removed transform to prevent GSAP conflict */
  margin-top: auto;
}

.site-menu__banner:hover {
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.1);
}

.site-menu__banner span {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.site-menu__banner strong {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.site-menu__banner small {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.site-menu__banner-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform 0.2s ease;
}

.site-menu__banner:hover .site-menu__banner-arrow {
  transform: scale(1.05);
}

/* Responsive Media Queries */

/* @media query moved to responsive.css: @media (max-width: 1023px) */



/* @media query moved to responsive.css: @media (max-width: 767px) */


/* AMC Breakdown Section */
.amc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.amc-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background-color: var(--color-bg);
  border-radius: 20px;
  height: 100%;
}

.amc-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--color-divider);
  padding-bottom: 16px;
}

.amc-card__header h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
}

.amc-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.amc-card__list li {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  position: relative;
  padding-left: 20px;
}

.amc-card__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
}


/* @media query moved to responsive.css: @media (max-width: 1023px) */



/* @media query moved to responsive.css: @media (max-width: 767px) */


/* ==========================================================================
   14. FORM VALIDATION & STATE CLASSES
   ========================================================================== */
.field-error {
  display: block;
  color: #DC2626;
  font-size: 13px;
  margin-top: 6px;
}

.is-invalid {
  border-color: #DC2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-message {
  display: none;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 15px;
  margin-bottom: 20px;
}

.form-message--success,
.form-message--error {
  display: block;
}

.form-message--success {
  background: #ECFDF5;
  color: var(--color-success);
  border: 1px solid #A7F3D0;
}

.form-message--error {
  background: #FEF2F2;
  color: #DC2626;
  border: 1px solid #FECACA;
}

.btn.is-loading {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

.form-thank-you[hidden] {
  display: none;
}