/* ============================================================
   BROOKFIELD INDIA REIT — DIGITAL ANNUAL REPORT 2026
   Main Stylesheet
   ============================================================ */

/* ── Font Faces ─────────────────────────────────────────── */
@font-face {
    font-family: 'SeasonSans';
    src: url('../fonts/SeasonSans-Light.woff2') format('woff2'),
         url('../fonts/SeasonSans-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'SeasonSans';
    src: url('../fonts/SeasonSans-Medium.woff2') format('woff2'),
         url('../fonts/SeasonSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'SeasonSans';
    src: url('../fonts/SeasonSans-Bold.woff2') format('woff2'),
         url('../fonts/SeasonSans-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'SeasonSans';
    src: url('../fonts/SeasonSans-Heavy.woff2') format('woff2'),
         url('../fonts/SeasonSans-Heavy.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'SeasonMix';
    src: url('../fonts/SeasonMix-Light.woff2') format('woff2'),
         url('../fonts/SeasonMix-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'SeasonMix';
    src: url('../fonts/SeasonMix-Regular.woff2') format('woff2'),
         url('../fonts/SeasonMix-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'SeasonMix';
    src: url('../fonts/SeasonMix-Medium.woff2') format('woff2'),
         url('../fonts/SeasonMix-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'SeasonMix';
    src: url('../fonts/SeasonMix-SemiBold.woff2') format('woff2'),
         url('../fonts/SeasonMix-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'SeasonMix';
    src: url('../fonts/SeasonMix-Bold.woff2') format('woff2'),
         url('../fonts/SeasonMix-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

/* ── CSS Variables ──────────────────────────────────────── */
/* ============================================================
   PRELOADER
   ============================================================ */

#preloader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.preloader-logo {
    width: 180px;
    height: auto;
    animation: preloaderPulse 1.6s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.5; }
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(0, 37, 64, 0.12);
    overflow: hidden;
    border-radius: 2px;
}

.preloader-fill {
    height: 100%;
    width: 0%;
    background: #419AD9;
    border-radius: 2px;
    animation: preloaderLoad 1.8s ease forwards;
}

@keyframes preloaderLoad {
    0%   { width: 0%; }
    60%  { width: 75%; }
    100% { width: 100%; }
}

/* ============================================================
   CSS VARIABLES
   ============================================================ */

:root {
    --navy:      #002540;
    --navy-dark: #001a2e;
    --white:     #FFFFFF;
    --off-white: #F5F6FA;
    --border:    #E0E3EF;
    --font-sans: 'SeasonSans', sans-serif;
    --font-mix:  'SeasonMix', sans-serif;
    --header-h:  80px;

    /* ── Brand palette (Visual Identity Guidelines v5.0) ── */
    --brand-navy:      #002540;  /* primary — headings, dark grounds */
    --brand-accent:    #419AD9;  /* accent blue — big figures, accents */
    --brand-blue:      #0565B9;  /* mid blue — sub-heads / values */
    --brand-blue-mid:  #1D5A85;  /* breadcrumbs, links */
    --brand-blue-deep: #14486E;
    --brand-warmgray:  #F2F1EF;  /* warm gray 2 — tags/tile grounds */
    --brand-warmgray2: #E5E3DD;  /* warm gray — rules/borders */
    --brand-ink:       #3f4a52;  /* body text */
    --brand-label:     #5f6a70;  /* secondary labels */
    --brand-footnote:  #8a949b;  /* footnotes / notes */

    /* ── Type scale (single source of truth — follow throughout) ── */
    --fs-hero:       48px;    /* banner title (H2) — Season Mix 500, line-height 64px */
    --fs-eyebrow:    12px;    /* banner eyebrow (H1/subtitle) — Season Sans 400, UPPERCASE, line-height 24px, letter-spacing 2.4px */
    --fs-h2:         22px;    /* section heading — Season Sans 700 */
    --fs-h3:         18px;    /* sub-heading — Season Sans 700 */
    --fs-h4:         15.5px;  /* minor / inline heading — Season Sans 700 */
    --fs-lead:       18px;    /* intro lead paragraph — Season Sans 400 */
    --fs-body:       15.5px;  /* body copy — Season Sans 400 */
    --fs-stat:       34px;    /* big display figure — Season Mix 300 */
    --fs-stat-label: 14.5px;  /* label under a figure — Season Sans 400 */
    --fs-tag:        13px;    /* pill / tag eyebrow — Season Sans 600, UPPERCASE */
    --fs-breadcrumb: 13px;    /* breadcrumb — Season Sans 400 */
    --fs-note:       12px;    /* caption / italic note — Season Sans */
    --fs-footnote:   9px;     /* footnotes — Season Sans */
    --fs-table:      12px;    /* table header + body — Season Sans */
}

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-mix);
    font-size: 16px;
    color: var(--navy);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    /* Guard against stray horizontal scroll on mobile (clip keeps any
       position:sticky working; inside pages have none, but it's harmless). */
    overflow-x: clip;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}

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

/* ── Section heading accent line (shared) ───────────────── */
.hero-headline::after,
.perf-title::after,
.journey-heading::after,
.chairman-heading::after,
.ceo-heading::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: #419AD9;
    margin-top: 14px;
}

a:hover {
    text-decoration: none !important;
}

p {
    font-size: 16px;
    line-height: 26px;
}

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

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-h);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    z-index: 1000;
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

/* Default: white text + white logo on transparent header */
.site-header:not(.scrolled) .header-logo img {
    filter: brightness(0) invert(1);
}
.site-header:not(.scrolled) .header-nav > li > a {
    color: var(--white);
}
.site-header:not(.scrolled) .header-nav > li > a::after {
    background: var(--white);
}
.site-header:not(.scrolled) .header-download {
    color: var(--white);
    border-color: rgba(255,255,255,0.7);
}
.site-header:not(.scrolled) .header-download:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

/* Scrolled state — glass effect */
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom-color: rgba(224, 227, 239, 0.6);
    box-shadow: 0 2px 20px rgba(27, 43, 107, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ── Logo ───────────────────────────────────────────────── */
.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo img {
    height: 44px;
    width: auto;
}

/* ── Primary Nav ────────────────────────────────────────── */
.header-nav {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav > li {
    position: relative;
}

.header-nav > li > a {
    font-family: var(--font-mix);
    font-weight: 500;
    font-size: 14.5px;
    color: var(--navy);
    letter-spacing: 0.01em;
    padding: 4px 0;
    position: relative;
    transition: color 0.2s ease;
}

/* Animated underline on hover */
.header-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--navy);
    transition: width 0.25s ease;
}

.header-nav > li > a:hover {
    color: var(--navy-dark);
}

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

/* ── Download Button ────────────────────────────────────── */
.header-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border: 1.5px solid var(--navy);
    border-radius: 4px;
    color: var(--navy);
    font-family: var(--font-mix);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.03em;
    flex-shrink: 0;
    background: transparent;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    white-space: nowrap;
}

.header-download:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.header-download svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: stroke 0.25s ease;
}

/* ── Hamburger (mobile) ─────────────────────────────────── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.4s ease;
}

/* White bars over the transparent (not-scrolled) header — legible on the
   dark banner; switches to navy once the header goes solid on scroll. */
.site-header:not(.scrolled) .hamburger span {
    background: #ffffff;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav Overlay ─────────────────────────────────── */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: 100%;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 24px 40px 32px;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(27, 43, 107, 0.1);
}

.mobile-nav.open {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav ul li a {
    display: block;
    font-family: var(--font-mix);
    font-weight: 500;
    font-size: 16px;
    color: var(--navy);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.mobile-nav ul li:last-child a {
    border-bottom: none;
}

/* Hero goes behind fixed header — no wrapper offset needed */
#wrapper {
    padding-top: 0;
}

/*-----------Header Css End-------------*/

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Full-bleed background image */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Subtle gradient overlay — bottom-left so text is legible */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.00) 22%),
        linear-gradient(to top, rgba(17,29,78,0.72) 0%, rgba(17,29,78,0.25) 50%, rgba(17,29,78,0.00) 100%);
}

