﻿/* GoldenPeaks Exact Clone CSS */
:root {
    --black: black;
    --dark-slate-grey: #00414d;
    --aquamarine: #73e4f1;
    --white: white;
    --charcoal: #141414;
    --conservation: #0092b8;
    --dark-slate-grey-tint: #2d3542;
    --light-aqua: #b7f8ec;
    --foundation: #6f0d37;
    --red: #ff3636;
    --white-tint: #ffffff80;
    
    /* Legacy variables for compatibility */
    --primary-blue: #00414d;
    --secondary-blue: #0092b8;
    --accent-blue: #73e4f1;
    --text-dark: #00414d;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --border-gray: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: auto;
    height: 100%;
    overflow-x: hidden;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 20px;
    color: var(--dark-slate-grey);
    background-color: var(--bg-white);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(4, 10, 20, 0.65);
    backdrop-filter: blur(6px);
    z-index: 900;
    pointer-events: none;
}

/* Main */
main {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
}

/* Tab Section */
.tab-section {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.tab-section.active {
    display: block;
}

/* Eliminar espacios entre elementos */
.hero + .services-banner {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Asegurar que no haya espacios */
.hero,
.services-banner {
    display: block;
}

/* Eliminar cualquier espacio en blanco */
.hero::after,
.services-banner::before {
    content: '';
    display: none;
}

/* Prevenir efectos de scroll en hero y services-banner */
.hero,
.services-banner {
    will-change: auto;
    backface-visibility: hidden;
    perspective: 1000px;
    transform-style: flat;
}

/* Asegurar que no haya efectos de parallax o scroll */
@media (prefers-reduced-motion: no-preference) {
    .hero,
    .services-banner {
        transform: translateZ(0);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation - GoldenPeaks Exact Style */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    backdrop-filter: none;
    border-bottom: none;
    z-index: 1000;
    padding: 0;
    height: 60px;
    display: flex;
    align-items: center;
    width: 100%;
    transition: all 0.3s ease;
}

/* Navbar when scrolled - GoldenPeaks style */
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled .nav-links a {
    color: var(--dark-slate-grey);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--secondary-blue);
}

.navbar.scrolled .nav-links a.active {
    color: var(--dark-slate-grey);
}

.navbar.scrolled .logo img {
    filter: none;
}

.navbar.scrolled .logo .logo-text,
.navbar.scrolled .logo a {
    color: var(--dark-slate-grey);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding-left: 60px;
    padding-right: 60px;
    position: relative;
    z-index: 1;
    white-space: normal;
    margin-left: auto;
    margin-right: auto;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 32px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    transition: all 0.3s ease;
    box-shadow: none;
}

.navbar.scrolled .logo img {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.logo .logo-text,
.logo a {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar.scrolled .logo .logo-text,
.navbar.scrolled .logo a {
    color: var(--dark-slate-grey);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    margin: 0;
    padding: 0;
    height: 100%;
}

.nav-links li {
    position: relative;
    margin: 0 0.5rem;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-links li:not(:last-child)::after {
    content: none;
    display: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 300;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    position: relative;
    transition: color 0.3s ease;
    padding: 8px 4px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-links a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.nav-links a.active {
    color: var(--white);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 100%;
}

.dropdown > a i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(30, 64, 175, 0.05);
    color: var(--primary-blue);
    border-left-color: var(--primary-blue);
}

.dropdown-menu a.active {
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary-blue);
    border-left-color: var(--primary-blue);
}

/* Submenu */
.has-submenu {
    position: relative;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    min-width: 200px;
    z-index: 1001;
    border: 1px solid var(--border-gray);
}

.submenu li {
    margin: 0;
}

.submenu a {
    display: block;
    padding: 12px 16px;
    color: var(--text-dark);
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.submenu a:hover {
    background-color: var(--bg-light);
    color: var(--primary-blue);
}

.has-submenu:hover .submenu {
    display: block;
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

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

/* Hero Section - GoldenPeaks Exact Style */
.hero {
    height: 85vh;
    min-height: 600px;
    max-height: 900px;
    background: url('../images/datacenter.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 60px;
    text-align: left;
    width: 100%;
}

.hero-content h1 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
    max-width: 800px;
}

.hero-content h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.4;
}

.hero-content .hero-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
}

.hero-content .hero-slogan {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-style: normal;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 2rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

/* Services Banner Section - Modern Style with Luminous Effects */
.services-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    gap: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: transparent;
    position: relative;
    top: 0;
    box-sizing: border-box;
    border: none;
    outline: none;
}

@media (max-width: 1200px) {
    .services-banner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-banner {
        grid-template-columns: 1fr;
    }
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: visible;
    text-decoration: none;
    color: inherit;
}

.service-item:hover {
    transform: none;
    z-index: 1;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-icon {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
}

.icon-circle svg {
    color: rgba(255, 255, 255, 0.9);
    stroke-width: 1.5;
}

.edit-icon {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: white;
    font-weight: bold;
}

.service-item h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    text-align: center;
    position: relative;
    z-index: 2;
    text-shadow: none;
    letter-spacing: 0.5px;
}

.service-item p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 1rem 0;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.service-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--secondary-blue);
    text-decoration: underline;
}

/* Services Grid - GoldenPeaks Style */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

/* Service Cards - Modern Design */
.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12), 0 12px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 2rem;
    transition: transform 0.4s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.service-card .btn {
    margin-top: 1rem;
}

/* Buttons - Modern Design */
.btn {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: var(--bg-white);
    text-decoration: none;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.3);
    position: relative;
    overflow: hidden;
    text-align: center;
    min-width: 160px;
}

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

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

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(30, 64, 175, 0.4);
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.3);
}

