/* About Page Styles */

/* Logo */
.logo-link {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 100;
    display: inline-block;
}

.logo {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: var(--transition-smooth);
}

.logo:hover {
    transform: scale(1.1) rotate(180deg);
}

/* Hero Section */
.about-hero {
    padding: 50px 20px 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3) 0%, rgba(17, 24, 39, 0.85) 100%);
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.9),
        0 8px 16px rgba(0, 0, 0, 0.7),
        0 12px 24px rgba(0, 0, 0, 0.5);
}

.gradient-text {
    background: linear-gradient(135deg, #7c3aed 0%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none; /* Remove inherited text-shadow */
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.9)) 
            drop-shadow(0 8px 16px rgba(0, 0, 0, 0.7)) 
            drop-shadow(0 12px 24px rgba(0, 0, 0, 0.5));
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto;
    line-height: 1.8;
}

/* Mission Section */
.mission-section {
    padding: 80px 20px;
    background: rgba(17, 24, 39, 0.5);
}

.mission-content {
    max-width: 1000px;
    margin: 0 auto;
}

.mission-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.mission-text strong {
    color: #7c3aed;
    font-weight: 600;
}

.mission-highlight {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(124, 58, 237, 0.05) 100%);
    border-left: 4px solid #7c3aed;
    border-radius: 12px;
}

.mission-highlight h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.mission-highlight p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

/* Why Section */
.why-section {
    padding: 80px 20px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center; /* Centers all cards */
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 35px 25px;
    border-radius: 16px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    flex: 0 1 calc(33.333% - 20px); /* 3 cards per row with gap */
    min-width: 280px; /* Minimum card width */
    max-width: 350px; /* Maximum card width */
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 58, 237, 0.5);
    background: rgba(124, 58, 237, 0.08);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-size: 1rem;
}

/* Services Section */
.services-section {
    padding: 80px 20px;
    background: rgba(17, 24, 39, 0.5);
}

.service-block {
    max-width: 1000px;
    margin: 0 auto 60px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(124, 58, 237, 0.3);
}

.service-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-header h3 {
    font-size: 1.8rem;
    color: #fff;
    font-weight: 600;
}

.service-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.service-tagline {
    font-size: 1.1rem;
    color: #a78bfa;
    font-style: italic;
    margin-bottom: 30px;
}

.service-subsection {
    margin: 30px 0;
}

.service-subsection h4 {
    font-size: 1.2rem;
    color: #7c3aed;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.service-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #7c3aed;
    font-weight: bold;
}

.service-emphasis {
    margin-top: 30px;
    padding: 25px;
    background: rgba(124, 58, 237, 0.1);
    border-left: 3px solid #7c3aed;
    border-radius: 8px;
}

.service-emphasis p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 5px 0;
}

.service-emphasis strong {
    color: #fff;
}

/* Delivery Section */
.delivery-section {
    padding: 80px 20px;
}

.delivery-intro {
    text-align: center;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.delivery-intro strong {
    color: #7c3aed;
    font-weight: 600;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.delivery-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.delivery-item:hover {
    transform: translateY(-3px);
    border-color: rgba(124, 58, 237, 0.5);
    background: rgba(124, 58, 237, 0.08);
}

.delivery-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.delivery-item p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1.05rem;
}

.delivery-tagline {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(17, 24, 39, 0.95) 100%);
    text-align: center;
}

.cta-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 100%;
    position: relative;
}

.cta-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.cta-btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 200px; 
    text-align: center;
    margin-top: auto;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    color: #fff;
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    border: 2px solid #7c3aed;
    color: #7c3aed;
}

.cta-btn.secondary:hover {
    background: rgba(124, 58, 237, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0);
}

/* Divider */
.cta-content:first-child::after {
    content: '';
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: 2px;
    background: linear-gradient(180deg, transparent 0%, rgba(124, 58, 237, 0.5) 20%, rgba(124, 58, 237, 0.5) 80%, transparent 100%);
}


/* Footer */
.footer {
    padding: 40px 20px;
    background: rgba(17, 24, 39, 0.95);
    border-top: 1px solid rgba(124, 58, 237, 0.2);
}

.footer .container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer p {
    font-size: 0.95rem;
    margin: 0;
    background: linear-gradient(135deg, #a78bfa 0%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        max-width: 100%;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .service-number {
        font-size: 2.5rem;
    }

    .service-header h3 {
        font-size: 1.5rem;
    }

    .service-block {
        padding: 25px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content:first-child::after {
        display: none;
    }
}