/* Text content — bottom-left aligned */
.hero-content {
    position: relative;
    z-index: 2;
    padding: var(--header-h) 80px 0;
    max-width: 860px;
}

.hero-report-label {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.04em;
    text-transform: none;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 16px;
}

.hero-headline {
    font-family: var(--font-mix);
    font-weight: 600;
    font-size: 45px;
    line-height: 1.08;
    color: var(--white);
    letter-spacing: -0.02em;
}

.hero-headline span {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-family: var(--font-mix);
}

/* Scroll indicator — bottom center */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    right: 80px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll span {
    font-family: var(--font-mix);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
    0%   { top: -100%; }
    100% { top: 100%; }
}

/* ============================================================
   PERFORMANCE HIGHLIGHTS SECTION
   ============================================================ */

.performance {
    background: var(--white);
    width: 100%;
    padding: 72px 0;
}

.perf-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Title */
.perf-title {
    font-family: var(--font-mix);
    font-weight: 600;
    font-size: 35px;
    color: #002540;
    line-height: 1.2;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

/* Horizontal divider */
.perf-divider {
    width: 100%;
    height: 1px;
    background: rgba(0, 37, 64, 0.2);
    margin-bottom: 28px;
}

/* Section label */
.perf-label {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #002540;
    margin-bottom: 28px;
}

/* Metrics row */
.perf-row {
    display: flex;
    align-items: stretch;
    margin-bottom: 0;
    padding-bottom: 36px;
}

/* Vertical separator between metrics */
.perf-separator {
    width: 1px;
    background: rgba(0, 37, 64, 0.2);
    flex-shrink: 0;
    margin: 0 40px;
}

/* Individual metric */
.perf-metric {
    flex: 1;
}

.perf-value {
    font-family: var(--font-mix);
    font-weight: 600;
    font-size: 36px;
    color: #419AD9;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.perf-sup {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0;
    vertical-align: middle;
    margin-left: 2px;
}

.perf-unit {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0;
}

.perf-desc {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #002540;
}

/* Footnotes */
.perf-footnotes {
    margin-top: 8px;
    border-top: 1px solid rgba(0, 37, 64, 0.12);
    padding-top: 20px;
}

.perf-footnotes p {
    font-family: var(--font-mix);
    font-weight: 400;
    font-size: 12px;
    font-style: italic;
    color: #002540;
    line-height: 1.8;
}

/* ============================================================
   OUR JOURNEY SECTION
   ============================================================ */

.journey {
    display: flex;
    width: 100%;
    height: 662px;
    overflow: hidden;
}

/* ── Left image panel ───────────────────────────────────── */
.journey-left {
    position: relative;
    width: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.journey-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.journey-left-overlay {
    display: none;
}

.journey-left-content {
    position: absolute;
    top: 50%;
    left: 64px;
    transform: translateY(-50%);
}

.journey-label {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 10px;
}

.journey-heading {
    font-family: var(--font-mix);
    font-weight: 600;
    font-size: 35px;
    line-height: 1.1;
    color: var(--white);
    letter-spacing: -0.01em;
}

/* ── Right content panel ────────────────────────────────── */
.journey-right {
    width: 50%;
    background: var(--white);
    padding: 60px 56px;
    display: block;
}

.journey-slides-wrap {
    display: block;
}

.journey-year {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 16px;
    color: #419AD9;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.journey-subtitle {
    font-family: var(--font-mix);
    font-weight: 600;
    font-size: 18px;
    color: #002540;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.journey-body {
    font-family: var(--font-mix);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.75;
    color: #002540;
    margin-bottom: 40px;
}

/* ── 2×2 metrics grid ───────────────────────────────────── */
.journey-metrics {
    display: grid;
    grid-template-columns: 0.7fr 1px 1.3fr;
    grid-template-rows: auto 1px auto;
    gap: 0;
}

.journey-metric {
    padding: 20px 0;
}

/* Right column metric offset */
.journey-metric.right-col { padding-left: 92px; }

/* ── Slider: slides wrapper ─────────────────────────────── */
.journey-slides-wrap {
    position: relative;
    flex: 1;
}

.journey-slide {
    display: none;
    flex-direction: column;
    animation: slideIn 0.4s ease;
}

.journey-slide.active {
    display: flex;
}

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

/* ── Controls row (dots left, arrows right) ─────────────── */
.journey-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
}

/* ── Arrows ─────────────────────────────────────────────── */
.journey-arrows {
    display: flex;
    gap: 10px;
}

.journey-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--navy);
    background: transparent;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
    flex-shrink: 0;
}

