/* ============================================
   BORDERLESS DISTRIBUTION & MARKETING SDN. BHD.
   Excellence Beyond Boundaries
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --navy: #003F88;
    --navy-dark: #002a5c;
    --navy-light: #1a5fa8;
    --navy-soft: #2272c3;
    --gold: #D4A017;
    --gold-dark: #b08010;
    --gold-light: #f0c040;
    --white: #ffffff;
    --off-white: #f5f7fb;
    --light-gray: #e8edf5;
    --gray: #7a8fa8;
    --dark: #0d1b2e;
    --text: #1a2a3a;
    --text-light: #4a6080;
    --success: #2ecc71;
    --danger: #e74c3c;
    --shadow-sm: 0 2px 8px rgba(0, 63, 136, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 63, 136, 0.12);
    --shadow-lg: 0 20px 50px rgba(0, 63, 136, 0.18);
    --shadow-xl: 0 30px 70px rgba(0, 63, 136, 0.25);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.25s ease;
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --font-main: 'Inter', sans-serif;
    --font-head: 'Plus Jakarta Sans', sans-serif;
}

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

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

body {
    font-family: var(--font-main);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.text-gold { color: var(--gold); }
.text-right { text-align: right; }

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.preloader-content {
    text-align: center;
}

.preloader-logo {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(212, 160, 23, 0.6));
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 8px rgba(212, 160, 23, 0.5)); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 24px rgba(212, 160, 23, 0.8)); }
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 16px;
}

.preloader-bar span {
    display: block;
    height: 100%;
    width: 40%;
    background: var(--gold);
    border-radius: 10px;
    animation: preloaderLoad 1.2s ease-in-out infinite;
}

@keyframes preloaderLoad {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

.preloader-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    letter-spacing: 4px;
    font-weight: 600;
}

/* ===== SCROLL PROGRESS BAR ===== */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    z-index: 10000;
    transition: width 0.1s ease;
}

/* ===== HEADER / NAVBAR ===== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    transition: var(--transition);
    padding: 18px 0;
}

.navbar.scrolled {
    background: rgba(10, 61, 92, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img-wrap {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 4px;
    transition: var(--transition-fast);
    border: 1px solid rgba(212, 160, 23, 0.35);
    backdrop-filter: blur(4px);
}

.nav-logo:hover .logo-img-wrap {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(212, 160, 23, 0.65);
    transform: scale(1.05);
}

.logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
    transition: var(--transition-fast);
    filter: drop-shadow(0 1px 4px rgba(0,0,0,0.2));
}

.nav-logo:hover .logo-img {
    transform: rotate(-5deg) scale(1.08);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.5px;
}

.logo-sub {
    font-size: 10px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 10px 22px;
    border-radius: 30px;
    margin-left: 8px;
    font-weight: 700;
}

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

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.4);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 4px;
    transition: var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn i { transition: var(--transition-fast); }

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    box-shadow: 0 8px 24px rgba(212, 160, 23, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212, 160, 23, 0.5);
}

.btn-primary:hover i { transform: translateX(5px); }

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 18px 42px;
    font-size: 17px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 42, 66, 0.88) 0%, rgba(10, 61, 92, 0.75) 50%, rgba(26, 82, 120, 0.7) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(212, 160, 23, 0.4);
    border-radius: 50%;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% { transform: translateY(100vh) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) translateX(50px); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 160, 23, 0.15);
    border: 1px solid rgba(212, 160, 23, 0.4);
    color: var(--gold);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 900px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 680px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 760px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-top: 4px;
    display: block;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 4px;
    animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(14px); opacity: 0; }
}

.scroll-text {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--navy-dark);
    padding: 28px 0;
}

.trust-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 600;
}

.trust-item i {
    font-size: 24px;
    color: var(--gold);
}

/* ===== SECTION HEADER ===== */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    background: rgba(10, 61, 92, 0.08);
    color: var(--navy);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header.light .section-tag {
    background: rgba(212, 160, 23, 0.15);
    color: var(--gold);
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
}

.section-header.light .section-title {
    color: var(--white);
}

.section-divider {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 4px;
    margin: 20px auto 0;
}

.section-desc {
    margin-top: 18px;
    color: var(--text-light);
    font-size: 1.05rem;
}

.section-header.light .section-desc {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--off-white);
}

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

.about-image {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    aspect-ratio: 4/5;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-image:hover .about-img-main img {
    transform: scale(1.05);
}

.about-img-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    padding: 18px 22px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.badge-year {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 11px;
    font-weight: 600;
    margin-top: 4px;
    line-height: 1.3;
}

.about-img-badge2 {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--navy);
}

