/* === COMPONENTS STYLES === */
/* Navigation, Buttons, Cards, Footer, Mobile Menu, Cursor, Animations */

/* === CUSTOM CURSOR === */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cursor.active {
    transform: scale(1.5);
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .cursor {
        display: none;
    }
}

/* === NAVIGATION BAR === */
.nav-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition-medium);
}

.nav-wrapper.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 1px 0 var(--color-border);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
}

/* === BRAND CONTAINER === */
.brand-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all var(--transition-medium);
}

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

.logo-image {
    height: 55px;
    width: auto;
    transition: all var(--transition-medium);
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.1));
}

.company-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .company-name {
        display: none;
    }
    .logo-image {
        height: 50px;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
    align-items: center;
}

.nav-link {
    color: var(--color-text-muted);
    text-decoration: none;
    font-weight: 400;
    font-size: var(--font-size-sm);
    position: relative;
    transition: all var(--transition-medium);
    letter-spacing: 0.01em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-link:hover {
    color: #00d4ff;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: #ffffff;
}

/* === HAMBURGER MENU === */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    padding: 12px;
    z-index: 1001;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    overflow: hidden;
}

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

.hamburger-menu:hover::before {
    left: 100%;
}

.hamburger-menu:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: #ffffff;
    margin: 2px 0;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    border-radius: 2px;
    position: relative;
}

.hamburger-menu.active {
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.4);
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #00d4ff;
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: #00d4ff;
}

/* === MOBILE MENU === */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 100px 2rem 2rem;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    overflow-y: auto;
}

.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.mobile-menu.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 400px;
    margin: 0 auto;
}

.mobile-menu-header {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.mobile-menu.active .mobile-menu-header {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.mobile-menu-title {
    font-size: 1.1rem;
    color: #00d4ff;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mobile-menu-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

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

.mobile-nav-links li {
    margin: 0;
    padding: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.mobile-menu.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.4s; }
.mobile-menu.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.5s; }
.mobile-menu.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.6s; }
.mobile-menu.active .mobile-nav-links li:nth-child(5) { transition-delay: 0.7s; }

.mobile-menu.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-nav-link:hover::before {
    left: 100%;
}

.mobile-nav-link:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    transform: translateX(8px);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.mobile-menu-footer {
    margin-top: auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.mobile-menu.active .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.mobile-contact-info {
    margin-bottom: 1.5rem;
}

.mobile-phone {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #00d4ff;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-phone:hover {
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
    transform: scale(1.05);
}

.mobile-cta {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.mobile-cta:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
    font-weight: 400;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
}

.btn-primary:hover {
    background: #00d4ff;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: #00d4ff;
    border: 1px solid #00d4ff;
}

.btn-secondary:hover {
    background: #00d4ff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

/* === CARDS === */
.value-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--color-border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 400;
}

.value-card p {
    color: var(--color-text-muted);
    line-height: 1.6;
}

.team-member {
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: all 0.4s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 400;
    color: #ffffff;
    border: 1px solid var(--color-border);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 400;
}

.member-role {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin-bottom: 1rem;
    font-size: var(--font-size-sm);
}

.member-bio {
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: var(--font-size-sm);
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    color: var(--color-text-muted);
    font-size: var(--font-size-lg);
    transition: color 0.3s ease;
    text-decoration: none;
}

.member-social a:hover {
    color: #ffffff;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 300;
    color: #ffffff;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--color-text-muted);
    font-size: var(--font-size-base);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* === FOOTER === */
.footer {
    background: #000000;
    padding: 6rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    transform: translateX(3px);
}

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

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

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

/* === UNIVERSAL BLUE GLOW HOVER SYSTEM === */
.glow-hover {
    transition: all 0.3s ease;
    position: relative;
}

.glow-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.glow-hover-strong:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
    border-color: rgba(0, 212, 255, 0.6);
}

.glow-hover-accent:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    color: #00d4ff;
}

.glow-hover-button:hover {
    background: #00d4ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

/* === MOBILE NAVIGATION ENHANCEMENTS === */
@media (max-width: 768px) {
    .nav-wrapper {
        background: rgba(0, 0, 0, 0.95) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(10px) !important;
    }
    
    .navbar {
        padding: 1.25rem 0;
    }
    
    .company-name {
        display: none;
    }
    
    .logo-image {
        height: 48px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .nav-link {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        color: rgba(255, 255, 255, 0.9);
        transition: all 0.2s ease;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(0, 212, 255, 0.15);
        border-color: rgba(0, 212, 255, 0.4);
        color: #00d4ff;
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    }
}