/* about.css - GeoNova Concepts About Page Styles */

/* =========================================
   ABOUT HERO
   ========================================= */
.about-hero {
    position: relative;
    padding: 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(17, 24, 39, 0.92) 0%,
        rgba(17, 24, 39, 0.7) 40%,
        rgba(39, 169, 52, 0.2) 100%
    );
}

.about-hero .container {
    position: relative;
    z-index: 1;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-content-wrapper {
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(39, 169, 52, 0.2);
    color: var(--secondary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border: 1px solid rgba(39, 169, 52, 0.2);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3.8rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-title span {
    color: var(--secondary);
}

.hero-divider {
    width: 60px;
    height: 3px;
    background: var(--secondary);
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 300;
    max-width: 650px;
}

.about-hero .breadcrumb {
    background: transparent;
    padding: 0;
}

.about-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-hero .breadcrumb-item a:hover {
    color: var(--secondary);
}

.about-hero .breadcrumb-item.active {
    color: var(--secondary);
}

.about-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.3);
}

/* =========================================
   WHO WE ARE
   ========================================= */
.who-we-are {
    padding: 100px 0;
    background: var(--white);
}

.who-content {
    padding-right: 2rem;
}

.section-badge {
    display: inline-block;
    background: rgba(39, 169, 52, 0.1);
    color: var(--secondary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.section-title span {
    color: var(--secondary);
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--secondary);
    margin: 0.75rem 0 1.5rem;
    border-radius: 2px;
}

.who-text {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.who-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.8rem;
    color: var(--secondary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text);
    margin-top: 0.3rem;
}

.who-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.who-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.who-image-wrapper:hover .who-image {
    transform: scale(1.02);
}

.who-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(0deg, rgba(17, 24, 39, 0.8) 0%, rgba(17, 24, 39, 0) 100%);
    cursor: pointer;
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.overlay-content i {
    font-size: 3rem;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.overlay-content:hover i {
    transform: scale(1.1);
}

.overlay-content span {
    font-size: 1.2rem;
    font-weight: 600;
}

.experience-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--secondary);
    color: white;
    padding: 1.5rem 1.2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(39, 169, 52, 0.3);
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.experience-badge .number {
    display: block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.2rem;
    line-height: 1;
}

.experience-badge .text {
    display: block;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    opacity: 0.9;
}

/* =========================================
   MISSION & VISION
   ========================================= */
.mission-vision {
    padding: 80px 0;
    background: var(--light);
}

.mission-card,
.vision-card,
.values-card {
    padding: 2.5rem 2rem;
    border-radius: 16px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mission-card {
    background: var(--white);
    border-left: 4px solid var(--secondary);
}

.vision-card {
    background: var(--white);
    border-left: 4px solid #0693e3;
}

.values-card {
    background: var(--white);
    border-left: 4px solid #9b51e0;
}

.mission-card:hover,
.vision-card:hover,
.values-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.mission-card .card-icon {
    background: rgba(39, 169, 52, 0.1);
    color: var(--secondary);
}

.vision-card .card-icon {
    background: rgba(6, 147, 227, 0.1);
    color: #0693e3;
}

.values-card .card-icon {
    background: rgba(155, 81, 224, 0.1);
    color: #9b51e0;
}

.card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.card-text {
    color: var(--text);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 0.95rem;
}

.values-list li i {
    color: var(--secondary);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.card-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    opacity: 0.03;
    border-radius: 50% 0 0 0;
    transform: translate(30%, 30%);
}

.mission-card .card-accent {
    background: var(--secondary);
}

.vision-card .card-accent {
    background: #0693e3;
}

.values-card .card-accent {
    background: #9b51e0;
}

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why-choose-us {
    padding: 0;
    background: var(--white);
}

.why-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.why-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.why-image-wrapper:hover .why-image {
    transform: scale(1.02);
}

.why-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2.5rem;
    background: linear-gradient(0deg, 
        rgba(17, 24, 39, 0.85) 0%,
        rgba(17, 24, 39, 0) 100%
    );
}

.image-content {
    color: white;
}

.image-number {
    display: block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3rem;
    color: var(--secondary);
    opacity: 0.5;
    margin-bottom: 0.3rem;
}

.image-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.3rem;
}

.image-title span {
    color: var(--secondary);
}

.image-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.why-content-wrapper {
    padding: 4rem 3rem;
    height: 100%;
    display: flex;
    align-items: center;
}

.why-content {
    width: 100%;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.why-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.why-item-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(39, 169, 52, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.why-item-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.why-item-desc {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
    margin: 0;
}

/* =========================================
   TEAM SECTION
   ========================================= */
.team-section {
    padding: 80px 0;
    background: var(--light);
}

.team-section .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.team-section .section-divider {
    margin-left: auto;
    margin-right: auto;
}

.team-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-image {
    transform: scale(1.05);
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(0deg, rgba(17, 24, 39, 0.8) 0%, rgba(17, 24, 39, 0) 100%);
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.team-card:hover .team-social {
    transform: translateY(0);
}

.team-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.team-social a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.team-role {
    display: block;
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.team-bio {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
    margin: 0;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-section {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-section .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.testimonials-section .section-divider {
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    padding: 2rem;
    background: var(--light);
    border-radius: 16px;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-quote {
    font-size: 2rem;
    color: var(--secondary);
    opacity: 0.3;
    margin-bottom: 0.75rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--secondary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.author-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0;
}

.author-role {
    font-size: 0.85rem;
    color: var(--text);
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #1a2a3a 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(39, 169, 52, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-badge {
    display: inline-block;
    background: rgba(39, 169, 52, 0.15);
    color: var(--secondary);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(39, 169, 52, 0.15);
}

.cta-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-title span {
    color: var(--secondary);
}

.cta-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    background: var(--secondary);
    color: white;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 169, 52, 0.3);
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid var(--secondary);
}

.btn-cta-primary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 169, 52, 0.4);
    color: white;
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: white;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--secondary);
    transform: translateY(-3px);
    color: white;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */

/* Tablets & Below */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .who-we-are {
        padding: 60px 0;
    }
    
    .who-content {
        padding-right: 0;
    }
    
    .who-image {
        height: 400px;
    }
    
    .why-content-wrapper {
        padding: 3rem 2rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .why-image-wrapper {
        min-height: 400px;
    }
    
    .experience-badge {
        top: -15px;
        right: -15px;
        padding: 1rem;
    }
    
    .experience-badge .number {
        font-size: 1.8rem;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .about-hero {
        min-height: 70vh;
    }
    
    .about-hero .container {
        padding-top: 100px;
        padding-bottom: 50px;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .who-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .mission-vision {
        padding: 50px 0;
    }
    
    .why-image-wrapper {
        min-height: 300px;
    }
    
    .why-content-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .image-title {
        font-size: 1.6rem;
    }
    
    .team-section {
        padding: 50px 0;
    }
    
    .testimonials-section {
        padding: 50px 0;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Portrait */
@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .about-hero {
        min-height: 60vh;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .who-image {
        height: 300px;
    }
    
    .who-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
        min-width: 60px;
    }
    
    .stat-label {
        margin-top: 0;
    }
    
    .mission-card,
    .vision-card,
    .values-card {
        padding: 1.5rem;
    }
    
    .why-image-wrapper {
        min-height: 250px;
    }
    
    .image-number {
        font-size: 2.2rem;
    }
    
    .image-title {
        font-size: 1.3rem;
    }
    
    .why-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .team-image-wrapper {
        aspect-ratio: 4/3;
    }
    
    .cta-title {
        font-size: 1.4rem;
    }
    
    .cta-text {
        font-size: 0.95rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}