/* Combined About & Team Section */
.about-team {
    background: linear-gradient(135deg, 
        rgba(248, 249, 250, 0.95) 0%, 
        rgba(240, 235, 245, 0.9) 25%, 
        rgba(230, 220, 240, 0.85) 50%, 
        rgba(220, 210, 235, 0.8) 75%, 
        rgba(210, 200, 230, 0.75) 100%
    );
    padding: 6rem 0;
    position: relative;
}

.about-team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 47%, rgba(212, 175, 55, 0.12) 49%, rgba(212, 175, 55, 0.15) 51%, transparent 53%),
                linear-gradient(-45deg, transparent 47%, rgba(45, 27, 61, 0.08) 49%, rgba(45, 27, 61, 0.12) 51%, transparent 53%);
    background-size: 40px 40px;
    opacity: 0.6;
}

.about-team .container {
    position: relative;
    z-index: 2;
}

/* About Content Styling */
.about-content {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-weight: 700;
}

.luxury-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.luxury-divider::before,
.luxury-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-accent), transparent);
    margin: 0 1rem;
}

.luxury-divider i {
    color: var(--gold-accent);
    font-size: 1.5rem;
    padding: 0.5rem;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.about-text {
    margin-top: 2rem;
}

.about-text .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-black);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Team Section within About */
.team-section {
    margin-bottom: 4rem;
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-weight: 700;
}

.team-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

.member-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--royal-purple) 0%, #2d1b3d 50%, var(--primary-black) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.member-initial {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold-accent);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 27, 61, 0.8), rgba(26, 26, 26, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.member-overlay i {
    font-size: 3rem;
    color: var(--gold-accent);
    animation: pulse 2s ease-in-out infinite;
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.member-role {
    color: var(--royal-purple);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.member-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Call to Action within About */
.about-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.cta-message {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 2.5rem;
    font-weight: 600;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-accent), #ffd700);
    color: var(--primary-black);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.4),
        0 4px 12px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-cta .btn-primary:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #ffd700, var(--gold-accent));
    box-shadow: 
        0 15px 40px rgba(212, 175, 55, 0.5),
        0 8px 20px rgba(212, 175, 55, 0.4);
    color: var(--primary-black);
}

.about-cta .btn-primary i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.about-cta .btn-primary:hover i {
    transform: scale(1.1);
}

/* Responsive Design for Combined Section */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-team {
        padding: 4rem 0;
    }
    
    .about-header h2 {
        font-size: 2.5rem;
    }
    
    .team-header h2 {
        font-size: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .member-image {
        height: 250px;
    }
    
    .member-info {
        padding: 1.5rem;
    }
    
    .about-text .lead {
        font-size: 1.2rem;
    }
    
    .about-content {
        margin-bottom: 3rem;
    }
    
    .team-section {
        margin-bottom: 3rem;
    }
}
