/* ======================================== */
/* FONTS & CSS CUSTOM PROPERTIES            */
/* ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700;800&family=Open+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --blue-primary:   #1b62ae;
    --blue-dark:      #0d3d6b;
    --blue-mid:       #1e72c5;
    --blue-light:     #3a90d8;
    --blue-xlight:    #ddeeff;
    --off-white:      #f3f6fa;
    --white:          #ffffff;
    --off-black:      #2a2a2a;
    --text-body:      #3c3c3c;
    --text-muted:     #6b7a8d;
    --border-color:   #cfdde9;
    --shadow-blue:    rgba(27, 98, 174, 0.14);
    --shadow-dark:    rgba(0, 0, 0, 0.12);
    --header-height:  108px;
    --transition:     all 0.3s ease;
    --font-heading:   'Exo 2', sans-serif;
    --font-body:      'Open Sans', sans-serif;
}

/* ======================================== */
/* RESET & BASE                             */
/* ======================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--off-white);
    color: var(--text-body);
    line-height: 1.6;
}

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

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

ul {
    list-style: none;
}

/* ======================================== */
/* UTILITY: CONTAINER                       */
/* ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 12px var(--shadow-blue);
    height: var(--header-height);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 24px rgba(27, 98, 174, 0.2);
}

.header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-logo {
    flex-shrink: 0;
}

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

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    line-height: 1.2;
    color: var(--off-black);
    padding: 8px 13px;
    border-radius: 4px;
    transition: var(--transition);
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 13px;
    right: 13px;
    height: 2px;
    background-color: var(--blue-primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue-primary);
    background-color: var(--blue-xlight);
}

.nav-link.active::after,
.nav-link:hover::after {
    transform: scaleX(1);
}

.header-contact {
    flex-shrink: 0;
    margin-left: auto;
}

.header-email {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.header-email:hover {
    opacity: 0.8;
}

.header-email i {
    font-size: 16px;
    color: var(--blue-primary);
}

.header-email span {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2px;
    line-height: 1.2;
    color: var(--blue-primary);
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    margin-left: auto;
}

.ham-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--blue-primary);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.open .ham-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.open .ham-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open .ham-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

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

.hero-section {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2000ms ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(8, 24, 50, 0.38) 0%,
        rgba(13, 61, 107, 0.45) 50%,
        rgba(8, 24, 50, 0.55) 100%
    );
    z-index: 1;
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 32px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
    max-width: 860px;
}

.hero-sub {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 2.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 44px;
    max-width: 640px;
    text-transform: uppercase;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.2;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-mid) 0%, var(--blue-dark) 100%);
    padding: 16px 44px;
    border-radius: 4px;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.30);
    transition: var(--transition);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.hero-btn:hover {
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-mid) 100%);
    border-color: rgba(255, 255, 255, 0.65);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.65);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background: var(--white);
    border-color: var(--white);
    transform: scale(1.25);
}

/* ======================================== */
/* SECTION 1: ICON BOXES                    */
/* ======================================== */

.icon-boxes-section {
    background-color: var(--white);
    padding: 84px 0 80px;
}

.icon-boxes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.icon-box {
    background-color: var(--off-white);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--blue-primary);
    border-radius: 6px;
    padding: 44px 32px 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.icon-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, var(--blue-xlight) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.icon-box:hover {
    transform: translateY(-8px);
    border-top-color: var(--blue-mid);
    box-shadow: 0 20px 50px var(--shadow-blue);
    border-color: rgba(27, 98, 174, 0.25);
}

.icon-box:hover::before {
    opacity: 1;
}

.icon-box-icon {
    position: relative;
    z-index: 1;
    width: 74px;
    height: 74px;
    background: linear-gradient(135deg, var(--blue-mid) 0%, var(--blue-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 26px;
    box-shadow: 0 6px 20px var(--shadow-blue);
    transition: var(--transition);
}

.icon-box:hover .icon-box-icon {
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-mid) 100%);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 32px rgba(27, 98, 174, 0.35);
}