.journey-arrow:hover {
    background: var(--navy);
    color: var(--white);
}

.journey-arrow svg {
    width: 18px;
    height: 18px;
}

.journey-arrow:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

/* ── Dots ───────────────────────────────────────────────── */
.journey-dots {
    display: flex;
    gap: 8px;
    margin-top: 28px;
}

.journey-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 37, 64, 0.2);
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.journey-dot.active {
    background: var(--navy);
    transform: scale(1.3);
}

.journey-metric-sep {
    background: var(--navy);
    width: 1px;
    margin: 0 32px;
    opacity: 0.25;
}

.journey-metric-row-sep {
    grid-column: 1 / -1;
    height: 1px;
    background: var(--navy);
    opacity: 0.25;
}

.journey-value {
    font-family: var(--font-mix);
    font-weight: 600;
    font-size: 30px;
    color: #419AD9;
    font-size: 35px;
    line-height: 1.1;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.journey-desc {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #002540;
    line-height: 1.5;
}

/* ============================================================
   CHAIRMAN'S DESK SECTION
   ============================================================ */

.chairman {
    position: relative;
    width: 100%;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.chairman-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.chairman-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.chairman-overlay {
    display: none;
}

.chairman-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 60px 0;
    gap: 80px;
}

/* ── Left: photo ────────────────────────────────────────── */
.chairman-left {
    flex-shrink: 0;
    width: 588px;
    display: flex;
    align-items: flex-start;
    margin-bottom: -60px;
    margin-top: -60px;
    margin-left: -60px;
}

.chairman-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: top left;
}

