/* Premium Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #FF0000;
    --color-black: #000000;
    --color-white: #FFFFFF;
    /* Approximate navbar height; adjusted in media queries for small screens */
    --navbar-height: 96px;
    --color-gray-50: #FAFAFA;
    --color-gray-100: #F5F5F5;
    --color-gray-200: #E5E5E5;
    --color-gray-300: #D4D4D4;
    --color-gray-600: #525252;
    --color-gray-700: #404040;
    --color-gray-800: #262626;
    --color-gray-900: #0A0A0A;
    --gradient-primary: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    --gradient-luxury: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    --shadow-luxury: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(255, 0, 0, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(180deg, #0A0A0A 0%, #000000 100%);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

/* Premium Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.navbar:hover::after {
    opacity: 1;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 52px;
    height: 52px;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.logo:hover .logo-icon {
    filter: drop-shadow(0 0 30px rgba(255, 0, 0, 0.5));
    transform: scale(1.05);
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

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

.logo-main {
    font-size: 14px;
    font-weight: 800;
    color: var(--color-white);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 14px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    font-family: 'Space Grotesk', sans-serif;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-item {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-item:hover::before,
.nav-item.active::before {
    width: 100%;
}

.nav-item-cta {
    padding: 13px 32px;
    background: var(--gradient-primary);
    color: var(--color-white);
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 25px rgba(255, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.nav-item-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.nav-item-cta:hover::before {
    left: 100%;
}

.nav-item-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.6);
}

.mobile-toggle {
    display: none;
}

/* Premium Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at top, rgba(255, 0, 0, 0.08) 0%, transparent 50%),
                linear-gradient(180deg, #0A0A0A 0%, #000000 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 50px) scale(1.1); }
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 2px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.9); }
}

.hero-title {
    font-size: 58px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(135deg, #FF0000 0%, #FF6B6B 50%, #FF0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 580px;
    font-weight: 400;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gradient-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 45px rgba(255, 0, 0, 0.65);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Space Grotesk', sans-serif;
    backdrop-filter: blur(10px);
    text-decoration: none;
}

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

/* ==========================
   Responsive / Mobile-first
   ========================== */

/* Make typography and spacing scale nicely on smaller viewports */
h1.hero-title {
    font-size: clamp(1.8rem, 4.5vw, 3.6rem); /* mobile-first scaling */
}

h1, h2, h3 {
    /* sensible default scaling for headings */
    font-size: clamp(1.2rem, 2.6vw, 2rem);
}

/* Narrower container padding on small devices */
.container {
    padding: 0 18px;
}

/* Mobile navigation: show hamburger and hide inline menu */
.mobile-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    width: 40px;
    height: 32px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-white);
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

/* CSS-only hamburger animation when active */
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-6px);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-6px);
}

/* Hide desktop nav and convert to overlay menu on small screens */
.nav-menu {
    transition: transform 0.36s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
}

/* Use a responsive grid for content blocks */
.services-grid-modern,
.overseas-grid-modern,
.procurement-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

/* Make hero stack vertically on small devices and reduce gaps */
.hero {
    padding: 110px 0 40px;
}

.hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
}

.hero-visual {
    /* hide decorative visual on small screens to save space */
    display: none;
}

.hero-description {
    max-width: 100%;
}

/* Hero buttons are column on small screens by default, 
   will be row on large screens via media query */
.hero-buttons {
    flex-direction: column;
    width: 100%;
}

.btn-primary,
.btn-outline,
.nav-item-cta {
    padding: 12px 18px;
}

/* Smaller metrics layout */
.hero-metrics {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Footer/grid adjustments */
.footer-grid-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

/* Desktop-specific styles (larger screens) */
@media (min-width: 769px) {
    .mobile-toggle {
        display: none;
    }

    .nav-container {
        padding: 20px 32px;
    }

    .hero-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 80px;
    }

    .hero-visual {
        display: block;
    }

    .footer-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Hero buttons in a row on large screens */
    .hero-buttons {
        flex-direction: row;
        width: auto;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: auto;
    }
}

