/* About Us Page Specific Styles */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section Refinement */
.page-hero {
    background: linear-gradient(135deg, #D31789 0%, #F06292 50%, #4ecdc4 100%);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(78,205,196,0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(211,23,137,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: white;
    margin-bottom: 0.2rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    animation: slideInDown 0.8s ease-out;
}

.page-hero .hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 500;
    color: white;
    max-width: 800px;
    margin: 10px auto 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    animation: slideInUp 0.8s ease-out 0.2s both;
}

/* Section Backgrounds & Spacing */
.section-cool-bg {
    background: linear-gradient(180deg, #fdfdfd 0%, #f5faff 100%);
    padding: 30px 0;
}

.section-cool-bg-alt {
    background: linear-gradient(180deg, #f5faff 0%, #ffffff 100%);
    padding: 30px 0;
}

.team-section {
    padding: 30px 0;
    background: #ffffff;
}

.testimonials-section {
    padding: 30px 0;
    background: linear-gradient(135deg, rgba(78,205,196,0.05) 0%, rgba(211,23,137,0.05) 100%);
}

.studio-peek {
    padding: 30px 0;
}

/* Grid Layouts */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 25px;
    padding: 0 20px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: #1a1a2e;
    margin-bottom: 15px;
}

.section-header .accent-bar {
    width: 80px;
    height: 4px;
    background: #D31789;
    margin: 0 auto 25px;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.15rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Typography Enhancements */
.section-subtitle {
    color: #D31789;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.about-text-content h2 {
    color: #1a1a2e;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    line-height: 1.2;
}

.about-text-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

.quote-block {
    padding-left: 20px;
    border-left: 4px solid #4ecdc4;
    margin-bottom: 25px;
}

.quote-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 0;
}

/* Image Styles */
.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.about-stat-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    border: 1px solid #f0f0f0;
}

.about-stat-box .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #D31789;
}

.about-stat-box .stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
}

/* Experience Cards */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.experience-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.8);
    cursor: pointer;
}

.experience-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.experience-card .card-image {
    height: 260px;
    overflow: hidden;
    position: relative;
}

.experience-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.experience-card:hover .card-image img {
    transform: scale(1.1);
}

.experience-card .badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #D31789;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.experience-card .card-content {
    padding: 40px;
    text-align: center;
}

.experience-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.5rem;
}

.icon-fluid { background: rgba(211,23,137,0.1); color: #D31789; }
.icon-resin { background: rgba(78,205,196,0.1); color: #4ecdc4; }
.icon-brush { background: rgba(211,23,137,0.1); color: #D31789; }

.experience-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1a1a2e;
    font-family: 'Playfair Display', serif;
}

.experience-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.card-link {
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.card-link:hover {
    gap: 12px;
}

.link-fluid, .link-brush { color: #D31789; }
.link-resin { color: #4ecdc4; }

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.border-yellow { border-bottom: 4px solid #FBBC05; }
.border-teal { border-bottom: 4px solid #4ecdc4; }
.border-pink { border-bottom: 4px solid #D31789; }
.border-orange { border-bottom: 4px solid #ff6b3d; }

.icon-yellow { color: #FBBC05; }
.icon-teal { color: #4ecdc4; }
.icon-pink { color: #D31789; }
.icon-orange { color: #ff6b3d; }

/* Meet the Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    width: 220px;
    height: 220px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid #f8f9ff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.team-card .role {
    color: #D31789;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: block;
}

.team-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    border: 1px solid #f0f0f0;
}

.testimonial-card i.quote-icon {
    font-size: 2.5rem;
    color: rgba(211,23,137,0.1);
    position: absolute;
    top: 30px;
    right: 30px;
}

.stars {
    color: #FBBC05;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h4 {
    font-size: 1.1rem;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.85rem;
    color: #888;
}

/* Studio Peek Refinements */
.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

.quick-access-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #f8f9ff;
    color: #1a1a2e;
    text-decoration: none;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.quick-access-btn:hover {
    background: #D31789;
    color: white;
    border-color: #D31789;
    transform: translateY(-3px);
}

/* Animations */
@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .experience-grid, .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-grid, .experience-grid, .benefits-grid, .team-grid, .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .about-text-content h2 {
        font-size: 2.2rem;
    }
    
    .about-stat-box {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
        display: inline-block;
    }
    
    .page-hero {
        padding: 80px 0 40px;
    }

    .team-image {
        width: 180px;
        height: 180px;
    }
}
