/* aboutus.css - Enhanced styles for the About Us page */

/* Define main colors for this page */
:root {
    --about-bg-dark: #0a0a0a;
    --about-bg-secondary: #1a1a1a;
    --about-purple-accent: #8A2BE2;
    --about-purple-light: #a855f7;
    --about-purple-dark: #6b21a8;
    --about-text-light: #f8fafc;
    --about-text-gray: #cbd5e1;
    --about-card-bg: #1e1e1e;
    --about-border-color: #374151;
    --about-gradient: linear-gradient(135deg, #8A2BE2 0%, #6b21a8 100%);
    --about-accent-gradient: linear-gradient(135deg, #a855f7 0%, #8A2BE2 100%);
}

/* Apply dark background to the main content areas */
body {
    background-color: var(--about-bg-dark);
    color: var(--about-text-light);
    font-family: 'Poppins', sans-serif;
        margin-top: 10px;
}

/* Page Hero Section */
.page-hero.about-hero {
    background: var(--about-bg-dark);
    background-image: radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    border-bottom: 3px solid var(--about-purple-accent);
    color: var(--about-text-light);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(138, 43, 226, 0.1), transparent);
    animation: rotate 20s linear infinite;
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--about-text-light);
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(138, 43, 226, 0.5);
}

.page-hero.about-hero p {
    font-size: 1.3rem;
    color: var(--about-text-gray);
    font-weight: 300;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* About Me Section */
.about-me-section {
    padding: 100px 0;
    background: var(--about-bg-secondary);
}

.about-content-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    justify-content: center;
}

/* Enhanced Image Container */
.about-image-container {
    flex-shrink: 0;
    position: relative;
    text-align: center;
}

.about-profile-image {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--about-purple-accent);
    box-shadow: 0 20px 60px rgba(138, 43, 226, 0.4);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.about-profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 80px rgba(138, 43, 226, 0.6);
    border-color: var(--about-purple-light);
}

.about-image-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: var(--about-gradient);
    z-index: 1;
    opacity: 0.3;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateX(-50%) scale(1.1);
        opacity: 0.1;
    }
}

.image-overlay {
    text-align: center;
    margin-top: 1.5rem;
    position: relative;
    z-index: 3;
}

.image-overlay span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--about-text-light);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(138, 43, 226, 0.3);
}

.image-overlay small {
    font-size: 1rem;
    color: var(--about-purple-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Text Content */
.about-text-content {
    flex: 1;
    max-width: 700px;
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--about-gradient);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-text-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--about-text-light);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
}

.lead-paragraph {
    font-size: 1.2rem;
    color: var(--about-purple-light);
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* Section Styling */
.story-section,
.roles-section,
.mission-section,
.quote-section,
.desk-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--about-card-bg);
    border-radius: 15px;
    border: 1px solid var(--about-border-color);
    transition: all 0.3s ease;
}

.story-section:hover,
.roles-section:hover,
.mission-section:hover,
.quote-section:hover,
.desk-section:hover {
    border-color: var(--about-purple-accent);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.2);
}

.about-text-content h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--about-purple-accent);
    margin-bottom: 1.5rem;
}

.about-text-content h3 i {
    font-size: 1.5rem;
}

.about-text-content p {
    color: var(--about-text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Roles Grid */
.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.role-card {
    background: var(--about-bg-dark);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--about-border-color);
    transition: all 0.3s ease;
}

.role-card:hover {
    border-color: var(--about-purple-accent);
    transform: translateY(-3px);
}

.role-card i {
    font-size: 2rem;
    color: var(--about-purple-accent);
    margin-bottom: 1rem;
}

.role-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--about-text-light);
    margin-bottom: 0.8rem;
}

.role-card p {
    font-size: 0.95rem;
    color: var(--about-text-gray);
    margin: 0;
}

/* Quote Section */
.quote-section blockquote {
    background: var(--about-bg-dark);
    border-left: 4px solid var(--about-purple-accent);
    padding: 2rem;
    margin: 1.5rem 0;
    border-radius: 10px;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--about-purple-light);
    font-weight: 500;
    position: relative;
}

.quote-section blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--about-purple-accent);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

/* Desk Items */
.desk-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.desk-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--about-bg-dark);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid var(--about-border-color);
    transition: all 0.3s ease;
}

.desk-item:hover {
    border-color: var(--about-purple-accent);
    transform: translateX(5px);
}

.desk-item i {
    font-size: 1.5rem;
    color: var(--about-purple-accent);
    min-width: 30px;
}

.desk-item span {
    color: var(--about-text-gray);
    font-weight: 500;
}

.call-to-action-closing {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--about-purple-accent);
    text-align: center;
    margin-top: 3rem;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
    font-family: 'Playfair Display', serif;
}

/* About Buylogie Section */
.about-buylogie {
    background: var(--about-bg-dark);
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--about-text-light);
    margin-bottom: 1rem;
}

.section-header .lead-text {
    font-size: 1.2rem;
    color: var(--about-text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.buylogie-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.detail-item {
    background: var(--about-card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--about-border-color);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.1), transparent);
    transition: left 0.5s ease;
}

