@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;500;600;700&display=swap');

body {
    font-family: 'Noto Serif SC', serif;
    background-color: #0a0a0a;
    color: #f3f0e9;
}

.video-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -2;
}
#background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.25);
}

nav {
    transition: background-color 0.4s ease-out;
    border-bottom: 1px solid rgba(243, 240, 233, 0.2);
}
.nav-scrolled {
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom-color: rgba(243, 240, 233, 0.3);
}
.nav-link {
    position: relative;
    transition: color 0.3s;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f3f0e9;
    transition: width 0.3s ease-in-out;
}
.nav-link:hover::after {
    width: 100%;
}

.hero-title {
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.hero-subtitle {
    font-weight: 400;
    line-height: 1.8;
}

.cta-button {
    background-color: #f3f0e9;
    color: #1a1a1a;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #f3f0e9;
}
.cta-button:hover {
    background-color: transparent;
    color: #f3f0e9;
}
.cta-button-nav {
     border: 1px solid rgba(243, 240, 233, 0.5);
     color: #f3f0e9;
     font-weight: 500;
     transition: all 0.3s ease;
}
.cta-button-nav:hover {
    background-color: #f3f0e9;
    color: #1a1a1a;
}

.dark-radial-background {
    position: relative;
    background-color: #0c0c0c;
    overflow: hidden;
}
.dark-radial-background::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(243, 240, 233, 0.05) 0%, rgba(12, 12, 12, 0) 70%);
    pointer-events: none;
}

.team-cta-section .bg-image {
    transition: transform 0.5s ease;
}

.section-title-underline {
    position: relative;
    padding-bottom: 0.5rem;
}
.section-title-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #f3f0e9;
}

.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.competitiveness-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(243, 240, 233, 0.1);
    transition: all 0.3s ease;
}
.competitiveness-card:hover {
    background-color: rgba(255, 255, 255, 0.07);
    border-color: rgba(243, 240, 233, 0.3);
    transform: translateY(-5px);
}

.marquee-container {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    background: linear-gradient(90deg, #D4AF37, #F0E68C, #D4AF37);
    color: #1a1a1a;
}
.marquee-content {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
    animation: marquee 40s linear infinite;
}
.marquee-item {
    display: flex;
    align-items: center;
    margin: 0 2rem;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

/* --- NEW STYLES FOR CONTACT PAGE --- */
.page-header {
    overflow: hidden;
}

.form-input,
.form-textarea {
    background-color: rgba(243, 240, 233, 0.05);
    border: 1px solid rgba(243, 240, 233, 0.2);
    color: #f3f0e9;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #f3f0e9;
    box-shadow: 0 0 0 2px rgba(243, 240, 233, 0.2);
}