.icon-box-icon i {
    font-size: 28px;
    color: var(--white);
}

.icon-box-title {
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.3;
    color: var(--blue-dark);
    margin-bottom: 18px;
    text-transform: uppercase;
}

.icon-box-text {
    position: relative;
    z-index: 1;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.15px;
    line-height: 1.8;
    color: var(--text-body);
}

/* ======================================== */
/* FAT FOOTER SECTION                       */
/* ======================================== */

.fat-footer {
    background: linear-gradient(150deg, var(--blue-dark) 0%, #071f3a 100%);
    padding: 70px 0 56px;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    line-height: 1.2;
    color: var(--blue-light);
    text-transform: uppercase;
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(58, 144, 216, 0.3);
}

/* Footer Contact */
.footer-company {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.4px;
    line-height: 1.4;
    color: var(--white);
    margin-bottom: 18px;
}

.footer-address,
.footer-phone,
.footer-email-row {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.footer-address i,
.footer-phone i,
.footer-email-row i {
    color: var(--blue-light);
    font-size: 14px;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-phone a,
.footer-email-row a {
    color: rgba(255, 255, 255, 0.72);
    transition: var(--transition);
}

.footer-phone a:hover,
.footer-email-row a:hover {
    color: var(--blue-light);
}

/* Footer Guide */
.guide-link {
    display: inline-block;
    transition: var(--transition);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
    margin-bottom: 16px;
}

.guide-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
}

.guide-img {
    width: 175px;
    height: 183px;
    display: block;
    border-radius: 6px;
    object-fit: cover;
}

.footer-guide-text {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.58);
}

/* Footer Map */
.map-wrapper {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    filter: saturate(0.8) brightness(0.9);
}

/* ======================================== */
/* COPYRIGHT FOOTER BAR                     */
/* ======================================== */

.copyright-bar {
    background-color: #080808;
    padding: 13px 24px;
    text-align: center;
}

.copyright-bar p {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.4px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.38);
}

.copyright-bar a {
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.copyright-bar a:hover {
    color: var(--blue-light);
}

/* ======================================== */
/* STICKY PHONE BAR (mobile only)           */
/* ======================================== */

.sticky-phone-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, var(--blue-dark) 0%, var(--blue-primary) 60%, var(--blue-mid) 100%);
    height: 48px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -3px 16px rgba(0, 0, 0, 0.25);
}

.sticky-phone-bar a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    transition: var(--transition);
}

.sticky-phone-bar a:hover {
    opacity: 0.85;
}

.sticky-phone-bar i {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.80);
}

.sticky-phone-bar span {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.8px;
    line-height: 1;
    color: var(--white);
    text-transform: uppercase;
}

/* ======================================== */
/* PAGE TITLE BAR (sub-pages)               */
/* ======================================== */

.page-title-bar {
    background: linear-gradient(140deg, var(--blue-dark) 0%, var(--blue-primary) 55%, var(--blue-mid) 100%);
    padding: 80px 24px 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-title-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 15% 50%, rgba(58, 144, 216, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 50%, rgba(13, 61, 107, 0.25) 0%, transparent 55%);
    pointer-events: none;
}

.page-title-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--blue-light), transparent);
}

.page-title-bar-inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.page-title-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-light), rgba(255, 255, 255, 0.5));
    margin: 0 auto 16px;
    border-radius: 2px;
}

.page-subtitle {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
}

/* ======================================== */
/* PAGE CONTENT PLACEHOLDER                 */
/* ======================================== */

.page-content {
    background-color: var(--white);
    padding: 80px 0;
}

.content-coming {
    text-align: center;
    padding: 60px 32px;
}

.content-coming i {
    font-size: 48px;
    color: var(--border-color);
    margin-bottom: 20px;
    display: block;
}

.content-coming h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.3;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.content-coming p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ======================================== */
/* ABOUT PAGE – INTRO (2-COL)               */
/* ======================================== */

.about-intro {
    background-color: var(--white);
    padding: 88px 0 80px;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1.2;
    color: var(--blue-mid);
    text-transform: uppercase;
    border-left: 3px solid var(--blue-mid);
    padding-left: 10px;
    margin-bottom: 16px;
}