/* Mobile menu overlay behavior */
@media (max-width: 768px) {
    /* Reduce the hero top padding to account for the fixed navbar height on small screens */
    :root {
        --navbar-height: 60px;
    }

    .hero {
        /* Use the navbar height variable to ensure there's always a visible gap */
        padding-top: calc(var(--navbar-height) + 20px) !important;
        min-height: 70vh;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(320px, 80vw);
        background: linear-gradient(180deg, rgba(10,10,10,0.98), rgba(0,0,0,0.98));
        backdrop-filter: blur(8px);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px;
        gap: 18px;
        transform: translateX(110%);
        opacity: 0;
        z-index: 1500;
    }

    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
    }

    .nav-item {
        font-size: 18px;
        padding: 12px 0;
        width: 100%;
    }

    .nav-item-cta {
        width: 100%;
        text-align: center;
        padding: 12px 18px;
        border-radius: 12px;
    }
    
    /* Tighten logo spacing */
    .logo {
        gap: 12px;
    }
    
    .logo-icon {
        width: 46px;
        height: 46px;
    }
    
    .logo-text .logo-main,
    .logo-text .logo-sub {
        font-size: 12px;
        letter-spacing: 0.8px;
    }
}

/* Extra small screens tweaks */
@media (max-width: 420px) {
    .logo-text .logo-main,
    .logo-text .logo-sub {
        font-size: 11px;
        letter-spacing: 0.5px;
    }

    .nav-item {
        font-size: 16px;
    }

    .hero-title {
        font-size: clamp(1.6rem, 6.5vw, 2.2rem);
    }
    
    .logo {
        gap: 10px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
}


.hero-metrics {
    display: flex;
    align-items: center;
    gap: 48px;
}

.metric {
    flex: 1;
}

.metric-number {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #FF0000 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.metric-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Geometric Shapes Design */
.hero-visual {
    position: relative;
    height: 550px;
}

.geometric-shape {
    position: absolute;
    backdrop-filter: blur(30px) saturate(180%);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.geometric-shape:hover {
    border-color: rgba(255, 0, 0, 0.5);
    box-shadow: 0 25px 50px -10px rgba(255, 0, 0, 0.4);
}

.shape-1 {
    top: 60px;
    left: 0;
    width: 200px;
    height: 200px;
    border-radius: 40px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.15) 0%, rgba(18, 18, 18, 0.7) 100%);
    border: 1px solid rgba(255, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
    z-index: 3;
}

.shape-2 {
    top: 0;
    right: 40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(225deg, rgba(255, 0, 0, 0.2) 0%, rgba(18, 18, 18, 0.6) 100%);
    border: 2px solid rgba(255, 0, 0, 0.4);
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
    z-index: 2;
}

.shape-3 {
    bottom: 80px;
    right: 0;
    width: 240px;
    height: 180px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.12) 0%, rgba(18, 18, 18, 0.8) 50%, rgba(26, 26, 26, 0.6) 100%);
    border: 1px solid rgba(255, 0, 0, 0.3);
    animation: float 7s ease-in-out infinite;
    animation-delay: 2s;
    z-index: 1;
}

.shape-4 {
    bottom: 0;
    left: 80px;
    width: 140px;
    height: 140px;
    border-radius: 20px;
    transform: rotate(45deg);
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.9) 0%, rgba(255, 0, 0, 0.15) 100%);
    border: 1px solid rgba(255, 0, 0, 0.3);
    animation: rotate360 15s linear infinite;
    z-index: 2;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.4) 0%, rgba(255, 0, 0, 0.1) 50%, transparent 100%);
    filter: blur(20px);
    animation: pulse 4s ease-in-out infinite;
}

.circle-1 {
    top: 100px;
    right: 120px;
    width: 120px;
    height: 120px;
    animation: pulse 5s ease-in-out infinite;
    z-index: 0;
}

.circle-2 {
    bottom: 120px;
    left: 40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.3) 0%, rgba(255, 0, 0, 0.08) 50%, transparent 100%);
    animation: pulse 6s ease-in-out infinite;
    animation-delay: 1.5s;
    z-index: 0;
}

