:root {
    --primary: #1B2A3B;
    --primary-light: #2C4257;
    --accent: #C8A45C;
    --accent-light: #E8D5A8;
    --dark: #0F1923;
    --light: #F5F5F7;
    --text: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    padding-top: 76px;
}

.top-bar {
    background-color: var(--dark);
    font-size: 13px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-label {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.top-bar-link,
.top-bar-value {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.top-bar-link:hover {
    color: var(--accent-light);
}

.navbar {
    background-color: var(--white) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    min-height: 76px;
}

.navbar-brand img {
    height: 46px;
}

.navbar .nav-link {
    color: var(--primary) !important;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 0.5rem 1rem !important;
    text-transform: uppercase;
    transition: color 0.3s;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--accent) !important;
}

.hero-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    min-height: calc(100vh - 76px);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/hero.jpg') center center / cover no-repeat;
    opacity: 0.2;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    letter-spacing: 3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.accent-text {
    color: var(--accent-light) !important;
    font-weight: 300;
}

.section-title {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent);
}

.bg-light {
    background-color: var(--light) !important;
}

.offer-card {
    background: var(--white);
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.offer-card h5 {
    color: var(--primary);
    font-size: 13px;
    letter-spacing: 1px;
}

.offer-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

.offer-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.offer-img {
    max-width: 50px;
    max-height: 50px;
}

.contact-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/contact-bg.jpg') center center / cover no-repeat;
    opacity: 0.15;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-item h5 {
    color: var(--accent-light);
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--accent-light);
    text-decoration: none;
}

.contact-link:hover {
    color: var(--accent);
    text-decoration: underline;
}

.footer {
    background-color: var(--dark);
    padding: 1.5rem 0;
}


.nexum-code-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nexum-code-logo .nexum {
    background: linear-gradient(90deg, #ffffff 0%, #888888 25%, #ffffff 50%, #888888 75%, #ffffff 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: nexumShine 5s linear infinite;
}

@keyframes nexumShine {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -100% 0;
    }
}

.nexum-code-logo:hover .nexum {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    filter: brightness(1.2);
}

.nexum-code-logo span {
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 50%, #ff0080 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
    animation: gradientFlow 3s ease infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.nexum-code-logo span::before {
    content: 'Code';
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 50%, #ff0080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(15px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.nexum-code-logo:hover span::before {
    opacity: 0.7;
    filter: blur(30px);
}

.nexum-code-logo:hover span {
    text-shadow: 0 0 30px rgba(124, 58, 237, 0.8);
}