.badge-num {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.badge-text2 {
    font-size: 10px;
    font-weight: 600;
    color: var(--gray);
    margin-top: 4px;
    line-height: 1.3;
}

.about-content h3 {
    font-family: var(--font-head);
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 16px;
    font-weight: 800;
}

.about-lead {
    font-size: 1.15rem;
    color: var(--navy-soft);
    font-weight: 600;
    margin-bottom: 16px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1rem;
}

.about-content strong { color: var(--navy); }

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 28px;
}

.about-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.about-feature i {
    font-size: 22px;
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.about-feature h4 {
    font-family: var(--font-head);
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 4px;
    font-weight: 700;
}

.about-feature p {
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

/* ===== VMSI SECTION ===== */
.vmsi {
    position: relative;
    overflow: hidden;
}

.vmsi-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.vmsi-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 42, 66, 0.95) 0%, rgba(10, 61, 92, 0.92) 100%);
}

.vmsi .container { position: relative; z-index: 2; }

.vmsi-vision-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    margin-bottom: 60px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.vision-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.3);
}

.vmsi-vision-card h3 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: 3px;
}

.vmsi-vision-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
}

.mission-header {
    text-align: center;
    margin-bottom: 40px;
}

.mission-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 160, 23, 0.15);
    border: 2px solid var(--gold);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 14px;
}

.mission-header h3 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 3px;
}

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

.mission-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 28px 24px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.mission-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 160, 23, 0.3);
}

.mission-card:hover::before { transform: scaleX(1); }

.mission-num {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(212, 160, 23, 0.3);
    line-height: 1;
    margin-bottom: 14px;
}

.mission-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== VALUES SECTION ===== */
.values { background: var(--white); }

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

.value-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.value-card:hover .value-icon-wrap {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    transform: rotate(360deg);
}

.value-icon {
    font-size: 30px;
    color: var(--navy);
    transition: var(--transition);
}

.value-card:hover .value-icon { color: var(--white); }

.value-card h3 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 800;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== SERVICES SECTION ===== */
.services { background: var(--off-white); }

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--light-gray);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card-featured {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
}

.service-card.service-card-featured h3 { color: var(--gold) !important; }
.service-card.service-card-featured .service-num { color: rgba(212, 160, 23, 0.25); }
.service-card.service-card-featured .service-list li { color: rgba(255, 255, 255, 0.9); border-bottom-color: rgba(255, 255, 255, 0.12); }
.service-card.service-card-featured .service-list li i { color: var(--gold); }

.service-badge {
    position: absolute;
    top: 20px;
    right: -32px;
    background: var(--gold);
    color: var(--navy);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 40px;
    transform: rotate(45deg);
}

.service-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy), var(--navy-soft));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold);
    transition: var(--transition);
}

.service-card-featured .service-icon {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 160, 23, 0.3);
}

.service-card:hover .service-icon {
    transform: rotate(-6deg) scale(1.05);
}

.service-num {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--light-gray);
    line-height: 1;
}

.service-card h3 {
    font-family: var(--font-head);
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 18px;
    font-weight: 800;
}

/* Featured card heading — gold for strong contrast on navy bg */
.service-card.service-card-featured h3 {
    color: var(--gold);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    color: var(--text-light);
    font-size: 0.95rem;
    border-bottom: 1px dashed var(--light-gray);
}

.service-list li:last-child { border-bottom: none; }

.service-list li i {
    color: var(--gold-dark);
    font-size: 13px;
    margin-top: 5px;
    flex-shrink: 0;
}

/* ===== WHY US SECTION ===== */
.why-us {
    position: relative;
    overflow: hidden;
}

.why-us-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.why-us-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 42, 66, 0.94) 0%, rgba(10, 61, 92, 0.90) 100%);
}

.why-us .container { position: relative; z-index: 2; }

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 30px 22px;
    text-align: center;
    transition: var(--transition);
}

.why-item:hover {
    transform: translateY(-6px);
    background: rgba(212, 160, 23, 0.08);
    border-color: rgba(212, 160, 23, 0.3);
}

.why-check {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 14px;
    transition: var(--transition);
}

.why-item:hover .why-check {
    transform: scale(1.1);
}

.why-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ===== TEAM SECTION ===== */
.team { background: var(--off-white); }

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 860px;
    margin: 0 auto;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, var(--navy), var(--navy-soft));
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.team-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    z-index: 2;
}

.avatar-ring {
    position: absolute;
    inset: -6px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    animation: avatarSpin 8s linear infinite;
}

@keyframes avatarSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.avatar-circle {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy-light), var(--navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--white);
}

.avatar-initials {
    font-family: var(--font-head);
    font-size: 42px;
    font-weight: 800;
    color: var(--gold);
}

.team-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 36px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    border: 3px solid var(--white);
    z-index: 3;
}