/* ── Right: content ─────────────────────────────────────── */
.chairman-right {
    flex: 1;
    padding-bottom: 60px;
    padding-left: 80px;
}

.chairman-label {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 16px;
    color: #419AD9;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.chairman-heading {
    font-family: var(--font-mix);
    font-weight: 600;
    font-size: 35px;
    color: #002540;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}

.chairman-body {
    font-family: var(--font-mix);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.75;
    color: #002540;
    margin-bottom: 32px;
    max-width: 580px;
}

.chairman-author {
    margin-bottom: 4px;
}

.chairman-name {
    font-family: var(--font-mix);
    font-weight: 600;
    font-size: 18px;
    color: #419AD9;
    margin-bottom: 4px;
}

.chairman-title {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 14px;
    color: rgba(0, 37, 64, 0.7);
    line-height: 1.6;
}

/* placeholder — dark variant defined after base button */

/* ============================================================
   OUR PROPERTIES SECTION
   ============================================================ */

.properties {
    position: relative;
    width: 100%;
    height: 662px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* ── Background image ───────────────────────────────────── */
.properties-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.properties-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ── Content overlay ────────────────────────────────────── */
.properties-content {
    position: relative;
    z-index: 2;
    padding: 0 80px;
}

.properties-heading {
    font-family: var(--font-mix);
    font-weight: 600;
    font-size: 35px;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 0;
}

.properties-heading::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: #419AD9;
    margin-top: 14px;
}

/* ============================================================
   SUSTAINABILITY HIGHLIGHTS SECTION
   ============================================================ */

.sustain {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.sustain-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sustain-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.sustain-content {
    position: relative;
    z-index: 2;
    padding: 0 80px;
}

.sustain-heading {
    font-family: var(--font-mix);
    font-weight: 600;
    font-size: 35px;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0;
}

.sustain-heading::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: #419AD9;
    margin-top: 14px;
}

.sustain-patch {
    width: 100%;
    height: 262px;
    background: #002540;
    display: flex;
    align-items: center;
}

.sustain-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
    padding: 0 80px;
}

.sustain-stat {
    padding: 0 40px 0 0;
    border-right: 1px solid rgba(255,255,255,0.2);
    padding-right: 40px;
}

.sustain-stat:first-child {
    padding-left: 0;
}

.sustain-stat + .sustain-stat {
    padding-left: 40px;
}

.sustain-stat:last-child {
    border-right: none;
}

.sustain-stat-value {
    font-family: var(--font-mix);
    font-weight: 600;
    font-size: 28px;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 12px;
}

.sustain-stat-desc {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}

/* ============================================================
   PROPERTIES SLIDER SECTION
   ============================================================ */

.prop-slider {
    position: relative;
    width: 100%;
    height: 662px;
    overflow: hidden;
}

.prop-slides-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.prop-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.prop-slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* Auto-play progress bar */
.prop-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: #419AD9;
    z-index: 10;
    transition: width linear;
}

/* Dark gradient overlay — left heavy */
.prop-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0.12) 50%, rgba(0,0,0,0.00) 100%);
    z-index: 1;
}

/* Content block — bottom left */
.prop-slide-content {
    position: absolute;
    z-index: 2;
    left: 80px;
    bottom: 72px;
}

/* Property name */
.prop-name {
    font-family: var(--font-mix);
    font-weight: 700;
    font-size: 20px;
    color: var(--white);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 6px;
    line-height: 1.3;
}

.prop-name .prop-city {
    font-weight: 400;
    text-transform: none;
    font-size: 16px;
    letter-spacing: 0;
}