.about-heading {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    letter-spacing: 0.3px;
    line-height: 1.15;
    color: var(--blue-dark);
    margin-bottom: 10px;
}

.about-lead {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 1.5px;
    line-height: 1.4;
    color: var(--blue-mid);
    text-transform: uppercase;
    margin-bottom: 22px;
}

.about-body-text {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 1.85;
    color: var(--text-body);
    margin-bottom: 32px;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.8px;
    line-height: 1.2;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-mid) 0%, var(--blue-dark) 100%);
    padding: 14px 32px;
    border-radius: 4px;
    text-transform: uppercase;
    transition: var(--transition);
    box-shadow: 0 4px 16px var(--shadow-blue);
}

.about-cta-btn:hover {
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-mid) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(27, 98, 174, 0.3);
}

/* About Image */
.about-image-frame {
    position: relative;
    border-radius: 8px;
    overflow: visible;
}

.about-image-frame img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.about-image-frame::before {
    content: '';
    position: absolute;
    top: -14px;
    right: -14px;
    bottom: 14px;
    left: 14px;
    border: 2px solid var(--blue-xlight);
    border-radius: 10px;
    z-index: -1;
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, var(--blue-mid) 0%, var(--blue-dark) 100%);
    color: var(--white);
    border-radius: 8px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 28px rgba(13, 61, 107, 0.4);
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
    color: var(--white);
}

.badge-number sup {
    font-size: 20px;
    font-weight: 700;
    vertical-align: super;
}

.badge-label {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
}

/* ======================================== */
/* ABOUT PAGE – THREE PILLARS               */
/* ======================================== */

.pillars-section {
    background-color: var(--off-white);
    padding: 88px 0 80px;
    border-top: 1px solid var(--border-color);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
}

.pillar-card {
    background-color: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--blue-primary);
    padding: 44px 32px 40px;
    transition: var(--transition);
    position: relative;
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 52px var(--shadow-blue);
    border-color: rgba(27, 98, 174, 0.25);
}

.pillar-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--blue-mid) 0%, var(--blue-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 6px 18px var(--shadow-blue);
    transition: var(--transition);
}

.pillar-card:hover .pillar-icon {
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-mid) 100%);
    box-shadow: 0 10px 28px rgba(27, 98, 174, 0.32);
}

.pillar-icon i {
    font-size: 26px;
    color: var(--white);
}

.pillar-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.2;
    color: var(--blue-dark);
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
}

.pillar-text {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.15px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 18px;
}

.pillar-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 4px;
}

.pillar-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.15px;
    line-height: 1.6;
    color: var(--text-body);
}

.pillar-list li i {
    font-size: 10px;
    color: var(--blue-mid);
    margin-top: 5px;
    flex-shrink: 0;
}

/* ======================================== */
/* GUIDE PAGE – INTRO BANNER                */
/* ======================================== */

.guide-intro-banner {
    background: linear-gradient(90deg, var(--blue-xlight) 0%, var(--white) 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 52px 0 48px;
}

.guide-banner-inner {
    max-width: 860px;
    margin: 0 auto;
}

.guide-banner-heading {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0.4px;
    line-height: 1.2;
    color: var(--blue-dark);
    margin-bottom: 8px;
}

.guide-banner-sub {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1.5px;
    line-height: 1.4;
    color: var(--blue-mid);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.guide-banner-body {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 1.85;
    color: var(--text-body);
    margin-bottom: 24px;
}

.guide-banner-toc-hint {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.2;
    color: var(--blue-mid);
    text-transform: uppercase;
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 10px 18px;
    border-radius: 4px;
}

/* ======================================== */
/* GUIDE PAGE – BODY LAYOUT                 */
/* ======================================== */

.guide-body-section {
    background-color: var(--off-white);
    padding: 64px 0 80px;
}

.guide-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    align-items: start;
}

/* ======================================== */
/* GUIDE PAGE – SIDEBAR TOC                 */
/* ======================================== */

.guide-toc {
    position: relative;
}

.toc-sticky {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--blue-primary);
    border-radius: 8px;
    padding: 28px 24px;
}

