/* ============ RESET & BASE ============ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: #000000;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main {
    flex: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    color: #000000;
    line-height: 1.15;
}

a {
    text-decoration: none;
    color: inherit;
}

ul { list-style: none; }

img { max-width: 100%; display: block; }

/* ============ UTILITIES ============ */
.max-w-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

@media (max-width: 767px) {
    body.menu-open { overflow: hidden; }
    .section-padding { padding: 48px 0; }
    .hero-content { padding-bottom: 60px !important; }
    .hero-title { font-size: 32px; }
    .hero-sub { font-size: 16px; }
    .callout-stat { font-size: 56px; min-width: auto; }
    .callout-body-text { font-size: 18px; }
    .impact-item { padding: 24px 16px; }
    .footer-grid { padding: 40px 0; }
    .content-split { gap: 24px; }
    .content-split h2 { font-size: 24px; }
    .beyond-section { background-attachment: scroll; }
    .svc-card { padding: 24px; }
    .beyond-card { padding: 24px; }
    .svc-grid { gap: 16px; }
    .beyond-grid { gap: 16px; }
    .nav-inner { padding: 0 16px; }
}

/* ============ DESIGN TOKENS ============ */
:root {
    --brand-primary: #c0392b;
    --pure-black: #000000;
    --pure-white: #ffffff;
    --light-border: #e5ebeb;
    --deep-navy: #111827;
    --muted-gray: #6e6e72;
    --off-white: #f7f7f7;
    --primary-mid: #a93226;
    --subtle-border: #d5d5dd;
}