/* KEY STATISTICS label */
.prop-stats-label {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 12px;
    color: var(--white);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* Stats row */
.prop-stats-row {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.prop-stat {
    padding-right: 40px;
}

.prop-stat + .prop-stat {
    padding-left: 40px;
}

.prop-stat-sep {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.4);
    flex-shrink: 0;
    margin-top: 4px;
    margin-right: 40px;
}

.prop-stat-value {
    font-family: var(--font-mix);
    font-weight: 600;
    font-size: 26px;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 4px;
}

.prop-stat-desc {
    font-family: var(--font-sans);
    font-size: 11px;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.4;
}

/* Slide counter — bottom right */
.prop-counter {
    position: absolute;
    z-index: 2;
    right: 80px;
    bottom: 80px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.08em;
}

.prop-arrow {
    display: none;
}

/* ============================================================
   CAPITAL CARDS SLIDER SECTION
   ============================================================ */

.capital {
    width: 100%;
    background: var(--white);
    padding-top: 60px;
    position: relative;
}

.capital-track-wrap {
    overflow: hidden;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.capital-track {
    display: flex;
    gap: 16px;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.capital-card {
    position: relative;
    flex: 0 0 calc(50% - 8px);
    height: 600px;
    overflow: hidden;
    border-radius: 0;
}

.capital-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.capital-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.10) 50%, rgba(0,0,0,0.00) 100%);
}

.capital-card-content {
    position: absolute;
    z-index: 2;
    left: 40px;
    bottom: 40px;
}

.capital-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
    display: block;
    filter: brightness(0) invert(1);
}

.capital-label {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
}

.capital-heading {
    font-family: var(--font-mix);
    font-weight: 600;
    font-size: 35px;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.capital-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1.5px solid rgba(255,255,255,0.7);
    color: var(--white);
    transition: background 0.25s;
}

.capital-btn:hover {
    background: rgba(255,255,255,0.2);
}

/* Drag cursor */
.cap-drag-cursor {
    position: fixed;
    width: 72px;
    height: 72px;
    background: rgba(0,37,64,0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0;
}

.cap-drag-cursor.visible {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Hide default cursor over capital track */
.capital-track-wrap {
    cursor: none;
}

/* Side arrows */
.cap-side-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #002540;
    background: var(--white);
    color: #002540;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.25s, color 0.25s;
}

.cap-side-arrow:hover {
    background: #002540;
    color: var(--white);
}

.cap-side-prev {
    left: calc(40px - 22px);
}

.cap-side-next {
    right: calc(40px - 22px);
}

/* ============================================================
   TENANT BASE SECTION
   ============================================================ */

.tenant {
    display: flex;
    width: 100%;
    height: 662px;
    overflow: hidden;
}

.tenant-left {
    flex: 1;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 72px;
}

.tenant-label {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #419AD9;
    margin-bottom: 16px;
}

.tenant-heading {
    font-family: var(--font-mix);
    font-weight: 600;
    font-size: 35px;
    color: #002540;
    line-height: 1.2;
    margin-bottom: 0;
}

.tenant-heading::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: #419AD9;
    margin-top: 14px;
    margin-bottom: 24px;
}

.tenant-body {
    font-family: var(--font-sans);
    font-size: 16px;
    color: #002540;
    line-height: 1.7;
}

.tenant-right {
    width: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.tenant-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ============================================================
   AWARDS & ACCOLADES SECTION
   ============================================================ */

.awards {
    position: relative;
    width: 100%;
    height: 662px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.awards-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.awards-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.awards-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(0,0,0,0.60) 0%, rgba(0,0,0,0.30) 50%, rgba(0,0,0,0.00) 100%);
    z-index: 1;
}

.awards-content {
    position: relative;
    z-index: 2;
    padding: 0 80px;
    max-width: 560px;
    display: flex;
    flex-direction: column;
}

.awards-heading {
    font-family: var(--font-mix);
    font-weight: 600;
    font-size: 35px;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0;
}

.awards-heading::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: #419AD9;
    margin-top: 14px;
    margin-bottom: 24px;
}

.awards-body {
    font-family: var(--font-sans);
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}

/* ============================================================
   DOWNLOADS BAR
   ============================================================ */

.downloads-bar {
    width: 100%;
    margin-top: 60px;
    padding: 0 80px;
    box-sizing: border-box;
}

.downloads-inner {
    display: flex;
    align-items: stretch;
    gap: 16px;
}

.downloads-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 40px;
    text-decoration: none;
    gap: 16px;
    background: #419AD9;
    transition: background 0.2s ease;
}

.downloads-item:hover {
    background: #3488c2;
}

.downloads-item:hover .downloads-icon {
    background: #419AD9;
}

.downloads-item:hover .downloads-icon svg path {
    stroke: #fff;
}

.downloads-label {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 15px;
    color: var(--white);
    line-height: 1.4;
}