.toc-title {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.2;
    color: var(--blue-mid);
    text-transform: uppercase;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toc-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 24px;
}

.toc-link {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 1.4;
    color: var(--text-body);
    padding: 6px 10px;
    border-radius: 4px;
    border-left: 2px solid transparent;
    transition: var(--transition);
}

.toc-link:hover,
.toc-link.active {
    color: var(--blue-primary);
    background-color: var(--blue-xlight);
    border-left-color: var(--blue-primary);
    font-weight: 600;
}

.toc-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1.2;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-mid) 0%, var(--blue-dark) 100%);
    padding: 11px 16px;
    border-radius: 4px;
    text-transform: uppercase;
    transition: var(--transition);
    text-align: center;
}

.toc-cta:hover {
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-mid) 100%);
}

/* ======================================== */
/* GUIDE PAGE – MAIN CONTENT                */
/* ======================================== */

.guide-content {
    min-width: 0;
}

.guide-section {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 44px 44px 40px;
    margin-bottom: 24px;
    scroll-margin-top: calc(var(--header-height) + 20px);
}

.guide-section-last {
    margin-bottom: 0;
}

.guide-section-heading {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.2;
    color: var(--blue-dark);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--blue-xlight);
    display: flex;
    align-items: baseline;
    gap: 14px;
}

.guide-section-num {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
    color: var(--blue-mid);
    background: var(--blue-xlight);
    padding: 4px 8px;
    border-radius: 3px;
    flex-shrink: 0;
}

.guide-subheading {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.4px;
    line-height: 1.3;
    color: var(--blue-dark);
    margin-top: 28px;
    margin-bottom: 14px;
}

.guide-para {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.15px;
    line-height: 1.85;
    color: var(--text-body);
    margin-bottom: 16px;
}

.guide-para em {
    font-style: italic;
    color: var(--blue-dark);
    font-weight: 500;
}

.guide-para strong {
    font-weight: 600;
    color: var(--off-black);
}

.guide-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    padding-left: 4px;
}

.guide-list li {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.15px;
    line-height: 1.7;
    color: var(--text-body);
    padding-left: 20px;
    position: relative;
}

.guide-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--blue-primary);
    flex-shrink: 0;
}

.guide-list-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
}

/* Guide Callout Box */
.guide-callout {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--off-white);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--blue-light);
    border-radius: 6px;
    padding: 18px 20px;
    margin: 20px 0;
}

.guide-callout-blue {
    background: var(--blue-xlight);
    border-color: rgba(27, 98, 174, 0.2);
    border-left-color: var(--blue-primary);
}

.guide-callout i {
    font-size: 18px;
    color: var(--blue-primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.guide-callout p {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.15px;
    line-height: 1.7;
    color: var(--text-body);
    margin: 0;
}

.guide-callout p strong {
    font-weight: 600;
    color: var(--off-black);
}

/* Guide Technology Grid */
.guide-tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 20px 0;
}

.guide-tech-item {
    background: var(--off-white);
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--blue-primary);
    border-radius: 6px;
    padding: 20px 20px 18px;
    transition: var(--transition);
}

.guide-tech-item:hover {
    box-shadow: 0 6px 20px var(--shadow-blue);
    border-color: rgba(27, 98, 174, 0.2);
}

.guide-tech-featured {
    border-top-color: var(--blue-mid);
    background: var(--blue-xlight);
    grid-column: span 1;
}