/* ============ COLORS ============ */
.text-accent { color: var(--brand-primary); }
.text-body { color: #000000; }
.text-muted { color: var(--muted-gray); }
.text-white { color: #ffffff; }
.text-primary-dark { color: #000000; }

.bg-accent { background: var(--brand-primary); }
.bg-primary-dark { background: var(--deep-navy); }
.bg-primary-mid { background: var(--primary-mid); }
.bg-bg-light { background: var(--off-white); }
.bg-white { background: #ffffff; }

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: transparent;
    height: 72px;
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.navbar.navbar-solid {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.navbar-solid .nav-logo { color: #111827; }
.navbar-solid .nav-link, 
.navbar-solid .drop-trigger { color: rgba(17,24,39,0.75); }
.navbar-solid .nav-link:hover,
.navbar-solid .drop-trigger:hover { color: #111827; background: rgba(17,24,39,0.06); }
.navbar-solid .nav-active { color: var(--brand-primary) !important; }
.navbar-solid .menu-toggle { color: #111827; }

.nav-spacer {
    height: 72px;
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 0px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    color: #ffffff;
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
   margin-top: 20px;
   margin-left: -20px;
    height: 150px;
    width: auto;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 6px;
}

@media (min-width: 1024px) {
    .nav-links { display: flex; }
}

.nav-link,
.drop-trigger {
    font-size: 13px;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.3s ease, background 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 16px;
    color: rgba(255,255,255,0.8);
    border-radius: 9999px;
}

.nav-link:hover,
.drop-trigger:hover {
    color: #ffffff;
    background: rgba(255,255,255,0.08);
}

.nav-active {
    color: var(--brand-primary) !important;
}

.btn-accent {
    background: var(--brand-primary);
    color: #ffffff;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 9999px;
    transition: background 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.btn-accent:hover {
    background: var(--primary-mid);
}

/* Dropdown / Mega Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 620px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.18);
    padding: 24px;
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.mega-col .mega-heading {
    font-family: 'Sora', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--muted-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    display: block;
}

.mega-col a {
    display: flex;
    flex-direction: column;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    color: #000000;
    transition: background 0.2s;
    text-transform: none;
    letter-spacing: normal;
    border-radius: 10px;
    margin-bottom: 4px;
}

.mega-col a:hover {
    background: var(--off-white);
}

.mega-col a strong {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 2px;
}

.mega-col a span {
    font-size: 12px;
    color: var(--muted-gray);
    font-weight: 300;
}

.mega-featured {
    background: var(--off-white);
    border-radius: 12px;
    padding: 20px;
    margin-top: 16px;
    display: block;
    transition: background 0.2s;
}

.mega-featured:hover {
    background: rgba(192,57,43,0.06);
}

.mega-featured strong {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.mega-featured span {
    font-size: 12px;
    color: var(--muted-gray);
    font-weight: 300;
}

.mega-featured .arrow {
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    transition: gap 0.3s;
}

.mega-featured:hover .arrow {
    gap: 8px;
}

/* Mobile */
.menu-toggle {
    display: block;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
}

@media (min-width: 1024px) {
    .menu-toggle { display: none; }
}

.mobile-menu {
    display: none;
    background: var(--deep-navy);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 24px 40px;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    text-align: center;
}

.mobile-menu.open {
    display: block;
    animation: slideDown 0.25s ease-out;
}

.mobile-menu a {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    padding: 8px 0;
    transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--brand-primary); }

.mobile-menu .btn-accent { padding: 5px; }

.mobile-label {
    display: block;
    color: rgba(255,255,255,0.4);
    font-size: 12px;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 12px 0 4px;
}

.mobile-services-toggle {
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    color: rgba(255,255,255,0.4);
    font-size: 12px;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 12px 0 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.mobile-services-toggle.open {
    color: var(--brand-primary);
}

.mobile-services-toggle .chevron {
    transition: transform 0.25s ease;
}

.mobile-services-toggle.open .chevron {
    transform: rotate(180deg);
}

.mobile-services-list {
    display: none;
}

.mobile-services-list.open {
    display: block;
}

.mobile-services-list a {
    font-size: 14px;
    padding: 6px 0;
}

/* ============ BUTTONS - PILL ============ */
.btn-pill {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: none;
    cursor: pointer;
    border-radius: 9999px;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-arrow {
    display: inline-flex;
    margin-left: 8px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-pill:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--brand-primary);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--primary-mid);
}

.btn-secondary {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.3);
    color: #ffffff;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.5);
}

.btn-white {
    background: #ffffff;
    color: var(--brand-primary);
}

.btn-white:hover {
    background: var(--off-white);
}

.btn-outline-accent {
    background: transparent;
    border: 2px solid var(--brand-primary);
    color: var(--brand-primary);
}

.btn-outline-accent:hover {
    background: var(--brand-primary);
    color: #ffffff;
}

/* Legacy button compatibility */
.btn-primary:not(.btn-pill) {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: var(--brand-primary);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 0;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:not(.btn-pill):hover {
    background: var(--primary-mid);
}

.btn-secondary:not(.btn-pill) {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    border: 1.5px solid rgba(255,255,255,0.25);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 0;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.btn-secondary:not(.btn-pill):hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.4);
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 90vh;
    background: #000000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 40%, #000000 90%);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    width: 100%;
    padding: 80px 0 100px;
}

.hero-line {
    width: 48px;
    height: 3px;
    background: var(--brand-primary);
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'Sora', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    max-width: 42rem;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hero-title { font-size: 56px; }
}

@media (min-width: 1024px) {
    .hero-title { font-size: 72px; line-height: 80px; }
}

.hero-sub {
    color: rgba(255,255,255,0.55);
    font-size: 18px;
    font-weight: 300;
    font-family: 'DM Sans', sans-serif;
    max-width: 32rem;
    margin-top: 20px;
    line-height: 28px;
}

@media (min-width: 768px) {
    .hero-sub { font-size: 20px; line-height: 29px; }
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
    position: relative;
    min-height: 50vh;
    background: #000000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.page-hero .hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 50%, #000000 100%);
}

.page-hero .hero-content {
    padding: 60px 0 80px;
}

/* ============ SECTION LABEL ============ */
.section-label {
    color: var(--muted-gray);
    font-size: 12px;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-block;
    margin-bottom: 8px;
}

.section-label-light {
    color: rgba(255,255,255,0.4);
}

/* ============ SECTION HEAD ============ */
.section-head {
    margin-bottom: 48px;
}

.section-title {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    line-height: 1.15;
    max-width: 36rem;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .section-title { font-size: 32px; }
}

@media (min-width: 1024px) {
    .section-title { font-size: 40px; line-height: 48px; }
}

.section-title-light {
    color: #ffffff;
}

.section-body {
    color: #000000;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    max-width: 40rem;
    margin-top: 12px;
}

.section-body-light {
    color: rgba(255,255,255,0.55);
}

/* ============ SERVICE GRID 2x2 ============ */
.svc-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .svc-grid { grid-template-columns: 1fr 1fr; }
}

.svc-card {
    display: flex;
    flex-direction: column;
    position: relative;
    background: #111827;
    border: 1px solid var(--light-border);
    padding: 32px;
    transition: border-color 0.3s ease, transform 0.3s ease;
    overflow: hidden;
}

.svc-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    transition: transform 0.6s ease, opacity 0.4s ease;
}

.svc-card:hover .svc-card-bg {
    transform: scale(1.08);
    opacity: 0.5;
}

.svc-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.65) 100%);
    opacity: 0.65;
    transition: opacity 0.4s ease;
}

.svc-card:hover .svc-card-overlay {
    opacity: 0.75;
}

.svc-card > *:not(.svc-card-bg):not(.svc-card-overlay) {
    position: relative;
    z-index: 2;
}

.svc-card:hover {
    border-color: var(--brand-primary);
    transform: translateY(-4px);
    background: transparent;
}

.svc-card:hover p {
    color: rgba(255,255,255,0.9);
}

.svc-card:hover h3 {
    color: #ffffff;
}

.svc-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
    transition: background 0.3s;
}

.svc-card:hover .svc-card-icon {
    background: rgba(255,255,255,0.2);
}

.svc-card-icon svg {
    width: 28px;
    height: 28px;
}

.svc-card:hover .svc-card-icon {
    background: rgba(255,255,255,0.15);
}

.svc-card-icon svg {
    stroke: #ffffff !important;
}

.svc-card:hover .svc-card-link {
    color: #ffffff;
}

.svc-card-tag {
    font-size: 11px;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
    display: block;
}

.svc-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    transition: color 0.3s;
}

