/* Corporate Sections CSS - Using existing color palette */
:root {
    --primary-gradient-start: #0B1D51;
    --primary-gradient-middle: #0F3460;
    --primary-gradient-end: #006466;
    --accent-color: #00E676;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
}

/* Navbar Styles */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 90px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 60px;
}

.logo {
    height: 60px;
    display: block;
}

.logo img {
    height: 100%;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--primary-gradient-start);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    white-space: nowrap;
    padding: 8px 0;
}

.nav-links a:hover {
    color: var(--primary-gradient-end);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: 60px;
}

.membership-btn {
    background: var(--primary-gradient-start);
    color: var(--text-light) !important;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: transform 0.3s ease;
    white-space: nowrap;
    display: inline-block;
}

.membership-btn:hover {
    background: var(--primary-gradient-end);
    transform: translateY(-2px);
}

.lang-selector {
    display: flex;
    gap: 10px;
}

.lang-btn {
    background: none;
    border: 1px solid var(--primary-gradient-start);
    color: var(--primary-gradient-start);
    padding: 8px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: var(--primary-gradient-start);
    color: white;
}

.lang-btn:hover {
    background: var(--primary-gradient-start);
    color: white;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-gradient-start);
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .nav-left {
        gap: 20px;
    }
    
    .nav-links {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    gap: 30px;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-color);
    background: rgba(0, 230, 118, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.feature-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 30px 0;
    background: #ffffff;
}

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

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(11, 29, 81, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gradient-start);
}

.benefit-icon {
    font-size: 2.2rem;
    color: var(--primary-gradient-start);
    margin-bottom: 15px;
}

.benefit-card h4 {
    color: #000000;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #000000;
    font-size: 1rem;
    line-height: 1.6;
}

/* Info Blocks */
.info-blocks {
    padding: 30px 0;
    background: #ffffff;
}

.info-block {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(11, 29, 81, 0.1);
    color: #000000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-block h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-gradient-start);
}

.info-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 20px;
}

.info-block ul {
    list-style: none;
    padding: 0;
}

.info-block ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 15px;
    color: #000000;
}

.info-block ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-gradient-start);
}

/* Control Panel Section */
.control-panel {
    padding: 30px 0;
    background: #ffffff;
}

.control-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.control-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(11, 29, 81, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.control-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gradient-start);
}

.control-card h3 {
    color: var(--primary-gradient-start);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.control-card ul {
    list-style: none;
    padding: 0;
}

.control-card ul li {
    color: #000000;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.control-card ul li i {
    color: var(--primary-gradient-start);
    font-size: 1.2rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features-grid,
    .control-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
    }
    
    .info-block {
        padding: 30px;
    }
    
    .info-block h3 {
        font-size: 1.8rem;
    }
} 