:root {
  --navy: #06152f;
  --blue: #0a428f;
  --blue-bright: #0e5fc0;
  --gold: #d6c814;
  --lime: #c9d916;
  --ice: #eff5ff;
  --ink: #091124;
  --muted: #687185;
  --white: #fff;
  --line: #dfe5ef;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(6, 21, 47, .12);
  --site-header-height: 105px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--site-header-height) + 16px); }
body { margin: 0; font-family: "Poppins", sans-serif; color: var(--ink); background: #fff; line-height: 1.5; }
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 105px 0; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, .brand-name { font-family: "Poppins", sans-serif; }
h2 { margin-bottom: 0; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1.06; letter-spacing: -.045em; text-transform: uppercase; }
.kicker { display: inline-block; margin-bottom: 20px; color: var(--blue); font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; border-bottom: 2px solid currentColor; }
.kicker.light { color: #fff; opacity: .85; }
.micro-label { margin-bottom: 12px; color: var(--muted); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 24px; border: 0; border-radius: 999px; font-weight: 700; transition: transform .25s, box-shadow .25s, background .25s; }
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(6,21,47,.2); }
.button-gradient { color: #fff; background: linear-gradient(100deg, var(--blue) 0%, var(--blue) 45%, var(--gold) 100%); }
.button-light { color: var(--ink); background: #fff; }
.button-outline { color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.55); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.header-cta { gap: 11px; }
.header-cta svg { width: 20px; height: 20px; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s ease; }
.header-cta:hover svg { transform: translateX(2px); }

.site-header { position: fixed; z-index: 20; top: 0; left: 0; width: 100%; height: 105px; display: flex; align-items: center; gap: 28px; padding: 0 max(76px, calc((100vw - 1190px) / 2)); color: #fff; background: linear-gradient(90deg, #123d83 0%, #254f72 35%, #737d3f 68%, #d5ca06 100%); transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease; }
.site-header.is-scrolled { background: linear-gradient(90deg, rgba(18,61,131,.97) 0%, rgba(37,79,114,.97) 35%, rgba(115,125,63,.97) 68%, rgba(213,202,6,.97) 100%); box-shadow: 0 10px 28px rgba(6,21,47,.18); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.header-logo { position: relative; isolation: isolate; display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 84px; height: 84px; padding: 7px; border-radius: 50%; }
.header-logo img { position: relative; z-index: 1; display: block; width: 100%; height: 100%; object-fit: contain; }
.header-brand-name { flex-shrink: 0; color: #fff; font-size: 1.35rem; font-weight: 800; letter-spacing: .055em; line-height: 1; text-shadow: 0 2px 10px rgba(6, 21, 47, .28); white-space: nowrap; }
.header-brand-name,
.mobile-header-copy strong { color: transparent; background: linear-gradient(105deg, #fff 0%, #fff 38%, #ffe95d 49%, #fff 60%, #fff 100%); background-size: 260% 100%; background-position: 120% center; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: brandNameShimmer 5.4s ease-in-out infinite; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; border: 2px solid var(--gold); border-radius: 50%; color: var(--gold); font: 800 1rem/1 "Poppins"; }
.brand-name { font-size: 1.25rem; font-weight: 800; letter-spacing: -.03em; }
.brand-name span { color: var(--gold); }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-left: auto; }
.main-nav a,
.nav-dropdown-trigger { position: relative; flex-shrink: 0; font-size: 1rem; font-weight: 600; white-space: nowrap; }
.main-nav a::after,
.nav-dropdown-trigger::after { content: ""; position: absolute; bottom: -8px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width .25s; }
.main-nav a:hover::after,
.nav-dropdown-trigger:hover::after,
.main-nav .active-page::after { width: 100%; }
.nav-dropdown { position: relative; flex-shrink: 0; }
.nav-dropdown-trigger { display: inline-flex; align-items: center; gap: 7px; padding: 0; border: 0; color: inherit; background: transparent; }
.nav-chevron { width: 7px; height: 7px; margin-top: -3px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform .22s ease; }
.nav-dropdown-menu { position: absolute; top: calc(100% + 15px); left: 50%; min-width: 200px; padding: 8px; border: 1px solid rgba(9, 17, 36, .09); border-radius: 14px; color: var(--ink); background: #fff; box-shadow: 0 18px 42px rgba(6, 21, 47, .2); opacity: 0; visibility: hidden; pointer-events: none; transform: translate(-50%, -8px); transition: opacity .2s ease, visibility .2s ease, transform .2s ease; }
.nav-dropdown-menu::before { content: ""; position: absolute; right: 0; bottom: 100%; left: 0; height: 16px; }
.nav-dropdown-menu a { display: block; padding: 10px 12px; border-radius: 9px; font-size: .9rem; transition: color .2s ease, background-color .2s ease; }
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible,
.nav-dropdown-menu a[aria-current="page"] { color: var(--blue); background: #eef4ff; }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.nav-dropdown:hover .nav-chevron,
.nav-dropdown:focus-within .nav-chevron { transform: translateY(3px) rotate(225deg); }
.nav-dropdown-trigger:focus-visible { outline: 3px solid rgba(244, 216, 23, .72); outline-offset: 6px; }
.main-nav .home-link { display: grid; place-items: center; width: 28px; height: 28px; margin-right: 2px; border-radius: 50%; color: #123d83; background: #d8c800; }
.main-nav .home-link::after { display: none; }
.home-link svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.header-socials { display: flex; align-items: center; gap: 5px; flex-shrink: 0; height: 26px; }
.header-socials a { display: grid; place-items: center; width: 24px; height: 24px; overflow: hidden; border-radius: 50%; color: #fff; transition: transform .2s, box-shadow .2s; }
.header-socials a:hover { transform: translateY(-2px); box-shadow: 0 5px 10px rgba(6,21,47,.25); }
.header-socials svg { width: 100%; height: 100%; }
.social-facebook { background: #1877f2; }
.social-facebook svg { fill: #fff; }
.social-instagram { background: radial-gradient(circle at 32% 100%, #fed373 0 22%, #f15245 38%, #d92e7f 58%, #9b36b7 78%, #515bd4 100%); }
.social-instagram svg { fill: none; stroke: #fff; stroke-width: 1.65; }
.social-instagram .dot { fill: #fff; stroke: none; }
.social-whatsapp { background: #18c56e; }
.social-whatsapp svg { width: 18px; height: 18px; fill: #fff; }
.header-cta { min-height: 62px; padding-inline: 27px; border-radius: 999px; color: #151515; font-size: .93rem; font-weight: 500; box-shadow: 0 10px 12px rgba(1, 17, 40, .28); white-space: nowrap; }
.menu-toggle { display: none; margin-left: auto; padding: 8px; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 25px; height: 2px; margin: 5px; background: #fff; }

.hero { position: relative; height: min(640px, calc(100vh - 40px)); min-height: 560px; display: flex; align-items: center; overflow: hidden; color: #fff; background: #06152f; }
.hero-slider { position: absolute; z-index: 0; inset: 0; overflow: hidden; }
.hero-slide { position: absolute; inset: -3%; background-position: center center; background-size: cover; background-repeat: no-repeat; opacity: 0; transition: opacity 1.5s ease-in-out; will-change: transform, opacity; animation: heroImageMotion 16s ease-in-out infinite alternate; pointer-events: none; }
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide-1 { background-image: url('assets/hero-image-01.jpg'); }
.hero-slide-2 { background-image: url('assets/hero-image-02.jpg'); }
.hero-slide-3 { background-image: url('assets/hero-image-03.jpg'); }
.hero-slide-4 { background-image: url('assets/hero-image-04.jpg'); }
.hero-slide-5 { background-image: url('assets/hero-image-05.jpg'); }
.hero-slide-6 { background-image: url('assets/hero-image-06.jpg'); }
.hero::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(3,25,61,.93) 0%, rgba(3,31,73,.68) 48%, rgba(3,25,61,.1) 80%); pointer-events: none; }

@keyframes heroImageMotion {
  0% { transform: scale(1.02) translate3d(0, 0, 0); }
  50% { transform: scale(1.075) translate3d(-1.2%, -.6%, 0); }
  100% { transform: scale(1.11) translate3d(1%, .5%, 0); }
}

.hero-slider-controls { position: absolute; z-index: 4; bottom: 32px; right: max(28px, calc((100vw - 1180px) / 2)); display: flex; align-items: center; gap: 12px; }
.hero-slider-arrow { width: 38px; height: 38px; border-radius: 50%; background: rgba(6, 21, 47, 0.55); border: 1px solid rgba(255, 255, 255, 0.25); color: #fff; font-size: 1rem; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); transition: all 0.3s ease; }
.hero-slider-arrow:hover { background: #f3d61b; border-color: #f3d61b; color: #06152f; transform: translateY(-2px); }
.hero-slider-dots { display: flex; gap: 8px; align-items: center; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.35); border: 1px solid rgba(255, 255, 255, 0.2); padding: 0; cursor: pointer; transition: all 0.3s ease; }
.hero-dot.active { width: 30px; border-radius: 5px; background: #f3d61b; border-color: #f3d61b; }

.hero-shade { position: absolute; z-index: 2; inset: auto -5% -40% auto; width: 55%; height: 85%; border-radius: 50%; background: rgba(212,202,19,.18); filter: blur(80px); }
.hero-content { position: relative; z-index: 3; padding-top: 105px; }
.eyebrow { margin-bottom: 20px; font-size: .83rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow span { margin: 0 6px; }
.gold { color: #f3d61b; }

.hero-text-slider { position: relative; width: 100%; }
.hero-text-slide { position: absolute; top: 0; left: 0; width: 100%; opacity: 0; visibility: hidden; transform: translateY(16px); transition: opacity 0.7s ease, transform 0.7s ease, visibility 0.7s ease; pointer-events: none; }
.hero-text-slide.active { position: relative; opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.hero h1 { max-width: 980px; margin-bottom: 24px; font-size: clamp(3rem, 5.5vw, 5.2rem); line-height: .98; letter-spacing: -.05em; text-transform: uppercase; }
.hero h1 span { font-weight: 500; display: inline-block; }
.hero-copy { max-width: 650px; margin-bottom: 34px; color: rgba(255,255,255,.83); font-size: 1.15rem; line-height: 1.55; }
.hero-actions { display: flex; gap: 12px; }
.hero-stat { position: absolute; z-index: 3; right: max(28px, calc((100vw - 1180px) / 2)); bottom: 38px; display: grid; grid-template-columns: auto auto; gap: 0 10px; align-items: end; color: rgba(255,255,255,.7); font-size: .67rem; letter-spacing: .08em; text-transform: uppercase; }
.hero-stat strong { grid-row: span 2; font: 500 3.3rem/1 "Poppins"; color: #fff; letter-spacing: -.05em; }
.discipline-bar { display: flex; align-items: center; justify-content: center; gap: 34px; min-height: 62px; padding: 12px 24px; color: #fff; background: linear-gradient(100deg, #073a87 0%, #0e579f 38%, #d6c814 100%); font-size: .88rem; font-weight: 700; overflow-x: auto; }
.discipline-bar span { white-space: nowrap; }
.discipline-bar i { width: 1px; height: 18px; background: rgba(255,255,255,.6); }

.about { display: grid; grid-template-columns: 230px 1fr; gap: 42px; padding-top: 70px; padding-bottom: 78px; }
.about .section-intro { padding-top: 2px; }
.about .kicker { margin-bottom: 16px; border-bottom: 0; }
.about .kicker span { padding-bottom: 4px; border-bottom: 2px solid currentColor; }
.side-note { color: var(--muted); font-size: .76rem; line-height: 1.4; text-transform: uppercase; white-space: nowrap; }
.side-note strong { display: inline; color: var(--ink); }
.about-main { position: relative; }
.about-main::before { content: ""; position: absolute; top: 0; left: 52px; width: 2px; height: 68px; border-radius: 999px; background: linear-gradient(to bottom, var(--blue), var(--gold)); }
.about-main > .micro-label, .about-main > h2 { margin-left: 140px; }
.about-main h2 { max-width: none; font-size: clamp(1.9rem, 2.55vw, 2.2rem); line-height: 1.08; white-space: nowrap; }
.about-grid { display: grid; grid-template-columns: minmax(380px, .86fr) minmax(390px, 1.3fr); gap: 42px; align-items: center; width: calc(100% + 272px); margin-top: 46px; margin-left: -272px; }
.video-card { position: relative; min-height: 300px; overflow: hidden; border-radius: 22px; background: #06152f url("assets/who-we-are.jpg") center center/cover no-repeat; box-shadow: none; }
.video-symbol { position: absolute; right: 18px; bottom: 18px; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; color: #fff; background: linear-gradient(110deg, #0a4b9f 0%, #d6c814 100%); background-size: 180% 180%; border: 1px solid rgba(255,255,255,.35); cursor: pointer; isolation: isolate; animation: playGlow 2.8s ease-in-out infinite, playGradient 4s ease infinite; transition: transform .25s ease, box-shadow .25s ease; }
.video-symbol::before { content: ""; position: absolute; z-index: -1; inset: -1px; border: 2px solid rgba(214,200,20,.65); border-radius: inherit; animation: playPulse 2.2s ease-out infinite; }
.video-symbol span { position: relative; z-index: 1; margin-left: 3px; animation: playIcon 2.2s ease-in-out infinite; }
.video-symbol:hover { transform: scale(1.1); box-shadow: 0 0 28px rgba(214,200,20,.48); }

@keyframes playPulse {
  0% { opacity: .75; transform: scale(.92); }
  70%, 100% { opacity: 0; transform: scale(1.48); }
}

@keyframes playGlow {
  0%, 100% { box-shadow: 0 5px 18px rgba(10,75,159,.28); }
  50% { box-shadow: 0 7px 27px rgba(214,200,20,.48); }
}

@keyframes playGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes playIcon {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}
.about-copy .lead { margin-bottom: 22px; font-size: 1.08rem; font-weight: 700; line-height: 1.28; }
.about-copy > p:not(.lead) { max-width: 650px; margin-bottom: 0; color: #353b47; font-size: .97rem; line-height: 1.38; }
.about-actions { display: flex; align-items: center; gap: 30px; margin-top: 50px; }
.about-actions .button { min-height: 47px; padding-inline: 20px; }
.story-button { gap: 9px; }
.button-arrow { display: inline-block; font-size: 1.2rem; line-height: 1; transition: transform .25s ease; }
.story-button:hover .button-arrow { transform: translateX(4px); }
.call-block { display: flex; align-items: center; gap: 10px; }
.phone-icon { position: relative; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; color: #fff; background: linear-gradient(120deg, #0a4b9f 0%, #d6c814 100%); font-size: 1.2rem; isolation: isolate; box-shadow: 0 5px 15px rgba(10,75,159,.18); }
.phone-icon::before { content: ""; position: absolute; z-index: -1; inset: 0; border: 2px solid rgba(214,200,20,.55); border-radius: inherit; animation: phonePulse 2.6s ease-out infinite; }
.phone-glyph { display: inline-block; transform-origin: 50% 55%; animation: phoneRing 3s ease-in-out infinite; }

@keyframes phonePulse {
  0%, 38% { opacity: .7; transform: scale(.92); }
  72%, 100% { opacity: 0; transform: scale(1.38); }
}

@keyframes phoneRing {
  0%, 55%, 100% { transform: rotate(0deg) scale(1); }
  60% { transform: rotate(15deg) scale(1.08); }
  65% { transform: rotate(-13deg) scale(1.08); }
  70% { transform: rotate(11deg) scale(1.08); }
  75% { transform: rotate(-8deg) scale(1.05); }
  80% { transform: rotate(0deg) scale(1); }
}
.call-block small, .call-block strong { display: block; }
.call-block small { color: #5e6470; font-size: .9rem; }
.call-block strong { color: #111; font-size: 1.12rem; line-height: 1.15; }
.call-block strong a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
.call-block strong a:hover { color: #0a4b9f; text-decoration: underline; }
.call-block strong .phone-sep { font-weight: 400; color: rgba(10, 75, 159, 0.4); margin: 0 4px; }

.projects { background: #fff; }
.project-showcase { display: grid; grid-template-columns: 36.7% 63.3%; min-height: 555px; }
.ongoing-projects { padding: 24px clamp(28px, 5.5vw, 82px) 30px; background: linear-gradient(125deg, #cfffff 0%, #ecffc9 100%); }
.completed-projects { position: relative; overflow: hidden; padding: 24px clamp(28px, 3.2vw, 54px) 30px 42px; background-color: #f7faff; background-image: radial-gradient(circle at 92% 6%, rgba(214,200,20,.17) 0, rgba(214,200,20,0) 27%), radial-gradient(circle at 8% 96%, rgba(10,75,159,.13) 0, rgba(10,75,159,0) 32%), linear-gradient(rgba(10,75,159,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(10,75,159,.045) 1px, transparent 1px); background-size: auto, auto, 34px 34px, 34px 34px; }
.completed-projects::before { content: ""; position: absolute; right: -105px; bottom: -165px; width: 360px; height: 360px; border: 52px solid rgba(10,75,159,.035); border-radius: 50%; pointer-events: none; }
.completed-projects-header, .completed-project-grid { position: relative; z-index: 1; }
.project-panel-title { margin: 0 0 18px; font-size: .88rem; line-height: 1; letter-spacing: -.02em; text-transform: uppercase; white-space: nowrap; }
.project-panel-title span { color: #075bd0; }
.ongoing-projects .project-panel-title { position: relative; display: flex; align-items: center; min-height: 34px; padding-left: 18px; animation: ongoingTitleReveal .75s ease-out both; }
.ongoing-projects .project-panel-title span { position: relative; margin-right: .25em; color: transparent; background: linear-gradient(100deg, #075bd0 10%, #075bd0 38%, #d6c814 52%, #075bd0 68%, #075bd0 100%); background-size: 220% auto; -webkit-background-clip: text; background-clip: text; animation: ongoingTextShimmer 3.2s ease-in-out infinite; }
.ongoing-projects .project-panel-title span::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px; border-radius: 999px; background: linear-gradient(90deg, var(--blue), var(--gold)); transition: width .3s ease; }
.ongoing-projects .project-panel-title:hover span::after { width: 100%; }
.ongoing-projects .project-panel-title::before { content: ""; position: absolute; top: 50%; left: 0; width: 9px; height: 9px; border-radius: 50%; background: #19bd61; box-shadow: 0 0 0 0 rgba(25,189,97,.55); transform: translateY(-50%); animation: ongoingDot 1.8s ease-out infinite; }

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

@keyframes ongoingTextShimmer {
  0%, 22% { background-position: 100% center; }
  72%, 100% { background-position: -100% center; }
}

@keyframes ongoingDot {
  0% { box-shadow: 0 0 0 0 rgba(25,189,97,.6); transform: translateY(-50%) scale(.9); }
  55% { box-shadow: 0 0 0 7px rgba(25,189,97,0); transform: translateY(-50%) scale(1); }
  100% { box-shadow: 0 0 0 0 rgba(25,189,97,0); transform: translateY(-50%) scale(.9); }
}
.completed-projects-header { display: flex; align-items: center; gap: 22px; min-height: 18px; margin-bottom: 18px; }
.completed-projects-header .project-panel-title { margin: 0; }
.project-filters { display: flex; align-items: center; gap: 5px; flex-wrap: wrap; }
.project-filters button { padding: 6px 11px; border: 0; border-radius: 999px; color: #3e4658; background: transparent; font-size: .68rem; font-weight: 500; text-transform: uppercase; transition: color .22s ease, background .22s ease, box-shadow .22s ease, transform .22s ease; }
.project-filters button:hover { color: #0b54b6; background: #e8f0ff; }
.project-filters button.active { color: #fff; background: #0b54b6; box-shadow: 0 4px 10px rgba(11,84,182,.22); font-weight: 700; transform: translateY(-1px); }
.project-card { overflow: hidden; border-radius: 15px; background: #dfe9ff; box-shadow: none; transition: transform .3s, opacity .3s; }
.project-card:hover { transform: translateY(-5px); }
.project-card.hidden { display: none; }
.project-image { position: relative; min-height: 365px; background-color: #06152f; background-position: center 20%; background-size: cover; background-repeat: no-repeat; }
.ongoing-project-image { background: #06152f url("assets/bhathiya-mawatha.jpg") center 20%/cover no-repeat; }
.fusel-lane-image { background: #06152f url("assets/fusel-lane.jpg") center 20%/cover no-repeat; }

.ongoing-slider { position: relative; width: 100%; min-height: 470px; }
.ongoing-slider .ongoing-card { position: absolute; inset: 0; width: 100%; opacity: 0; visibility: hidden; transform: scale(0.97); transition: opacity 0.8s ease, transform 0.8s ease, visibility 0.8s ease; pointer-events: none; z-index: 0; }
.ongoing-slider .ongoing-card.active { opacity: 1; visibility: visible; transform: scale(1); pointer-events: auto; z-index: 1; }
.ongoing-slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.ongoing-slider-dots:empty { display: none; }
#testimonial-avatar-img { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; display: none; }
.ongoing-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(7,91,208,.25); border: none; padding: 0; cursor: pointer; transition: all .3s ease; }
.ongoing-dot.active { width: 26px; border-radius: 4px; background: #075bd0; }
.ibc-road-image { background: #06152f url("assets/no-26-ibc-road.jpg") center center/cover no-repeat; }
.open-university-image { background: #06152f url("assets/open-university.jpg") center center/cover no-repeat; }
.colombo-tamil-sangam-image { background: #06152f url("assets/colombo-tamil-sangam.jpg") center center/cover no-repeat; }
.project-info { display: flex; align-items: center; min-height: 105px; padding: 20px 18px; background: #dfe9ff; }
.project-info h3 { margin: 0; color: #0b1e36; font-size: .73rem; line-height: 1.35; text-transform: uppercase; }
.project-info h3 a { color: #0b1e36; text-decoration: none; transition: color .2s ease; }
.project-info h3 a:hover { color: #075bd0; text-decoration: underline; }
.project-info .project-type { display: block; margin-bottom: 5px; color: #0a55bd; font-size: .56rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.project-info p { margin: 3px 0 0; color: #59647a; font-size: .62rem; font-weight: 600; text-transform: uppercase; }
.project-contact { position: absolute; right: 14px; bottom: 0; display: flex; flex-direction: column; align-items: flex-end; transform: translateY(11px); }
.project-contact a { display: flex; align-items: center; gap: 6px; margin-right: 2px; color: #fff; font-size: .5rem; font-weight: 800; letter-spacing: .01em; text-transform: uppercase; }
.project-wa-icon { position: relative; display: grid; place-items: center; width: 23px; height: 23px; border: 1.5px solid #fff; border-radius: 50%; color: #fff; background: #20cc67; isolation: isolate; animation: projectWaBounce 2.5s ease-in-out infinite; }
.project-wa-icon::before { content: ""; position: absolute; z-index: -1; inset: -1px; border: 1.5px solid rgba(32,204,103,.8); border-radius: inherit; animation: projectWaPulse 2.5s ease-out infinite; }
.project-wa-icon svg { width: 15px; height: 15px; fill: #fff; }

@keyframes projectWaPulse {
  0%, 25% { opacity: .8; transform: scale(.9); }
  70%, 100% { opacity: 0; transform: scale(1.55); }
}

@keyframes projectWaBounce {
  0%, 45%, 100% { transform: translateY(0) scale(1); }
  55% { transform: translateY(-3px) scale(1.06); }
  65% { transform: translateY(0) scale(1); }
  75% { transform: translateY(-1.5px) scale(1.03); }
}
.booking-tag { margin-top: 2px; padding: 5px 9px; border-radius: 999px; color: #fff; background: #f9001d; font-size: .65rem; font-weight: 800; text-transform: uppercase; }
.completed-project-carousel { overflow: hidden; border-radius: 15px; }
.completed-project-grid { display: flex; gap: 12px; will-change: transform; }
.completed-project-grid .project-card { flex: 0 0 calc((100% - 12px) / 2); }
.completed-project-grid.single-project .project-card { flex-basis: 100%; }
.completed-project-grid .project-card.carousel-clone { pointer-events: none; }

/* Government projects page */
.government-page { background: #f7faff; }
.government-page-main { padding-top: 0; }
.government-intro-section { position: relative; overflow: hidden; isolation: isolate; padding-top: calc(var(--site-header-height) + 62px); padding-bottom: 0; background: #fff; }
.government-intro-section::before { content: ""; position: absolute; z-index: 0; top: calc(var(--site-header-height) + 8px); right: -34px; width: min(470px, 42vw); height: 205px; pointer-events: none; background-image: radial-gradient(circle, rgba(204,202,12,.42) 0 1.2px, transparent 1.8px), linear-gradient(rgba(10,62,130,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(10,62,130,.1) 1px, transparent 1px); background-size: 19px 19px, 76px 76px, 76px 76px; -webkit-mask-image: radial-gradient(ellipse at top right, #000 0%, #000 46%, transparent 88%); mask-image: radial-gradient(ellipse at top right, #000 0%, #000 46%, transparent 88%); opacity: .43; }
.government-intro-section::after { content: ""; position: absolute; z-index: 0; top: calc(var(--site-header-height) + 27px); right: 2.5%; left: 5.5%; height: 34px; pointer-events: none; background-image: linear-gradient(90deg, transparent 0%, rgba(10,62,130,.14) 18%, rgba(10,62,130,.08) 72%, rgba(204,202,12,.18) 92%, transparent 100%), repeating-linear-gradient(90deg, transparent 0 72px, rgba(10,62,130,.15) 72px 73px); background-position: 0 0, 0 0; background-size: 100% 1px, 100% 10px; background-repeat: no-repeat; opacity: .52; }
.government-page-intro { position: relative; z-index: 1; display: grid; grid-template-columns: max-content minmax(320px, 1fr); gap: clamp(24px, 3.5vw, 48px); align-items: end; overflow: hidden; isolation: isolate; padding-bottom: 46px; border-bottom: 1px solid rgba(6,42,91,.14); }
.government-page-intro::before { content: ""; position: absolute; z-index: 0; inset: -34px -48px 0 39%; pointer-events: none; background-image: linear-gradient(rgba(10,62,130,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(10,62,130,.1) 1px, transparent 1px); background-size: 31px 31px; -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 40%, #000 100%); mask-image: linear-gradient(90deg, transparent 0%, #000 40%, #000 100%); opacity: .46; }
.government-page-intro::after { content: ""; position: absolute; z-index: 1; right: -8px; bottom: 0; width: min(420px, 36vw); height: 142px; pointer-events: none; background-image: linear-gradient(rgba(10,62,130,.27) 1px, transparent 1px), linear-gradient(90deg, rgba(10,62,130,.27) 1px, transparent 1px); background-size: 100% 28px, 48px 100%; clip-path: polygon(0 100%, 0 58%, 15% 58%, 15% 35%, 35% 35%, 35% 13%, 58% 13%, 58% 43%, 76% 43%, 76% 26%, 100% 26%, 100% 100%); -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 100%); mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 100%); opacity: .34; }
.government-page-intro > * { position: relative; z-index: 2; }
.government-page-kicker { margin: 0 0 16px; color: var(--blue); font-size: .68rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.government-page-intro h1 { margin: 0; color: var(--navy); font-size: clamp(2rem, 3.5vw, 2.85rem); line-height: .98; letter-spacing: -.065em; text-transform: uppercase; white-space: nowrap; }
.government-page-summary { max-width: 620px; margin: 0 0 4px; padding-left: clamp(18px, 2vw, 26px); border-left: 2px solid var(--blue); border-image: linear-gradient(180deg, var(--blue) 0%, var(--gold) 100%) 1; color: #536177; font-size: .94rem; line-height: 1.75; }
.government-page-summary span { display: block; }
.government-ongoing { padding-top: 58px; }
.government-ongoing-card { position: relative; overflow: hidden; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: clamp(25px, 4vw, 58px); align-items: center; min-height: 230px; padding: clamp(32px, 4.5vw, 54px); border: 1px solid rgba(20,157,82,.22); border-radius: 22px; color: #fff; background: linear-gradient(115deg, #082c42 0%, #07506d 52%, #2a9f63 100%); box-shadow: 0 22px 58px rgba(5,60,67,.2); }
.government-ongoing-card::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 34px 34px; -webkit-mask-image: linear-gradient(90deg, transparent 8%, #000 100%); mask-image: linear-gradient(90deg, transparent 8%, #000 100%); }
.government-ongoing-card::after { content: ""; position: absolute; right: -95px; bottom: -190px; width: 350px; height: 350px; border: 48px solid rgba(206,222,18,.16); border-radius: 50%; pointer-events: none; }
.government-ongoing-status { position: relative; z-index: 1; display: flex; align-items: center; gap: 12px; align-self: start; padding: 12px 18px; border: 1px solid rgba(255,255,255,.34); border-radius: 999px; color: #fff; background: rgba(5,21,38,.28); font-size: .75rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; box-shadow: inset 0 0 0 1px rgba(199,225,17,.1); }
.government-live-dot { position: relative; width: 10px; height: 10px; flex: 0 0 10px; border-radius: 50%; background: #bfe719; box-shadow: 0 0 0 0 rgba(191,231,25,.65); animation: governmentLivePulse 1.75s ease-out infinite; }
.government-ongoing-copy { position: relative; z-index: 1; max-width: 650px; }
.government-ongoing-label { margin-bottom: 11px; color: #d6ed68; font-size: .68rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.government-ongoing-copy h2 { margin-bottom: 13px; color: #fff; font-size: clamp(2rem, 4vw, 3.45rem); line-height: .98; letter-spacing: -.055em; }
.government-ongoing-copy > p:last-child { max-width: 580px; margin-bottom: 0; color: rgba(255,255,255,.76); }
.government-ongoing-mark { position: relative; z-index: 1; display: grid; align-content: center; justify-items: end; align-self: stretch; min-width: 105px; padding-left: 30px; border-left: 1px solid rgba(255,255,255,.2); }
.government-ongoing-mark span { color: #d6ed68; font-size: .64rem; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; }
.government-ongoing-mark strong { color: rgba(255,255,255,.2); font-size: clamp(3.4rem, 6vw, 5.8rem); line-height: .9; letter-spacing: -.08em; }
.apartment-ongoing-feature { position: relative; overflow: hidden; display: grid; grid-template-columns: minmax(360px, .95fr) minmax(390px, 1.05fr); min-height: 455px; border: 1px solid rgba(20,157,82,.2); border-radius: 22px; background: #082d43; box-shadow: 0 24px 64px rgba(5,49,64,.2); }
.apartment-ongoing-image { position: relative; min-height: 455px; background-position: center center; background-size: cover; }
.apartment-ongoing-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,28,43,.1) 20%, rgba(4,28,43,.8) 100%), linear-gradient(0deg, rgba(4,28,43,.45), transparent 45%); }
.apartment-ongoing-badge { position: absolute; z-index: 2; top: 28px; left: 28px; display: flex; align-items: center; gap: 11px; padding: 12px 18px; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; color: #082d43; background: #d4eb22; font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; box-shadow: 0 10px 28px rgba(2,27,37,.26); }
.apartment-ongoing-badge .government-live-dot { background: #0a9652; box-shadow: 0 0 0 0 rgba(10,150,82,.6); }
.apartment-ongoing-number { position: absolute; z-index: 2; right: 24px; bottom: 13px; color: rgba(255,255,255,.26); font-size: clamp(4rem, 8vw, 7rem); font-weight: 800; line-height: 1; letter-spacing: -.1em; }
.apartment-ongoing-content { position: relative; display: flex; flex-direction: column; justify-content: center; padding: clamp(38px, 5vw, 68px); color: #fff; background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px), radial-gradient(circle at 100% 0%, rgba(206,222,18,.22), transparent 38%); background-size: 34px 34px, 34px 34px, auto; }
.apartment-ongoing-content::after { content: ""; position: absolute; top: 0; left: 0; width: 5px; height: 100%; background: linear-gradient(180deg, #d4eb22, #19ad69); }
.apartment-ongoing-label { margin-bottom: 14px; color: #d7ed6a; font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.apartment-ongoing-content h2 { margin-bottom: 13px; color: #fff; font-size: clamp(2.25rem, 4.3vw, 4rem); line-height: .98; letter-spacing: -.06em; text-transform: uppercase; }
.apartment-ongoing-location { margin-bottom: 20px; color: #d7ed6a; font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.apartment-ongoing-description { max-width: 520px; margin-bottom: 25px; color: rgba(255,255,255,.74); font-size: .94rem; line-height: 1.7; }
.apartment-ongoing-meta { display: flex; gap: 9px; flex-wrap: wrap; }
.apartment-ongoing-meta span { padding: 8px 13px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: rgba(255,255,255,.85); background: rgba(255,255,255,.06); font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.apartment-completed-grid { grid-template-columns: minmax(0, 1fr); max-width: 570px; }
.government-projects.government-completed { padding-top: 72px; }

@keyframes governmentLivePulse {
  0% { box-shadow: 0 0 0 0 rgba(191,231,25,.7); transform: scale(.9); }
  65%, 100% { box-shadow: 0 0 0 11px rgba(191,231,25,0); transform: scale(1); }
}
.government-projects { padding-top: 76px; padding-bottom: 96px; }
.government-projects-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 34px; }
.government-projects-heading h2 { font-size: clamp(2rem, 4vw, 3.3rem); }
.government-projects-heading p { max-width: 520px; margin-bottom: 5px; color: var(--muted); }
.government-project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.government-project-grid .project-card { background: #fff; box-shadow: 0 18px 48px rgba(6,21,47,.1); }
.government-project-grid .project-image { min-height: 390px; }
.government-project-grid .project-info { min-height: 122px; padding: 24px; background: #fff; }
.government-project-grid .project-info h3 { font-size: 1rem; }
.government-project-grid .project-info .project-type { font-size: .66rem; }
.government-project-grid .project-info p { font-size: .72rem; }
.residential-empty { position: relative; overflow: hidden; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 48px; align-items: center; min-height: 260px; padding: clamp(34px, 5vw, 58px); border: 1px solid rgba(10,66,143,.12); border-radius: 22px; background: linear-gradient(135deg, #fff 0%, #f1f6ff 66%, #fbfddf 100%); box-shadow: 0 18px 48px rgba(6,21,47,.08); }
.residential-empty::after { content: ""; position: absolute; right: -110px; bottom: -175px; width: 350px; height: 350px; border: 48px solid rgba(214,200,20,.12); border-radius: 50%; pointer-events: none; }
.residential-empty-copy { position: relative; z-index: 1; max-width: 690px; }
.residential-empty-label { margin-bottom: 12px; color: var(--blue); font-size: .7rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.residential-empty h3 { margin-bottom: 14px; color: var(--navy); font-size: clamp(1.7rem, 3vw, 2.7rem); line-height: 1.05; letter-spacing: -.045em; }
.residential-empty-copy > p:last-child { margin-bottom: 0; color: var(--muted); }
.residential-empty .button { position: relative; z-index: 1; white-space: nowrap; }
.residential-ongoing-card { position: relative; overflow: hidden; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr); min-height: 410px; border-radius: 22px; color: #fff; background: linear-gradient(120deg, #071b38 0%, #0a4773 58%, #10876c 100%); box-shadow: 0 24px 64px rgba(5,43,69,.23); }
.residential-ongoing-card::before { content: "ONGOING"; position: absolute; z-index: 0; left: -9px; bottom: -26px; color: rgba(255,255,255,.045); font-size: clamp(5rem, 11vw, 10rem); font-weight: 800; line-height: 1; letter-spacing: -.08em; pointer-events: none; }
.residential-ongoing-copy { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; padding: clamp(38px, 5vw, 66px); }
.residential-ongoing-badge { display: flex; align-items: center; align-self: flex-start; gap: 11px; margin-bottom: 30px; padding: 12px 18px; border: 1px solid rgba(255,255,255,.4); border-radius: 999px; color: #092d40; background: #d7ed29; font-size: .72rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; box-shadow: 0 10px 30px rgba(1,24,38,.28); }
.residential-ongoing-badge .government-live-dot { background: #0c955a; }
.residential-ongoing-label { margin-bottom: 12px; color: #d9ef71; font-size: .68rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.residential-ongoing-copy h2 { margin-bottom: 14px; color: #fff; font-size: clamp(2.2rem, 4.6vw, 4.2rem); line-height: .96; letter-spacing: -.06em; }
.residential-ongoing-copy > p:not(.residential-ongoing-label) { max-width: 590px; margin-bottom: 25px; color: rgba(255,255,255,.75); font-size: .94rem; line-height: 1.7; }
.residential-status-count { display: flex; align-items: center; gap: 13px; }
.residential-status-count strong { color: #d7ed29; font-size: 3.1rem; line-height: .9; letter-spacing: -.07em; }
.residential-status-count span { color: rgba(255,255,255,.62); font-size: .6rem; font-weight: 800; letter-spacing: .12em; line-height: 1.45; text-transform: uppercase; }
.residential-blueprint { position: relative; overflow: hidden; min-height: 410px; border-left: 1px solid rgba(255,255,255,.14); background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px), radial-gradient(circle at 70% 25%, rgba(215,237,41,.18), transparent 34%); background-size: 28px 28px, 28px 28px, auto; }
.residential-blueprint-roof { position: absolute; top: 110px; left: 50%; width: 190px; height: 190px; border-top: 4px solid #d7ed29; border-left: 4px solid #d7ed29; transform: translateX(-50%) rotate(45deg); }
.residential-blueprint-wall { position: absolute; top: 198px; left: 50%; width: 258px; height: 145px; border: 4px solid rgba(255,255,255,.75); background: rgba(255,255,255,.025); transform: translateX(-50%); }
.residential-blueprint-door { position: absolute; z-index: 1; top: 253px; left: 50%; width: 52px; height: 90px; border: 4px solid #d7ed29; border-bottom: 0; transform: translateX(-50%); }
.residential-blueprint-window { position: absolute; z-index: 1; top: 236px; left: calc(50% + 60px); width: 54px; height: 50px; border: 3px solid rgba(255,255,255,.72); }
.residential-blueprint-window::before, .residential-blueprint-window::after { content: ""; position: absolute; background: rgba(255,255,255,.55); }
.residential-blueprint-window::before { top: 50%; left: 0; width: 100%; height: 1px; }
.residential-blueprint-window::after { top: 0; left: 50%; width: 1px; height: 100%; }
.residential-blueprint-sun { position: absolute; top: 47px; right: 43px; width: 54px; height: 54px; border: 2px dashed rgba(215,237,41,.55); border-radius: 50%; }
.residential-blueprint small { position: absolute; right: 30px; bottom: 25px; color: rgba(255,255,255,.48); font-size: .57rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.residential-completed-empty { min-height: 235px; }
.cms-project-heading { display:flex; align-items:end; justify-content:space-between; gap:28px; margin-bottom:28px; }
.cms-project-heading h2 { font-size:clamp(2rem,4vw,3.2rem); }
.cms-project-heading p { max-width:520px; margin:0; color:var(--muted); }
.cms-project-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:24px; }
.cms-project-grid .project-card { background:#fff; box-shadow:0 18px 48px rgba(6,21,47,.1); }
.cms-project-grid .project-image { min-height:360px; background-position:center 20%; background-size:cover; background-color:#06152f; background-repeat:no-repeat; }
.cms-project-grid .project-info { min-height:120px; padding:23px; background:#fff; }
.cms-project-grid .project-info h3 { font-size:1rem; }
.cms-ongoing-section { padding-top:58px; }
.cms-ongoing-section .cms-project-stage { position:relative; overflow:hidden; padding:38px; border-radius:22px; color:#fff; background:linear-gradient(120deg,#071d39,#075270 58%,#22955f); box-shadow:0 22px 58px rgba(5,60,67,.18); }
.cms-ongoing-section .cms-project-heading h2,.cms-ongoing-section .cms-project-heading p { color:#fff; }
.cms-ongoing-section .cms-project-heading p { color:rgba(255,255,255,.7); }
.cms-ongoing-section .project-card { box-shadow:none; }
.cms-empty-projects { padding:38px; border:1px dashed rgba(10,66,143,.24); border-radius:18px; color:var(--muted); background:#fff; text-align:center; }

@media (max-width: 768px) {
  .government-intro-section { padding-top: calc(var(--site-header-height) + 42px); }
  .government-page-intro { grid-template-columns: 1fr; gap: 22px; padding-bottom: 34px; }
  .government-page-intro h1 { white-space: normal; }
  .government-page-summary { max-width: 680px; }
  .government-ongoing { padding-top: 38px; }
  .government-ongoing-card { grid-template-columns: 1fr; gap: 24px; min-height: 0; padding: 28px 24px; }
  .government-ongoing-status { justify-self: start; align-self: auto; }
  .government-ongoing-mark { display: none; }
  .apartment-ongoing-feature { grid-template-columns: 1fr; min-height: 0; }
  .apartment-ongoing-image { min-height: 330px; }
  .apartment-ongoing-image::after { background: linear-gradient(0deg, rgba(4,28,43,.62), transparent 58%); }
  .apartment-ongoing-content { padding: 34px 24px 38px; }
  .apartment-ongoing-content::after { width: 100%; height: 4px; background: linear-gradient(90deg, #d4eb22, #19ad69); }
  .government-projects.government-completed { padding-top: 54px; }
  .government-projects { padding-top: 52px; padding-bottom: 74px; }
  .government-projects-heading { display: block; margin-bottom: 26px; }
  .government-projects-heading p { margin-top: 14px; }
  .government-project-grid { grid-template-columns: 1fr; gap: 20px; }
  .government-project-grid .project-image { min-height: 300px; }
  .residential-empty { grid-template-columns: 1fr; gap: 28px; min-height: 0; padding: 30px 24px; }
  .residential-empty .button { justify-self: start; }
  .residential-ongoing-card { grid-template-columns: 1fr; min-height: 0; }
  .residential-ongoing-copy { padding: 32px 24px 38px; }
  .residential-ongoing-badge { margin-bottom: 24px; }
  .residential-blueprint { min-height: 330px; border-top: 1px solid rgba(255,255,255,.14); border-left: 0; }
  .residential-blueprint-roof { top: 75px; width: 155px; height: 155px; }
  .residential-blueprint-wall { top: 146px; width: 212px; height: 125px; }
  .residential-blueprint-door { top: 197px; height: 74px; }
  .residential-blueprint-window { top: 182px; left: calc(50% + 46px); }
  .cms-project-heading { display:block; }
  .cms-project-heading p { margin-top:12px; }
  .cms-project-grid { grid-template-columns:1fr; }
  .cms-ongoing-section .cms-project-stage { padding:26px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .government-live-dot { animation: none !important; }
}
.completed-carousel-controls { display: flex; align-items: center; justify-content: flex-end; gap: 10px; min-height: 34px; margin-left: auto; }
.completed-carousel-controls[hidden] { display: none; }
.carousel-arrow { display: grid; place-items: center; width: 32px; height: 32px; padding: 0; border: 1px solid rgba(10,66,143,.18); border-radius: 50%; color: var(--blue); background: #fff; font-size: 1rem; transition: color .22s, background .22s, transform .22s; }
.carousel-arrow:hover { color: #fff; background: var(--blue); transform: translateY(-2px); }
.carousel-dots { display: flex; align-items: center; gap: 6px; }
.carousel-dot { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 999px; background: #b6c2d5; transition: width .25s, background .25s; }
.carousel-dot.active { width: 21px; background: linear-gradient(90deg, var(--blue), var(--gold)); }

@media (min-width: 1500px) {
  .project-showcase { grid-template-columns: 38% 62%; }
  .ongoing-projects { padding-left: max(82px, calc((100vw - 1360px) / 2)); }
}

.services { position: relative; overflow: hidden; padding-top: 42px; padding-bottom: 48px; background: #edf4ff; }
.services::before { content: ""; position: absolute; top: 0; right: 0; width: 62%; height: 100%; background: linear-gradient(90deg, #edf4ff 0%, rgba(237,244,255,.28) 38%, rgba(237,244,255,.04) 100%), url("assets/who-we-are-right.jpg") center center/cover no-repeat; opacity: .5; }
.services::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(237,244,255,.98) 0%, rgba(237,244,255,.75) 54%, rgba(237,244,255,.22) 100%); pointer-events: none; }
.services .shell { position: relative; z-index: 1; }
.services-header { display: grid; grid-template-columns: 1fr 2fr; gap: 62px; align-items: end; margin-bottom: 28px; }
.services-heading-left .kicker { margin-bottom: 13px; border-bottom: 0; font-size: .68rem; }
.services-heading-left .kicker span { padding-bottom: 3px; border-bottom: 2px solid currentColor; }
.services-tagline { margin: 0; font-size: .7rem; font-weight: 800; line-height: 1.25; text-transform: uppercase; }
.services-label { margin-bottom: 12px; color: #717988; font-size: .67rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.services-heading-right > p:last-child { margin: 0; color: #151b29; font-size: .72rem; font-weight: 800; line-height: 1.22; text-transform: uppercase; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px 14px; }
.service-grid article { position: relative; min-height: 190px; padding: 24px 24px 22px; overflow: hidden; border: 1px solid rgba(10,66,143,.1); border-radius: 24px; background: rgba(255,255,255,.94); box-shadow: 0 10px 28px rgba(20,50,94,.06); transition: transform .3s, box-shadow .3s, border-color .3s; }
.service-grid article:hover { border-color: rgba(10,66,143,.22); transform: translateY(-6px); box-shadow: 0 18px 40px rgba(20,50,94,.13); }
.service-icon { display: grid; place-items: center; width: 43px; height: 43px; margin-bottom: 16px; border-radius: 14px; color: #fff; background: linear-gradient(135deg, var(--blue) 12%, var(--blue-bright) 52%, var(--gold) 100%); box-shadow: 0 8px 18px rgba(10,66,143,.2); transition: transform .3s ease, box-shadow .3s ease; }
.service-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-grid article:hover .service-icon { transform: rotate(-6deg) scale(1.08); box-shadow: 0 11px 23px rgba(10,66,143,.3); }
.service-grid h3 { margin-bottom: 10px; padding-right: 30px; font-size: .92rem; line-height: 1.2; text-transform: uppercase; }
.service-grid p { margin-bottom: 0; padding-right: 28px; color: #292f3b; font-size: .8rem; line-height: 1.35; }
.service-number { position: absolute; right: 21px; bottom: 17px; color: rgba(10,66,143,.22); font-size: .72rem; font-weight: 800; letter-spacing: .08em; }

.chairman { padding: 85px 0; color: #fff; background: linear-gradient(105deg, #073c87 0%, #0d4b83 38%, #a1a329 72%, #d8c900 100%); }
.chairman-grid { display: grid; grid-template-columns: 330px 1fr; gap: 55px; align-items: center; }
.portrait { display: grid; place-items: center; min-height: 410px; overflow: hidden; border: 3px solid rgba(255,255,255,.2); border-radius: 34px; background: #06152f url("assets/chairman-thusjanthan.jpg") center center/auto 125% no-repeat; box-shadow: 0 18px 40px rgba(6,21,47,.2); }
.portrait span { display: none; }
.chairman-copy h2 { margin-bottom: 18px; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.chairman-copy h3 { margin: 0 0 2px; color: #e6ee25; font-size: 1.3rem; text-transform: uppercase; }
.role { font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.chairman-copy blockquote { margin: 28px 0 20px; padding-left: 24px; border-left: 3px solid var(--gold); font: 600 1.1rem/1.5 "Poppins"; }
.chairman-copy > p:last-child { max-width: 780px; color: rgba(255,255,255,.82); font-size: .9rem; }

.testimonials { padding: 18px 0 32px; background: #edf4ff; }
.testimonials .kicker { margin-bottom: 17px; border-bottom: 0; font-size: .67rem; }
.testimonials .kicker span { padding-bottom: 3px; border-bottom: 2px solid currentColor; }
.testimonial-row { display: grid; grid-template-columns: 160px 1fr; gap: 18px; align-items: center; }
.testimonial-avatar { width: 160px; min-height: 116px; border-radius: 18px; background: #06152f; }
.testimonial-copy { max-width: 980px; color: #15448f; transition: opacity .28s ease, transform .28s ease; }
.testimonial-row.is-changing .testimonial-copy { opacity: 0; transform: translateY(5px); }
.testimonial-copy p { margin-bottom: 2px; font-size: .84rem; line-height: 1.22; }
.testimonial-copy strong { display: block; margin-bottom: 5px; color: #16438b; font-size: .72rem; line-height: 1.2; }
.testimonial-rating { display: flex; align-items: center; gap: 10px; }
.testimonial-rating small { color: #a7afbc; font-size: .66rem; }
.testimonial-rating span { color: #ffbd16; font-size: 1rem; letter-spacing: .15em; }
.testimonial-dots { display: flex; align-items: center; gap: 6px; margin-top: 7px; }
.testimonial-dots button { width: 6px; height: 6px; padding: 0; border: 0; border-radius: 50%; background: #aebed8; transition: width .22s ease, border-radius .22s ease, background .22s ease; }
.testimonial-dots button.active { width: 18px; border-radius: 999px; background: #1559ad; }
.promise { padding: 18px 0 22px; color: #fff; background: #07377e; }
.promise-inner { display: block; }
.promise h2 { max-width: none; margin-bottom: 4px; font-size: clamp(1.4rem, 2.25vw, 2rem); line-height: 1.05; letter-spacing: -.035em; white-space: nowrap; }
.promise .kicker { margin-bottom: 6px; border-bottom: 0; color: rgba(255,255,255,.72); font-size: .64rem; }
.promise .kicker span { padding-bottom: 2px; border-bottom: 1px solid currentColor; }
.promise-copy { max-width: 1080px; margin: 0; color: rgba(255,255,255,.92); font-size: .76rem; line-height: 1.25; }

footer { padding-top: 55px; color: rgba(255,255,255,.9); background: #06152f; }
.footer-main { display: grid; grid-template-columns: 1.45fr .58fr 1fr; gap: clamp(40px, 6vw, 95px); padding-bottom: 40px; }
.footer-logo { width: min(300px, 100%); margin: 0 0 32px; }
.footer-logo img { display: block; width: 100%; height: auto; object-fit: contain; }
.header-logo::before { content: ""; position: absolute; z-index: -2; inset: -4px; border-radius: 50%; background: conic-gradient(from 0deg, #063b88, #0e6fd7, #f4d817, #d6a900, #063b88); animation: logoRingSpin 4s linear infinite, logoRingGlow 1.8s ease-in-out infinite alternate; }
.header-logo::after { content: ""; position: absolute; z-index: -1; inset: 2px; border-radius: 50%; background: #fff; }

@keyframes logoRingSpin {
  to { transform: rotate(360deg); }
}

@keyframes logoRingGlow {
  from { box-shadow: 0 0 8px rgba(10, 75, 159, .35); }
  to { box-shadow: 0 0 20px rgba(214, 200, 20, .7); }
}

@keyframes brandNameShimmer {
  0% { background-position: 120% center; }
  36%, 100% { background-position: -120% center; }
}
.footer-about > p:last-child { max-width: 505px; margin: 0; color: rgba(255,255,255,.93); font-size: .82rem; line-height: 1.2; }
.footer-column-title { margin-bottom: 22px; color: #e6bd08; font-size: 1rem; text-transform: none; }
.footer-column-title span { padding-bottom: 4px; border-bottom: 1px solid currentColor; }
.footer-help a { display: block; margin-bottom: 11px; color: #fff; font-size: .8rem; }
.footer-help a:hover, .footer-official a:hover { color: var(--gold); }
.footer-official { padding-left: 36px; }
.footer-official > :not(.footer-socials) { margin-left: 34px; }
.footer-contact-line { display: flex; align-items: center; gap: 5px; margin-bottom: 8px; color: #fff; font-size: .76rem; white-space: nowrap; }
.footer-contact-line + .footer-contact-line { margin-bottom: 18px; }
.footer-address { margin-bottom: 30px; color: rgba(255,255,255,.95); font-size: .76rem; white-space: nowrap; }
.established { display: flex; align-items: center; gap: 14px; margin: 0; }
.established strong { color: #fff; font: 400 3rem/1 "Poppins"; letter-spacing: -.04em; }
.established span { padding-left: 14px; border-left: 1px solid rgba(255,255,255,.5); color: rgba(255,255,255,.8); font-size: .62rem; line-height: 1.3; text-transform: uppercase; }
.footer-socials { display: flex; align-items: center; gap: 8px; margin-top: 18px; margin-left: 110px; }
.footer-socials a { display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: #fff; font-size: .62rem; font-weight: 700; transition: color .2s, border-color .2s, transform .2s, background .2s; }
.footer-socials svg { width: 14px; height: 14px; fill: currentColor; }
.footer-youtube .play-cut { fill: #06152f; }
.footer-instagram svg { fill: none; stroke: currentColor; stroke-width: 1.8; }
.footer-instagram .ig-dot { fill: currentColor; stroke: none; }
.footer-socials a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.footer-nav { display: flex; align-items: center; justify-content: center; gap: 0; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-nav a { padding: 0 16px; border-right: 1px solid rgba(255,255,255,.16); color: #fff; font-size: .72rem; }
.footer-nav a:last-child { border-right: 0; }
.footer-nav a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 28px 0 30px; color: rgba(255,255,255,.82); font-size: .68rem; }
.footer-bottom strong { color: #e3c817; font-weight: 600; }
.developer-credit { padding: 0; border: 0; color: #e3c817; background: transparent; font: inherit; font-weight: 600; cursor: pointer; }
.developer-credit:hover { color: #fff23a; text-decoration: underline; text-underline-offset: 3px; }
.floating-whatsapp, .back-to-top { position: fixed; z-index: 10; right: 20px; display: grid; place-items: center; width: 50px; height: 50px; border: 3px solid #fff; border-radius: 50%; color: #fff; box-shadow: 0 8px 25px rgba(6,21,47,.22); }
.floating-whatsapp { bottom: 78px; visibility: hidden; opacity: 0; pointer-events: none; border: 0; background: #20c86a; transform: translateY(12px) scale(.86); transition: opacity .25s ease, visibility .25s ease, transform .25s ease, box-shadow .25s ease; }
.floating-whatsapp.visible { visibility: visible; opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.floating-whatsapp svg { width: 30px; height: 30px; fill: #fff; transform-origin: center; animation: floatingWaMotion 2.6s ease-in-out infinite; }
.floating-whatsapp.visible:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 11px 28px rgba(32,200,106,.38); }

@keyframes floatingWaMotion {
  0%, 48%, 100% { transform: rotate(0deg) scale(1); }
  56% { transform: rotate(-8deg) scale(1.08); }
  64% { transform: rotate(8deg) scale(1.1); }
  72% { transform: rotate(-5deg) scale(1.06); }
  80% { transform: rotate(0deg) scale(1); }
}
.back-to-top { bottom: 20px; visibility: hidden; opacity: 0; pointer-events: none; border: 0; background: linear-gradient(140deg, #062b70 0%, #0755c6 34%, #1589ee 63%, #d6c814 100%); background-size: 150% 150%; background-position: 15% 15%; box-shadow: inset 0 2px 5px rgba(255,255,255,.32), inset 0 -3px 8px rgba(4,31,83,.22), 0 8px 25px rgba(6,21,47,.28); transform: translateY(12px) scale(.86); transition: opacity .25s ease, visibility .25s ease, transform .25s ease, box-shadow .25s ease, background-position .35s ease; }
.back-to-top.visible { visibility: visible; opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.back-to-top svg { width: 25px; height: 25px; fill: none; stroke: #fff; stroke-width: 2.25; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 1px 2px rgba(2,27,72,.35)); }
.back-to-top.visible:hover { background-position: 85% 85%; transform: translateY(-3px) scale(1.04); box-shadow: inset 0 2px 5px rgba(255,255,255,.38), 0 12px 30px rgba(12,91,205,.45); }

.modal { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 20px; visibility: hidden; opacity: 0; transition: opacity .25s, visibility .25s; }
.modal.open { visibility: visible; opacity: 1; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(3,14,34,.78); -webkit-backdrop-filter: blur(7px); backdrop-filter: blur(7px); }
.modal-panel { position: relative; z-index: 1; width: min(560px, 100%); max-height: calc(100vh - 40px); overflow-y: auto; padding: 42px; border-radius: 26px; background: #fff; box-shadow: 0 25px 80px rgba(0,0,0,.3); -ms-overflow-style: none; transform: translateY(20px); transition: transform .25s; }
.modal-panel::-webkit-scrollbar { display: none; }
.modal.open .modal-panel { transform: translateY(0); }
.modal-panel h2 { margin-bottom: 15px; font-size: 2.2rem; }
.modal-panel > p:not(.kicker) { color: var(--muted); }
.modal-close { position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; border: 0; border-radius: 50%; color: var(--ink); background: var(--ice); font-size: 1.5rem; }
#visit-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
#visit-form label { color: #344056; font-size: .76rem; font-weight: 700; }
#visit-form label:nth-child(4), #visit-form .button, .form-status { grid-column: 1 / -1; }
#visit-form input, #visit-form select, #visit-form textarea { display: block; width: 100%; margin-top: 7px; padding: 13px 14px; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); background: #f9fbff; outline: none; }
#visit-form input:focus, #visit-form select:focus, #visit-form textarea:focus { border-color: var(--blue-bright); box-shadow: 0 0 0 3px rgba(14,95,192,.1); }
.form-status { margin: 0; color: #167543; font-size: .85rem; font-weight: 700; text-align: center; }
.developer-panel { width: min(570px, 100%); padding: 12px; background: #fff; }
.developer-panel .modal-close { z-index: 3; top: 24px; right: 24px; color: #314058; background: rgba(255,255,255,.9); box-shadow: 0 4px 12px rgba(6,21,47,.1); }
.ownership-note { margin-bottom: 24px; padding: 14px 16px; border-left: 3px solid var(--gold); color: #536078; background: #f4f7fc; font-size: .86rem; }
.ownership-note strong { color: var(--navy); }
.developer-offer { position: relative; overflow: hidden; padding: 42px 34px 34px; border: 1px solid #e4eaf4; border-radius: 20px; color: var(--navy); background: linear-gradient(145deg, #fff 0%, #f4f8ff 72%, #f6f8dc 100%); }
.developer-offer::before { content: ""; position: absolute; top: -70px; right: -55px; width: 190px; height: 190px; border-radius: 50%; background: radial-gradient(circle, rgba(214,200,20,.2) 0%, rgba(214,200,20,0) 70%); }
.developer-offer > * { position: relative; z-index: 1; }
.developer-byline { margin-bottom: 20px !important; color: #8a93a3 !important; font-size: .65rem !important; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.developer-offer h3 { margin-bottom: 14px; color: #071a38; font-size: 1.75rem; letter-spacing: -.03em; }
.developer-offer p { max-width: 450px; margin-bottom: 19px; color: #5d687b; font-size: .9rem; line-height: 1.5; }
.developer-offer p strong { color: #233b60; }
.developer-offer .offer-discount { display: inline-block; margin-bottom: 22px; padding: 7px 12px; border-radius: 999px; color: #094a9f; background: #e3edff; font-size: .92rem; font-weight: 800; }
.developer-whatsapp { width: 100%; gap: 9px; min-height: 48px; color: #fff; background: #1cba62; box-shadow: 0 9px 22px rgba(28,186,98,.22); }
.developer-whatsapp:hover { box-shadow: 0 12px 28px rgba(28,186,98,.34); }
.developer-whatsapp svg { width: 19px; height: 19px; fill: currentColor; }

@media (max-width: 1240px) {
  .site-header { padding-inline: 24px; }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: 105px; left: 0; width: 100%; display: none; flex-direction: column; align-items: flex-start; gap: 0; padding: 18px 24px; color: var(--ink); background: #fff; box-shadow: 0 18px 35px rgba(6,21,47,.15); }
  .main-nav.open { display: flex; }
  .main-nav > a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .main-nav > .nav-dropdown { width: 100%; padding: 9px 0 11px; border-bottom: 1px solid var(--line); }
  .nav-dropdown-trigger { width: 100%; justify-content: space-between; padding: 3px 2px; }
  .nav-dropdown-trigger::after { bottom: -7px; }
  .nav-dropdown-menu { position: static; min-width: 0; margin-top: 9px; padding: 5px; border: 0; border-radius: 10px; background: #f4f7fc; box-shadow: none; opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown-menu a { width: 100%; padding: 9px 12px; border: 0; }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu { transform: none; }
  .main-nav .home-link { display: none; }
  .header-socials { margin-left: auto; }
  .header-cta { display: none; }
}

@media (max-width: 960px) {
  .site-header { padding-inline: 24px; }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: 105px; left: 0; width: 100%; display: none; flex-direction: column; align-items: flex-start; gap: 0; padding: 18px 24px; color: var(--ink); background: #fff; box-shadow: 0 18px 35px rgba(6,21,47,.15); }
  .main-nav.open { display: flex; }
  .main-nav > a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .main-nav .home-link { display: none; }
  .header-socials { margin-left: auto; }
  .header-cta { display: none; }
  .about { grid-template-columns: 1fr; gap: 18px; }
  .about-main::before { display: none; }
  .about-main > .micro-label, .about-main > h2 { margin-left: 0; }
  .about-main h2 { white-space: normal; }
  .side-note { display: none; }
  .about-grid { grid-template-columns: 1fr; width: 100%; margin-left: 0; }
  .project-grid { grid-template-columns: 1fr 1fr; }
  .project-card.featured { grid-column: 1 / -1; }
  .project-showcase { grid-template-columns: 1fr; }
  .ongoing-projects, .completed-projects { padding: 32px 24px 30px; }
  .ongoing-card { max-width: 500px; }
  .services-header { grid-template-columns: 1fr; gap: 24px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .chairman-grid { grid-template-columns: 280px 1fr; }
  .testimonial-row { grid-template-columns: 140px 1fr; }
  .testimonial-avatar { width: 140px; min-height: 104px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .footer-official { padding-left: 0; }
  .footer-official > :not(.footer-socials) { margin-left: 0; }
}

@media (max-width: 680px) {
  :root { --site-header-height: 74px; }
  .shell { width: min(100% - 32px, 1180px); }
  .section { padding: 76px 0; }
  .site-header { height: 74px; padding-inline: 16px; }
  .header-logo { width: 60px; height: 60px; padding: 5px; }
  .header-brand-name { display: none; }
  .main-nav { top: 74px; }
  .hero { height: auto; min-height: 650px; }
  .hero-content { padding-top: 72px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero-copy { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stat { display: none; }
  .discipline-bar { justify-content: flex-start; gap: 20px; }
  .about-grid { margin-top: 36px; }
  .video-card { min-height: 280px; }
  .about-actions { align-items: flex-start; flex-direction: column; }
  .split-heading { align-items: flex-start; flex-direction: column; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card.featured { grid-column: auto; }
  .project-image { min-height: 300px; }
  .completed-projects-header { align-items: flex-start; flex-direction: column; gap: 15px; }
  .completed-project-grid .project-card { flex-basis: 100%; }
  .service-grid { grid-template-columns: 1fr; }
  .chairman-grid { grid-template-columns: 1fr; }
  .portrait { min-height: 420px; }
  .testimonial-row { grid-template-columns: 1fr; }
  .testimonial-avatar { width: 130px; min-height: 95px; }
  .promise h2 { white-space: normal; }
  footer { padding-top: 48px; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; padding-bottom: 38px; }
  .footer-about { grid-column: auto; }
  .footer-logo { margin-bottom: 18px; }
  .footer-contact-line { flex-wrap: wrap; }
  .footer-address { white-space: normal; }
  .footer-socials { margin-left: 0; }
  .footer-nav { justify-content: flex-start; overflow-x: auto; }
  .footer-nav a { flex-shrink: 0; }
  .footer-bottom { flex-direction: column; }
  .modal-panel { padding: 34px 22px 24px; }
  .developer-panel { padding: 8px; }
  .developer-panel .modal-close { top: 18px; right: 18px; }
  .developer-offer { padding: 40px 20px 22px; }
  .developer-offer h3 { font-size: 1.5rem; }
  #visit-form { grid-template-columns: 1fr; }
  #visit-form label, #visit-form label:nth-child(4), #visit-form .button { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
  .hero-slide, .video-symbol, .video-symbol::before, .video-symbol span, .phone-icon::before, .phone-glyph, .project-wa-icon, .project-wa-icon::before, .ongoing-projects .project-panel-title, .ongoing-projects .project-panel-title::before, .ongoing-projects .project-panel-title span, .floating-whatsapp svg, .header-logo::before, .header-brand-name, .mobile-header-copy strong { animation: none !important; }
  .header-brand-name, .mobile-header-copy strong { color: #fff; background: none; -webkit-text-fill-color: #fff; }
}

/* About page */
.about-story { display: grid; grid-template-columns: 340px 1fr; gap: clamp(48px, 7vw, 95px); align-items: start; padding-top: 165px; }
.about-story-media { position: sticky; top: 125px; isolation: isolate; width: 100%; max-width: 340px; min-height: 433px; }
.about-story-media::before { content: ""; position: absolute; z-index: 3; top: 34px; right: 36px; width: 5px; height: 5px; pointer-events: none; border-radius: 50%; color: rgba(37,111,218,.78); background: currentColor; box-shadow: 16px 0 currentColor, 32px 0 currentColor, 48px 0 currentColor, 64px 0 currentColor, 80px 0 currentColor, 0 16px currentColor, 16px 16px currentColor, 32px 16px currentColor, 48px 16px currentColor, 64px 16px currentColor, 80px 16px currentColor, 0 32px currentColor, 16px 32px currentColor, 32px 32px currentColor, 48px 32px currentColor, 64px 32px currentColor, 80px 32px currentColor, 0 48px currentColor, 16px 48px currentColor, 32px 48px currentColor, 48px 48px currentColor, 64px 48px currentColor, 80px 48px currentColor, 0 64px currentColor, 16px 64px currentColor, 32px 64px currentColor, 48px 64px currentColor, 64px 64px currentColor, 80px 64px currentColor, 0 80px currentColor, 16px 80px currentColor, 32px 80px currentColor, 48px 80px currentColor, 64px 80px currentColor, 80px 80px currentColor; opacity: .5; animation: aboutDotGrid 5.2s ease-in-out infinite; }
.about-fact-card { position: relative; z-index: 1; width: 250px; min-height: 150px; margin-left: 76px; padding: 15px 21px 21px; overflow: hidden; border-radius: 30px; color: #fff; background: linear-gradient(110deg, var(--blue) 0%, var(--blue-bright) 52%, var(--gold) 100%); box-shadow: 0 18px 38px rgba(10,66,143,.16); }
.about-fact-card span, .about-fact-card p, .about-fact-card small { position: relative; z-index: 1; display: block; }
.about-fact-card span { margin: 0 0 -2px 58px; color: rgba(255,255,255,.88); font-size: .6rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.about-fact-card strong { position: relative; z-index: 1; display: block; margin-bottom: 3px; color: transparent; background: linear-gradient(100deg, #fff 30%, #fff8ad 50%, #fff 70%); background-position: 100% center; background-size: 220% auto; -webkit-background-clip: text; background-clip: text; font-size: 2.65rem; line-height: 1; letter-spacing: -.055em; }
.about-fact-card p { margin-bottom: 2px; font-size: .82rem; font-weight: 700; text-transform: uppercase; }
.about-fact-card small { color: rgba(255,255,255,.92); font-size: .77rem; font-weight: 700; letter-spacing: .025em; }
.about-story-media.reveal-ready .about-fact-card span, .about-story-media.reveal-ready .about-fact-card strong, .about-story-media.reveal-ready .about-fact-card p, .about-story-media.reveal-ready .about-fact-card small { opacity: 0; }
.about-story-media.reveal-ready.is-visible .about-fact-card span { animation: factTextFade .42s ease .38s both; }
.about-story-media.reveal-ready.is-visible .about-fact-card strong { animation: factYearReveal .55s cubic-bezier(.22,.7,.2,1) .48s both; }
.about-story-media.reveal-ready.is-visible .about-fact-card p { animation: factTextSlide .48s ease .64s both; }
.about-story-media.reveal-ready.is-visible .about-fact-card small { animation: factTextFade .45s ease .78s both; }
.about-fact-card:hover strong { animation: factYearShimmer .9s ease both; }

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

@keyframes aboutDotGrid {
  0%, 100% { opacity: .36; transform: translate3d(0, 0, 0); }
  50% { opacity: .68; transform: translate3d(5px, -4px, 0); }
}

@keyframes factYearReveal {
  from { opacity: 0; transform: translateY(14px) scale(.88); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

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

@keyframes factYearShimmer {
  from { background-position: 100% center; }
  to { background-position: -100% center; }
}
.about-chairman-card { position: relative; z-index: 2; width: 330px; height: 310px; margin: -27px 0 0; overflow: hidden; border: 0; border-radius: 23px; background: #dfe8f5; box-shadow: 0 21px 48px rgba(6,21,47,.22); }
.about-chairman-card img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 24%; }
.about-chairman-card::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(to bottom, transparent, rgba(3,20,48,.88)); }
.about-chairman-card figcaption { position: absolute; z-index: 1; right: 164px; bottom: 17px; left: 20px; color: #fff; }
.about-chairman-card figcaption strong, .about-chairman-card figcaption span { display: block; }
.about-chairman-card figcaption strong { margin-bottom: 3px; font-size: .86rem; white-space: nowrap; }
.about-chairman-card figcaption span { color: rgba(255,255,255,.72); font-size: .66rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.chairman-socials { position: absolute; z-index: 2; right: 32px; bottom: 17px; display: flex; align-items: center; gap: 7px; padding-left: 15px; }
.chairman-socials::before { content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 2px; border-radius: 999px; background: linear-gradient(to bottom, var(--blue-bright), var(--gold)); }
.chairman-socials a { display: grid; width: 31px; height: 31px; place-items: center; overflow: hidden; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; box-shadow: 0 7px 17px rgba(2,15,36,.32); transition: transform .24s ease, box-shadow .24s ease; }
.chairman-socials a:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 10px 20px rgba(2,15,36,.42); }
.chairman-socials svg { width: 100%; height: 100%; }
.chairman-socials .social-whatsapp svg { width: 20px; height: 20px; }
.about-story-media.reveal-ready .about-fact-card { opacity: 0; transform: translateX(28px); }
.about-story-media.reveal-ready .about-chairman-card { opacity: 0; transform: translateY(28px); }
.about-story-media.reveal-ready.is-visible .about-fact-card { opacity: 1; transform: translateX(0); transition: opacity .65s ease .05s, transform .65s cubic-bezier(.22,.7,.2,1) .05s; }
.about-story-media.reveal-ready.is-visible .about-chairman-card { opacity: 1; transform: translateY(0); transition: opacity .7s ease .2s, transform .7s cubic-bezier(.22,.7,.2,1) .2s; }
.about-chairman-card img { transition: transform .48s cubic-bezier(.22,.7,.2,1); }
.about-chairman-card figcaption { transition: transform .35s ease; }
.about-chairman-card:hover img { transform: scale(1.04); }
.about-chairman-card:hover figcaption { transform: translateY(-4px); }
.about-story-copy .kicker { margin-bottom: 16px; }
.about-story-copy h1 { max-width: none; margin-bottom: 30px; font-size: clamp(1.7rem, 2.5vw, 2.25rem); line-height: 1.12; letter-spacing: -.035em; white-space: nowrap; }
.royal-group-highlight { color: transparent; background: linear-gradient(100deg, var(--blue) 0%, var(--blue-bright) 48%, var(--gold) 100%); -webkit-background-clip: text; background-clip: text; }
.about-story-copy > p:not(.kicker) { max-width: 820px; margin-bottom: 18px; color: #424c5f; font-size: .98rem; line-height: 1.75; text-align: justify; }
.about-story-copy strong { color: var(--navy); }
.about-story-cta { position: relative; display: flex; align-items: center; justify-content: flex-start; gap: 28px; margin-top: 10px; padding: 3px 0 3px 16px; }
.about-story-cta::before { content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 4px; border-radius: 999px; background: linear-gradient(to bottom, var(--blue), var(--gold)); }
.about-story-cta-copy h3 { position: relative; display: inline-block; margin: 0 0 6px; color: #101722; font-size: clamp(.96rem, 1.35vw, 1.15rem); line-height: 1.25; letter-spacing: -.025em; white-space: nowrap; }
.about-story-cta-copy h3::after { content: ""; position: absolute; bottom: -3px; left: 0; width: 42%; height: 1px; background: #111; }
.about-story-cta-copy p { margin: 0; color: #313b4b; font-size: .78rem; line-height: 1.45; white-space: nowrap; }
.about-review-link { display: inline-flex; flex-shrink: 0; align-items: center; gap: 13px; color: #111; }
.about-review-play { position: relative; isolation: isolate; display: grid; width: 42px; height: 42px; flex: 0 0 42px; place-items: center; padding-left: 2px; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; color: #fff; background: linear-gradient(135deg, var(--blue), var(--gold)); box-shadow: 0 9px 22px rgba(10,66,143,.2); font-size: .8rem; animation: aboutReviewPulse 2.8s ease-in-out infinite; }
.about-review-play::before { content: ""; position: absolute; z-index: -1; inset: -2px; border: 2px solid rgba(24, 103, 201, .42); border-radius: inherit; pointer-events: none; animation: aboutReviewRipple 2.8s ease-out infinite; }
.about-review-text { padding-bottom: 3px; border-bottom: 1px solid currentColor; font-size: .76rem; font-weight: 700; white-space: nowrap; }
.about-review-text b { display: inline-block; margin-left: 3px; font-size: 1rem; line-height: .8; transition: transform .25s ease; }
.about-review-link:hover .about-review-text b { transform: translateX(4px); }
@keyframes aboutReviewPulse { 0%, 100% { transform: translateY(0) scale(1); box-shadow: 0 9px 22px rgba(10,66,143,.2); } 50% { transform: translateY(-4px) scale(1.06); box-shadow: 0 13px 28px rgba(214,200,20,.34); } }
@keyframes aboutReviewRipple { 0% { opacity: .72; transform: scale(.96); } 72%, 100% { opacity: 0; transform: scale(1.5); } }
.purpose-section { position: relative; overflow: hidden; isolation: isolate; background: #eef4ff; }
.purpose-section::before { content: ""; position: absolute; z-index: -2; inset: 0; background: url("assets/mission-background.jpg") center 18% / cover no-repeat; opacity: .4; }
.purpose-section::after { content: ""; position: absolute; z-index: -1; inset: -12px; background: linear-gradient(90deg, rgba(240,246,255,.42) 0%, rgba(240,246,255,.55) 40%, rgba(242,247,255,.88) 68%, rgba(251,253,232,.98) 100%); -webkit-backdrop-filter: blur(7px); backdrop-filter: blur(7px); -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 34%, #000 72%, #000 100%); mask-image: linear-gradient(90deg, transparent 0%, transparent 34%, #000 72%, #000 100%); }
.purpose-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.25fr) 330px; gap: clamp(38px, 6vw, 82px); align-items: center; }
.purpose-content { display: flex; min-width: 0; min-height: 330px; overflow: hidden; flex-direction: column; justify-content: center; padding: 32px 34px; border: 1px solid rgba(255,255,255,.72); border-radius: 26px; background: rgba(255,255,255,.78); box-shadow: 0 20px 48px rgba(7,36,79,.12); -webkit-backdrop-filter: blur(13px); backdrop-filter: blur(13px); }
.purpose-content > .kicker { margin-bottom: 24px; font-size: .8rem; letter-spacing: .24em; }
.purpose-panels { position: relative; min-width: 0; min-height: 0; }
.purpose-panel { min-width: 0; animation: purposePanelIn .48s cubic-bezier(.22,.7,.2,1) both; }
.purpose-panel[hidden] { display: none; }
.purpose-panel h2 { max-width: none; margin-bottom: 16px; color: var(--navy); font-size: clamp(1.45rem, 2.2vw, 2.15rem); line-height: 1.08; letter-spacing: -.045em; white-space: nowrap; }
.purpose-panel .purpose-lead { max-width: 690px; margin-bottom: 16px; color: #26344b; font-size: 1rem; font-weight: 700; line-height: 1.65; }
.purpose-panel > p:last-child { max-width: 720px; margin: 0; color: #445168; font-size: .95rem; line-height: 1.78; }
#purpose-values .values-statement { max-width: 100%; overflow-wrap: break-word; white-space: normal; font-size: .95rem; }
.purpose-tabs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); width: min(100%, 620px); margin-top: 24px; gap: 12px; }
.purpose-tab { display: flex; height: 56px; overflow: hidden; align-items: center; justify-content: center; gap: 10px; padding: 0 16px; border: 0; outline: 0; border-radius: 14px; color: #1f2a3d; background: rgba(255,255,255,.94); box-shadow: inset 0 0 0 1px rgba(10,66,143,.11), 0 10px 24px rgba(10,66,143,.08); -webkit-appearance: none; appearance: none; font: inherit; font-size: .88rem; font-weight: 700; line-height: 1; cursor: pointer; transition: color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s ease; }
.purpose-tab:hover { color: var(--blue); background: #fff; box-shadow: inset 0 0 0 1px rgba(10,66,143,.24), 0 14px 28px rgba(10,66,143,.13); transform: translateY(-3px); }
.purpose-tab:focus-visible { outline: 3px solid rgba(36,102,223,.28); outline-offset: 3px; }
.purpose-tab.is-active { color: #fff; border: 0; background: linear-gradient(115deg, var(--blue) 0%, #2466df 68%, var(--gold) 100%); box-shadow: 0 14px 30px rgba(10,66,143,.24); transform: translateY(-2px); }
.purpose-tab.is-active svg { animation: purposeIconPulse 1.8s ease-in-out infinite; }
.purpose-tab svg { width: 21px; height: 21px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.purpose-image { position: relative; width: 330px; height: 330px; margin: 0; overflow: hidden; justify-self: end; border-radius: 26px; box-shadow: 0 24px 50px rgba(7,36,79,.16); }
.purpose-image img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .7s cubic-bezier(.22,.7,.2,1); }
.purpose-image:hover img { transform: scale(1.035); }
.purpose-grid.reveal-ready .purpose-content { opacity: 0; transform: translateX(-28px); }
.purpose-grid.reveal-ready .purpose-image { opacity: 0; transform: translateX(28px); }
.purpose-grid.reveal-ready.is-visible .purpose-content,
.purpose-grid.reveal-ready.is-visible .purpose-image { opacity: 1; transform: translateX(0); transition: opacity .7s ease, transform .7s cubic-bezier(.22,.7,.2,1); }
.purpose-grid.reveal-ready.is-visible .purpose-image { transition-delay: .12s; }
@keyframes purposePanelIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes purposeIconPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.16); } }
.why-choose-section { position: relative; overflow: hidden; color: #fff; background: linear-gradient(118deg, #031633 0%, #082d64 58%, #0a4b9f 100%); }
.why-choose-section::before { content: ""; position: absolute; top: -180px; right: -120px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(214,200,20,.26), transparent 68%); }
.why-choose-section::after { content: ""; position: absolute; bottom: -220px; left: -180px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(23,111,236,.22), transparent 70%); }
.why-editorial { position: relative; z-index: 1; max-width: 1180px; }
.why-statement { max-width: 760px; margin: 0 0 48px; text-align: left; }
.why-statement .kicker { justify-content: flex-start; margin-bottom: 18px; color: #f2df1e; }
.why-statement h2 { max-width: none; margin-bottom: 16px; color: #fff; font-size: clamp(1.55rem, 2.3vw, 2.25rem); line-height: 1.08; letter-spacing: -.04em; white-space: nowrap; }
.why-statement > p:last-child { max-width: 680px; margin: 0; color: rgba(255,255,255,.72); font-size: .95rem; line-height: 1.75; }
.why-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
.why-row { min-height: 230px; padding: 34px 28px; border-right: 1px solid rgba(255,255,255,.18); transition: background .3s ease; }
.why-row:last-child { border-right: 0; }
.why-row:hover { background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(214,200,20,.055)); }
.why-index { display: block; margin-bottom: 28px; color: #f2df1e; font-size: 2.3rem; font-weight: 800; line-height: 1; letter-spacing: -.04em; }
.why-row h3 { margin-bottom: 12px; color: #fff; font-size: 1.05rem; line-height: 1.35; }
.why-row p { margin: 0; color: rgba(255,255,255,.68); font-size: .86rem; line-height: 1.7; }

@media (max-width: 960px) {
  .about-story { grid-template-columns: 1fr; }
  .about-story-copy h1 { white-space: normal; }
  .about-story-media { position: relative; top: 0; }
  .about-story-cta { max-width: 760px; }
  .about-fact-card { max-width: 360px; }
  .purpose-grid { grid-template-columns: 1fr; gap: 40px; }
  .purpose-content { min-height: 0; padding: 30px; }
  .purpose-image { width: 330px; height: 330px; justify-self: center; }
  #purpose-values .values-statement { font-size: .95rem; }
  .why-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-row:nth-child(2) { border-right: 0; }
  .why-row:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
}

@media (max-width: 680px) {
  .about-story { padding-top: 120px; }
  .about-story-cta { align-items: flex-start; flex-direction: column; gap: 20px; }
  .about-story-cta-copy h3, .about-story-cta-copy p { white-space: normal; }
  .purpose-grid { grid-template-columns: 1fr; gap: 34px; }
  .purpose-content { min-height: 0; padding: 24px 18px; border-radius: 20px; }
  .purpose-panels { min-height: 0; }
  .purpose-panel h2 { font-size: clamp(1.6rem, 7.4vw, 2rem); white-space: normal; }
  .purpose-tabs { margin-top: 20px; gap: 7px; }
  .purpose-tab { height: 52px; gap: 7px; padding: 0 8px; font-size: .78rem; }
  .purpose-tab svg { width: 18px; height: 18px; }
  .purpose-image { width: min(100%, 330px); height: 310px; }
  .why-statement { margin-bottom: 34px; text-align: left; }
  .why-statement .kicker { justify-content: flex-start; }
  .why-statement h2 { font-size: clamp(1.5rem, 7vw, 2rem); white-space: normal; }
  .why-list { grid-template-columns: 1fr; }
  .why-row { min-height: 0; padding: 26px 20px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .why-row:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
  .why-row:last-child { border-bottom: 0; }
  .why-index { margin-bottom: 16px; font-size: 1.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  .about-story-media::before { animation: none !important; }
  .about-review-play, .about-review-play::before { animation: none !important; }
  .about-story-media.reveal-ready .about-fact-card span,
  .about-story-media.reveal-ready .about-fact-card strong,
  .about-story-media.reveal-ready .about-fact-card p,
  .about-story-media.reveal-ready .about-fact-card small { opacity: 1; transform: none; animation: none !important; }
  .purpose-grid.reveal-ready .purpose-content,
  .purpose-grid.reveal-ready .purpose-image { opacity: 1; transform: none; transition: none !important; }
  .purpose-panel { animation: none !important; }
  .purpose-tab.is-active svg { animation: none !important; }
}

/* Our Team Page */
.team-page .team-directory { position: relative; overflow: hidden; isolation: isolate; padding-top: calc(var(--site-header-height) + 62px); background: linear-gradient(180deg, #ffffff 0%, #f3f7fd 47%, #fbfde9 100%); }
.team-page .team-directory::before { content: ""; position: absolute; z-index: 0; top: calc(var(--site-header-height) + 8px); right: -34px; width: min(470px, 42vw); height: 205px; pointer-events: none; background-image: radial-gradient(circle, rgba(204,202,12,.42) 0 1.2px, transparent 1.8px), linear-gradient(rgba(10,62,130,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(10,62,130,.1) 1px, transparent 1px); background-size: 19px 19px, 76px 76px, 76px 76px; -webkit-mask-image: radial-gradient(ellipse at top right, #000 0%, #000 46%, transparent 88%); mask-image: radial-gradient(ellipse at top right, #000 0%, #000 46%, transparent 88%); opacity: .43; animation: teamReferenceDots 9s ease-in-out infinite; }
.team-page .team-directory::after { content: ""; position: absolute; z-index: 0; top: calc(var(--site-header-height) + 27px); right: 2.5%; left: 5.5%; height: 34px; pointer-events: none; background-image: linear-gradient(90deg, transparent 0%, rgba(10,62,130,.14) 18%, rgba(10,62,130,.08) 72%, rgba(204,202,12,.18) 92%, transparent 100%), repeating-linear-gradient(90deg, transparent 0 72px, rgba(10,62,130,.15) 72px 73px); background-position: 0 0, 0 0; background-size: 100% 1px, 100% 10px; background-repeat: no-repeat; opacity: .52; }
.team-page-intro { position: relative; z-index: 1; display: grid; grid-template-columns: max-content minmax(320px, 1fr); gap: clamp(24px, 3.5vw, 48px); align-items: end; overflow: hidden; isolation: isolate; padding-bottom: 46px; border-bottom: 1px solid rgba(6,42,91,.14); }
.team-page-intro::before { content: ""; position: absolute; z-index: 0; inset: -34px -48px 0 39%; pointer-events: none; background-image: linear-gradient(rgba(10,62,130,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(10,62,130,.1) 1px, transparent 1px); background-size: 31px 31px; -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 40%, #000 100%); mask-image: linear-gradient(90deg, transparent 0%, #000 40%, #000 100%); opacity: .46; animation: teamBlueprintDrift 20s ease-in-out infinite; }
.team-page-intro::after { content: ""; position: absolute; z-index: 1; right: -8px; bottom: 0; width: min(420px, 36vw); height: 142px; pointer-events: none; background-image: linear-gradient(rgba(10,62,130,.27) 1px, transparent 1px), linear-gradient(90deg, rgba(10,62,130,.27) 1px, transparent 1px); background-size: 100% 28px, 48px 100%; clip-path: polygon(0 100%, 0 58%, 15% 58%, 15% 35%, 35% 35%, 35% 13%, 58% 13%, 58% 43%, 76% 43%, 76% 26%, 100% 26%, 100% 100%); -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 100%); mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 100%); opacity: .34; animation: teamElevationFloat 18s ease-in-out infinite; }
.team-page-intro > * { position: relative; z-index: 2; }
.team-page-kicker { margin: 0 0 16px; color: var(--blue); font-size: .68rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.team-page-intro h1 { margin: 0; color: var(--navy); font-size: clamp(2rem, 3.5vw, 2.85rem); line-height: .98; letter-spacing: -.065em; text-transform: uppercase; white-space: nowrap; }
.team-page-summary { max-width: 530px; margin: 0 0 4px; padding-left: clamp(18px, 2vw, 26px); border-left: 2px solid var(--blue); border-image: linear-gradient(180deg, var(--blue) 0%, var(--gold) 100%) 1; color: #536177; font-size: .94rem; line-height: 1.75; }
.team-page-summary span { display: block; }
.team-group { position: relative; z-index: 1; margin-top: 48px; }
.team-group.team-group--executive { margin-top: 32px; }
.team-group-header { display: grid; grid-template-columns: minmax(210px, .56fr) minmax(0, 1.44fr); gap: clamp(32px, 7vw, 90px); align-items: start; margin-bottom: 33px; }
.team-group-header > p { display: flex; align-items: center; gap: 13px; margin: 7px 0 0; color: var(--blue); font-size: .66rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.team-group-header > p::after { content: ""; width: 55px; height: 1px; background: linear-gradient(90deg, rgba(10,66,143,.62), rgba(204,202,12,.7)); }
.team-group-header > p span { color: var(--gold-dark); }
.team-group-header h2 { margin: 0; color: var(--navy); font-size: clamp(1.3rem, 2vw, 1.9rem); line-height: 1.12; letter-spacing: -.04em; text-transform: none; }
.team-card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 25px; }
.team-card-grid--executive { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.team-feature { position: relative; display: flex; min-width: 0; min-height: 100%; flex-direction: column; justify-content: center; overflow: hidden; padding: clamp(25px, 3vw, 40px); border: 1px solid rgba(255,255,255,.15); border-radius: 23px; color: #fff; background: linear-gradient(145deg, #061a3b 0%, #0a3e82 72%, #647329 135%); box-shadow: 0 18px 42px rgba(6,42,91,.16); isolation: isolate; }
.team-feature::before { content: ""; position: absolute; z-index: -1; inset: 0; opacity: .58; background-image: linear-gradient(rgba(132,188,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(132,188,255,.1) 1px, transparent 1px); background-size: 30px 30px; -webkit-mask-image: linear-gradient(135deg, #000 0%, transparent 78%); mask-image: linear-gradient(135deg, #000 0%, transparent 78%); }
.team-feature::after { content: ""; position: absolute; z-index: -1; right: 4%; bottom: 7%; width: min(64%, 410px); aspect-ratio: 1277 / 391; opacity: .07; background: url("assets/footer-logo-white.png") center / contain no-repeat; pointer-events: none; }
.team-feature--leadership::after { right: 50%; bottom: 50%; width: min(44%, 190px); aspect-ratio: 716 / 944; opacity: .12; background-image: url("assets/royal-t-logo.png"); transform: translate(50%, 50%); }
.team-feature--management::after { inset: 0; width: auto; aspect-ratio: auto; opacity: 1; background-image: linear-gradient(90deg, rgba(6,26,59,.98) 0%, rgba(6,31,70,.82) 48%, rgba(6,35,77,.38) 100%), url("assets/who-we-are-right.jpg"); background-position: center; background-size: cover; transform-origin: center; animation: teamFeaturePhotoDrift 14s ease-in-out infinite alternate; }
.team-feature--management { grid-column: span 2; }
.team-feature-kicker { margin: 0 0 15px; color: #d8d829; font-size: .6rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.team-feature h3 { margin: 0; color: #fff; font-size: clamp(1.35rem, 2.25vw, 2rem); line-height: 1.12; letter-spacing: -.045em; text-transform: none; }
.team-feature h3 span { color: #d8d829; }
.team-feature-copy { max-width: 520px; margin: 17px 0 0; color: rgba(255,255,255,.76); font-size: .76rem; line-height: 1.7; }
.team-feature-values { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.team-feature-values span { padding: 6px 9px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: rgba(255,255,255,.9); font-size: .55rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.team-feature-process { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 22px 0 0; padding: 0; list-style: none; }
.team-feature-process li { position: relative; display: grid; gap: 3px; padding-top: 11px; border-top: 1px solid rgba(255,255,255,.25); }
.team-feature-process li:not(:last-child)::after { content: ""; position: absolute; top: -3px; right: -8px; width: 6px; height: 6px; border-top: 1px solid #d8d829; border-right: 1px solid #d8d829; transform: rotate(45deg); }
.team-feature-process small { color: #d8d829; font-size: .5rem; font-weight: 800; letter-spacing: .1em; }
.team-feature-process strong { color: #fff; font-size: .68rem; letter-spacing: .025em; }
.team-profile-card { min-width: 0; overflow: hidden; border: 1px solid rgba(6,42,91,.1); border-radius: 23px; background: rgba(255,255,255,.96); box-shadow: 0 16px 38px rgba(6,42,91,.09); transition: transform .36s cubic-bezier(.22,.7,.2,1), box-shadow .36s ease, border-color .36s ease; animation: teamCardIn .65s backwards; }
.team-profile-card:nth-child(2) { animation-delay: .06s; }
.team-profile-card:nth-child(3) { animation-delay: .12s; }
.team-profile-card:nth-child(4) { animation-delay: .18s; }
.team-profile-card:nth-child(5) { animation-delay: .24s; }
.team-profile-card:nth-child(6) { animation-delay: .3s; }
.team-profile-card:nth-child(7) { animation-delay: .36s; }
.team-profile-card:nth-child(8) { animation-delay: .42s; }
.team-profile-card:nth-child(9) { animation-delay: .48s; }
.team-profile-card:nth-child(10) { animation-delay: .54s; }
.team-profile-card:hover { border-color: rgba(10,66,143,.22); box-shadow: 0 25px 52px rgba(6,42,91,.16); transform: translateY(-8px); }
.team-profile-photo { position: relative; display: grid; aspect-ratio: 4 / 3; place-items: center; overflow: hidden; isolation: isolate; background: linear-gradient(145deg, #061a3b 0%, #0a3e82 68%, #155aa9 100%); }
.team-profile-photo > img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 44%; }
.team-profile-photo::before { content: ""; position: absolute; z-index: -1; inset: 0; background-image: linear-gradient(rgba(132,188,255,.11) 1px, transparent 1px), linear-gradient(90deg, rgba(132,188,255,.11) 1px, transparent 1px); background-size: 30px 30px; -webkit-mask-image: linear-gradient(135deg, transparent 6%, #000 52%, transparent 100%); mask-image: linear-gradient(135deg, transparent 6%, #000 52%, transparent 100%); transition: transform .65s ease; }
.team-profile-photo::after { content: ""; position: absolute; z-index: -1; right: -18%; bottom: -18%; width: 78%; height: 52%; background: radial-gradient(ellipse at center, rgba(204,202,12,.24) 0%, rgba(204,202,12,.08) 42%, transparent 72%); filter: blur(3px); transform: rotate(-8deg); transition: transform .65s cubic-bezier(.22,.7,.2,1), opacity .4s ease; }
.team-profile-card--chairman .team-profile-photo { background: linear-gradient(145deg, #04162f 0%, #0a3e82 63%, #767a2e 125%); }
.team-profile-card:hover .team-profile-photo::before { transform: translate3d(8px, -8px, 0); }
.team-profile-card:hover .team-profile-photo::after { opacity: .95; transform: rotate(-8deg) scale(1.08); }
.team-profile-monogram { display: grid; width: clamp(78px, 8vw, 105px); aspect-ratio: 1; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: #fff; background: rgba(255,255,255,.08); box-shadow: inset 0 0 0 7px rgba(255,255,255,.035), 0 18px 40px rgba(0,0,0,.17); font-size: clamp(1.45rem, 2.5vw, 2rem); font-weight: 800; letter-spacing: -.035em; transition: transform .5s cubic-bezier(.22,.7,.2,1), background-color .4s ease; }
.team-profile-card:hover .team-profile-monogram { background: rgba(255,255,255,.13); transform: scale(1.06); }
.team-profile-photo small { position: absolute; bottom: 18px; left: 20px; color: rgba(255,255,255,.72); font-size: .55rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.team-profile-info { min-height: 118px; padding: 19px 20px 22px; border-top: 3px solid transparent; border-image: linear-gradient(90deg, var(--blue), var(--gold)) 1; }
.team-profile-info p { min-height: 30px; margin: 0 0 7px; color: var(--gold-dark); font-size: .58rem; font-weight: 800; letter-spacing: .085em; line-height: 1.45; text-transform: uppercase; }
.team-profile-info h3 { margin: 0; overflow-wrap: anywhere; color: var(--navy); font-size: .93rem; line-height: 1.38; letter-spacing: -.02em; text-transform: none; }
@keyframes teamCardIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes teamBlueprintDrift { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(-12px, 6px, 0); } }
@keyframes teamElevationFloat { 0%, 100% { transform: translateY(0); opacity: .3; } 50% { transform: translateY(-5px); opacity: .4; } }
@keyframes teamReferenceDots { 0%, 100% { opacity: .34; } 50% { opacity: .48; } }
@keyframes teamFeaturePhotoDrift { from { transform: scale(1.02) translate3d(0, 0, 0); } to { transform: scale(1.08) translate3d(-1.5%, 0, 0); } }

@media (max-width: 960px) {
  .team-page-intro { grid-template-columns: 1fr; gap: 22px; }
  .team-page-summary { max-width: 680px; }
  .team-card-grid, .team-card-grid--executive { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team-feature--leadership, .team-feature--management { grid-column: 1 / -1; min-height: 285px; }
}

@media (max-width: 680px) {
  .team-page .team-directory { padding-top: calc(var(--site-header-height) + 42px); }
  .team-page-intro { padding-bottom: 34px; }
  .team-group { margin-top: 48px; }
  .team-group-header { grid-template-columns: 1fr; gap: 18px; margin-bottom: 25px; }
  .team-group-header > p { margin-top: 0; }
}

@media (max-width: 600px) {
  .team-page-intro h1 { font-size: clamp(1.18rem, 5.8vw, 2rem); }
  .team-card-grid, .team-card-grid--executive { grid-template-columns: 1fr; }
  .team-profile-card { max-width: 390px; width: 100%; margin-inline: auto; }
  .team-feature--leadership, .team-feature--management { grid-column: auto; width: 100%; min-height: 300px; }
  .team-profile-info { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .team-page .team-directory::before, .team-page-intro::before, .team-page-intro::after { animation: none !important; }
  .team-profile-card { animation: none !important; }
  .team-feature--management::after { animation: none !important; }
  .team-profile-card, .team-profile-photo::before, .team-profile-photo::after, .team-profile-monogram { transition: none !important; }
}

/* Contact Page */
.contact-main { padding-top: 165px; background: linear-gradient(135deg, #f7faff 0%, #edf4ff 65%, #fafce8 100%); }
.contact-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr); gap: clamp(45px, 7vw, 95px); align-items: start; }
.contact-details > h2 { max-width: 520px; margin-bottom: 18px; font-size: clamp(1.75rem, 3vw, 2.65rem); line-height: 1.12; letter-spacing: -.04em; }
.contact-intro { max-width: 540px; margin: 0 0 34px; color: #59657a; line-height: 1.75; }
.contact-methods { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 25px; color: #fff; background: linear-gradient(135deg, #061a3b 0%, #0a438b 74%, #667830 125%); box-shadow: 0 24px 52px rgba(3,28,66,.22); }
.contact-panel-heading { grid-column: 1 / -1; padding: 24px 25px 20px; border-bottom: 1px solid rgba(255,255,255,.13); }
.contact-panel-heading span { display: block; margin-bottom: 5px; color: #f0dc20; font-size: .6rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-panel-heading h3 { margin: 0; color: #fff; font-size: 1.25rem; letter-spacing: -.025em; }
.contact-method { display: flex; min-width: 0; align-items: center; gap: 14px; padding: 21px 18px; border-right: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); transition: background-color .25s ease, transform .25s ease; }
.contact-method:nth-of-type(even) { border-right: 0; }
.contact-method:nth-last-child(-n + 2) { border-bottom: 0; }
.contact-method:hover { z-index: 1; background: rgba(255,255,255,.09); transform: translateY(-2px); }
.contact-method-icon { display: grid; width: 46px; height: 46px; flex: 0 0 46px; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 14px; color: #fff; background: linear-gradient(135deg, #0751ad 0%, #1877ee 70%, #d4ca13 145%); box-shadow: 0 9px 22px rgba(0,0,0,.18); transition: box-shadow .25s ease, transform .25s ease; }
.contact-method:hover .contact-method-icon { box-shadow: 0 10px 25px rgba(212,202,19,.2); transform: translateY(-2px); }
.contact-method-icon.whatsapp { background: #20c86a; }
.contact-method-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact-method small { display: block; margin-bottom: 4px; color: rgba(214,228,249,.68); font-size: .56rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.contact-method strong { display: block; overflow-wrap: anywhere; color: #fff; font-size: .76rem; line-height: 1.45; }
.contact-form-card { padding: 42px; border: 1px solid rgba(10,66,143,.1); border-radius: 28px; background: rgba(255,255,255,.94); box-shadow: 0 24px 60px rgba(10,66,143,.12); }
.contact-form-label { margin: 0 0 9px; color: var(--blue); font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-form-card > h2 { margin-bottom: 28px; font-size: clamp(1.5rem, 2.5vw, 2.2rem); letter-spacing: -.04em; white-space: nowrap; }
.contact-enquiry-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-enquiry-form label { color: #344056; font-size: .7rem; font-weight: 700; }
.contact-enquiry-form input, .contact-enquiry-form select, .contact-enquiry-form textarea { display: block; width: 100%; margin-top: 8px; padding: 13px 14px; border: 1px solid #dce4ef; border-radius: 11px; color: var(--ink); background: #f9fbff; outline: none; transition: border-color .22s ease, box-shadow .22s ease; }
.contact-enquiry-form textarea { resize: vertical; }
.contact-enquiry-form input:focus, .contact-enquiry-form select:focus, .contact-enquiry-form textarea:focus { border-color: var(--blue-bright); box-shadow: 0 0 0 3px rgba(14,95,192,.1); }
.contact-message, .contact-submit, .contact-form-status { grid-column: 1 / -1; }
.contact-submit { width: 100%; margin-top: 2px; border: 0; }
.contact-form-status { min-height: 20px; margin: 0; color: #177646; font-size: .75rem; font-weight: 700; text-align: center; }

@media (max-width: 980px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-details { max-width: 680px; }
}

@media (max-width: 620px) {
  .contact-main { padding-top: 120px; }
  .contact-methods { grid-template-columns: 1fr; }
  .contact-method { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .contact-method:nth-last-child(2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .contact-form-card { padding: 32px 20px; border-radius: 22px; }
  .contact-enquiry-form { grid-template-columns: 1fr; }
  .contact-message, .contact-submit, .contact-form-status { grid-column: auto; }
}

/* Contact Page — premium enquiry experience */
.contact-page { background: #f5f8fd; }
.contact-intro-section { position: relative; overflow: hidden; padding: 175px 0 20px; background: linear-gradient(125deg, #061a3b 0%, #0a3e82 100%); }
.contact-intro-section::before { content: ""; position: absolute; z-index: 0; inset: -40px -40px -40px 52%; pointer-events: none; background-image: linear-gradient(rgba(117,181,255,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(117,181,255,.22) 1px, transparent 1px); background-size: 32px 32px; opacity: .28; -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 30%, #000 100%); mask-image: linear-gradient(90deg, transparent 0%, #000 30%, #000 100%); animation: contactBlueprintDrift 18s ease-in-out infinite; }
.contact-intro-section::after { content: ""; position: absolute; z-index: 0; right: clamp(24px, 7vw, 110px); bottom: -30px; width: min(360px, 34vw); height: 145px; pointer-events: none; background-image: linear-gradient(rgba(128,191,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(128,191,255,.12) 1px, transparent 1px); background-size: 100% 36px, 70px 100%; opacity: .52; clip-path: polygon(0 100%, 0 44%, 18% 44%, 18% 20%, 43% 20%, 43% 0, 72% 0, 72% 31%, 100% 31%, 100% 100%); filter: drop-shadow(0 0 12px rgba(70,151,239,.08)); animation: contactBuildingFloat 12s ease-in-out infinite; }
.contact-intro-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; }
.contact-overline { margin: 0 0 18px; color: #f0dc20; font-size: .7rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.contact-intro-copy h1 { margin-bottom: 22px; color: #fff; font-size: clamp(2.2rem, 3.8vw, 3.5rem); line-height: 1; letter-spacing: -.055em; text-transform: uppercase; }
.contact-intro-copy h1 span { color: #58a8ff; }
.contact-intro-copy > p:not(.contact-overline) { max-width: none; margin-bottom: 25px; color: rgba(255,255,255,.8); font-size: .9rem; line-height: 1.75; white-space: nowrap; }
@keyframes contactBlueprintDrift { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(-14px, 8px, 0); } }
@keyframes contactBuildingFloat { 0%, 100% { transform: translateY(0); opacity: .45; } 50% { transform: translateY(-7px); opacity: .58; } }
.contact-connect { padding-top: 25px; padding-bottom: 40px; background: #f4f7fc; }
.contact-connect .contact-layout { grid-template-columns: minmax(0, .82fr) minmax(500px, 1.18fr); gap: clamp(34px, 5vw, 70px); align-items: stretch; }
.contact-connect .contact-details { height: 100%; padding: 36px; border-radius: 28px; color: #fff; background: linear-gradient(145deg, #061a3b, #0a3e82); box-shadow: 0 24px 55px rgba(4,28,67,.18); }
.contact-connect .contact-form-card { height: 100%; }
.contact-connect .contact-details > h2 { color: #fff; font-size: clamp(1.6rem, 2.4vw, 2.2rem); }
.contact-connect .contact-intro { color: rgba(255,255,255,.67); }
.contact-connect .contact-form-label { color: #eadb28; }
.contact-connect .contact-form-card .contact-form-label { color: #0e5fc0; }
.contact-connect .contact-methods { grid-template-columns: 1fr; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(255,255,255,.035); box-shadow: none; }
.contact-connect .contact-panel-heading { display: none; }
.contact-connect .contact-method { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-connect .contact-method:nth-last-child(2) { border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-connect .contact-method:last-child { border-bottom: 0; }
.contact-hours { display: flex; justify-content: space-between; gap: 22px; margin-top: 22px; padding: 18px 2px 0; border-top: 1px solid rgba(255,255,255,.13); }
.contact-hours span { color: #eadb28; font-size: .6rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-hours strong { color: rgba(255,255,255,.78); font-size: .7rem; line-height: 1.75; text-align: right; }
.contact-form-intro { margin: -14px 0 28px; color: #68758a; font-size: .8rem; line-height: 1.65; }
.contact-section-heading { margin-bottom: 34px; }
.contact-section-heading h2 { margin-bottom: 10px; color: var(--navy); font-size: clamp(2rem, 3.6vw, 3.3rem); letter-spacing: -.045em; }
.contact-section-heading > p:last-child { margin: 0; color: #647086; }

@media (max-width: 980px) {
  .contact-intro-grid { grid-template-columns: 1fr; }
  .contact-intro-copy > p:not(.contact-overline) { white-space: normal; }
  .contact-connect .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .contact-intro-section { padding: 125px 0 20px; }
  .contact-intro-section::before { left: 34%; }
  .contact-intro-section::after { right: -70px; width: 280px; opacity: .45; }
  .contact-connect { padding-top: 25px; padding-bottom: 30px; }
  .contact-intro-copy h1 { font-size: clamp(2rem, 9.5vw, 2.8rem); }
  .contact-connect .contact-details, .contact-form-card { padding: 28px 20px; }
  .contact-form-card > h2 { font-size: clamp(1.3rem, 6vw, 1.65rem); }
  .contact-hours { flex-direction: column; }
  .contact-hours strong { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  .contact-intro-section::before, .contact-intro-section::after { animation: none !important; }
}

/* Mobile App Shell */
.mobile-header-copy,
.mobile-quick-actions,
.mobile-app-nav,
.mobile-more-sheet {
  display: none;
}

.skip-link {
  position: fixed;
  z-index: 250;
  top: 8px;
  left: 8px;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 12px;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 10px 26px rgba(3, 24, 59, .28);
  transform: translateY(calc(-100% - 18px));
  transition: transform .2s ease;
}

.skip-link:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  transform: translateY(0);
}

@media (max-width: 768px) {
  :root {
    --site-header-height: calc(68px + env(safe-area-inset-top, 0px));
    --mobile-dock-height: 76px;
    --mobile-dock-clearance: calc(112px + env(safe-area-inset-bottom, 0px));
  }

  .header-brand-name {
    display: none;
  }

  html {
    scroll-padding-top: calc(var(--site-header-height) + 12px);
    scroll-padding-bottom: var(--mobile-dock-clearance);
  }

  body {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    overflow-x: clip;
    scroll-padding-bottom: var(--mobile-dock-clearance);
  }

  body.modal-open,
  body.mobile-sheet-open {
    overflow: hidden;
    overscroll-behavior: none;
  }

  .shell {
    width: auto;
    margin-right: max(16px, env(safe-area-inset-right, 0px));
    margin-left: max(16px, env(safe-area-inset-left, 0px));
  }

  .section {
    padding-block: 60px;
  }

  footer {
    padding-bottom: var(--mobile-dock-clearance);
  }

  /* Compact, safe-area-aware app bar */
  .site-header {
    z-index: 80;
    top: 0;
    height: var(--site-header-height);
    gap: 10px;
    padding-top: env(safe-area-inset-top, 0px);
    padding-right: max(12px, env(safe-area-inset-right, 0px));
    padding-bottom: 0;
    padding-left: max(12px, env(safe-area-inset-left, 0px));
    background: linear-gradient(102deg, rgba(7, 45, 105, .97) 0%, rgba(15, 83, 155, .97) 58%, rgba(169, 161, 18, .96) 132%);
    box-shadow: 0 8px 28px rgba(3, 24, 59, .2);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    backdrop-filter: blur(18px) saturate(140%);
    transform: translateY(0);
    transition: transform .35s cubic-bezier(.16, 1, .3, 1), background .25s ease, box-shadow .25s ease;
  }

  .site-header.header-hidden {
    transform: translateY(-105%);
  }

  .site-header.is-scrolled {
    background: linear-gradient(102deg, rgba(7, 45, 105, .98) 0%, rgba(15, 83, 155, .98) 58%, rgba(169, 161, 18, .97) 132%);
    box-shadow: 0 9px 30px rgba(3, 24, 59, .26);
  }

  .header-logo {
    width: 50px;
    height: 50px;
    padding: 4px;
  }

  .header-logo::before {
    inset: -2px;
  }

  .mobile-header-copy {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    margin-left: 2px;
    line-height: 1.1;
  }

  .mobile-header-copy strong {
    overflow: hidden;
    color: #fff;
    font-size: .92rem;
    font-weight: 800;
    letter-spacing: .035em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .mobile-header-copy small,
  .mobile-header-copy span {
    overflow: hidden;
    margin-top: 4px;
    color: rgba(255, 255, 255, .7);
    font-size: .54rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .header-socials,
  .header-cta {
    display: none !important;
  }

  .menu-toggle {
    position: relative;
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;
    background: rgba(255, 255, 255, .1);
    -webkit-tap-highlight-color: transparent;
    transition: background-color .22s ease, border-color .22s ease, transform .22s ease;
  }

  .menu-toggle:active {
    transform: scale(.96);
  }

  .menu-toggle:focus-visible {
    outline: 3px solid rgba(244, 216, 23, .75);
    outline-offset: 2px;
  }

  .menu-toggle span {
    position: absolute;
    left: 10px;
    width: 22px;
    height: 2px;
    margin: 0;
    border-radius: 99px;
    background: #fff;
    transform-origin: center;
    transition: opacity .2s ease, transform .25s cubic-bezier(.22, .7, .2, 1);
  }

  .menu-toggle span:nth-child(1) { transform: translateY(-7px); }
  .menu-toggle span:nth-child(2) { transform: translateY(0); }
  .menu-toggle span:nth-child(3) { transform: translateY(7px); }
  .menu-toggle[aria-expanded="true"] { background: rgba(255, 255, 255, .18); }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(.25); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }

  .main-nav,
  .main-nav.open {
    display: none !important;
  }

  /* First-screen home hero */
  .hero {
    height: auto;
    min-height: 610px;
    min-height: max(610px, 100svh);
    min-height: max(610px, 100dvh);
    align-items: flex-end;
    padding: calc(var(--site-header-height) + 38px) 0 calc(var(--mobile-dock-clearance) + 6px);
  }

  .hero-slide {
    inset: -2%;
    background-position: 62% center;
    transform: scale(1.035);
  }

  .hero-slider-controls {
    bottom: calc(var(--mobile-dock-clearance) + 14px);
    right: 18px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(3, 17, 42, .3) 0%, rgba(3, 24, 58, .52) 36%, rgba(3, 20, 50, .96) 100%),
      linear-gradient(90deg, rgba(3, 30, 69, .78) 0%, rgba(3, 30, 69, .14) 88%);
  }

  .hero-shade {
    right: -28%;
    bottom: -15%;
    width: 92%;
    height: 55%;
    opacity: .8;
  }

  .hero-content {
    padding-top: 0;
  }

  .eyebrow {
    max-width: 100%;
    margin-bottom: 14px;
    font-size: clamp(.58rem, 2.55vw, .69rem);
    line-height: 1.55;
    letter-spacing: .055em;
  }

  .eyebrow span {
    margin-inline: 3px;
  }

  .hero h1 {
    max-width: 100%;
    margin-bottom: 17px;
    overflow-wrap: normal;
    font-size: clamp(2.35rem, 12.1vw, 3.65rem);
    line-height: .98;
    letter-spacing: -.055em;
  }

  .hero h1 span {
    display: inline-block;
    max-width: 100%;
  }

  .hero-copy {
    max-width: 36rem;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, .84);
    font-size: clamp(.86rem, 3.5vw, .98rem);
    line-height: 1.58;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 52px;
    padding-inline: 18px;
  }

  .hero-stat {
    display: none;
  }

  /* Fast actions immediately below the home hero */
  .mobile-quick-actions {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: min(100% - 24px, 540px);
    margin: 12px auto 18px;
  }

  .mobile-quick-action {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 100px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 55px 5px 12px;
    border: 1px solid rgba(10, 66, 143, .1);
    border-radius: 20px;
    color: var(--navy);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 13px 32px rgba(5, 33, 77, .14);
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }

  .mobile-quick-action::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 50%;
    width: 38px;
    height: 38px;
    border-radius: 13px;
    background: linear-gradient(145deg, #e9f2ff, #fff);
    box-shadow: inset 0 0 0 1px rgba(10, 66, 143, .1), 0 6px 15px rgba(10, 66, 143, .12);
    transform: translateX(-50%);
  }

  .mobile-quick-action::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
  }

  .mobile-quick-action:active {
    transform: scale(.97);
  }

  .mobile-quick-action:focus-visible {
    outline: 3px solid rgba(14, 95, 192, .28);
    outline-offset: 2px;
  }

  .mobile-quick-action small,
  .mobile-quick-action strong {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-quick-action small {
    margin-bottom: 2px;
    color: #5f6b7e;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .075em;
    text-transform: uppercase;
  }

  .mobile-quick-action strong {
    font-size: clamp(.64rem, 2.75vw, .76rem);
    line-height: 1.25;
  }

  .quick-call::after {
    width: 15px;
    height: 17px;
    border-bottom: 3px solid var(--blue);
    border-left: 3px solid var(--blue);
    border-radius: 2px 2px 3px 10px;
    transform: translateX(-50%) rotate(-38deg);
  }

  .quick-chat {
    border-color: rgba(30, 192, 102, .18);
  }

  .quick-chat::before {
    background: linear-gradient(145deg, #28ce76, #16ad5d);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .2), 0 7px 17px rgba(24, 181, 96, .24);
  }

  .quick-chat::after {
    width: 18px;
    height: 14px;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: -4px 8px 0 -5px #fff;
  }

  .quick-map::before {
    background: linear-gradient(145deg, #fff9d0, #fff);
    box-shadow: inset 0 0 0 1px rgba(191, 173, 0, .15), 0 7px 17px rgba(181, 164, 0, .15);
  }

  .quick-map::after {
    width: 14px;
    height: 14px;
    border: 3px solid #af9f03;
    border-radius: 50% 50% 50% 3px;
    transform: translate(-50%, -2px) rotate(-45deg);
  }

  /* Touch-native project browsing */
  .project-showcase {
    grid-template-columns: minmax(0, 1fr);
  }

  .ongoing-projects {
    padding: 26px 16px 30px;
  }

  .ongoing-projects .project-panel-title {
    min-height: 38px;
    margin-bottom: 14px;
  }

  .ongoing-card {
    width: 100%;
    max-width: 520px;
    margin-inline: auto;
    border-radius: 21px;
    box-shadow: 0 14px 34px rgba(5, 51, 83, .12);
  }

  .ongoing-card .project-image {
    min-height: clamp(285px, 94vw, 410px);
  }

  .completed-projects {
    overflow: hidden;
    padding: 27px 0 31px;
  }

  .completed-projects-header {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 13px;
    padding-inline: 16px;
  }

  .completed-projects-header .project-panel-title {
    margin-bottom: 0;
  }

  .project-filters {
    width: calc(100% + 16px);
    flex-wrap: nowrap;
    gap: 7px;
    margin-right: -16px;
    padding: 1px 16px 5px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .project-filters::-webkit-scrollbar,
  .completed-project-carousel::-webkit-scrollbar {
    display: none;
  }

  .project-filters button {
    min-width: max-content;
    min-height: 44px;
    flex: 0 0 auto;
    padding: 0 16px;
    border: 1px solid rgba(10, 66, 143, .1);
    background: rgba(255, 255, 255, .72);
    font-size: .63rem;
    -webkit-tap-highlight-color: transparent;
  }

  .project-filters button:focus-visible,
  .carousel-dot:focus-visible {
    outline: 3px solid rgba(14, 95, 192, .25);
    outline-offset: 2px;
  }

  .completed-project-carousel {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 16px 14px;
    border-radius: 0;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    touch-action: pan-x pan-y;
    overscroll-behavior-inline: contain;
  }

  .completed-project-grid {
    display: flex;
    width: max-content;
    max-width: none;
    gap: 12px;
    transform: none !important;
    transition: none !important;
    will-change: auto;
  }

  .completed-project-grid::after {
    content: "";
    width: 4px;
    flex: 0 0 4px;
  }

  .completed-project-grid .project-card,
  .completed-project-grid.single-project .project-card {
    width: min(82vw, 340px);
    flex: 0 0 min(82vw, 340px) !important;
    border-radius: 21px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    box-shadow: 0 12px 29px rgba(6, 42, 91, .11);
  }

  .completed-project-grid .project-card.carousel-clone {
    display: none;
  }

  .completed-project-grid .project-image {
    min-height: clamp(285px, 88vw, 365px);
  }

  .project-info {
    min-height: 94px;
    padding: 17px 16px;
  }

  .project-info h3 {
    font-size: .77rem;
  }

  .project-contact {
    right: 11px;
    transform: translateY(12px);
  }

  .project-contact a {
    min-height: 44px;
    gap: 8px;
    padding: 4px 2px 4px 10px;
    font-size: .58rem;
  }

  .project-wa-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .project-wa-icon svg {
    width: 21px;
    height: 21px;
  }

  .booking-tag {
    margin-right: 3px;
    padding: 6px 10px;
  }

  .completed-carousel-controls {
    display: flex;
    min-height: 20px;
    justify-content: flex-start;
    margin-left: 0;
  }

  .completed-carousel-controls[hidden] {
    display: none;
  }

  .carousel-arrow {
    display: none !important;
  }

  .carousel-dots {
    min-height: 44px;
    gap: 1px;
  }

  .carousel-dot {
    position: relative;
    min-width: 44px;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    background: transparent;
  }

  .carousel-dot.active {
    width: 44px;
    background: transparent;
  }

  .carousel-dot::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #b6c2d5;
    transform: translate(-50%, -50%);
    transition: width .25s ease, background .25s ease;
  }

  .carousel-dot.active::after {
    width: 25px;
    background: linear-gradient(90deg, var(--blue), var(--gold));
  }

  /* Tighter service cards retain comfortable touch spacing */
  .services {
    padding-block: 54px;
  }

  .services-header {
    gap: 18px;
    margin-bottom: 22px;
  }

  .service-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .service-grid article {
    min-height: 0;
    padding: 20px 19px 19px;
    border-radius: 20px;
  }

  .service-icon {
    margin-bottom: 13px;
  }

  .testimonial-dots {
    min-height: 44px;
    gap: 0;
    margin-top: 4px;
  }

  .testimonial-dots button,
  .testimonial-dots button.active {
    position: relative;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 14px;
    background: transparent;
  }

  .testimonial-dots button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #aebed8;
    transform: translate(-50%, -50%);
    transition: width .22s ease, background .22s ease;
  }

  .testimonial-dots button.active::after {
    width: 22px;
    background: #1559ad;
  }

  .testimonial-dots button:focus-visible {
    outline: 3px solid rgba(14, 95, 192, .25);
    outline-offset: -2px;
  }

  /* Option 1: Glassmorphism Floating Capsule Dock */
  .mobile-app-nav {
    position: fixed;
    z-index: 70;
    left: 50%;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    display: grid;
    width: min(calc(100% - 24px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)), 480px);
    height: 66px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    padding: 5px 8px;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 999px;
    background: rgba(255, 255, 255, .82);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 16px 40px -6px rgba(7, 30, 60, .22), 0 4px 14px rgba(0, 0, 0, .08), inset 0 1px 0 rgba(255, 255, 255, .9);
    isolation: isolate;
    margin-left: calc((env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)) / 2);
    transform: translateX(-50%);
    transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
  }

  .mobile-app-nav::before,
  .mobile-app-nav::after {
    display: none;
  }

  .mobile-nav-item,
  .mobile-app-nav > a,
  .mobile-app-nav > button {
    position: relative;
    z-index: 2;
    display: flex;
    min-width: 0;
    height: 52px;
    min-height: 52px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 4px 2px;
    border: 0;
    border-radius: 999px;
    color: #5b6b7f;
    background: transparent;
    font-size: clamp(.55rem, 2.2vw, .625rem);
    font-weight: 650;
    line-height: 1;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    transition: color .25s cubic-bezier(.2, .8, .2, 1), background-color .25s cubic-bezier(.2, .8, .2, 1), transform .2s ease;
  }

  .mobile-nav-item:active,
  .mobile-app-nav > a:active,
  .mobile-app-nav > button:active {
    transform: scale(.92);
  }

  .mobile-nav-item:focus-visible,
  .mobile-app-nav > a:focus-visible,
  .mobile-app-nav > button:focus-visible {
    outline: 2px solid #f1bc39;
    outline-offset: 2px;
  }

  .mobile-nav-item.is-active {
    color: #0b61c4;
    background: linear-gradient(135deg, rgba(11, 97, 196, .12) 0%, rgba(214, 172, 20, .14) 100%);
    box-shadow: inset 0 0 0 1px rgba(11, 97, 196, .12);
  }

  .mobile-nav-item > span:last-child {
    color: #5b6b7f;
    transition: color .25s ease, font-weight .25s ease;
  }

  .mobile-nav-item.is-active > span:last-child {
    color: #0b61c4;
    font-weight: 750;
  }

  .mobile-nav-item.is-active::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 50%;
    width: 16px;
    height: 3px;
    border-radius: 99px;
    background: linear-gradient(90deg, #0b61c4 0%, #d6a214 100%);
    box-shadow: 0 0 8px rgba(11, 97, 196, .45);
    transform: translateX(-50%);
  }

  .mobile-nav-action,
  .mobile-app-nav > .mobile-nav-action {
    z-index: 3;
    align-self: center;
    width: 56px;
    height: 56px;
    min-height: 56px;
    justify-self: center;
    gap: 2px;
    margin-top: -24px;
    padding: 0;
    border: 3.5px solid #fff;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #0d75db 0%, #064a9e 60%, #d89f18 100%);
    box-shadow: 0 8px 20px rgba(8, 70, 150, .36), 0 2px 6px rgba(0, 0, 0, .12), inset 0 1px 0 rgba(255, 255, 255, .4);
    font-size: .4375rem;
    font-weight: 750;
    letter-spacing: -.1px;
    animation: mobile-action-pulse 3s infinite ease-in-out;
  }

  @keyframes mobile-action-pulse {
    0%, 100% { box-shadow: 0 8px 20px rgba(8, 70, 150, .36), 0 0 0 0 rgba(13, 117, 219, .4); }
    50% { box-shadow: 0 8px 22px rgba(8, 70, 150, .42), 0 0 0 8px rgba(13, 117, 219, 0); }
  }

  .mobile-nav-action:active {
    transform: translateY(-2px) scale(.93);
  }

  .mobile-nav-action.is-active {
    color: #fff;
    background: linear-gradient(135deg, #0d75db 0%, #064a9e 60%, #d89f18 100%);
  }

  .mobile-nav-action.is-active::after {
    display: none;
  }

  .mobile-nav-icon {
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    color: #5b6b7f;
    transition: color .25s ease, transform .25s ease;
  }

  .mobile-nav-item.is-active .mobile-nav-icon {
    color: #0b61c4;
    transform: translateY(-1px);
  }

  .mobile-nav-action .mobile-nav-icon {
    color: #fff;
  }

  .mobile-nav-icon::before,
  .mobile-nav-icon::after {
    content: "";
    position: absolute;
    box-sizing: border-box;
  }

  .icon-home::before {
    top: 1px;
    left: 4px;
    width: 10px;
    height: 10px;
    border-top: 1.5px solid currentColor;
    border-left: 1.5px solid currentColor;
    border-radius: 2px 0 0;
    transform: rotate(45deg);
  }

  .icon-home::after {
    right: 3px;
    bottom: 1px;
    left: 3px;
    height: 9px;
    border: 1.5px solid currentColor;
    border-top: 0;
    border-radius: 0 0 3px 3px;
  }

  .icon-projects::before {
    top: 1px;
    left: 3px;
    width: 13px;
    height: 16px;
    border: 1.5px solid currentColor;
    border-radius: 3px;
  }

  .icon-projects::after {
    top: 5px;
    left: 6px;
    width: 2px;
    height: 2px;
    border-radius: 1px;
    background: currentColor;
    box-shadow: 4px 0 currentColor, 0 4px currentColor, 4px 4px currentColor, 0 8px currentColor, 4px 8px currentColor;
  }

  .icon-visit::before {
    top: 2px;
    left: 1px;
    width: 16px;
    height: 14px;
    border: 1.5px solid currentColor;
    border-radius: 4px;
  }

  .icon-visit::after {
    top: 7px;
    left: 5px;
    width: 8px;
    height: 1.5px;
    border-radius: 2px;
    background: currentColor;
    box-shadow: 0 3px currentColor;
  }

  .icon-services::before {
    top: 1px;
    left: 1px;
    width: 5px;
    height: 5px;
    border-radius: 2px;
    background: currentColor;
    box-shadow: 11px 0 currentColor, 0 11px currentColor, 11px 11px currentColor;
  }

  .icon-services::after {
    display: none;
  }

  .icon-more::before {
    top: 8px;
    left: 1px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 6px 0 currentColor, 12px 0 currentColor;
  }

  .icon-more::after {
    display: none;
  }

  /* Full-screen scrim with an app-like More sheet */
  .mobile-more-sheet {
    position: fixed;
    z-index: 130;
    inset: 0;
    display: block;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .24s ease, visibility .24s ease;
  }

  .mobile-more-sheet.is-open,
  .mobile-more-sheet.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-sheet-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(3, 15, 36, .64);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
  }

  .mobile-sheet-panel {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    max-height: calc(100dvh - 54px);
    padding-top: 8px;
    padding-right: max(16px, env(safe-area-inset-right, 0px));
    padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, .9);
    border-bottom: 0;
    border-radius: 30px 30px 0 0;
    background: #fff;
    box-shadow: 0 -24px 70px rgba(2, 18, 43, .3);
    overscroll-behavior: contain;
    transform: translateY(105%);
    transition: transform .3s cubic-bezier(.22, .7, .2, 1);
  }

  .mobile-more-sheet.is-open .mobile-sheet-panel,
  .mobile-more-sheet.open .mobile-sheet-panel {
    transform: translateY(0);
  }

  .mobile-sheet-grabber {
    display: block;
    width: 42px;
    height: 5px;
    margin: 2px auto 12px;
    border-radius: 99px;
    background: #d9dfE9;
  }

  .mobile-sheet-header {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 11px;
    border-bottom: 1px solid #edf0f5;
  }

  .mobile-sheet-header h2,
  .mobile-sheet-header h3 {
    margin: 0;
    color: var(--navy);
    font-size: 1.25rem;
    letter-spacing: -.035em;
    text-transform: none;
  }

  .mobile-sheet-close {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 14px;
    color: var(--navy);
    background: var(--ice);
    font-size: 1.35rem;
  }

  .mobile-sheet-links {
    display: grid;
    gap: 3px;
    margin: 12px 0 16px;
  }

  .mobile-sheet-link,
  .mobile-sheet-links > a,
  .mobile-sheet-links > button {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    padding: 0 42px 0 14px;
    border: 0;
    border-radius: 14px;
    color: #243147;
    background: transparent;
    font-size: .86rem;
    font-weight: 700;
    text-align: left;
  }

  .mobile-sheet-link::after,
  .mobile-sheet-links > a::after,
  .mobile-sheet-links > button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 17px;
    width: 7px;
    height: 7px;
    border-top: 2px solid #9aa4b4;
    border-right: 2px solid #9aa4b4;
    transform: translateY(-50%) rotate(45deg);
  }

  .mobile-sheet-link:active,
  .mobile-sheet-links > a:active,
  .mobile-sheet-links > button:active {
    background: #f1f6ff;
  }

  .mobile-sheet-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .mobile-sheet-actions > a,
  .mobile-sheet-actions > button,
  .mobile-sheet-actions .button {
    display: flex;
    width: 100%;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding-inline: 10px;
    border: 0;
    border-radius: 16px;
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    text-align: center;
  }

  .mobile-sheet-actions > :first-child {
    background: linear-gradient(145deg, #25c86e, #14a957);
    box-shadow: 0 9px 22px rgba(25, 184, 96, .22);
  }

  .mobile-sheet-actions > :last-child {
    background: linear-gradient(105deg, var(--blue), var(--blue-bright) 64%, #a99f13 145%);
    box-shadow: 0 9px 22px rgba(10, 66, 143, .22);
  }

  .mobile-sheet-close:focus-visible,
  .mobile-sheet-link:focus-visible,
  .mobile-sheet-links > a:focus-visible,
  .mobile-sheet-links > button:focus-visible,
  .mobile-sheet-actions > a:focus-visible,
  .mobile-sheet-actions > button:focus-visible {
    outline: 3px solid rgba(14, 95, 192, .25);
    outline-offset: 2px;
  }

  /* Existing dialogs become safe-area-aware bottom sheets */
  .modal {
    z-index: 150;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    place-items: end stretch;
    padding: 0;
  }

  .modal-backdrop {
    background: rgba(3, 14, 34, .68);
  }

  .modal-panel,
  .developer-panel {
    width: 100%;
    max-width: none;
    max-height: calc(100dvh - 42px);
    margin: 0;
    padding: 32px 18px calc(22px + env(safe-area-inset-bottom, 0px));
    border-radius: 29px 29px 0 0;
    transform: translateY(105%);
    overscroll-behavior: contain;
    transition: transform .3s cubic-bezier(.22, .7, .2, 1);
  }

  .modal.open .modal-panel {
    transform: translateY(0);
  }

  .modal-panel::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 50%;
    width: 42px;
    height: 5px;
    border-radius: 99px;
    background: #d9dfe9;
    transform: translateX(-50%);
  }

  .modal-panel h2 {
    padding-right: 48px;
    font-size: clamp(1.6rem, 7.5vw, 2rem);
  }

  .modal-close,
  .developer-panel .modal-close {
    z-index: 3;
    top: 19px;
    right: 15px;
    width: 44px;
    height: 44px;
  }

  #visit-form {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    margin-top: 23px;
  }

  #visit-form label,
  #visit-form label:nth-child(4),
  #visit-form .button,
  #visit-form .form-status {
    grid-column: auto;
  }

  #visit-form input,
  #visit-form select,
  #visit-form textarea {
    min-height: 50px;
    margin-top: 7px;
    padding: 13px 14px;
    border-radius: 13px;
    font-size: 16px;
  }

  .contact-enquiry-form input,
  .contact-enquiry-form select,
  .contact-enquiry-form textarea {
    font-size: 16px;
  }

  #visit-form textarea {
    min-height: 94px;
  }

  #visit-form .button {
    min-height: 52px;
  }

  .developer-panel {
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom, 0px));
  }

  .developer-panel::before {
    z-index: 4;
  }

  .developer-offer {
    padding: 42px 18px 21px;
    border-radius: 23px 23px 0 0;
  }

  /* The dock replaces legacy floating controls on mobile. */
  .floating-whatsapp,
  .floating-whatsapp.visible,
  .back-to-top,
  .back-to-top.visible {
    display: none !important;
  }

  /* Keep secondary pages clear of the compact app bar and dock. */
  .about-story,
  .team-page .team-directory,
  .contact-intro-section,
  .contact-main {
    scroll-margin-top: var(--site-header-height);
  }

  .about-story {
    padding-top: calc(var(--site-header-height) + 42px);
  }

  .chairman-socials {
    right: 14px;
    gap: 5px;
  }

  .chairman-socials a {
    width: 44px;
    height: 44px;
  }

  .team-page .team-directory {
    padding-top: calc(var(--site-header-height) + 36px);
  }

  .contact-intro-section {
    padding-top: calc(var(--site-header-height) + 42px);
  }

  .contact-layout,
  .contact-connect .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-details,
  .contact-form-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .contact-form-card > h2 {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .footer-help a,
  .footer-nav a {
    display: flex;
    min-height: 44px;
    align-items: center;
  }
}

@media (max-width: 380px) {
  .mobile-header-copy small,
  .mobile-header-copy span {
    display: none;
  }

  .hero {
    padding-bottom: var(--mobile-dock-clearance);
  }

  .about-story-media {
    max-width: 100%;
  }

  .about-fact-card {
    width: calc(100% - 24px);
    max-width: 250px;
    margin-right: 0;
    margin-left: auto;
  }

  .about-chairman-card {
    width: 100%;
    max-width: 330px;
    height: auto;
    aspect-ratio: 33 / 31;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 11.8vw, 2.8rem);
  }

  .mobile-quick-actions {
    gap: 6px;
    width: calc(100% - 18px);
  }

  .mobile-quick-action {
    min-height: 96px;
    border-radius: 17px;
  }

  .mobile-nav-item,
  .mobile-app-nav > a:not(.mobile-nav-action),
  .mobile-app-nav > button:not(.mobile-nav-action) {
    font-size: .5625rem;
  }

  .mobile-app-nav > .mobile-nav-action {
    font-size: .4375rem;
  }

  .mobile-sheet-panel {
    padding-right: max(12px, env(safe-area-inset-right, 0px));
    padding-left: max(12px, env(safe-area-inset-left, 0px));
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .menu-toggle,
  .menu-toggle span,
  .mobile-quick-action,
  .mobile-nav-item,
  .mobile-app-nav > a,
  .mobile-app-nav > button,
  .mobile-more-sheet,
  .mobile-sheet-panel,
  .modal-panel {
    transition: none !important;
  }

  .completed-project-carousel {
    scroll-behavior: auto;
    scroll-snap-stop: normal;
  }
}

/* ─── Project Details Modal ────────────────────── */
.project-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(4, 14, 33, 0.84);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.project-modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}
.project-modal-container {
  position: relative;
  width: min(1080px, 100%);
  max-height: calc(100vh - 40px);
  background: #fff;
  border-radius: 28px;
  overflow-y: auto;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  transform: translateY(20px) scale(0.97);
  transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--ink);
}
.project-modal-backdrop.is-open .project-modal-container {
  transform: translateY(0) scale(1);
}
.project-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(6, 21, 47, 0.65);
  color: #fff;
  font-size: 1.5rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: background .2s ease, transform .2s ease;
}
.project-modal-close:hover {
  background: #0a428f;
  transform: scale(1.08);
}
.project-hero-header {
  position: relative;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  color: #fff;
  border-radius: 28px 28px 0 0;
  isolation: isolate;
}
.project-hero-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(6,21,47,0.2) 0%, rgba(6,21,47,0.92) 100%);
  border-radius: inherit;
}
.project-hero-content {
  width: 100%;
}
.project-hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.project-hero-badge {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  background: rgba(255,255,255,0.2);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #fff;
}
.project-hero-badge.status-completed {
  background: #10b981;
}
.project-hero-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 6px;
  color: #fff;
}
.project-hero-location {
  font-size: 1.05rem;
  opacity: .9;
  margin-bottom: 20px;
}
.project-stats-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.25);
}
.project-stat-item {
  display: flex;
  flex-direction: column;
}
.project-stat-item strong {
  font-size: 1.4rem;
  font-weight: 800;
  color: #f3d61b;
}
.project-stat-item span {
  font-size: .72rem;
  text-transform: uppercase;
  opacity: .8;
}
.project-modal-body {
  padding: 40px;
}
.project-section-block {
  margin-bottom: 40px;
}
.project-section-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #06152f;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.project-section-title::before {
  content: "";
  width: 4px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #0a428f, #d6c814);
}
.project-intro-text {
  font-size: .98rem;
  line-height: 1.7;
  color: #374151;
  background: #f8fafc;
  border-left: 4px solid #0a428f;
  padding: 22px 26px;
  border-radius: 0 16px 16px 0;
}
.project-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}
.detail-card {
  background: #f1f5f9;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}
.detail-card-label {
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 4px;
}
.detail-card-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
}
.facilities-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.facility-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  font-size: .88rem;
  font-weight: 600;
  color: #1e293b;
  transition: all .2s ease;
}
.facility-pill:hover {
  border-color: #0a428f;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(10,66,143,0.1);
}
.facility-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eff6ff;
  color: #0a428f;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.floor-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.floor-plan-item {
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 20px;
  background: #fff;
  transition: all .2s ease;
}
.floor-plan-item:hover {
  border-color: #0a428f;
  box-shadow: 0 10px 24px rgba(10,66,143,0.12);
}
.floor-plan-item h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: #0a428f;
}
.floor-plan-meta {
  font-size: .82rem;
  color: #64748b;
  margin-bottom: 12px;
}
.floor-plan-specs {
  display: flex;
  gap: 12px;
  font-size: .78rem;
  font-weight: 700;
  color: #0f172a;
}
.brochure-download-banner {
  background: linear-gradient(135deg, #06152f 0%, #0a428f 100%);
  border-radius: 20px;
  padding: 32px 40px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 14px 40px rgba(6,21,47,0.25);
}
.brochure-banner-text h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: #fff;
}
.brochure-banner-text p {
  font-size: .9rem;
  opacity: .85;
  margin: 0;
}
.brochure-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  background: #f3d61b;
  color: #06152f;
  font-weight: 800;
  font-size: .95rem;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.brochure-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(243,214,27,0.4);
}

/* ─── Apartment Projects Page Redesign ────────────────────── */
.apartment-page-main {
  background-color: #f8fafc;
  padding-bottom: 0;
}

.apartment-hero-section {
  padding-top: calc(var(--site-header-height) + 36px);
  padding-bottom: 40px;
  background: #ffffff;
}

.apartment-page-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.apartment-header-kicker {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #083f86;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.apartment-header-title-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.apartment-header-title-row h1 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  color: #091b38;
  letter-spacing: -0.03em;
  margin-bottom: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.apartment-header-divider {
  width: 2px;
  height: 36px;
  background-color: #d6c814;
  flex-shrink: 0;
}

.apartment-header-summary {
  font-size: 0.95rem;
  color: #526075;
  max-width: 480px;
  margin-bottom: 0;
  line-height: 1.45;
}

.apartment-header-grid-bg {
  position: absolute;
  top: -20px;
  right: 0;
  width: 260px;
  height: 120px;
  background-image: 
    linear-gradient(to right, rgba(9, 27, 56, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(9, 27, 56, 0.06) 1px, transparent 1px);
  background-size: 14px 14px;
  pointer-events: none;
  opacity: 0.7;
}

.apartment-ongoing-section {
  padding-top: 36px;
  padding-bottom: 48px;
}

.apartment-completed-section {
  position: relative;
  padding-top: 24px;
  padding-bottom: 50px;
  min-height: 440px;
}

.apartment-completed-section .apartment-section-header,
.apartment-completed-section .apartment-completed-grid {
  position: relative;
  z-index: 2;
}

.apartment-skyline-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: min(850px, 65vw);
  height: 320px;
  background-image: url('assets/colombo-skyline.png');
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  pointer-events: none;
  opacity: 0.85;
  z-index: 1;
}

.apartment-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.apartment-section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  font-weight: 800;
  color: #000000;
  text-transform: none;
  letter-spacing: -0.025em;
  margin-bottom: 0;
}

.apartment-section-divider {
  font-size: 1.5rem;
  color: #cbd5e1;
  font-weight: 300;
}

.apartment-section-header p {
  font-size: 1.1rem;
  color: #334155;
  margin-bottom: 0;
  font-weight: 500;
}

.apartment-cards-grid,
.apartment-ongoing-grid,
.apartment-completed-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 640px) {
  .apartment-cards-grid,
  .apartment-ongoing-grid,
  .apartment-completed-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .apartment-cards-grid,
  .apartment-ongoing-grid,
  .apartment-completed-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.apartment-card {
  width: 100%;
  max-width: 100%;
  border-radius: 26px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(247, 249, 242, 0.95) 0%, rgba(240, 244, 253, 0.95) 100%);
  border: 1px solid rgba(230, 235, 242, 0.7);
  padding: 16px 16px 20px 16px;
}

.apartment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(9, 27, 56, 0.08);
}

/* Ongoing Card Gradient & Styling */
.apartment-card--ongoing {
  background: linear-gradient(135deg, rgba(18, 61, 131, 0.97) 0%, rgba(37, 79, 114, 0.97) 35%, rgba(115, 125, 63, 0.97) 68%, rgba(213, 202, 6, 0.97) 100%);
  padding: 16px 16px 20px 16px;
  border-radius: 26px;
  border: none;
}

.apartment-card-image-box,
.apartment-card--ongoing .apartment-card-image-box,
.apartment-card--completed .apartment-card-image-box {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  background-color: #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.apartment-card-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.apartment-card:hover .apartment-card-img {
  transform: scale(1.04);
}

.apartment-card-body {
  padding: 16px 4px 2px 4px;
}

.apartment-card--ongoing .apartment-card-body,
.apartment-card--completed .apartment-card-body {
  padding: 16px 4px 2px 4px;
}

.apartment-card--ongoing .apartment-card-tag {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #f3d61b;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.apartment-card--ongoing .apartment-card-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.35;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 0;
}

.apartment-card-subtitle {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: inherit;
  opacity: 1;
  margin-top: 2px;
  letter-spacing: -0.01em;
}

/* Completed Card Styling */
.apartment-card--completed {
  background: linear-gradient(135deg, rgba(247, 249, 242, 0.95) 0%, rgba(240, 244, 253, 0.95) 100%);
  border: 1px solid rgba(230, 235, 242, 0.7);
  padding: 16px 16px 20px 16px;
  border-radius: 26px;
}

.apartment-card--completed .apartment-card-image-box {
  background-color: #e2e8f0;
}

.apartment-card--completed .apartment-card-tag {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #074031;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.apartment-card--completed .apartment-card-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #074031;
  line-height: 1.35;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .apartment-header-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .apartment-header-divider {
    display: none;
  }

  .apartment-cards-grid,
  .apartment-ongoing-grid,
  .apartment-completed-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .apartment-card-image-box {
    aspect-ratio: 1 / 0.88;
  }
}

/* Reusable Video Popup Modal */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(3, 10, 26, 0.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.video-modal-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: #061838;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(240, 180, 41, 0.15);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal-overlay.is-active .video-modal-container {
  transform: scale(1);
}

.video-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.video-modal-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.video-modal-title span {
  color: var(--gold, #f0b429);
}

.video-modal-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.video-modal-close:hover {
  background: #e53e3e;
  transform: scale(1.08);
}

.video-modal-body {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.video-modal-body video,
.video-modal-body iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-card,
.video-symbol,
.about-review-link,
.about-review-play,
.project-video-badge {
  cursor: pointer;
}

.project-video-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(8, 63, 134, 0.88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 215, 0, 0.7);
  border-radius: 30px;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.82rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-video-badge:hover {
  background: #083f86;
  border-color: #ffd700;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 25px rgba(255, 215, 0, 0.45);
}

.project-video-badge .play-icon-shape {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #ffd700;
  color: #083f86;
  border-radius: 50%;
  font-size: 0.72rem;
  padding-left: 2px;
  transition: transform 0.3s ease;
}

.project-video-badge:hover .play-icon-shape {
  transform: scale(1.15);
}
