/* ====================================
   ABOUT US PAGE STYLES
   ==================================== */

/* About Us Hero Section Override */
.hero {
    background-image: url('../../assets/images/cybercube-logo-hero.png');
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
}

.hero-overlay {
    background: linear-gradient(to left, 
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.92) 40%,
        rgba(255, 255, 255, 0.5) 70%,
        rgba(255, 255, 255, 0) 100%);
}

.hero-grid {
    max-width: 100%;
    display: flex;
    justify-content: flex-end;
}

.hero-content {
    max-width: 650px;
    margin-left: auto;
    margin-right: 0;
}

.hero-subtitle {
    color: var(--eerie-black);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-description {
    color: var(--davys-grey);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 30px;
    max-width: 650px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(13, 133, 216, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: center;
}

.value-card:hover {
    background: rgba(13, 133, 216, 0.05);
    border-color: rgba(13, 133, 216, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(13, 133, 216, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.value-card h3 {
    color: #0D85D8;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

/* Approach Grid */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.approach-card {
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid #0D85D8;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.approach-card:hover {
    background: rgba(13, 133, 216, 0.05);
    border-left-color: #4AA3E8;
    transform: translateX(5px);
}

.approach-number {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #0D85D8;
    margin-bottom: 1rem;
    line-height: 1;
}

.approach-card h3 {
    color: #1C1C1C;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

/* Reverse Grid for Why Choose Us */
.about-grid.reverse {
    grid-template-columns: 1fr 1fr;
}

.about-grid.reverse .about-image {
    order: 1;
}

.about-grid.reverse .about-content {
    order: 2;
}

/* CTA Action Wrapper */
.cta-action-wrapper {
    text-align: center;
    margin-top: 3rem;
}

.cta-action-note {
    margin-top: 1.5rem;
    color: #B0B0B0;
    font-size: 1rem;
}

.cta-action-note a {
    color: #0D85D8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cta-action-note a:hover {
    color: #4AA3E8;
    text-decoration: underline;
}

/* Active Nav Link */
.nav-menu a.active {
    color: #0D85D8;
    font-weight: 600;
}

/* Button Reset for CTA Buttons */
button.btn-cta,
button.btn-contact {
    cursor: pointer;
    font-family: inherit;
}

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

    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-grid {
        justify-content: center;
    }
    
    .hero-content {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-subtitle {
        font-size: 17px;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 15px;
        margin-bottom: 25px;
    }

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

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

    .value-card {
        padding: 1.5rem;
    }

    .approach-card {
        padding: 1.5rem;
    }

    .approach-number {
        font-size: 2.5rem;
    }

    .value-card h3,
    .approach-card h3 {
        font-size: 1.25rem;
    }

    .about-grid.reverse {
        grid-template-columns: 1fr;
    }

    .about-grid.reverse .about-image,
    .about-grid.reverse .about-content {
        order: unset;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 15px;
    }
    
    .hero-description {
        font-size: 14px;
    }

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

    .approach-number {
        font-size: 2rem;
    }

    .value-card h3,
    .approach-card h3 {
        font-size: 1.1rem;
    }

    .value-card p,
    .approach-card p {
        font-size: 0.95rem;
    }
}