.downloads-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.50);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.downloads-icon svg path {
    stroke: var(--white);
}

.downloads-sep {
    display: none;
    width: 1px;
    height: 60px;
    background: #419AD9;
    flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    background: #002540;
    width: 100%;
    margin-top: 60px;
}

.footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 60px 40px 40px;
    box-sizing: border-box;
}

/* Top bar */
.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo-text {
    font-family: var(--font-mix);
    font-weight: 700;
    font-size: 32px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.footer-logo-sub {
    font-family: var(--font-mix);
    font-weight: 300;
    font-size: 14px;
    color: rgba(255,255,255,0.70);
    letter-spacing: 0.04em;
}

.footer-download-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,0.60);
    color: var(--white);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 24px;
    transition: border-color 0.2s, background 0.2s;
}

.footer-download-btn:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--white);
    color: var(--white);
}

/* Divider */
.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.20);
    margin-bottom: 40px;
}

/* Nav grid */
.footer-nav {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1.25fr 1.15fr;
    gap: 0;
    margin-bottom: 40px;
}

.footer-group + .footer-group {
    margin-top: 40px;
}

.footer-col {
    padding: 0 40px;
    border-left: 1px solid rgba(255,255,255,0.20);
}

.footer-col:first-child {
    padding-left: 0;
    border-left: none;
}

.footer-col-heading {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    font-family: var(--font-sans);
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.2s;
}

.footer-links li a:hover {
    color: #419AD9;
}

/* Bottom */
.footer-bottom {
    padding-top: 4px;
}

.footer-copy {
    font-family: var(--font-sans);
    font-size: 12px;
    color: rgba(255,255,255,0.45);
}

/* ============================================================
   GOVERNANCE SECTION
   ============================================================ */

.governance {
    position: relative;
    width: 100%;
    height: 662px;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 60px;
}

.governance-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.governance-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.governance-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.20) 55%, rgba(0,0,0,0.00) 100%);
    z-index: 1;
}

.governance-content {
    position: relative;
    z-index: 2;
    padding: 0 80px;
    max-width: 600px;
}

.governance-label {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
}

.governance-heading {
    font-family: var(--font-mix);
    font-weight: 600;
    font-size: 35px;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0;
}

.governance-heading::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: #419AD9;
    margin-top: 14px;
    margin-bottom: 28px;
}

.governance-snapshot {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.governance-stats {
    display: flex;
    gap: 60px;
    margin-bottom: 0;
}

.governance-stat-value {
    font-family: var(--font-mix);
    font-weight: 600;
    font-size: 52px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.governance-stat-desc {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
}

/* ============================================================
   STAKEHOLDER ENGAGEMENT SECTION
   ============================================================ */

.stakeholder {
    width: 100%;
    overflow: hidden;
    background: var(--white);
}

.stakeholder-slides {
    position: relative;
    width: 100%;
    height: 662px;
}

.stakeholder-slide {
    display: none;
    width: 100%;
    height: 100%;
    flex-direction: row;
    animation: sthSlideIn 0.5s ease;
}

.stakeholder-slide.active {
    display: flex;
}

@keyframes sthSlideIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.stakeholder-left {
    width: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.stakeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border: none;
    outline: none;
    vertical-align: top;
}

.stakeholder-right {
    flex: 1;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 72px;
}

/* Navigation bar */
.stakeholder-nav {
    display: flex;
    align-items: center;
    margin-top: 40px;
    width: 100%;
}

.stakeholder-arrows {
    margin-left: auto;
}

.stakeholder-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sth-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0,37,64,0.2);
    cursor: pointer;
    transition: background 0.3s;
}

.sth-dot.active {
    background: #002540;
}

.stakeholder-arrows {
    display: flex;
    gap: 12px;
}

.sth-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #002540;
    background: transparent;
    color: #002540;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
}

.sth-arrow:hover {
    background: #002540;
    color: var(--white);
}

.stakeholder-label {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #419AD9;
    margin-bottom: 16px;
}

.stakeholder-heading {
    font-family: var(--font-mix);
    font-weight: 600;
    font-size: 35px;
    color: #002540;
    line-height: 1.2;
    margin-bottom: 0;
}

.stakeholder-heading::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: #419AD9;
    margin-top: 14px;
    margin-bottom: 24px;
}

.stakeholder-body {
    font-family: var(--font-sans);
    font-size: 16px;
    color: #002540;
    line-height: 1.7;
    max-width: 460px;
}

/* ============================================================
   MANAGEMENT DISCUSSION & ANALYSIS SECTION
   ============================================================ */