.guide-tech-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
    color: var(--blue-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guide-tech-badge {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
    color: var(--white);
    background: var(--blue-mid);
    padding: 3px 7px;
    border-radius: 3px;
    text-transform: uppercase;
}

.guide-tech-text {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.15px;
    line-height: 1.75;
    color: var(--text-body);
}

/* Guide Conclusion Actions */
.guide-conclusion-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.guide-email-btn {
    color: var(--blue-dark) !important;
    border-color: var(--blue-primary) !important;
}

/* ======================================== */
/* GALLERY PAGE – TITLE BAR (image bg)      */
/* ======================================== */

.gallery-title-bar {
    background-image:
        linear-gradient(160deg, rgba(8, 24, 50, 0.72) 0%, rgba(13, 61, 107, 0.78) 50%, rgba(8, 24, 50, 0.84) 100%),
        url('images/g2.jpg');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
}

/* ======================================== */
/* GALLERY PAGE – INTRO BANNER              */
/* ======================================== */

.gallery-intro-section {
    background-color: var(--white);
    padding: 52px 0 48px;
    border-bottom: 1px solid var(--border-color);
}

.gallery-intro-inner {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    max-width: 860px;
    margin: 0 auto;
    background-color: var(--blue-xlight);
    border: 1px solid rgba(27, 98, 174, 0.2);
    border-left: 5px solid var(--blue-primary);
    border-radius: 8px;
    padding: 28px 32px;
}

.gallery-intro-icon {
    flex-shrink: 0;
    font-size: 22px;
    color: var(--blue-primary);
    margin-top: 2px;
}

.gallery-intro-heading {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.4px;
    line-height: 1.2;
    color: var(--blue-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.gallery-intro-body {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 1.8;
    color: var(--text-body);
}

/* ======================================== */
/* GALLERY PAGE – PHOTO GRID                */
/* ======================================== */

.gallery-grid-section {
    background-color: var(--off-white);
    padding: 72px 0 80px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    background-color: var(--blue-dark);
    aspect-ratio: 4 / 3;
    border: 1px solid var(--border-color);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, opacity 0.35s ease;
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(13, 61, 107, 0.0) 0%, rgba(13, 61, 107, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-item-overlay i {
    font-size: 36px;
    color: var(--white);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
    opacity: 0.85;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-item-overlay i {
    transform: scale(1);
}

/* ======================================== */
/* GALLERY PAGE – LIGHTBOX                  */
/* ======================================== */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(5, 15, 30, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-img-wrap {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    display: block;
    border-radius: 4px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--blue-primary);
    border-color: var(--blue-light);
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
}

/* ======================================== */
/* SHARED SECTION HEADERS (centered)        */
/* ======================================== */

.section-header-centered {
    text-align: center;
    margin-bottom: 52px;
}

.section-heading-center {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 0.4px;
    line-height: 1.15;
    color: var(--blue-dark);
    margin-bottom: 12px;
}

.section-subheading-center {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ======================================== */
/* PRODUCTS PAGE – SELECTED PRODUCTS        */
/* ======================================== */

.products-intro-section {
    background-color: var(--white);
    padding: 88px 0 80px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    background-color: var(--off-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: 0 16px 40px var(--shadow-blue);
    transform: translateY(-5px);
    border-color: rgba(27, 98, 174, 0.22);
}

.product-img-wrap {
    overflow: hidden;
    height: 220px;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.05);
}

.product-caption {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
    line-height: 1.5;
    color: var(--blue-dark);
    padding: 16px 18px 18px;
    text-align: center;
}

/* ======================================== */
/* PRODUCTS PAGE – AAR + GEOMETRY (2-COL)   */
/* ======================================== */

.aar-geo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.aar-col {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--blue-primary);
    border-radius: 8px;
    padding: 40px 36px;
    transition: var(--transition);
}

.aar-col:hover {
    box-shadow: 0 16px 40px var(--shadow-blue);
}

.aar-list {
    gap: 13px !important;
}

.aar-list li {
    font-size: 14px !important;
    line-height: 1.65 !important;
    align-items: flex-start;
}

.aar-list li span {
    flex: 1;
    min-width: 0;
}

.aar-list li strong {
    font-weight: 600;
    color: var(--off-black);
}

/* ======================================== */
/* PRODUCTS PAGE – VIDEO EMBED              */
/* ======================================== */

.video-section {
    background-color: var(--white);
    padding: 88px 0 80px;
    border-top: 1px solid var(--border-color);
}

.video-outer {
    max-width: 860px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    border: 1px solid var(--border-color);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* ======================================== */
/* PRODUCTS PAGE – PARTNER LOGOS            */
/* ======================================== */

.partners-section {
    background-color: var(--off-white);
    padding: 88px 0 80px;
    border-top: 1px solid var(--border-color);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
}

.partner-logo-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    min-height: 100px;
}

.partner-logo-card:hover {
    box-shadow: 0 8px 28px var(--shadow-blue);
    border-color: rgba(27, 98, 174, 0.25);
    transform: translateY(-3px);
}

.partner-logo-card img {
    max-width: 140px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.partner-logo-card:hover img {
    filter: grayscale(0%);
}

/* ======================================== */
/* SERVICES PAGE – SERVICE CARDS            */
/* ======================================== */

.services-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    border-left: 5px solid var(--blue-primary);
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: 0 16px 48px var(--shadow-blue);
    border-left-color: var(--blue-mid);
    transform: translateY(-4px);
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 40px 24px;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(90deg, var(--blue-xlight) 0%, var(--white) 60%);
}

.service-card-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    line-height: 1.2;
    color: var(--blue-mid);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.4px;
    line-height: 1.2;
    color: var(--blue-dark);
    text-transform: uppercase;
}

.service-card-body {
    padding: 32px 40px 36px;
}

.service-card-body .pillar-text:last-of-type {
    margin-bottom: 20px;
}

/* ======================================== */
/* ABOUT PAGE – CTA STRIP                   */
/* ======================================== */

.about-cta-strip {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 60%, var(--blue-mid) 100%);
    padding: 64px 0;
}

.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-strip-heading {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 10px;
}

.cta-strip-sub {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    max-width: 580px;
}

.cta-strip-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1.2;
    color: var(--blue-dark);
    background-color: var(--white);
    padding: 14px 28px;
    border-radius: 4px;
    text-transform: uppercase;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary:hover {
    background-color: var(--blue-xlight);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    line-height: 1.2;
    color: var(--white);
    background: transparent;
    padding: 14px 28px;
    border-radius: 4px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    transition: var(--transition);
    white-space: nowrap;
}

.cta-btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ======================================== */
/* RESPONSIVE – TABLET (max 1024px)         */
/* ======================================== */

@media (max-width: 1024px) {
    .header-inner {
        padding: 0 20px;
        gap: 16px;
    }

    .header-logo img {
        width: 155px;
    }

    .nav-link {
        font-size: 12px;
        padding: 7px 10px;
        letter-spacing: 0.5px;
    }

    .header-email span {
        font-size: 12px;
    }

    .hero-title {
        font-size: 44px;
    }

    .icon-boxes-grid {
        gap: 24px;
    }

    .footer-grid {
        gap: 36px;
    }

    /* About page */
    .about-intro-grid {
        gap: 48px;
    }

    .about-heading {
        font-size: 30px;
    }

    .about-image-frame img {
        height: 380px;
    }

    .pillars-grid {
        gap: 24px;
    }

    .cta-strip-inner {
        flex-direction: column;
        text-align: center;
        gap: 28px;
    }

    .cta-strip-sub {
        max-width: 100%;
    }

    /* Products page */
    .section-heading-center {
        font-size: 30px;
    }

    .aar-geo-grid {
        gap: 32px;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Gallery page */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    /* Guide page */
    .guide-layout {
        grid-template-columns: 220px 1fr;
        gap: 32px;
    }

    .guide-section {
        padding: 36px 32px;
    }
}

/* ======================================== */
/* RESPONSIVE – MOBILE (max 768px)          */
/* ======================================== */

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    body {
        padding-bottom: 48px;
    }

    /* Header */
    .header-inner {
        padding: 0 16px;
        gap: 12px;
    }

    .header-logo img {
        width: 130px;
    }

    .header-contact {
        display: none;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 8px 24px var(--shadow-dark);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.35s ease;
        z-index: 999;
        justify-content: flex-start;
    }

    .main-nav.open {
        max-height: 420px;
        padding: 12px 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .nav-link {
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.8px;
        line-height: 1.2;
        padding: 14px 20px;
        border-radius: 0;
        border-bottom: 1px solid var(--border-color);
        text-align: left;
        color: var(--off-black);
    }

    .nav-link::after {
        display: none;
    }

    .nav-link.active,
    .nav-link:hover {
        background-color: var(--blue-xlight);
        color: var(--blue-primary);
    }

    /* Hero */
    .hero-section {
        height: 520px;
    }

    .hero-title {
        font-size: 30px;
        letter-spacing: 0.3px;
        margin-bottom: 14px;
    }

    .hero-sub {
        font-size: 13px;
        letter-spacing: 1.5px;
        margin-bottom: 30px;
    }

    .hero-btn {
        font-size: 12px;
        letter-spacing: 1.5px;
        padding: 13px 28px;
        gap: 8px;
    }

    /* Icon Boxes */
    .icon-boxes-section {
        padding: 60px 0;
    }

    .icon-boxes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .icon-box {
        padding: 36px 24px 32px;
    }

    /* Footer */
    .fat-footer {
        padding: 52px 0 44px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Page Title */
    .page-title-bar {
        padding: 56px 20px 52px;
    }

    .page-title {
        font-size: 34px;
    }

    .page-subtitle {
        font-size: 13px;
        letter-spacing: 1.5px;
    }

    /* About page */
    .about-intro {
        padding: 60px 0 56px;
    }

    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-heading {
        font-size: 28px;
    }

    .about-image-frame img {
        height: 280px;
    }

    .about-image-frame::before {
        display: none;
    }

    .about-image-badge {
        bottom: -16px;
        left: 12px;
        padding: 14px 18px;
    }

    .badge-number {
        font-size: 32px;
    }

    .pillars-section {
        padding: 64px 0 56px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pillar-card {
        padding: 36px 24px 32px;
    }

    .about-cta-strip {
        padding: 48px 0;
    }

    .cta-strip-inner {
        flex-direction: column;
        text-align: center;
        gap: 28px;
        align-items: center;
    }

    .cta-strip-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        justify-content: center;
        width: 100%;
    }

    /* Services page */
    .service-card-header {
        padding: 24px 20px 20px;
        gap: 16px;
    }

    .service-card-title {
        font-size: 17px;
    }

    .service-card-body {
        padding: 24px 20px 28px;
    }

    /* Products page */
    .products-intro-section {
        padding: 60px 0 56px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-img-wrap {
        height: 200px;
    }

    .aar-geo-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .aar-col {
        padding: 28px 20px;
    }

    .video-section {
        padding: 60px 0 56px;
    }

    .partners-section {
        padding: 60px 0 56px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .section-heading-center {
        font-size: 26px;
    }

    /* Gallery page */
    .gallery-intro-inner {
        flex-direction: column;
        gap: 16px;
    }

    .gallery-grid-section {
        padding: 52px 0 60px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    /* Guide page */
    .guide-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .toc-sticky {
        position: static;
    }

    .guide-section {
        padding: 28px 20px;
    }

    .guide-section-heading {
        font-size: 19px;
    }

    .guide-tech-grid {
        grid-template-columns: 1fr;
    }

    .guide-list-two-col {
        grid-template-columns: 1fr;
    }

    .guide-conclusion-actions {
        flex-direction: column;
    }

    .guide-conclusion-actions .cta-btn-primary,
    .guide-conclusion-actions .cta-btn-secondary {
        justify-content: center;
        text-align: center;
    }

    /* Sticky Bar – show on mobile only */
    .sticky-phone-bar {
        display: flex;
    }

    .sticky-phone-bar span {
        font-size: 12px;
        letter-spacing: 1.5px;
    }
}

/* ======================================== */
/* RESPONSIVE – SMALL MOBILE (max 480px)    */
/* ======================================== */

@media (max-width: 480px) {
    .hero-section {
        height: 440px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-sub {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .page-title {
        font-size: 28px;
    }

    .container {
        padding: 0 16px;
    }
}
