/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #003366;
    --secondary-blue: #0066CC;
    --light-blue: #E6F2FF;
    --dark-blue: #001F3F;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --gray: #666666;
    --dark-gray: #333333;
    --border-color: #DDDDDD;
}

body {
    font-family: 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Fix font when Google Translate is active */
body.translated-ltr,
body.translated-rtl,
body.translated-ltr *,
body.translated-rtl * {
    font-family: 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif !important;
}

/* Ensure fonts load properly for all languages */
.goog-te-banner-frame,
.goog-te-menu-frame,
.goog-te-menu-value,
.goog-te-menu-value span {
    font-family: 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif !important;
}

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

/* Navigation */
.navbar {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.98) 0%, rgba(0, 26, 51, 0.98) 100%);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.logo-star {
    color: var(--light-blue);
    font-size: 1.2rem;
    margin-left: 0.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--light-blue);
    border-bottom: 2px solid var(--light-blue);
}

/* Language Selector */
.translate-wrap {
    margin-left: 1rem;
}

.lang-select {
    background: rgba(2, 16, 40, 0.9);
    border: 1px solid rgba(0, 212, 255, 0.7);
    color: #00d4ff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.lang-select:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(0, 180, 219, 0.5);
}

.lang-select option {
    background: #003366;
    color: white;
    padding: 10px;
}

/* Hide Google Translate Bar */
.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

.skiptranslate {
    display: none !important;
}

body > .skiptranslate {
    display: none !important;
}

.goog-te-gadget {
    font-size: 0 !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #001a33 0%, #003366 50%, #004d80 100%);
    color: var(--white);
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 180, 219, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 131, 176, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: left;
}

.hero-title {
    font-family: 'Orbitron', 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Fix font for translated content */
body.translated-ltr .hero-title,
body.translated-rtl .hero-title {
    font-family: 'Orbitron', 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.9;
    font-weight: 400;
}

.hero-globe {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    perspective: 1000px;
}

.globe-container {
    position: relative;
    width: 100%;
    max-width: 380px;
    animation: floatGlobe 6s ease-in-out infinite;
}

/* Globe 3D Container - Technology Network Style */
.globe-3d {
    width: 100%;
    height: 380px;
    max-width: 380px;
    position: relative;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.6)) drop-shadow(0 0 60px rgba(0, 180, 219, 0.4));
    animation: floatGlobe 6s ease-in-out infinite;
}

.globe-3d canvas {
    width: 100% !important;
    height: 100% !important;
}

@keyframes floatGlobe {
    0%, 100% { transform: translateY(0px) rotateX(0deg); }
    50% { transform: translateY(-15px) rotateX(5deg); }
}

@keyframes rotateGlobe {
    0% { transform: rotateZ(0deg); }
    100% { transform: rotateZ(360deg); }
}

/* Orbital rings around globe - Slower, more subtle */
.globe-orbits {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1.5px solid rgba(79, 195, 247, 0.25);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: orbitRotate 40s linear infinite;
}

.orbit-1 {
    width: 115%;
    height: 115%;
    border-color: rgba(79, 195, 247, 0.15);
    animation-duration: 50s;
    animation-direction: reverse;
}

.orbit-2 {
    width: 130%;
    height: 130%;
    border-color: rgba(79, 195, 247, 0.12);
    animation-duration: 60s;
}

.orbit-3 {
    width: 145%;
    height: 145%;
    border-color: rgba(79, 195, 247, 0.08);
    animation-duration: 70s;
    animation-direction: reverse;
}

@keyframes orbitRotate {
    0% { transform: translate(-50%, -50%) rotateZ(0deg); }
    100% { transform: translate(-50%, -50%) rotateZ(360deg); }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary-blue);
    border-radius: 8px;
    font-weight: 600;
    padding: 14px 35px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--light-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-feature {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    border: none;
}

.btn-feature:hover {
    background: linear-gradient(135deg, #00e5ff 0%, #00aaff 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    background-color: var(--secondary-blue);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Image Styles */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.location-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    margin-bottom: 0;
}

.platform-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

/* Features Section */
/* Gallery Section */
.gallery-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 30px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover {
    border-color: var(--secondary-blue);
    color: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    border-color: var(--secondary-blue);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

/* Gallery Grid - Pinterest Style Masonry */
.gallery-grid {
    column-count: 4;
    column-gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    page-break-inside: avoid;
}

.gallery-item {
    position: relative;
    overflow: visible;
    border-radius: 12px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    display: block;
    width: 100%;
    height: auto;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.05) 0%, rgba(0, 102, 204, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

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

.gallery-item.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 102, 204, 0.25);
    z-index: 10;
}

.gallery-item.hide {
    display: none;
}

.gallery-image-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #f8f9fa;
}