@media (min-width: 768px) {
    .svc-card h3 { font-size: 24px; }
}

.svc-card:hover h3 {
    color: var(--brand-primary);
}

.svc-card p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    margin-bottom: 20px;
    flex: 1;
}

.svc-card-link {
    color: var(--brand-primary);
    font-size: 13px;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.svc-card:hover .svc-card-link {
    gap: 10px;
}

/* ============ IMPACT / STATS SECTION ============ */
.impact-section {
    background: var(--deep-navy);
    padding: 80px 0;
}

@media (max-width: 767px) {
    .impact-section { padding: 48px 0; }
}

.impact-grid {
    display: grid;
    gap: 32px;
}

@media (min-width: 768px) {
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .impact-grid { grid-template-columns: repeat(4, 1fr); }
}

.impact-item {
    text-align: center;
    padding: 40px 32px;
}

.impact-num {
    font-family: 'Sora', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .impact-num { font-size: 64px; }
}

.impact-item h3 {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.impact-label {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    max-width: 24rem;
    margin: 0 auto;
}

/* ============ GRID HELPERS ============ */
.grid-2 { display: grid; gap: 32px; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid-3-lg { grid-template-columns: repeat(3, 1fr); } }

.grid-3 { display: grid; gap: 24px; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.grid-2-3 { display: grid; gap: 20px; }
@media (min-width: 768px) { .grid-2-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-2-3 { grid-template-columns: repeat(3, 1fr); } }

.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-5 { gap: 20px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }
.gap-10 { gap: 40px; }

.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-5 { margin-bottom: 20px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }
.mb-12 { margin-bottom: 48px; }
.mb-16 { margin-bottom: 64px; }

.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-xl { max-width: 36rem; }

/* ============ CARDS ============ */
.card {
    background: #ffffff;
    border: 1px solid var(--light-border);
    padding: 24px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.card:hover {
    border-color: var(--brand-primary);
    transform: translateY(-2px);
}

.card-bordered {
    border: 1px solid var(--light-border);
    padding: 20px;
    background: #ffffff;
}

/* ============ STEP CARD ============ */
.step-number {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--brand-primary);
    display: block;
    line-height: 1.1;
}

.step-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin: 12px 0 8px;
}

.step-card p {
    color: #000000;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
}

/* ============ ACCENT BORDER LEFT ============ */
.accent-left {
    border-left: 2px solid var(--brand-primary);
    padding-left: 20px;
}

.accent-left h3 {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 4px;
}

.accent-left p {
    color: #000000;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
}

/* ============ CTA SECTIONS ============ */
.cta-accent {
    position: relative;
    background: var(--deep-navy);
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
}

.cta-accent .hero-overlay {
    background: linear-gradient(180deg, rgba(17,24,39,0.88) 0%, rgba(0,0,0,0.95) 100%);
}

@media (max-width: 767px) {
    .cta-accent { padding: 48px 0; }
}

.cta-accent h2 {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .cta-accent h2 { font-size: 32px; line-height: 38px; }
}

.cta-accent p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    font-weight: 300;
    font-family: 'DM Sans', sans-serif;
    max-width: 36rem;
    margin: 0 auto 24px;
    line-height: 24px;
}

.cta-dark {
    background: var(--deep-navy);
    padding: 80px 0;
    text-align: center;
}

@media (max-width: 767px) {
    .cta-dark { padding: 48px 0; }
}

.cta-dark h2 {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .cta-dark h2 { font-size: 32px; line-height: 38px; }
}

.cta-dark p {
    color: rgba(255,255,255,0.55);
    font-size: 16px;
    font-weight: 300;
    font-family: 'DM Sans', sans-serif;
    max-width: 36rem;
    margin: 0 auto 24px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* Legacy CTA compatibility */
.cta-gold {
    background: var(--brand-primary);
    padding: 80px 0;
    text-align: center;
}

@media (max-width: 767px) {
    .cta-gold { padding: 48px 0; }
}

.cta-gold h2 {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .cta-gold h2 { font-size: 32px; line-height: 38px; }
}

.cta-gold p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    font-weight: 300;
    font-family: 'DM Sans', sans-serif;
    max-width: 36rem;
    margin: 0 auto 24px;
    line-height: 24px;
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: #000000;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: background 0.3s ease;
    border-radius: 9999px;
}

.btn-dark:hover {
    background: var(--brand-primary);
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: background 0.3s ease, color 0.3s ease;
    border-radius: 9999px;
}

.btn-outline-dark:hover {
    background: #ffffff;
    color: var(--brand-primary);
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    border: 2px solid var(--brand-primary);
    color: var(--brand-primary);
    font-size: 14px;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: background 0.3s ease, color 0.3s ease;
    border-radius: 9999px;
}

.btn-outline-light:hover {
    background: var(--brand-primary);
    color: #ffffff;
}

/* ============ GROUP STRIP ============ */
.group-strip {
    position: relative;
    background: var(--off-white);
    background-size: cover;
    background-position: center;
    padding: 64px 0;
    text-align: center;
    overflow: hidden;
}

.group-strip .hero-overlay {
    background: rgba(0,0,0,0.5);
}

.group-strip.dark-strip {
    background: #000000;
    color: #ffffff;
}

.group-strip.dark-strip p { color: rgba(255,255,255,0.6); }
.group-strip.dark-strip a { color: #ffffff; }
.group-strip.dark-strip a:hover { color: rgba(255,255,255,0.7); }

.group-strip p {
    color: var(--muted-gray);
    font-size: 14px;
    font-weight: 300;
    font-family: 'DM Sans', sans-serif;
    max-width: 36rem;
    margin: 0 auto;
    line-height: 22px;
}

.group-strip a {
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 14px;
    font-family: 'Sora', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: inline-block;
    margin-top: 12px;
}

.group-strip a:hover { color: var(--primary-mid); }

/* ============ FOOTER ============ */
.site-footer {
    background: var(--deep-navy);
}

.footer-border {
    height: 1px;
    background: var(--light-border);
    opacity: 0.1;
}

.footer-grid {
    display: grid;
    gap: 40px;
    padding: 64px 0;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.footer-heading {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-text {
    color: rgba(255,255,255,0.45);
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
}

.footer-small {
    color: rgba(255,255,255,0.3);
    font-size: 12px;
    margin-top: 16px;
}

.footer-label {
    color: var(--muted-gray);
    font-size: 12px;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    display: inline-block;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.45);
    font-size: 14px;
    font-weight: 300;
    font-family: 'DM Sans', sans-serif;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--brand-primary);
}

.footer-col p {
    color: rgba(255,255,255,0.45);
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    margin-bottom: 8px;
}

.footer-col a[href^="mailto"] {
    color: rgba(255,255,255,0.45);
    transition: color 0.2s;
}

.footer-col a[href^="mailto"]:hover { color: var(--brand-primary); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 24px 0;
    color: rgba(255,255,255,0.3);
    font-size: 12px;
    font-weight: 300;
}

@media (min-width: 768px) {
    .footer-bottom-inner { flex-direction: row; }
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255,255,255,0.3);
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--brand-primary); }