.circle-3 {
    top: 280px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
    animation: pulse 4.5s ease-in-out infinite;
    animation-delay: 3s;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes rotate360 {
    0% { transform: rotate(45deg); }
    100% { transform: rotate(405deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Premium Services Section */
.services {
    padding: 100px 0;
    background: radial-gradient(ellipse at center, rgba(255, 0, 0, 0.03) 0%, transparent 70%),
                linear-gradient(180deg, #000000 0%, #0A0A0A 100%);
    position: relative;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 3px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.section-title-modern {
    font-size: 46px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-desc-modern {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.service-card-modern {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.6), rgba(15, 15, 15, 0.4));
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 36px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.4);
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

.service-card-modern::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 0, 0, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card-modern:hover {
    border-color: rgba(255, 0, 0, 0.4);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px -12px rgba(255, 0, 0, 0.35), 0 0 40px rgba(255, 0, 0, 0.1);
}

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

.service-card-modern:hover::after {
    opacity: 1;
}

.featured-label {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 6px 16px;
    background: var(--gradient-primary);
    color: var(--color-white);
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    display: none; /* Hidden */
}

.service-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.service-icon-wrapper {
    display: none;
}

.service-badge {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #FF0000 0%, #FF6B6B 50%, #FF0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Grotesk', sans-serif;
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.4));
    animation: shimmer 3s linear infinite;
}

.service-title-modern {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.service-text-modern {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-primary);
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    padding: 8px 0;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.4s ease;
}

.service-link:hover {
    gap: 16px;
    color: var(--color-white);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.service-link:hover::after {
    width: 100%;
}

/* Premium CTA Box */
.cta-box {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(26, 26, 26, 0.4));
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 32px;
    padding: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(255, 0, 0, 0.3);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

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

.cta-content h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
}

/* Overseas & Procurement Sections */
.overseas,
.procurement {
    padding: 100px 0;
    background: linear-gradient(180deg, #0A0A0A 0%, #000000 100%);
    position: relative;
}

.overseas::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.2), transparent);
}

.overseas-grid-modern,
.procurement-grid-modern {
    display: grid;
    gap: 28px;
}

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

.procurement-grid-modern {
    grid-template-columns: repeat(2, 1fr);
}

.overseas-card-modern,
.procurement-card-modern {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.6), rgba(15, 15, 15, 0.4));
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 36px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.4);
}

.overseas-card-modern::before,
.procurement-card-modern::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--gradient-primary);
    border-radius: 0 4px 4px 0;
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

.overseas-card-modern:hover,
.procurement-card-modern:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px -12px rgba(255, 0, 0, 0.35), 0 0 40px rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.4);
}

.overseas-card-modern:hover::before,
.procurement-card-modern:hover::before {
    height: 60%;
    top: 50%;
    transform: translateY(-50%);
}

.overseas-number,
.proc-number-modern {
    font-size: 68px;
    font-weight: 800;
    background: linear-gradient(135deg, #FF0000 0%, #FF6B6B 50%, #FF0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.4));
    animation: shimmer 3s linear infinite;
}

.overseas-icon-bg {
    display: none;
}

.overseas-emoji {
    display: none;
}

.overseas-text,
.proc-desc-modern {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.proc-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 24px;
}

.proc-icon-modern {
    display: none;
}

.proc-title-modern {
    font-size: 21px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
}

.proc-desc-modern {
    margin-bottom: 24px;
}

.proc-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-tag {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
    color: var(--color-white);
}

/* About Section */
.about {
    padding: 100px 0;
    background: radial-gradient(ellipse at center, rgba(255, 0, 0, 0.05) 0%, transparent 70%),
                linear-gradient(180deg, #000000 0%, #0A0A0A 100%);
}

.about-content-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-title {
    font-size: 50px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 28px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.about-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 36px;
}

.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 18px 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--color-white);
    backdrop-filter: blur(10px);
}

.btn-play:hover {
    border-color: var(--color-primary);
    background: rgba(255, 0, 0, 0.1);
    transform: translateY(-2px);
}

.play-circle {
    width: 52px;
    height: 52px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
}

.video-container-modern {
    width: 100%;
    height: 480px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(10, 10, 10, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.1), transparent 70%);
    transition: all 0.5s ease;
}

.video-container-modern:hover .video-overlay {
    background: radial-gradient(circle, rgba(255, 0, 0, 0.15), transparent 70%);
}

.video-play-btn {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-container-modern:hover .video-play-btn {
    transform: scale(1.15);
}

.video-text {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
}

/* Newsletter Section */
.newsletter {
    padding: 100px 0;
    background: linear-gradient(180deg, #0A0A0A 0%, #000000 100%);
}

.newsletter-modern {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(26, 26, 26, 0.4));
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 32px;
    padding: 72px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    align-items: center;
    box-shadow: 0 25px 50px -12px rgba(255, 0, 0, 0.3);
}

.newsletter-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.newsletter-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.newsletter-form-modern {
    display: flex;
    gap: 16px;
}

.newsletter-form-modern input {
    flex: 1;
    padding: 18px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: var(--color-white);
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.newsletter-form-modern input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form-modern input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-primary);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.2);
}

.newsletter-form-modern button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--gradient-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: 'Space Grotesk', sans-serif;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.newsletter-form-modern button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 0, 0, 0.6);
}

.btn-events-modern {
    width: 100%;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.btn-events-modern:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 0, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.2);
}

.events-icon {
    font-size: 36px;
}

.events-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.events-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
}

