/* About Page Styles - Brand Colors */

/* About Hero Section */
.hero-section-about {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    display: flex;
    align-items: center;
}

.hero-background-about {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

/* .hero-overlay-about {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
} */

.hero-pattern-about {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-badge-about {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    margin-bottom: 1.5rem;
}

.hero-title-about {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title-about .title-highlight {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3); 
}

.hero-description-about {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Content Section */
.about-content-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.about-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-content-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.about-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.about-content-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.about-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.about-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.about-lead {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-description {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
}

.about-features {
    margin-top: 2rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    background: var(--gray-100);
    transform: translateX(5px);
}

.about-feature-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.about-feature-item span {
    color: var(--dark-color);
    font-weight: 500;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-image {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.about-image-wrapper:hover .about-image-overlay {
    opacity: 1;
}

/* Values Section */
.values-section-elegant {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.values-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="values-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23values-grain)"/></svg>');
}

.values-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.section-header-elegant {
    position: relative;
    z-index: 2;
}

.section-badge {
    margin-bottom: 1rem;
}

.section-badge .badge-text {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-title-elegant {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.section-description-elegant {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.value-card-elegant {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.value-card-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
}

.value-card-elegant:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.value-icon-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.value-icon-elegant {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.3);
    transition: all 0.4s ease;
}

.value-card-elegant:hover .value-icon-elegant {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

.value-icon-elegant i {
    font-size: 2rem;
    color: var(--dark-color);
}

.value-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.value-description {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Team Section */
.team-section-elegant {
    background: var(--gray-50);
    position: relative;
}

.team-section-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.map-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.map-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.team-card-elegant {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-card-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.team-card-elegant:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.team-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    opacity: 0;
    transition: all 0.4s ease;
}

.team-social-links {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
}

.team-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social-link:hover {
    background: var(--secondary-blue);
    color: white;
    transform: scale(1.1);
}

.team-card-elegant:hover .team-image {
    transform: scale(1.1);
}

.team-card-elegant:hover .team-image-overlay {
    opacity: 1;
}

.team-card-elegant:hover .team-social-links {
    opacity: 1;
    transform: translateX(0);
}

.team-content {
    padding: 2rem;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.team-position {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.team-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* About CTA Section */
.about-cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.about-cta-card {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-grain)"/></svg>');
}

.about-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.about-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.about-cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
}

.about-cta-btn {
    background: var(--gradient-secondary);
    color: var(--dark-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.about-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
    color: var(--dark-color);
    text-decoration: none;
}

/* Show More/Less Functionality Styles */
.content-collapsible {
    position: relative;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.content-collapsible.collapsed {
    max-height: 120px; /* Show approximately 2-3 lines */
}

.content-collapsible.expanded {
    max-height: none;
}

.content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, white);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.content-collapsible.expanded .content-overlay {
    opacity: 0;
}

.show-more-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.show-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    color: white;
}

.show-more-btn i {
    transition: transform 0.3s ease;
}

.show-more-btn.expanded i {
    transform: rotate(180deg);
}

/* Team card specific styles */
.team-description {
    line-height: 1.6;
    margin-bottom: 15px;
}

.team-card-elegant .content-collapsible {
    margin-bottom: 10px;
}

/* About description specific styles */
.about-description {
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-content-card .content-collapsible {
    margin-bottom: 10px;
}



/* Responsive Design */
@media (max-width: 768px) {
    .hero-title-about {
        font-size: 2.5rem;
    }
    
    .hero-description-about {
        font-size: 1.1rem;
    }
    
    .about-content-card {
        padding: 2rem;
    }
    
    .about-content-header {
        flex-direction: column;
        text-align: center;
    }
    
    .about-icon-wrapper {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .section-title-elegant,
    .map-title,
    .about-cta-title {
        font-size: 2rem;
    }
    
    .value-card-elegant,
    .team-card-elegant {
        padding: 2rem 1.5rem;
    }
    
    .about-cta-card {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title-about {
        font-size: 2rem;
    }
    
    .hero-description-about {
        font-size: 1rem;
    }
    
    .about-content-card {
        padding: 1.5rem;
    }
    
    .about-section-title {
        font-size: 1.5rem;
    }
    
    .about-lead {
        font-size: 1rem;
    }
    
    .section-title-elegant,
    .map-title,
    .about-cta-title {
        font-size: 1.8rem;
    }
    
    .value-card-elegant,
    .team-card-elegant {
        padding: 1.5rem;
    }
    
    .value-icon-elegant {
        width: 60px;
        height: 60px;
    }
    
    .value-icon-elegant i {
        font-size: 1.5rem;
    }
    
    .team-image {
        height: 200px;
    }
    
    .about-cta-card {
        padding: 1.5rem;
    }
    
    .about-cta-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
}