.mda {
    display: flex;
    width: 100%;
    height: 662px;
    overflow: hidden;
}

.mda-left {
    width: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.mda-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.mda-right {
    flex: 1;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 72px;
}

.mda-heading {
    font-family: var(--font-mix);
    font-weight: 600;
    font-size: 35px;
    color: #002540;
    line-height: 1.2;
    margin-bottom: 0;
}

.mda-heading::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: #419AD9;
    margin-top: 14px;
    margin-bottom: 24px;
}

.mda-body {
    font-family: var(--font-sans);
    font-size: 18px;
    color: #002540;
    line-height: 1.7;
    opacity: 0.85;
}

/* ============================================================
   CEO SECTION
   ============================================================ */

.ceo {
    position: relative;
    width: 100%;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ceo-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ceo-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.ceo-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 60px 0;
    gap: 80px;
}

/* ── Left: content ──────────────────────────────────────── */
.ceo-left {
    flex: 1;
    padding-bottom: 60px;
    margin-left: -50px;
}

.ceo-label {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 16px;
    color: #419AD9;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.ceo-heading {
    font-family: var(--font-mix);
    font-weight: 600;
    font-size: 35px;
    color: #002540;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}

.ceo-body {
    font-family: var(--font-mix);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.75;
    color: #002540;
    margin-bottom: 32px;
    max-width: 520px;
}

.ceo-author {
    margin-bottom: 4px;
}

.ceo-name {
    font-family: var(--font-mix);
    font-weight: 600;
    font-size: 18px;
    color: #419AD9;
    margin-bottom: 4px;
}

.ceo-title {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 14px;
    color: rgba(0, 37, 64, 0.7);
    line-height: 1.6;
}

/* ── Right: photo ───────────────────────────────────────── */
.ceo-right {
    flex-shrink: 0;
    width: 588px;
    display: flex;
    align-items: flex-start;
    margin-bottom: -60px;
    margin-top: -60px;
    margin-right: -60px;
}

.ceo-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: top right;
}

/* ============================================================
   OUTLINE BUTTON (rectangular, border style)
   ============================================================ */

.outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 12px 18px;
    min-width: 200px;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    color: var(--white);
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
}

/* Fill overlay on hover */
.outline-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.outline-btn:hover::before {
    transform: scaleX(1);
}

.outline-btn:hover {
    color: var(--navy);
    border-color: var(--white);
}

.outline-btn-text {
    font-family: var(--font-mix);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}