.events-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Premium Footer */
.footer-modern {
    background: linear-gradient(180deg, #000000 0%, #0A0A0A 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 80px 0 32px;
    position: relative;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.3), transparent);
}

.footer-grid-modern {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-col-main {
    max-width: 450px;
}

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

.footer-logo .logo-icon {
    color: var(--color-white);
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.3));
}

.footer-logo .logo-main,
.footer-logo .logo-sub {
    color: var(--color-white);
}

.footer-about-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 32px;
}

.social-links-modern {
    display: flex;
    gap: 14px;
}

.social-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.social-btn:hover {
    background: var(--gradient-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
}

.footer-heading {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 24px;
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 16px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links-list a:hover {
    color: var(--color-primary);
    padding-left: 6px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-icon {
    font-size: 22px;
    margin-top: 2px;
}

.contact-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 15px;
    color: var(--color-white);
    font-weight: 600;
}

.footer-bottom-modern {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--color-primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid,
    .about-content-modern {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual {
        height: 450px;
    }

    .services-grid-modern,
    .overseas-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-modern {
        grid-template-columns: 1fr;
    }

    .footer-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* `.nav-menu` is shown/hidden via the toggle and overlay styles above.
       Avoid forcing `display: none` here which prevents the overlay from opening. */
    .nav-menu {
        /* ensure the element remains renderable; visibility handled by transform/opacity */
        visibility: visible;
    }

    .mobile-toggle {
        display: flex;
    }

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

    .section-title-modern {
        font-size: 40px;
    }

    .services-grid-modern,
    .overseas-grid-modern,
    .procurement-grid-modern {
        grid-template-columns: 1fr;
    }

    .hero-metrics {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .metric-divider {
        display: none;
    }

    .cta-box {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .newsletter-form-modern {
        flex-direction: column;
    }

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

    .footer-bottom-modern {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Premium Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card-modern,
.overseas-card-modern,
.procurement-card-modern {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.service-card-modern:nth-child(1) { animation-delay: 0.1s; }
.service-card-modern:nth-child(2) { animation-delay: 0.2s; }
.service-card-modern:nth-child(3) { animation-delay: 0.3s; }
.service-card-modern:nth-child(4) { animation-delay: 0.4s; }
.service-card-modern:nth-child(5) { animation-delay: 0.5s; }
.service-card-modern:nth-child(6) { animation-delay: 0.6s; }

.overseas-card-modern:nth-child(1) { animation-delay: 0.1s; }
.overseas-card-modern:nth-child(2) { animation-delay: 0.2s; }
.overseas-card-modern:nth-child(3) { animation-delay: 0.3s; }

.procurement-card-modern:nth-child(1) { animation-delay: 0.1s; }
.procurement-card-modern:nth-child(2) { animation-delay: 0.2s; }
.procurement-card-modern:nth-child(3) { animation-delay: 0.3s; }
.procurement-card-modern:nth-child(4) { animation-delay: 0.4s; }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

/* ==========================
   Small-screen final fixes
   Overrides applied at end to ensure precedence
   ========================== */
@media (max-width: 768px) {
    /* Reduce nav padding so header doesn't take excessive height */
    .nav-container {
        padding: 10px 16px;
    }

    /* Ensure the hamburger is above other UI and clickable */
    .mobile-toggle {
        z-index: 2001;
    }

    /* Slight visual for the sliding menu */
    .nav-menu {
        box-shadow: -12px 0 40px rgba(0,0,0,0.6);
        border-left: 1px solid rgba(255,255,255,0.03);
    }

    /* Make CTA buttons full width on small screens */
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline,
    .cta-box .btn-primary,
    .nav-item-cta {
        width: 100%;
    }

    /* Compact the metrics area for mobile — place them in a single row */
    .hero-metrics {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .metric {
        flex: 1 1 0;
        min-width: 0;
        text-align: left;
    }

    .metric-number {
        font-size: 28px;
    }

    .metric-label {
        font-size: 12px;
    }

    /* Reduce hero title slightly to avoid wrapping awkwardly */
    .hero-title {
        font-size: clamp(1.6rem, 6.5vw, 2.4rem);
        margin-bottom: 18px;
    }
}

@media (max-width: 420px) {
    .metric-number {
        font-size: 24px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .logo-icon {
        width: 44px;
        height: 44px;
    }

    .nav-container {
        padding-left: 12px;
        padding-right: 12px;
    }
}


::-webkit-scrollbar-track {
    background: #0A0A0A;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #FF0000, #CC0000);
    border-radius: 6px;
    border: 2px solid #0A0A0A;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #FF3333, #FF0000);
}