/* ============ CONTACT FORM ============ */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    color: #000000;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-group label .required {
    color: var(--brand-primary);
    margin-left: 4px;
}

.form-control {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid var(--light-border);
    font-size: 14px;
    font-weight: 300;
    font-family: 'DM Sans', sans-serif;
    color: #000000;
    outline: none;
    transition: border-color 0.3s ease;
    background: #ffffff;
    border-radius: 12px;
}

.form-control:focus {
    border-color: var(--brand-primary);
}

.form-control::placeholder {
    color: var(--muted-gray);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236e6e72' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-error {
    color: #EF4444;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

.form-success {
    background: #ffffff;
    border: 1px solid var(--light-border);
    padding: 48px;
    text-align: center;
    border-radius: 12px;
}

.form-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(192,57,43,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.form-success h3 {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
}

.form-success p {
    color: #000000;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    max-width: 28rem;
    margin: 0 auto;
}

/* Honeypot */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

/* ============ 404 PAGE ============ */
.page-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    text-align: center;
}

.page-404 .hero-line {
    margin: 0 auto 32px;
}

.page-404 h1 {
    font-family: 'Sora', sans-serif;
    font-size: 80px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
    line-height: 1;
}

@media (min-width: 768px) {
    .page-404 h1 { font-size: 120px; }
}

.page-404 p {
    color: var(--muted-gray);
    font-size: 16px;
    font-weight: 300;
    max-width: 24rem;
    margin: 0 auto 32px;
}

/* ============ DATA CALLOUT (Split Layout) ============ */
.callout-section {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

@media (max-width: 767px) {
    .callout-section { padding: 60px 0; }
}

.callout-split {
    display: flex;
    gap: 48px;
    align-items: start;
}

@media (max-width: 767px) {
    .callout-split { flex-direction: column; gap: 24px; }
}

.callout-stat {
    font-family: 'Sora', sans-serif;
    font-size: 80px;
    font-weight: 700;
    color: var(--brand-primary);
    line-height: 1;
    letter-spacing: -0.04em;
    flex: 0 0 auto;
    min-width: 160px;
}

@media (min-width: 768px) {
    .callout-stat { font-size: 120px; min-width: 200px; }
}

@media (min-width: 1024px) {
    .callout-stat { font-size: 160px; min-width: 240px; }
}

.callout-body {
    flex: 1;
    max-width: 640px;
    padding-top: 8px;
}

@media (max-width: 767px) {
    .callout-body { padding-top: 0; }
}

.callout-body-text {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    line-height: 1.25;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .callout-body-text { font-size: 28px; }
}

.callout-body-sub {
    color: var(--muted-gray);
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
}

/* ============ BEYOND BUSINESS (Triple Card) ============ */
.beyond-card {
    display: block;
    background: #ffffff;
    border: 1px solid var(--light-border);
    padding: 32px;
    transition: border-color 0.4s ease, transform 0.4s ease;
}

.beyond-card:hover {
    border-color: var(--brand-primary);
    transform: translateY(-6px);
}

.beyond-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(192,57,43,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.beyond-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.beyond-card:hover h3 {
    color: var(--brand-primary);
}

.beyond-card p {
    color: #000000;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    margin-bottom: 20px;
}

.beyond-link {
    color: var(--brand-primary);
    font-size: 13px;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.3s;
}

.beyond-card:hover .beyond-link {
    gap: 10px;
}

/* ============ BEYOND SECTION PARALLAX ============ */
.beyond-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.beyond-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17,24,39,0.88) 0%, rgba(17,24,39,0.95) 100%);
    z-index: 0;
}