.btn-cta {
    padding: 20px 40px;
    font-size: 18px;
    border-radius: 16px;
    min-width: 200px;
}

.btn-secondary {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    box-shadow: 0 8px 24px rgba(107, 114, 128, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
    box-shadow: 0 16px 40px rgba(107, 114, 128, 0.4);
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.45);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1100;
}

.back-to-top i {
    font-size: 1rem;
}

.back-to-top:hover {
    box-shadow: 0 20px 45px rgba(30, 64, 175, 0.55);
    transform: translateY(-4px);
}

.back-to-top:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.6);
    outline-offset: 3px;
}

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

@media (max-width: 768px) {
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 44px;
        height: 44px;
        box-shadow: 0 12px 28px rgba(30, 64, 175, 0.4);
    }

    .back-to-top:hover {
        transform: translateY(-2px);
    }
}

/* Section Glass - Modern Design */
.section-glass {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.section-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue), var(--primary-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.section-glass:hover {
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12), 0 16px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.section-glass:hover::before {
    opacity: 1;
}

.section-glass h2,
.section-glass h3,
.section-glass h4 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
}

.section-glass h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.section-glass h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-glass h4 {
    font-size: 1.3rem;
    color: var(--secondary-blue);
    margin-bottom: 1rem;
}

.section-glass p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Tables - GoldenPeaks Style */
table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin: 1.5rem 0;
}

thead {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
}

thead th {
    padding: 1rem;
    text-align: left;
    color: var(--bg-white);
    font-weight: 600;
    font-size: 14px;
}

tbody td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-gray);
    color: var(--text-dark);
}

tbody tr:last-child td {
    border-bottom: none;
}

tbody tr:hover {
    background-color: var(--bg-light);
}

/* Forms - GoldenPeaks Style */
.form-group {
    margin-bottom: 1.5rem;
}

input, textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: var(--bg-white);
    font-family: inherit;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

textarea {
    height: 120px;
    resize: vertical;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-container input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

/* Footer - Modern Design */
footer {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 25%, #2d3748 75%, #1a202c 100%);
    color: var(--bg-white);
    padding: 2.5rem 0 0;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), var(--accent-blue), transparent);
    opacity: 0.8;
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(30, 64, 175, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
}

.footer-section h3 {
    font-size: 1.6rem;
    background: linear-gradient(135deg, var(--bg-white), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    font-size: 1rem;
    color: var(--accent-blue);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    border-radius: 1px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
    display: block;
}

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    font-weight: 400;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.3);
    border-color: var(--primary-blue);
}

.social-link i {
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 400;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--accent-blue);
}

.footer-links a:hover {
    color: var(--accent-blue);
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-info p strong {
    color: var(--bg-white);
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-info p i {
    color: var(--accent-blue);
    font-size: 1.1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.legal-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-blue);
    transition: width 0.3s ease;
}

.legal-links a:hover {
    color: var(--accent-blue);
}

.legal-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.5rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.6), rgba(59, 130, 246, 0.6), transparent);
}

