/* =========================
   ABOUT PAGE STYLES
========================= */

/* Import base styles from main style.css */
@import url('style.css');

/* Page Header Styles */
.page-header {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--matte-black) 0%, var(--dark-gray) 100%);
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 15px;
}

.page-title span {
    color: var(--gold-accent);
}

.page-subtitle {
    color: var(--soft-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--soft-gray);
}

.breadcrumb a:hover {
    color: var(--gold-accent);
}

.breadcrumb span {
    color: var(--gold-accent);
}

/* Section Base Styles */
.section {
    padding: 100px 0;
    position: relative;
}

.section:nth-child(even) {
    background: var(--matte-black);
}

.section:nth-child(odd) {
    background: var(--dark-gray);
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 15px;
}

.section-header h2 span {
    color: var(--gold-accent);
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Story Section */
.about-story {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 0;
}

.about-story-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 20px;
}

.about-story-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-accent), var(--gold-light));
    border-radius: 2px;
}

.about-story-content h2 span {
    color: var(--gold-accent);
}

.about-story-content .lead {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    line-height: 1.8;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 25px;
    max-width: 100%;
}

.about-story-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--soft-gray);
    margin-bottom: 22px;
    text-align: justify;
    transition: all 0.3s ease;
}

.about-story-content p:hover {
    color: var(--white);
    transform: translateX(5px);
}

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

/* Why Choose Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.why-choose-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-choose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-choose-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.why-choose-item:hover::before {
    opacity: 1;
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.why-choose-icon i {
    font-size: 2rem;
    color: var(--gold-accent);
    transition: all 0.4s ease;
}

.why-choose-item:hover .why-choose-icon {
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-dark));
    transform: scale(1.1);
}

.why-choose-item:hover .why-choose-icon i {
    color: var(--matte-black);
}

.why-choose-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.why-choose-item:hover h4 {
    color: var(--gold-accent);
}

.why-choose-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* About Hero Section */
.about-hero {
    padding: 100px 0;
    background: var(--dark-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.about-content h2 span {
    color: var(--gold-accent);
}

.about-content p {
    color: var(--soft-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 12px;
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--gold-accent);
    border-radius: 12px;
    z-index: -1;
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: var(--matte-black);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card {
    background: var(--dark-gray);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
}

.mission-card:hover {
    border-color: var(--gold-accent);
    transform: translateY(-10px);
}

.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    color: var(--gold-accent);
    font-size: 2rem;
}

.mission-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.mission-card p {
    color: var(--soft-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--dark-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
}

.section-title span {
    color: var(--gold-accent);
}

.section-subtitle {
    color: var(--soft-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--matte-black);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
}

.team-card:hover {
    border-color: var(--gold-accent);
    transform: translateY(-10px);
}

.team-image {
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.team-info {
    padding: 25px;
    text-align: center;
}

.team-name {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--white);
}

.team-role {
    color: var(--gold-accent);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-bio {
    color: var(--soft-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-dark));
    color: var(--matte-black);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--matte-black);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: var(--matte-black);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.value-card {
    background: var(--dark-gray);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
}

.value-card:hover {
    border-color: var(--gold-accent);
    transform: translateY(-5px);
}

.value-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: 20px;
    opacity: 0.3;
}

.value-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.value-description {
    color: var(--soft-gray);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--dark-gray);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content h2 span {
    color: var(--gold-accent);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--soft-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .why-choose-item {
        padding: 35px 25px;
    }
}

/* CTA Banner */
.cta-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

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

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
}

.cta-title span {
    color: var(--gold-accent);
    position: relative;
}

.cta-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-accent);
    opacity: 0.5;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-banner .btn {
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-banner .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
    .cta-banner {
        padding: 70px 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .cta-banner .btn {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-banner {
        padding: 50px 0;
    }
    
    .cta-title {
        font-size: 1.75rem;
        margin-bottom: 15px;
    }
    
    .cta-text {
        font-size: 0.95rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .cta-banner .btn {
        padding: 14px 30px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .why-choose-item {
        padding: 30px 20px;
    }
    
    .why-choose-icon {
        width: 70px;
        height: 70px;
    }
    
    .why-choose-icon i {
        font-size: 1.75rem;
    }
    
    .why-choose-item h4 {
        font-size: 1.25rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 35px;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    .why-choose-grid {
        gap: 20px;
    }
    
    .why-choose-item {
        padding: 25px 18px;
    }
    
    .why-choose-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .why-choose-icon i {
        font-size: 1.5rem;
    }
    
    .why-choose-item h4 {
        font-size: 1.15rem;
    }
    
    .why-choose-item p {
        font-size: 0.9rem;
    }
}