.beyond-grid {
    display: grid;
    gap: 24px;
    will-change: transform;
}

@media (min-width: 768px) {
    .beyond-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============ CONTENT + IMAGE SPLIT ============ */
.content-split {
    display: grid;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .content-split { grid-template-columns: 1fr 1fr; }
}

.content-split-img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.content-split-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.content-split-body .section-label { margin-bottom: 0; }

.content-split-body h2 {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .content-split-body h2 { font-size: 32px; }
}

.content-split-body p {
    color: #000000;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
}

/* ============ LINK TRACKING (underline animation) ============ */
.track-link {
    display: inline-flex;
    align-items: center;
    position: relative;
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 14px;
    font-family: 'Sora', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding-bottom: 2px;
}

.track-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-primary);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.track-link:hover::after {
    width: 100%;
}

/* ============ CARD ZOOM HOVER ============ */
.zoom-card {
    overflow: hidden;
}

.zoom-card-img {
    overflow: hidden;
}

.zoom-card-img img,
.zoom-card-img svg {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.zoom-card:hover .zoom-card-img img,
.zoom-card:hover .zoom-card-img svg {
    transform: scale(1.08);
}

/* ============ PARALLAX SECTION ============ */
.parallax-section {
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.parallax-section .parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.9) 100%);
}

/* ============ COUNTER NUMBERS ============ */
.counter-num {
    display: inline-block;
}