.gallery-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 12px;
}

.gallery-item:hover .gallery-image-wrapper img {
    transform: scale(1.15) rotate(1deg);
    filter: brightness(1.1) contrast(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.8) 0%, rgba(0, 102, 204, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-icon {
    font-size: 1.8rem;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: none;
}

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

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    z-index: 10001;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

/* Parallax scroll effect for sections */
.features-section,
.vn-factory-section,
.gallery-section,
.news-team-section {
    position: relative;
    overflow: hidden;
}

.features-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #001a33 0%, #003366 50%, #004080 100%);
    color: var(--white);
    position: relative;
}

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

.section-header {
    animation: fadeInUp 0.8s ease-out;
}

.feature-card,
.gallery-item.show {
    animation: fadeInUp 0.6s ease-out forwards;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 153, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.feature-card {
    padding: 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 212, 255, 0.2);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: #00d4ff;
    margin: 0 auto 1rem;
    background: radial-gradient(circle at top, rgba(0, 212, 255, 0.18) 0%, transparent 60%);
}

.feature-card h3 {
    font-family: 'Orbitron', 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #00d4ff;
    letter-spacing: 2px;
}

/* Fix fonts for translated content */
body.translated-ltr .feature-card h3,
body.translated-rtl .feature-card h3,
body.translated-ltr h2,
body.translated-rtl h2,
body.translated-ltr h3,
body.translated-rtl h3 {
    font-family: 'Orbitron', 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
 }

/* Vietnam Factory for Lease Section */
.vn-factory-section {
    padding: 80px 20px;
    background: radial-gradient(circle at top, rgba(0, 212, 255, 0.08) 0%, transparent 55%),
                linear-gradient(180deg, #001428 0%, #001f3f 45%, #000c1f 100%);
    color: var(--white);
    position: relative;
}

.vn-factory-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.6;
    pointer-events: none;
}

.vn-factory-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.vn-factory-content h2 {
    font-family: 'Orbitron', 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.4rem;
    margin-bottom: 1.25rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vn-factory-lead {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 640px;
}

.vn-factory-list {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
}

.vn-factory-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.vn-factory-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    top: 0;
    color: #00d4ff;
    font-size: 1rem;
}

.vn-factory-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 212, 255, 0.4);
    background: radial-gradient(circle at top left, rgba(0, 212, 255, 0.3) 0%, transparent 60%),
                rgba(0, 0, 0, 0.4);
    margin-bottom: 1.25rem;
}

.vn-factory-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #00d4ff;
}

.vn-factory-subtag {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.vn-factory-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.vn-factory-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.vn-factory-link-domain {
    color: #00d4ff;
    font-weight: 600;
}

.vn-factory-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.vn-factory-card {
    padding: 1.5rem;
    border-radius: 14px;
    background: radial-gradient(circle at top, rgba(0, 212, 255, 0.2) 0%, rgba(0, 0, 0, 0.7) 60%);
    border: 1px solid rgba(0, 212, 255, 0.35);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 212, 255, 0.18);
    backdrop-filter: blur(14px);
    transform: translateY(10px);
    opacity: 0;
}

.vn-factory-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.vn-factory-card h3 {
    font-family: 'Orbitron', 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #00d4ff;
    letter-spacing: 1px;
}

.vn-factory-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.vn-factory-card.show {
    animation: fadeInUp 0.7s ease-out forwards;
}

/* News & Team Section */
.news-team-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #004080 0%, #003366 50%, #002244 100%);
    color: var(--white);
}

.news-team-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.news-section h2 {
    font-family: 'Orbitron', 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #00d4ff;
    letter-spacing: 2px;
}

.news-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.date-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.date-month {
    font-size: 0.7rem;
    color: var(--white);
    letter-spacing: 1px;
    margin-top: 2px;
}

.news-content {
    flex: 1;
}

.news-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 0.95rem;
    text-align: left;
}

@media (max-width: 768px) {
    .news-content p {
        text-align: center;
    }
}

.team-section {
    position: relative;
    margin-top: 1rem;
}