.team-card h3 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 8px;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.team-role {
    font-size: 1rem;
    color: var(--gold-dark);
    font-weight: 700;
    margin-bottom: 4px;
}

.team-title-en {
    font-size: 12px;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 20px;
}

.team-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.team-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 10px 16px;
    background: var(--off-white);
    border-radius: 10px;
    transition: var(--transition-fast);
}

.team-contact-item:hover {
    background: var(--navy);
    color: var(--gold);
}

.team-contact-item i { font-size: 14px; }

.team-address {
    display: flex;
    gap: 10px;
    text-align: left;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
}

.team-address i {
    color: var(--gold);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ===== CTA BAND ===== */
.cta-band {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.15), transparent 70%);
    border-radius: 50%;
}

.cta-band::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.1), transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-quote {
    font-family: var(--font-head);
    font-size: 6rem;
    color: rgba(212, 160, 23, 0.2);
    line-height: 0.5;
    margin-bottom: 10px;
}

.cta-content h2 {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* ===== CONTACT SECTION ===== */
.contact { background: var(--off-white); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-content: start;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 26px 22px;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.contact-info-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-info-card-full { grid-column: 1 / -1; }

.ci-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--navy), var(--navy-soft));
    color: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}

.contact-info-card h4 {
    font-family: var(--font-head);
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-info-card a,
.contact-info-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 4px;
    transition: var(--transition-fast);
}

.contact-info-card a:hover { color: var(--gold-dark); }

.ci-sub {
    font-size: 11px !important;
    color: var(--gray) !important;
    font-weight: 600;
}

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--light-gray);
    box-shadow: var(--shadow-sm);
}

.contact-form h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 8px;
    font-weight: 800;
}

.form-intro {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--off-white);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.1);
}

.form-group textarea { resize: vertical; }

.form-feedback {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    display: none;
}

.form-feedback.show {
    display: block;
    animation: slideDown 0.4s ease;
}

.form-feedback.success {
    background: rgba(46, 204, 113, 0.1);
    color: var(--success);
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.form-feedback.error {
    background: rgba(231, 76, 60, 0.1);
    color: var(--danger);
    border: 1px solid rgba(231, 76, 60, 0.3);
}

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

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.7);
}

.footer-top {
    padding: 70px 0 40px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
}

.footer-col h4 {
    font-family: var(--font-head);
    font-size: 15px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-col ul li {
    padding: 7px 0;
    font-size: 0.9rem;
}

.footer-col ul li a,
.footer-col ul li span {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }

.footer-col ul li i {
    color: var(--gold);
    font-size: 10px;
    margin-top: 7px;
}

.footer-contact ul li i {
    font-size: 14px;
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
}

.footer-motto {
    color: var(--gold) !important;
    font-style: italic;
    font-weight: 600;
    margin-top: 6px;
}

/* ===== BACK TO TOP ===== */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--navy), var(--navy-soft));
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-4px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav-menu { gap: 2px; }
    .nav-link { padding: 8px 10px; font-size: 13px; }

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

    .about-image { max-width: 500px; margin: 0 auto; }

    .mission-grid,
    .values-grid,
    .services-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 24px 30px;
        gap: 4px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active { right: 0; }

    .nav-link {
        width: 100%;
        padding: 14px 16px;
        font-size: 15px;
        border-radius: 10px;
    }

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

    .nav-link:hover,
    .nav-link.active {
        background: rgba(212, 160, 23, 0.1);
    }

    .nav-cta {
        margin-top: 12px;
        margin-left: 0;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .nav-toggle { display: flex; }

    section { padding: 70px 0; }

    .hero-content { padding: 110px 24px 60px; }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 20px;
    }

    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }

    .trust-container {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .about-features { grid-template-columns: 1fr; }

    .mission-grid,
    .values-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .team-grid { grid-template-columns: 1fr; }

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

    .footer-about { grid-column: 1 / -1; }

    .about-img-badge { right: 0; }
    .about-img-badge2 { left: 0; }

    .form-row { grid-template-columns: 1fr; }

    .contact-form-wrap { padding: 28px 22px; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }

    .hero-stats { grid-template-columns: 1fr 1fr; }

    .trust-container { grid-template-columns: 1fr; }
    .trust-item { justify-content: flex-start; }

    .why-grid { grid-template-columns: 1fr; }

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

    .contact-info { grid-template-columns: 1fr; }

    .logo-sub { display: none; }

    .vmsi-vision-card,
    .contact-info-card { padding: 22px 18px; }

    .cta-quote { font-size: 4rem; }

    #back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* ===== UTILITY ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Background attachment fix for mobile */
@media (max-width: 768px) {
    .vmsi-bg,
    .why-us-bg {
        background-attachment: scroll;
    }
}