/* ============ IMPROVED STAGGER ============ */
.stagger-fade > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-fade.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ============ ASYMMETRICAL GRID ============ */
.asym-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .asym-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .asym-grid .asym-wide {
        grid-column: 1 / -1;
    }
    .asym-grid .asym-tall {
        grid-row: span 2;
    }
}

.asym-card {
    display: block;
    background: #ffffff;
    border: 1px solid var(--light-border);
    padding: 32px;
    transition: border-color 0.3s, transform 0.3s;
}

.asym-card:hover {
    border-color: var(--brand-primary);
    transform: translateY(-4px);
}

.asym-card .section-label {
    margin-bottom: 4px;
}

.asym-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.asym-card:hover h3 {
    color: var(--brand-primary);
}

.asym-card p {
    color: #000000;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    margin-bottom: 16px;
}

/* ============ MISSION BLOCKQUOTE ============ */
.mission-block {
    position: relative;
    background: #000000;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
}

.mission-block .hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.75) 50%, #000000 100%);
}

.mission-block .section-label {
    color: var(--muted-gray);
}

.mission-block blockquote {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    max-width: 48rem;
    margin: 16px auto 0;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .mission-block blockquote { font-size: 24px; line-height: 29px; }
}

/* ============ PROGRESSIVE CARDS (DP World style) ============ */
.progressive-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .progressive-grid { grid-template-columns: repeat(3, 1fr); }
}

.prog-card {
    display: block;
    background: #ffffff;
    border: 1px solid var(--light-border);
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.prog-card:hover {
    border-color: var(--brand-primary);
    transform: translateY(-4px);
}

.prog-card-img {
    height: 200px;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.prog-card-img svg {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.prog-card:hover .prog-card-img svg {
    transform: scale(1.1);
}

.prog-card-body {
    padding: 24px;
}

.prog-card-body .section-label {
    margin-bottom: 4px;
}

.prog-card-body h3 {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    transition: color 0.3s;
    margin-bottom: 8px;
}

.prog-card:hover .prog-card-body h3 {
    color: var(--brand-primary);
}

.prog-card-body p {
    color: #000000;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    margin-bottom: 16px;
}

.prog-card-link {
    color: var(--brand-primary);
    font-size: 14px;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.prog-card:hover .prog-card-link,
.asym-card:hover .prog-card-link {
    gap: 10px;
}

/* ============ SCROLL REVEAL ============ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children */
.stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ============ KEYFRAMES ============ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============ BREADCRUMB ============ */
.breadcrumb {
    color: rgba(255,255,255,0.35);
    font-size: 12px;
    font-weight: 300;
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

/* ============ DASH LIST ============ */
.dash-list {
    list-style: none;
}

.dash-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    font-weight: 300;
    color: #000000;
    margin-bottom: 8px;
    line-height: 22px;
}

.dash-list li::before {
    content: "—";
    color: var(--brand-primary);
    flex-shrink: 0;
}

/* ============ QUICK LINKS (Contact) ============ */
.quick-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .quick-grid { grid-template-columns: repeat(3, 1fr); }
}

.quick-card {
    display: block;
    background: #ffffff;
    border: 1px solid var(--light-border);
    padding: 24px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.quick-card:hover {
    border-color: var(--brand-primary);
    transform: translateY(-4px);
}

.quick-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.quick-card p {
    color: #000000;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 16px;
    line-height: 22px;
}

.quick-card .arrow {
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 14px;
    font-family: 'Sora', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: gap 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.quick-card:hover .arrow {
    gap: 8px;
}

/* Map placeholder */
.map-placeholder {
    width: 100%;
    height: 250px;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--subtle-border);
    border-radius: 12px;
}

.map-placeholder span {
    color: var(--muted-gray);
    font-size: 12px;
    text-align: center;
    padding: 0 16px;
}

/* ============ CONTACT DETAILS ============ */
.contact-label {
    font-size: 12px;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    color: var(--muted-gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.contact-value {
    color: #000000;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
}

.contact-value a {
    color: var(--brand-primary);
    transition: color 0.2s;
}

.contact-value a:hover { color: var(--primary-mid); }

/* ============ HERO VIDEO BG (DP World style) ============ */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============ PARTNER BLOCK (DP World style) ============ */
.partner-block {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.partner-block-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.partner-block-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.9) 100%);
}

.partner-block-content {
    position: relative;
    width: 100%;
    padding: 120px 0 80px;
}

/* ============ TEXT CENTERED SECTION ============ */
.text-center { text-align: center; }
.text-center .section-title { margin: 0 auto; }
.text-center .section-body { margin: 12px auto 0; }