.team-section h2 {
    font-family: 'Orbitron', 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #00d4ff;
    letter-spacing: 2px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.trust-card {
    background: radial-gradient(circle at top left, rgba(0, 212, 255, 0.2) 0%, rgba(0, 0, 0, 0.6) 55%, rgba(0, 0, 0, 0.9) 100%);
    border-radius: 16px;
    padding: 1.25rem 1.4rem;
    border: 1px solid rgba(0, 212, 255, 0.35);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(16px);
}

.trust-card h3 {
    font-family: 'Orbitron', 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.2rem;
    color: #00d4ff;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.trust-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .team-description {
        text-align: center;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #001a33 0%, #003366 50%, #0066CC 100%);
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

.page-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.page-header h1,
.page-header p {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-family: 'Orbitron', 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Content Sections */
.content-section {
    padding: 60px 20px;
    background-color: var(--white);
}

.content-block {
    max-width: 900px;
    margin: 0 auto;
}

.content-block h2 {
    font-family: 'Orbitron', 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.content-block p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Mission Section */
.mission-section {
    padding: 60px 20px;
    background-color: var(--light-gray);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mission-card h3 {
    font-family: 'Orbitron', 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.mission-card p,
.mission-card ul {
    color: var(--gray);
    line-height: 1.8;
}

.mission-card ul {
    list-style-position: inside;
}

.mission-card li {
    margin-bottom: 0.5rem;
}

/* Leadership Section */
.leadership-section {
    padding: 60px 20px;
    background-color: var(--white);
}

.leadership-section h2 {
    text-align: center;
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 3rem;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.leader-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.leader-image {
    margin-bottom: 1.5rem;
}

.leader-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    border: 4px solid var(--secondary-blue);
}

.placeholder-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0 auto;
}

.leader-card h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.leader-title {
    color: var(--secondary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.leader-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* Why Choose Section */
.why-choose-section {
    padding: 60px 20px;
    background-color: var(--light-gray);
}

.why-choose-section h2 {
    text-align: center;
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-blue);
}

.feature-item h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--gray);
}

/* Portfolio Section */
.portfolio-section {
    padding: 60px 20px;
    background-color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}


.portfolio-content {
    padding: 1.5rem;
}

.portfolio-status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.portfolio-status.active {
    background-color: #28a745;
    color: var(--white);
}

.portfolio-status.planned {
    background-color: #ffc107;
    color: var(--dark-gray);
}

.portfolio-content h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.portfolio-location {
    color: var(--secondary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.portfolio-content p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 0.9rem;
}

.portfolio-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.portfolio-features li {
    background-color: var(--light-blue);
    color: var(--primary-blue);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
}

/* Strategy Section */
.strategy-section {
    padding: 60px 20px;
    background-color: var(--light-gray);
}

.strategy-section h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.strategy-content {
    max-width: 900px;
    margin: 0 auto;
}

.strategy-content p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.strategy-list {
    list-style: none;
    margin: 2rem 0;
}

.strategy-list li {
    color: var(--gray);
    padding: 1rem;
    margin-bottom: 0.5rem;
    background-color: var(--white);
    border-left: 4px solid var(--secondary-blue);
    border-radius: 4px;
}

/* Services Section */
.services-section {
    padding: 60px 20px;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--light-gray);
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    border-top: 4px solid var(--secondary-blue);
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}


.service-card-content {
    padding: 2rem;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: 'Orbitron', 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 0.9rem;
}

.service-features {
    list-style: none;
    margin-top: 1rem;
}

.service-features li {
    color: var(--gray);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-blue);
    font-weight: bold;
}

/* Why Services Section */
.why-services-section {
    padding: 60px 20px;
    background-color: var(--light-gray);
}

.why-services-section h2 {
    text-align: center;
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.benefit-item h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.benefit-item p {
    color: var(--gray);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Platform Detail Section */
.platform-detail-section {
    padding: 60px 20px;
    background-color: var(--light-gray);
}

.platform-detail-section h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.platform-detail-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.platform-detail-text p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.platform-features {
    list-style: none;
}

.platform-features li {
    color: var(--gray);
    padding: 1rem;
    margin-bottom: 0.5rem;
    background-color: var(--white);
    border-left: 4px solid var(--secondary-blue);
    border-radius: 4px;
    line-height: 1.8;
}

/* Projects Section */
.projects-section {
    padding: 60px 20px;
    background-color: var(--white);
}

.projects-section h2 {
    text-align: center;
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 3rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.project-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border-top: 4px solid var(--secondary-blue);
}

.project-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.project-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* Opportunities Section */
.opportunities-section {
    padding: 60px 20px;
    background-color: var(--light-gray);
}

.opportunities-section h2 {
    text-align: center;
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.opportunities-content {
    max-width: 900px;
    margin: 0 auto;
}

.opportunities-content > p {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    text-align: center;
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.opportunity-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.opportunity-item h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.opportunity-item p {
    color: var(--gray);
    line-height: 1.8;
}

/* Connection Section */
.connection-section {
    padding: 60px 20px;
    background-color: var(--white);
}

.connection-content {
    max-width: 900px;
    margin: 0 auto;
}

.connection-content h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.connection-content p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: center;
}

.connection-list {
    list-style: none;
    margin-top: 2rem;
}

.connection-list li {
    color: var(--gray);
    padding: 1rem;
    margin-bottom: 0.5rem;
    background-color: var(--light-gray);
    border-left: 4px solid var(--secondary-blue);
    border-radius: 4px;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 60px 20px;
    background-color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--secondary-blue);
    flex-shrink: 0;
}

.contact-text h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--gray);
}

.business-hours {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
}

.business-hours h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.business-hours p {
    color: var(--gray);
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
}

.contact-form-wrapper h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-blue);
}

.form-group textarea {
    resize: vertical;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Map Section */
.map-section {
    padding: 60px 20px;
    background-color: var(--light-gray);
}

.map-section h2 {
    text-align: center;
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.map-placeholder {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    color: var(--gray);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #002244 0%, #001122 100%);
    color: var(--white);
    padding: 50px 20px 20px;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #00d4ff;
    font-family: 'Orbitron', 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 1px;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--light-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-blue);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        gap: 0;
    }

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

    .nav-wrapper {
        flex-wrap: wrap;
        gap: 1rem;
        position: relative;
    }

    .nav-menu li {
        margin: 0.5rem 0;
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .translate-wrap {
        margin-left: auto;
        margin-top: 0;
        width: auto;
        order: 0;
    }

    .lang-select {
        width: auto;
        max-width: none;
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .hero {
        padding: 80px 15px;
        min-height: auto;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

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

    .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .globe-container {
        max-width: 250px;
        margin: 0 auto;
    }

    .globe-3d {
        height: 250px;
        max-width: 250px;
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5)) drop-shadow(0 0 40px rgba(0, 180, 219, 0.3));
    }

    .orbit {
        display: none; /* Hide orbits on mobile for performance */
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .feature-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .news-team-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .news-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .news-date {
        margin: 0 auto;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .team-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .team-controls {
        align-self: flex-end;
    }

    .btn-primary {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .platform-content,
    .platform-detail-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .intro-grid,
    .locations-grid,
    .mission-grid,
    .leadership-grid,
    .portfolio-grid,
    .services-grid,
    .benefits-grid,
    .projects-grid,
    .opportunities-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 60px 15px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

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

    .news-team-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .platform-content,
    .platform-detail-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .intro-grid,
    .locations-grid,
    .mission-grid,
    .leadership-grid,
    .features-grid,
    .portfolio-grid,
    .services-grid,
    .benefits-grid,
    .projects-grid,
    .opportunities-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 60px 20px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 15px;
    }

    .hero-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .globe-svg {
        max-width: 200px;
    }

    .logo h1 {
        font-size: 1.1rem;
    }

    .logo-image {
        height: 40px;
    }

    .nav-wrapper {
        padding: 0.5rem 0;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .vn-factory-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vn-factory-highlights {
        margin-top: 1rem;
    }

    .gallery-section {
        padding: 50px 15px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .gallery-grid {
        column-count: 2;
        column-gap: 1rem;
    }

    .gallery-item {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        column-count: 1;
        column-gap: 1rem;
    }

    .gallery-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 2.5rem;
        width: 40px;
        height: 40px;
    }

    .features-section,
    .vn-factory-section,
    .news-team-section {
        padding: 50px 15px;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .news-item {
        gap: 0.8rem;
        flex-direction: column;
        align-items: center;
    }

    .news-date {
        width: 60px;
        height: 60px;
    }

    .date-number {
        font-size: 1.2rem;
    }

    .date-month {
        font-size: 0.65rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .team-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .team-description {
        font-size: 0.85rem;
    }

    .intro-section,
    .us-presence-section,
    .vietnam-platform-section,
    .content-section,
    .mission-section,
    .leadership-section,
    .why-choose-section,
    .portfolio-section,
    .strategy-section,
    .services-section,
    .why-services-section,
    .cta-section,
    .platform-detail-section,
    .projects-section,
    .opportunities-section,
    .connection-section,
    .contact-section,
    .map-section,
    .gallery-section {
        padding: 40px 15px;
    }

    .page-header {
        padding: 60px 15px;
    }

    .page-header h1 {
        font-size: 1.75rem;
        letter-spacing: 2px;
    }

    .page-header p {
        font-size: 0.9rem;
    }

    .footer {
        padding: 40px 15px 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .btn-feature {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}

