/* ============================================
   ASSET INTEGRITY & RISK MANAGEMENT
   Global Stylesheet — UPDATED COLOURS
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary-navy: #0a1628;
    --primary-dark: #0d1f35;
    --secondary-blue: #1a5276;
    --accent-cyan: #00d2ff;
    --accent-white: #ffffff;
    --text-white: #ffffff;
    --text-light: #e8edf4;
    --text-muted: #8ba3c4;
    --border-light: rgba(255, 255, 255, 0.06);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.7);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.4);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --max-width: 1200px;
    --header-height: 80px;
}

/* ---------- Reset & Base ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--primary-navy);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--accent-cyan);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--primary-navy);
}
::-webkit-scrollbar-thumb {
    background: var(--secondary-blue);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}

/* ---------- Typography ---------- */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    background: rgba(0, 210, 255, 0.08);
    padding: 0.3rem 1rem;
    border-radius: 40px;
    border: 1px solid rgba(0, 210, 255, 0.12);
    margin-bottom: 0.8rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

.section-title span {
    color: var(--accent-cyan);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 640px;
    line-height: 1.8;
}

.text-center {
    text-align: center;
}

.text-cyan {
    color: var(--accent-cyan);
}

/* ---------- Buttons ---------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--accent-cyan);
    color: var(--primary-navy);
    padding: 0.9rem 2.2rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-primary:hover {
    background: #00b8e6;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.3);
    color: var(--primary-navy);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: var(--text-white);
    padding: 0.85rem 2.2rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-cyan);
    transform: translateY(-3px);
    color: var(--text-white);
}

/* ---------- Header / Navigation ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    height: var(--header-height);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(10, 22, 40, 0.98);
    box-shadow: var(--shadow-heavy);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 0 2px rgba(0, 210, 255, 0.08);
    transition: var(--transition-smooth);
}

.logo-wrapper:hover {
    box-shadow: 0 8px 32px rgba(0, 210, 255, 0.2), 0 0 0 3px rgba(0, 210, 255, 0.15);
    transform: scale(1.02);
}

.logo-wrapper img {
    width: 70%;
    height: auto;
    display: block;
}

.brand-text .brand-name {
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--text-white);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.brand-text .brand-name span {
    color: var(--accent-cyan);
}

.brand-text .brand-tagline {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 0.3rem 0;
    transition: var(--transition-smooth);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: var(--transition-smooth);
}

.nav-menu a:hover {
    color: var(--text-white);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--text-white);
}

.nav-menu a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--accent-cyan);
    color: var(--primary-navy) !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 40px;
    font-weight: 700 !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: #00b8e6 !important;
    color: var(--primary-navy) !important;
}

/* Mobile Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Preloader ---------- */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--primary-navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader .spinner {
    width: 80px;
    height: 80px;
    position: relative;
    animation: spinPulse 1.2s ease-in-out infinite;
}

.preloader .spinner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(0, 210, 255, 0.15));
}

@keyframes spinPulse {
    0% {
        transform: scale(0.95) rotate(0deg);
    }
    50% {
        transform: scale(1.05) rotate(180deg);
    }
    100% {
        transform: scale(0.95) rotate(360deg);
    }
}

.preloader .loading-text {
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.preloader .loading-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    margin-top: 0.8rem;
    overflow: hidden;
}

.preloader .loading-bar .fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-cyan), #66e0ff);
    border-radius: 2px;
    animation: loadBar 2s ease-in-out forwards;
}

@keyframes loadBar {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

/* ---------- Hero / Banner ---------- */
.hero {
    padding-top: calc(var(--header-height) + 40px);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--primary-navy);
}

.hero-banner {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-banner .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-banner .slide.active {
    opacity: 1;
}

.hero-banner .slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.4) 100%);
}

.hero-banner .slide-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a1628 0%, #1a3a5c 50%, #0a1628 100%);
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.05);
}

.hero-banner .slide-placeholder i {
    font-size: 8rem;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    padding: 2rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 210, 255, 0.08);
    border: 1px solid rgba(0, 210, 255, 0.12);
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 1.2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.08;
    margin-bottom: 1.2rem;
}

.hero-title span {
    background: linear-gradient(135deg, var(--accent-cyan), #66e0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.hero-stats .stat-item .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
}

.hero-stats .stat-item .stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ---------- Section Spacing ---------- */
.section {
    padding: 5rem 0;
}

.section-dark {
    background: var(--primary-dark);
}

/* ---------- Services ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 2rem 1.8rem;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 210, 255, 0.2);
    box-shadow: var(--shadow-medium);
}

.service-card .icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 210, 255, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-cyan);
    margin-bottom: 1.2rem;
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 0.6rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.service-card ul {
    margin-top: 1rem;
}

.service-card ul li {
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-card ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
}

/* ---------- About / MVV ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    background: var(--primary-dark);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image .placeholder {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.05);
}

.about-content .about-text {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.about-highlights .highlight-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.about-highlights .highlight-item i {
    color: var(--accent-cyan);
    font-size: 1rem;
}

/* ---------- MVV Grid ---------- */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.mvv-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 2rem 1.8rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), #66e0ff);
    opacity: 0;
    transition: var(--transition-smooth);
}