.footer-bottom::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    border-radius: 0 0 4px 4px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-size: 0.9rem;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.2px;
}

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

.footer-bottom p a:hover {
    color: var(--accent-blue);
}

.site-credit {
    position: relative;
}

.site-credit a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(30, 64, 175, 0.1);
    border: 1px solid rgba(30, 64, 175, 0.2);
}

.site-credit a:hover {
    color: var(--primary-blue);
    background: rgba(30, 64, 175, 0.2);
    border-color: rgba(30, 64, 175, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .navbar .container {
        padding: 0 2rem;
    }
    
    .nav-links li:not(:last-child)::after {
        margin: 0 1rem;
    }
    
    .nav-links a {
        font-size: 13px;
    }
    
    .logo img {
        height: 35px;
    }
}

@media (max-width: 1024px) {
    .hero {
        height: 60vh;
        min-height: 450px;
        max-height: 600px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .services-banner {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        padding: 2rem 1.25rem;
        gap: 1.25rem;
    }

    .modern-service-card {
        padding: 1.75rem 1.5rem;
    }
}

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

    .navbar {
        background: rgba(5, 15, 32, 0.9);
        backdrop-filter: blur(12px);
    }

    .navbar.scrolled {
        background: rgba(5, 15, 32, 0.9);
        backdrop-filter: blur(12px);
        box-shadow: none;
        border-bottom: none;
    }

    .navbar.scrolled .nav-links a,
    .navbar.scrolled .nav-links a:hover,
    .navbar.scrolled .nav-links a.active {
        color: rgba(244, 246, 251, 0.97);
    }

    .navbar.scrolled .logo .logo-text,
    .navbar.scrolled .logo a {
        color: var(--white);
    }

    .navbar.scrolled .hamburger span {
        background-color: var(--bg-white);
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        right: 1.2rem;
        width: calc(100vw - 2.8rem);
        max-width: 285px;
        background: rgba(6, 14, 28, 0.98);
        flex-direction: column;
        padding: 0.55rem 0.85rem 0.6rem;
        border-radius: 12px;
        gap: 0.4rem;
        z-index: 998;
        box-shadow: 0 18px 36px rgba(5, 18, 36, 0.5);
        backdrop-filter: none;
        border: 1px solid rgba(37, 99, 235, 0.25);
    }

    .nav-links li:not(:last-child)::after {
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0;
        width: 100%;
        height: auto;
        align-items: stretch;
    }

    /* Mobile dropdown styles */
    .dropdown {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .dropdown > a {
        justify-content: space-between;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        margin-top: 0.35rem;
        padding: 0;
        min-width: auto;
        width: 100%;
        gap: 0.3rem;
    }

    .dropdown-menu a {
        color: rgba(244, 246, 251, 0.92);
        padding: 0.55rem 1.1rem;
        font-size: 0.9rem;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        display: flex;
        align-items: center;
        background: rgba(20, 32, 54, 0.75);
        transition: background 0.3s ease, transform 0.3s ease;
    }

    .dropdown-menu a + a {
        margin-top: 0.25rem;
    }

    .dropdown-menu a:hover {
        background: rgba(37, 99, 235, 0.55);
        color: var(--bg-white);
        transform: translateX(2px);
    }

    .navbar .container {
        padding: 0 1.5rem;
        gap: 0.75rem;
    }

    .logo img {
        height: 30px;
    }

    .nav-links li {
        margin: 0 0.25rem;
    }

    .nav-links li:not(:last-child)::after {
        margin: 0 1rem;
    }

    .nav-links a {
        font-size: 0.95rem;
        padding: 0.65rem 1rem;
        width: 100%;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0.6rem;
        background: rgba(20, 32, 54, 0.78);
        color: rgba(244, 246, 251, 0.97);
        font-weight: 500;
        transition: background 0.3s ease, transform 0.3s ease;
    }

    .nav-links a:hover,
    .nav-links a:focus {
        background: rgba(37, 99, 235, 0.55);
        transform: translateX(4px);
    }

    .language-selector {
        width: 100%;
        justify-content: flex-start;
        gap: 0.6rem;
        padding: 0.6rem 1rem 0.2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        background: transparent;
        margin-top: 0.25rem;
    }

    .language-selector a {
        padding: 0.35rem 0.65rem;
        border-radius: 999px;
        font-size: 0.82rem;
        background: rgba(15, 118, 110, 0.28);
    }

    .hero {
        height: auto;
        min-height: 0;
        max-height: none;
    }

    .hero-content {
        padding: 5.5rem 1.25rem 3rem;
        text-align: left;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-content .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    .services-banner {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
        gap: 1.25rem;
    }

    .service-item {
        width: 100%;
    }

    .modern-service-card {
        padding: 1.5rem 1.25rem;
    }

    .icon-circle {
    width: 60px;
        height: 60px;
    }

    .growth-arrow {
        width: 16px;
        height: 16px;
        font-size: 10px;
    }

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    }

    .section-glass {
        padding: 2rem;
        margin: 2rem 0;
        border-radius: 16px;
    }

    .section-glass h2 {
        font-size: 2rem;
    }

    .section-glass h3 {
        font-size: 1.5rem;
    }

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

    .service-card {
        padding: 2rem;
    }

    .service-card img {
        height: 180px;
    }

    .container {
        padding: 0 16px;
    }

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

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

    .footer-logo {
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        padding: 2rem 0;
    }
    
    .footer-bottom p {
        font-size: 0.95rem;
    }
    
    .site-credit a {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    /* Responsive for new sections */
    .section-glass div[style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .section-glass div[style*="width:300px"] {
        width: 250px !important;
        height: 250px !important;
    }
}

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

    .hero-content {
        padding: 5rem 1rem 2.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .hero-subtitle {
        font-size: 0.95rem;
    }

    .language-selector {
        gap: 0.5rem;
        padding: 0.5rem 1.25rem 1rem;
    }

    .language-selector a {
        font-size: 0.8rem;
        padding: 0.35rem 0.6rem;
    }

    .language-selector .flag-icon {
        width: 20px;
        height: 15px;
    }

    .section-glass {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 45vh;
        min-height: 350px;
        max-height: 450px;
    }

    .hero-content {
        padding: 1rem 16px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-glass {
        padding: 1.5rem;
        margin: 1.5rem 0;
        border-radius: 12px;
    }

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

    .section-glass h3 {
        font-size: 1.3rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card img {
        height: 160px;
    }

    .news-item {
        padding: 1.5rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .services-banner {
        grid-template-columns: 1fr;
        padding: 1.5rem 0.75rem;
        gap: 1rem;
    }

    .modern-service-card {
        padding: 1.25rem 1rem;
    }

    .modern-service-card h3 {
        font-size: 1.2rem;
    }

    .modern-service-card p {
        font-size: 0.9rem;
    }

    .modern-icon-circle {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }

    .modern-icon-circle svg {
        width: 20px;
        height: 20px;
    }

    .modern-service-link {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-logo {
        flex-direction: column;
        gap: 0;
    }

    .social-links {
        gap: 0.75rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .legal-links {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    /* Mobile responsive for new sections */
    .section-glass div[style*="width:300px"] {
        width: 200px !important;
        height: 200px !important;
    }

    .section-glass div[style*="position:absolute;top:0"] {
        width: 80px !important;
        height: 60px !important;
        font-size: 0.8rem !important;
    }

    .section-glass div[style*="position:absolute;top:70px"] {
        width: 120px !important;
        height: 60px !important;
        font-size: 0.7rem !important;
    }

    .section-glass div[style*="position:absolute;top:140px"] {
        width: 160px !important;
        height: 60px !important;
        font-size: 0.8rem !important;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Animation Classes */
.section-glass {
    animation: fadeInUp 0.8s ease-out;
}

.service-card {
    animation: scaleIn 0.6s ease-out;
}

.news-item {
    animation: slideInLeft 0.7s ease-out;
}

.pyramid-layer {
    animation: scaleIn 0.5s ease-out;
}

.pyramid-layer:hover {
    animation: float 2s ease-in-out infinite;
}

/* Staggered animations for news items */
.news-item:nth-child(1) { animation-delay: 0.1s; }
.news-item:nth-child(2) { animation-delay: 0.2s; }
.news-item:nth-child(3) { animation-delay: 0.3s; }

/* Staggered animations for service cards */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

/* Google Translate - COMMENTED OUT TO PREVENT LOADING ISSUES */
/*
#google_translate_element {
    margin-left: 1rem;
}

#google_translate_element select {
    padding: 8px 12px;
    border: 1px solid var(--border-gray);
    border-radius: 6px;
    background: var(--bg-white);
    font-family: inherit;
    font-size: 14px;
}
*/

/* Consent Banner - Removed for performance optimization */

/* Tab Navigation for SPA */
.tab-section {
    display: none;
}

.tab-section.active {
    display: block;
}

/* Image styling */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.section-glass img {
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.section-glass img:hover {
    transform: scale(1.02);
}

/* News Grid - Modern Design */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.news-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.news-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.news-item:hover::before {
    transform: scaleX(1);
}

.news-item:hover {
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12), 0 12px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
}

.news-date {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.news-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.news-item p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.btn-text {
    background: none;
    color: var(--primary-blue);
    padding: 0;
    font-weight: 600;
    text-decoration: none;
    border: none;
    box-shadow: none;
    min-width: auto;
    transition: all 0.3s ease;
}

.btn-text:hover {
    color: var(--accent-blue);
    transform: translateX(4px);
    background: none;
    box-shadow: none;
}

.btn-text::before {
    display: none;
}

/* Modern Pyramid Styles - REMOVED (replaced with GPU.png images) */

/* Lists */
ul {
    list-style: none;
    padding-left: 0;
}

/* Service Navigation Cards */
.service-nav-card {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(59, 130, 246, 0.1));
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(30, 64, 175, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-nav-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(30, 64, 175, 0.2);
}

.service-nav-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.service-nav-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--text-gray);
}

/* Benefits Cards */
.benefits-card {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), rgba(59, 130, 246, 0.05));
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(30, 64, 175, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefits-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.benefits-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.benefits-card h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.benefits-card p {
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

/* Responsive Grid Layout for What We Do Sections */
@media (max-width: 768px) {
    .section-glass div[style*="grid-template-columns:repeat(auto-fit,minmax(300px,1fr))"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .section-glass div[style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .section-glass div[style*="text-align:center"] {
        order: -1;
    }
    
    .section-glass img {
        max-width: 300px !important;
    }
    
    .service-nav-card {
        padding: 1.5rem;
    }
    
    .service-nav-card h3 {
        font-size: 1.2rem;
    }
    
    .benefits-card {
        padding: 1.5rem;
    }
    
    .benefits-card h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .section-glass img {
        max-width: 250px !important;
    }
    
    .section-glass h2 {
        font-size: 1.8rem !important;
    }
    
    .section-glass h4 {
        font-size: 1.2rem !important;
    }
}

.section-glass ul li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.6;
}

.section-glass ul li::before {
    content: '▶';
    color: var(--primary-blue);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 0.8rem;
}

/* Blockquotes */
blockquote {
    font-style: italic;
    color: var(--text-gray);
    border-left: 4px solid var(--primary-blue);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Service Card Images */
.section-glass img {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.section-glass img:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

/* Introduction Section Styles */
.intro-section {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), rgba(59, 130, 246, 0.05));
    border: 1px solid rgba(30, 64, 175, 0.1);
}

.intro-section img {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.intro-section img:hover {
    transform: scale(1.02);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

/* GPU Introduction Section Styles */
.gpu-intro-section img {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.gpu-intro-section img:hover {
    transform: scale(1.02);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for service card images */
@media (max-width: 768px) {
    .section-glass img {
        max-width: 250px !important;
        height: 150px !important;
    }
    
    .intro-section {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }
    
    .gpu-intro-section {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .section-glass img {
        max-width: 200px !important;
        height: 120px !important;
    }
    
    .intro-section img {
        max-width: 300px !important;
    }
    
    .gpu-intro-section img {
        max-width: 300px !important;
    }
}

/* Modern Service Cards Styles with Luminous Gradients - GoldenPeaks style */
.modern-service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.25) 50%, rgba(4, 120, 87, 0.35) 100%);
    box-shadow: inset 0 0 60px rgba(16, 185, 129, 0.1);
    border: none;
    height: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Flex horizontal for desktop */
.flex-horizontal {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

/* Flex vertical for mobile */
@media (max-width: 768px) {
    .display-flex-vertical-mobile {
        flex-direction: column !important;
    }
    
    .service-content {
        padding: 3rem 2rem;
        min-height: auto;
    }
    
    .modern-service-card {
        min-height: 400px;
    }
    
    .service-bg-image {
        opacity: 0.15;
    }
}

/* Service content wrapper - GoldenPeaks style */
.service-content {
    width: 100%;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
    min-width: 0;
    gap: 0;
}

/* Service background image with effects - GoldenPeaks wireframe style */
.service-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.08;
    mix-blend-mode: overlay;
    filter: grayscale(80%) brightness(1.5) contrast(1.6) saturate(0.3);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.modern-service-card:hover .service-bg-image {
    opacity: 0.15;
    transform: scale(1.05);
    filter: grayscale(60%) brightness(1.6) contrast(1.7) saturate(0.5);
}

.modern-service-card:nth-child(1) {
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.12) 0%, rgba(5, 150, 105, 0.22) 50%, rgba(4, 120, 87, 0.32) 100%);
}

.modern-service-card:nth-child(2) {
    background: linear-gradient(180deg, rgba(20, 184, 166, 0.12) 0%, rgba(15, 118, 110, 0.22) 50%, rgba(13, 148, 136, 0.32) 100%);
}

.modern-service-card:nth-child(3) {
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.12) 0%, rgba(5, 150, 105, 0.22) 50%, rgba(4, 120, 87, 0.32) 100%);
}

.modern-service-card:nth-child(4) {
    background: linear-gradient(180deg, rgba(20, 184, 166, 0.12) 0%, rgba(15, 118, 110, 0.22) 50%, rgba(13, 148, 136, 0.32) 100%);
}

/* Semi-transparent decorative graphics over images */
.modern-service-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.4;
    pointer-events: none;
    transition: all 0.6s ease;
    z-index: 1;
}

.modern-service-card:nth-child(1)::after {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
    bottom: -30px;
    left: -30px;
    width: 250px;
    height: 250px;
}

.modern-service-card:nth-child(2)::after {
    background: radial-gradient(circle, rgba(20, 184, 166, 0.25) 0%, transparent 70%);
    bottom: -40px;
    right: -40px;
    width: 280px;
    height: 280px;
}

.modern-service-card:nth-child(3)::after {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
    bottom: -40px;
    right: -40px;
    width: 280px;
    height: 280px;
}

.modern-service-card:nth-child(4)::after {
    background: radial-gradient(circle, rgba(34, 197, 94, 0.25) 0%, transparent 70%);
    top: -40px;
    right: -40px;
    width: 220px;
    height: 220px;
}

/* Overlay gradient on image area - GoldenPeaks style */
.modern-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 30%, transparent 60%, rgba(16, 185, 129, 0.05) 100%);
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: normal;
}

.modern-service-card:hover {
    transform: translateY(-4px);
    box-shadow: inset 0 0 100px rgba(16, 185, 129, 0.2), 0 12px 40px rgba(0, 0, 0, 0.1);
}

.modern-service-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, transparent 50%, rgba(4, 120, 87, 0.12) 100%);
}

.modern-service-card:hover::after {
    transform: scale(1.2);
    opacity: 0.8;
}

.modern-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    border: 1px solid rgba(4, 120, 87, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
    backdrop-filter: blur(10px);
}

/* Dotted line connecting icon to title - GoldenPeaks style */
.service-icon::after {
    content: '';
    display: block;
    width: 1px;
    height: 30px;
    margin: 0.75rem auto 0.75rem;
    background-image: radial-gradient(circle, rgba(4, 120, 87, 0.5) 1px, transparent 1px);
    background-size: 2px 6px;
    background-repeat: repeat-y;
    background-position: center;
    opacity: 0.6;
    z-index: 1;
}

.modern-icon-circle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(4, 120, 87, 0.2), rgba(16, 185, 129, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.modern-service-card:hover .modern-icon-circle {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(4, 120, 87, 0.3);
    border-color: rgba(4, 120, 87, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.modern-service-card:hover .modern-icon-circle::before {
    opacity: 1;
}

.modern-icon-circle svg {
    color: rgba(4, 120, 87, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    position: relative;
    width: 24px;
    height: 24px;
    stroke-width: 2;
    fill: none;
    stroke: currentColor;
    filter: none;
}

.modern-service-card:hover .modern-icon-circle svg {
    color: rgba(4, 120, 87, 1);
    transform: scale(1.05);
}

.modern-service-card h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: rgba(4, 120, 87, 1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8), 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    text-align: center;
    letter-spacing: -0.01em;
    order: 3;
}

.modern-service-card:hover h3 {
    margin-bottom: 1rem;
}

.modern-service-card:nth-child(1) h3 {
    color: rgba(4, 120, 87, 0.95);
}

.modern-service-card:nth-child(2) h3 {
    color: rgba(4, 120, 87, 0.95);
}

.modern-service-card:nth-child(3) h3 {
    color: rgba(4, 120, 87, 0.95);
}

.modern-service-card:nth-child(4) h3 {
    color: rgba(4, 120, 87, 0.95);
}

.modern-service-card:hover h3 {
    color: rgba(4, 120, 87, 1);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.modern-service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(4, 120, 87, 0.85);
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-grow: 1;
    position: relative;
    z-index: 2;
    font-weight: 400;
    max-width: 85%;
    opacity: 0;
    transform: translateY(10px);
    height: 0;
    overflow: hidden;
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.9), 0 2px 8px rgba(0, 0, 0, 0.2);
}

.modern-service-card:hover p {
    color: rgba(4, 120, 87, 0.95);
    opacity: 1;
    transform: translateY(0);
    height: auto;
    margin-top: 1rem;
    text-shadow: 0 2px 6px rgba(255, 255, 255, 0.95), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.modern-service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    color: rgba(4, 120, 87, 0.95);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    margin-top: auto;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.modern-service-link:hover {
    background: rgba(255, 255, 255, 1);
    color: rgba(4, 120, 87, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.modern-service-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-blue);
    transition: width 0.3s ease;
    z-index: 0;
}

.modern-service-link span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.modern-service-link:hover {
    color: white;
    border-color: var(--primary-blue);
    transform: translateX(4px);
}

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

.modern-service-link::after {
    content: '→';
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.modern-service-link:hover::after {
    transform: translateX(4px);
}

/* Contact Form Styles */
#contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(30, 64, 175, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
    background: white;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-container input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
}

.checkbox-container span {
    color: var(--text-gray);
}

#contact-form .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

#contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

/* Success state for button */
#contact-form .btn.success {
    background: #10b981 !important;
    transform: scale(1.02);
}

/* Language Selector */
.language-selector {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

.language-selector a {
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--bg-white);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.language-selector a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.language-selector a.active {
    background: var(--primary-blue);
    color: var(--bg-white);
}

/* Language selector when navbar is scrolled */
.navbar.scrolled .language-selector a {
    background: rgba(0, 65, 77, 0.1);
    color: var(--dark-slate-grey);
}

.navbar.scrolled .language-selector a:hover {
    background: rgba(0, 65, 77, 0.15);
}

.navbar.scrolled .language-selector a.active {
    background: var(--primary-blue);
    color: var(--bg-white);
}

.language-selector .flag-icon {
    width: 18px;
    height: 14px;
    border-radius: 2px;
    display: inline-block;
    margin-right: 0.35rem;
}

.language-selector .flag-us {
    background: linear-gradient(to bottom, #b22234 0%, #b22234 7.7%, #ffffff 7.7%, #ffffff 15.4%, #b22234 15.4%, #b22234 23.1%, #ffffff 23.1%, #ffffff 30.8%, #b22234 30.8%, #b22234 38.5%, #ffffff 38.5%, #ffffff 46.2%, #b22234 46.2%, #b22234 53.9%, #ffffff 53.9%, #ffffff 61.6%, #b22234 61.6%, #b22234 69.3%, #ffffff 69.3%, #ffffff 77%, #b22234 77%, #b22234 84.7%, #ffffff 84.7%, #ffffff 92.4%, #b22234 92.4%, #b22234 100%);
    position: relative;
}

.language-selector .flag-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 53.8%;
    background: #3c3b6e;
    border-radius: 0 0 2px 0;
}

.language-selector .flag-cn {
    background: #de2910;
    position: relative;
}

.language-selector .flag-cn::before {
    content: '★';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffde00;
    font-size: 8px;
    font-weight: bold;
}

/* Mobile Language Selector */
@media (max-width: 768px) {
    .language-selector {
        margin-left: 0;
        margin-top: 1rem;
        justify-content: center;
    }
} 
