/* About Page Styles */

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

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--luxury-dark) 0%, var(--luxury-medium) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.about-hero .hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-hero .page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.about-hero .page-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Story Section */
.about-story {
    padding: 100px 0;
    background-color: #fff;
}

.story-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.story-content .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--luxury-dark);
    margin-bottom: 30px;
}

.story-text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.founder-quote {
    margin-top: 40px;
    padding: 30px;
    background: var(--luxury-light);
    border-left: 4px solid var(--luxury-gold);
}

.founder-quote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-style: italic;
    color: var(--luxury-dark);
    margin: 0 0 15px 0;
    line-height: 1.6;
}

.founder-quote cite {
    font-size: 14px;
    color: var(--luxury-gold);
    font-weight: 600;
    font-style: normal;
}


/* Values Section */
.about-values {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--luxury-cream) 0%, #fff 100%);
}

.about-values .section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-values .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--luxury-dark);
    margin-bottom: 15px;
}

.about-values .section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    background: #fff;
    padding: 50px 40px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--luxury-gold);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

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

.value-card:hover::before {
    transform: translateX(0);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--luxury-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--luxury-gold);
}

.value-icon svg {
    width: 30px;
    height: 30px;
    color: var(--luxury-gold);
    transition: color 0.3s ease;
}

.value-card:hover .value-icon svg {
    color: #fff;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--luxury-dark);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Expertise Section */
.about-expertise {
    padding: 100px 0;
    background: var(--luxury-dark);
    color: #fff;
}

.expertise-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.expertise-text .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.expertise-text > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
}

.expertise-stats {
    display: flex;
    gap: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--luxury-gold);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}

.expertise-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.feature-item {
    position: relative;
    padding-left: 30px;
}

.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 20px;
    height: 2px;
    background: var(--luxury-gold);
}

.feature-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.feature-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* CTA Section */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-dark) 100%);
    text-align: center;
}

.about-cta .container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-buttons .btn {
    padding: 18px 40px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-buttons .btn-primary {
    background: #fff;
    color: var(--luxury-gold);
    border: 2px solid #fff;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: #fff;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-buttons .btn-secondary:hover {
    background: #fff;
    color: var(--luxury-gold);
}

/* Responsive Design */
@media (max-width: 992px) {
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-stats {
        justify-content: space-around;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0 60px;
    }
    
    .about-story,
    .about-values,
    .about-expertise,
    .about-cta {
        padding: 60px 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .expertise-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .founder-quote blockquote {
        font-size: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}