.detail-item:hover::before {
    left: 100%;
}

.detail-item:hover {
    border-color: var(--about-purple-accent);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.3);
}

.detail-icon {
    width: 80px;
    height: 80px;
    background: var(--about-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.detail-icon i {
    font-size: 2rem;
    color: white;
}

.detail-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--about-text-light);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.detail-item p {
    color: var(--about-text-gray);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* We Are More Section */
.we-are-more {
    background: var(--about-bg-secondary);
    padding: 100px 0;
}

.we-are-more h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--about-text-light);
    text-align: center;
    margin-bottom: 3rem;
}

.more-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.more-item {
    background: var(--about-card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--about-border-color);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.more-item:hover {
    border-color: var(--about-purple-accent);
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(138, 43, 226, 0.3);
}

.more-icon {
    width: 100px;
    height: 100px;
    background: var(--about-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.more-icon i {
    font-size: 2.5rem;
    color: white;
}

.more-item h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--about-text-light);
    margin-bottom: 1rem;
}

.more-item p {
    color: var(--about-text-gray);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Industries Section */
.industries-section {
    padding: 100px 0;
    background: var(--about-bg-dark);
    text-align: center;
}

.industries-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--about-text-light);
    margin-bottom: 1rem;
}

.industries-section > p {
    font-size: 1.2rem;
    color: var(--about-text-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.industry-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.industry-list li {
    background: var(--about-card-bg);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border: 1px solid var(--about-border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--about-text-light);
}

.industry-list li:hover {
    border-color: var(--about-purple-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.2);
}

.industry-list li i {
    font-size: 1.5rem;
    color: var(--about-purple-accent);
    min-width: 30px;
}

/* CTA Section */
.cta-section {
    background: var(--about-bg-secondary);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--about-text-light);
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(138, 43, 226, 0.5);
}

.cta-section p {
    font-size: 1.3rem;
    color: var(--about-text-gray);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cta-buttons .btn:hover::before {
    left: 100%;
}

.cta-buttons .btn-primary {
    background: var(--about-gradient);
    color: white;
    border-color: var(--about-purple-accent);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.4);
    border-color: var(--about-purple-light);
}

.cta-buttons .btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-color: #25D366;
}

.cta-buttons .btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    border-color: #1DA851;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 3rem;
    }
    
    .about-profile-image {
        width: 350px;
        height: 350px;
    }
    
    .about-image-container::before {
        width: 370px;
        height: 370px;
    }
}

@media (max-width: 768px) {
    .page-hero.about-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero.about-hero p {
        font-size: 1.1rem;
    }
    
    .about-text-content h2 {
        font-size: 2.2rem;
    }
    
    .about-profile-image {
        width: 300px;
        height: 300px;
    }
    
    .about-image-container::before {
        width: 320px;
        height: 320px;
    }
    
    .roles-grid {
        grid-template-columns: 1fr;
    }
    
    .desk-items {
        grid-template-columns: 1fr;
    }
    
    .buylogie-details-grid {
        grid-template-columns: 1fr;
    }
    
    .more-grid {
        grid-template-columns: 1fr;
    }
    
    .industry-list {
        grid-template-columns: 1fr;
    }
    
    .section-header h2,
    .we-are-more h2,
    .industries-section h2,
    .cta-section h2 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-hero.about-hero {
        padding: 80px 0 60px;
    }
    
    .page-hero.about-hero h1 {
        font-size: 2rem;
    }
    
    .about-me-section,
    .about-buylogie,
    .we-are-more,
    .industries-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .about-text-content h2 {
        font-size: 1.8rem;
    }
    
    .about-profile-image {
        width: 280px;
        height: 280px;
    }
    
    .about-image-container::before {
        width: 300px;
        height: 300px;
    }
    
    .image-overlay span {
        font-size: 1.3rem;
    }
    
    .intro-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }
    
    .story-section,
    .roles-section,
    .mission-section,
    .quote-section,
    .desk-section {
        padding: 1.5rem;
    }
    
    .about-text-content h3 {
        font-size: 1.5rem;
    }
    
    .quote-section blockquote {
        font-size: 1.1rem;
        padding: 1.5rem;
    }
    
    .detail-item,
    .more-item {
        padding: 2rem;
    }
    
    .detail-icon,
    .more-icon {
        width: 60px;
        height: 60px;
    }
    
    .detail-icon i,
    .more-icon i {
        font-size: 1.5rem;
    }
    
    .call-to-action-closing {
        font-size: 1.4rem;
    }
}

/* Additional animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.detail-item,
.more-item,
.role-card {
    animation: fadeInUp 0.6s ease forwards;
}

.detail-item:nth-child(2) {
    animation-delay: 0.1s;
}

.detail-item:nth-child(3) {
    animation-delay: 0.2s;
}

.detail-item:nth-child(4) {
    animation-delay: 0.3s;
}

.detail-item:nth-child(5) {
    animation-delay: 0.4s;
}

/* Scroll reveal animation */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-image-container {
    animation: slideInLeft 0.8s ease forwards;
}

.about-text-content {
    animation: slideInRight 0.8s ease forwards;
}