.mvv-card:hover::before {
    opacity: 1;
}

.mvv-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 210, 255, 0.15);
    box-shadow: var(--shadow-medium);
}

.mvv-card .icon {
    width: 72px;
    height: 72px;
    background: rgba(0, 210, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 2rem;
    color: var(--accent-cyan);
}

.mvv-card h3 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.mvv-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.mvv-card.values ul {
    text-align: left;
    padding-left: 0;
    margin-top: 0.8rem;
}

.mvv-card.values ul li {
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 0.3rem 0;
    padding-left: 1.8rem;
    position: relative;
    line-height: 1.6;
}

.mvv-card.values ul li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-size: 0.6rem;
    top: 0.5rem;
}

/* ---------- Subsidiaries ---------- */
.subsidiaries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.subsidiary-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.subsidiary-card:hover {
    border-color: rgba(0, 210, 255, 0.2);
    transform: translateY(-4px);
}

.subsidiary-card .logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 0.5rem;
}

.subsidiary-card .logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.subsidiary-card h4 {
    color: var(--text-white);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.subsidiary-card .rc-number {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ---------- FAQ ---------- */
.faq-list {
    max-width: 820px;
    margin: 2rem auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
    padding: 1.2rem 0;
}

.faq-item .question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0.3rem 0;
    user-select: none;
}

.faq-item .question h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-white);
    transition: var(--transition-smooth);
}

.faq-item .question i {
    color: var(--accent-cyan);
    transition: var(--transition-smooth);
    font-size: 1.2rem;
}

.faq-item .question.active i {
    transform: rotate(180deg);
}

.faq-item .answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item .answer p {
    color: var(--text-muted);
    padding-top: 0.8rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.faq-item .answer ul {
    padding-top: 0.5rem;
    padding-left: 1.5rem;
}

.faq-item .answer ul li {
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 0.2rem 0;
    list-style-type: disc;
}

/* ---------- Leadership ---------- */
.leadership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
}

.leader-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.leader-card:hover {
    border-color: rgba(0, 210, 255, 0.15);
    transform: translateY(-4px);
}

.leader-card .avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--primary-dark);
    margin-bottom: 1.2rem;
    border: 3px solid rgba(0, 210, 255, 0.15);
    flex-shrink: 0;
}

.leader-card .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.leader-card .avatar .placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.08);
    background: var(--primary-dark);
}

.leader-card .avatar .placeholder i {
    opacity: 0.5;
}

.leader-card h3 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.leader-card .title {
    color: var(--accent-cyan);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.leader-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.leader-card .credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.leader-card .credentials span {
    background: rgba(0, 210, 255, 0.08);
    border: 1px solid rgba(0, 210, 255, 0.1);
    padding: 0.2rem 0.8rem;
    border-radius: 40px;
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info .info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info .info-item .icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 210, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info .info-item h4 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.contact-info .info-item p,
.contact-info .info-item a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-info .info-item a:hover {
    color: var(--accent-cyan);
}

.contact-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.2rem;
}

.contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 0.95rem;
    font-family: var(--font-main);
    transition: var(--transition-smooth);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.05);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ---------- Footer ---------- */
.footer {
    background: #050d1a;
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--border-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.footer-brand .brand-name span {
    color: var(--accent-cyan);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer h4 {
    color: var(--text-white);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.footer ul li {
    padding: 0.3rem 0;
}

.footer ul li a {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer ul li a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.footer-bottom .social a {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-left: 1rem;
    transition: var(--transition-smooth);
}

.footer-bottom .social a:hover {
    color: var(--accent-cyan);
}

/* ---------- 404 ---------- */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.error-page .error-code {
    font-size: 8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-cyan), #66e0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.error-page h1 {
    font-size: 2rem;
    color: var(--text-white);
    margin: 1rem 0;
}

.error-page p {
    color: var(--text-muted);
    max-width: 400px;
    margin: 0 auto 2rem;
}

/* ---------- Coming Soon ---------- */
.coming-soon {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-navy), #0a1a30);
}

.coming-soon .logo-large {
    width: 100px;
    height: 100px;
    background: #ffffff;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.coming-soon .logo-large img {
    width: 60%;
}

.coming-soon h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.coming-soon .subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.coming-soon .countdown {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.coming-soon .countdown .item {
    text-align: center;
}

.coming-soon .countdown .item .number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white);
    display: block;
}

.coming-soon .countdown .item .label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 1rem;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu a {
        width: 100%;
        padding: 0.5rem 0;
    }

    .nav-cta {
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .subsidiaries-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .coming-soon .countdown {
        gap: 1rem;
    }

    .coming-soon .countdown .item .number {
        font-size: 2rem;
    }

    .logo-wrapper {
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }

    .brand-text .brand-name {
        font-size: 1.1rem;
    }

    .brand-text .brand-tagline {
        font-size: 0.6rem;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
    }

    .leader-card .avatar {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .subsidiaries-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .contact-info .info-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo-wrapper {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .brand-text .brand-name {
        font-size: 0.95rem;
    }

    .preloader .spinner {
        width: 60px;
        height: 60px;
    }
}