/* OnDemandTechHelp About Page CSS - Child Theme Integration */

/* Main Container */
.about-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Hero Values Section */
.about-hero {
    text-align: center;
    margin-bottom: 80px;
    padding: 60px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
}

.about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #1e293b;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.value-block {
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.value-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    border-color: #e2e8f0;
}

.value-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.value-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.value-block:hover .value-image img {
    transform: scale(1.05);
}

.value-content {
    padding: 30px;
}

.value-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 15px 0;
    position: relative;
}

.value-content h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    border-radius: 2px;
}

.value-content p {
    color: #475569;
    line-height: 1.6;
    margin: 0 0 15px 0;
    font-size: 1rem;
}

.value-content p:last-child {
    margin-bottom: 0;
}

.dedication-subtitle {
    font-style: italic;
    color: #64748b !important;
    font-size: 0.95rem !important;
    margin-top: 15px !important;
}

/* Team Section */
.team-section {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #059669 0%, #065f46 100%);
}

.team-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

.team-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.team-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.team-section:hover .team-image img {
    transform: scale(1.03);
}

.team-info h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 25px 0;
    letter-spacing: -0.01em;
}

.team-info p {
    color: #475569;
    line-height: 1.7;
    margin: 0 0 20px 0;
    font-size: 1.05rem;
}

.team-quote {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    border-left: 4px solid #059669;
}

.team-quote blockquote {
    margin: 0;
    font-size: 1.1rem;
    font-style: italic;
    color: #1e293b;
    font-weight: 600;
    line-height: 1.6;
}

.team-quote blockquote::before {
    content: '"';
    font-size: 1.5rem;
    color: #059669;
    font-weight: bold;
}

.team-quote blockquote::after {
    content: '"';
    font-size: 1.5rem;
    color: #059669;
    font-weight: bold;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    color: white;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin: 0 0 30px 0;
    position: relative;
    z-index: 1;
}

.phone-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.phone-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    color: white;
}

.phone-icon {
    font-size: 1.3rem;
    margin-right: 12px;
}

.phone-number {
    letter-spacing: 0.05em;
}

/* Services Link Section */
.services-link-section {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.services-link-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 25px 0;
}

.services-button {
    display: inline-block;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    color: white;
    text-decoration: none;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 41, 59, 0.3);
    letter-spacing: 0.025em;
}

.services-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 41, 59, 0.4);
    text-decoration: none;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-page-container {
        padding: 40px 15px;
    }

    .about-hero {
        margin-bottom: 60px;
        padding: 40px 20px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .value-image {
        height: 200px;
    }

    .value-content {
        padding: 25px;
    }

    .team-section {
        padding: 30px 20px;
        margin-bottom: 40px;
    }

    .team-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .team-image {
        max-width: 250px;
        margin: 0 auto;
    }

    .cta-section {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .phone-button {
        padding: 16px 30px;
        font-size: 1.1rem;
    }

    .services-link-section {
        padding: 30px 15px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-hero,
.value-block,
.team-section,
.cta-section,
.services-link-section {
    animation: fadeInUp 0.8s ease-out;
}

.value-block:nth-child(1) { animation-delay: 0.1s; }
.value-block:nth-child(2) { animation-delay: 0.2s; }
.value-block:nth-child(3) { animation-delay: 0.3s; }