.outline-btn-arrow {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.outline-btn-arrow svg {
    width: 18px;
    height: 18px;
}

/* ── Dark variant (navy border + text, white fill on hover) */
.outline-btn.outline-btn--dark {
    border-color: #002540;
    color: #002540;
}

.outline-btn.outline-btn--dark::before {
    background: #002540;
}

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

/* ============================================================
   MOTION BUTTON
   ============================================================ */

.motion-btn {
    position: relative;
    display: inline-block;
    width: 200px;
    border-radius: 100px;
    border: none;
    background: var(--white);
    cursor: pointer;
    padding: 4px;
    outline: none;
    text-decoration: none !important;
}

/* Block circle — sits in normal flow, expands width on hover */
.motion-btn .btn-circle {
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 100px;
    background: var(--navy);
    overflow: hidden;
    margin: 0;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.motion-btn:hover .btn-circle {
    width: 100%;
}

/* Arrow icon — floats over the circle */
.motion-btn .btn-icon {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translate(0, -50%);
    z-index: 1;
    display: flex;
    align-items: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.motion-btn:hover .btn-icon {
    transform: translate(6px, -50%);
}

.motion-btn .btn-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Label text — absolutely centered, shifts right slightly to clear icon */
.motion-btn .btn-label {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: 12px;
    transform: translate(-50%, -50%);
    font-family: var(--font-mix);
    font-weight: 500;
    font-size: 16px;
    color: var(--navy);
    white-space: nowrap;
    z-index: 1;
    transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.01em;
    text-align: center;
}

.motion-btn:hover .btn-label {
    color: var(--white);
}

/* ============================================================
   SITE-WIDE MEGA MENU (ported from home.css so inside pages
   get the same full-screen hover menu as the homepage)
   ============================================================ */
/* Header tweaks so all 6 items fit and hover zones stay gap-free */
.header-inner { max-width: 1580px; gap: 24px; }
.header-nav { gap: 0; }
.header-nav > li {
    position: static;
    height: var(--header-h);
    display: flex;
    align-items: center;
    padding: 0 13px;
}
.header-nav > li > a { font-size: 14px; white-space: nowrap; }

/* Mega full-screen menu (slides down from the top on hover) */
.mega {
    position: fixed;
    left: 0; right: 0;
    top: var(--header-h);
    height: calc(100vh - var(--header-h));
    background: #ffffff;
    box-shadow: 0 30px 60px rgba(0, 37, 64, 0.18);
    border-top: 1px solid #e6e9f0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-100%);
    transition: opacity 0.4s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.55s;
    z-index: 990;
    overflow-y: auto;
}
.has-mega:hover .mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.header-nav:hover .mega {
    transform: translateY(0);
    transition: opacity 0.22s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.22s;
}
.site-header:has(.has-mega:hover) {
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: rgba(224, 227, 239, 0.6);
    box-shadow: 0 2px 20px rgba(27, 43, 107, 0.08);
}
.site-header:has(.has-mega:hover) .header-logo img { filter: none; }
.site-header:has(.has-mega:hover) .header-nav > li > a { color: var(--navy); }
.site-header:has(.has-mega:hover) .header-nav > li > a::after { background: var(--navy); }
.site-header:has(.has-mega:hover) .header-download {
    color: var(--navy);
    border-color: rgba(0, 37, 64, 0.3);
}
.mega-inner {
    max-width: 1280px;
    margin: 0 auto;
    min-height: 100%;
    box-sizing: border-box;
    padding: 44px 40px 48px;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr) 380px;
    gap: 64px;
    align-items: start;
}
.mega-title-col { padding-top: 4px; }
.mega-title {
    font-family: var(--font-mix);
    font-weight: 500;
    font-size: 30px;
    line-height: 1.18;
    color: #002540;
    margin: 0;
}
.mega-title-cap {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #419AD9;
    margin: 12px 0 0;
}
.mega-img-col { align-self: start; }
.mega-img-col img { width: 100%; height: 260px; object-fit: cover; display: block; }
.mega-links { list-style: none; margin: 0; padding: 0; align-self: start; }
.mega-links li { margin: 0; }
.mega-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.35;
    color: rgb(0 37 64);
    padding: 9px 0;
    transition: color 0.2s ease, padding-left 0.2s ease;
}
.mega-links a span { flex: 1; }
.mega-links a:hover { color: #419AD9; padding-left: 6px; }
.mega-arrow { flex-shrink: 0; color: rgb(0 37 64); opacity: 1; transition: transform 0.2s ease; }
.mega-links a:hover .mega-arrow { color: #419AD9; transform: translateX(4px); }
@media (max-width: 991px) {
    .mega { display: none !important; }

    /* Header → hamburger. Without this the inside pages had no working
       nav on mobile: the mega is hidden but the desktop nav stayed and
       the hamburger never appeared. */
    .header-nav, .header-download { display: none !important; }
    .hamburger { display: flex !important; }

    /* Footer: stack the 4-column grid so it doesn't overflow/cramp. */
    .footer-nav { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
    .footer-col { padding: 0; border-left: none; }
    .footer-col:first-child { padding-left: 0; }
    .footer-top { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 575px) {
    .footer-nav { grid-template-columns: 1fr; gap: 30px; }
}
/* ── Mobile nav accordion (native <details>) ──────────── */
.mobile-nav { max-height: calc(100vh - var(--header-h)); overflow-y: auto; -webkit-overflow-scrolling: touch; }
.m-acc-item { border-bottom: 1px solid var(--border); }
.m-acc-head {
    list-style: none;
    display: flex; align-items: center; justify-content: space-between;
    font-family: var(--font-mix); font-weight: 500; font-size: 16px;
    color: var(--navy); padding: 15px 0; cursor: pointer; -webkit-user-select: none; user-select: none;
}
.m-acc-head::-webkit-details-marker { display: none; }
.m-acc-head::after {
    content: ''; width: 9px; height: 9px; flex-shrink: 0; margin-right: 6px;
    border-right: 2px solid var(--navy); border-bottom: 2px solid var(--navy);
    transform: rotate(45deg); transition: transform 0.25s ease;
}
.m-acc-item[open] > .m-acc-head::after { transform: rotate(-135deg); }
.m-acc-panel { display: flex; flex-direction: column; padding: 2px 0 14px; }
.m-acc-panel a {
    font-family: var(--font-sans); font-weight: 400; font-size: 14px;
    color: rgb(0 37 64); text-decoration: none; padding: 9px 0 9px 14px; line-height: 1.4;
}
.m-acc-panel a:hover { color: var(--navy); }
