/* ==========================
   ABOUT PAGE SPECIFIC STYLES
   Matches homepage design system perfectly
   ========================== */

/* About Hero Section */
.about-hero {
    background: #ffffff;
    padding: 1.5rem 2rem;
    min-height: auto;
    display: flex;
    align-items: center;
}

.about-hero .hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-hero .hero-title {
    font-family: "Inter Tight", sans-serif;
    font-size: 56px;
    font-weight: 600;
    line-height: 60px;
    color: var(--navy-text);
    margin-bottom: 0.6rem;
    letter-spacing: -0.03em;
    max-width: 680px;
}

.about-hero .hero-subtitle {
    font-family: Helvetica, sans-serif;
    font-size: 32px;
    line-height: 44.8px;
    font-weight: 400;
    letter-spacing: normal;
    color: #4b5563;
    margin-bottom: 1.1rem;
}

.about-image-container {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    clip-path: polygon(
        12% 0,     /* Start top */
        100% 0,    /* Top right corner */
        100% 100%, /* Bottom right corner */
        12% 100%,  /* Bottom left main */
        12% 85%,   /* Step 1 vertical */
        8% 85%,    /* Step 1 horizontal */
        8% 65%,    /* Step 2 vertical */
        4% 65%,    /* Step 2 horizontal */
        4% 45%,    /* Step 3 vertical */
        0% 45%,    /* Step 3 horizontal (deepest) */
        0% 35%,    /* Step 4 vertical */
        4% 35%,    /* Step 4 horizontal */
        4% 15%,    /* Step 5 vertical */
        8% 15%,    /* Step 5 horizontal */
        8% 0%,     /* Back to top */
        12% 0      /* Close the shape */
    );
}

/* ==========================
   OUR STORY SECTION
   ========================== */

.story-section {
    background: #ffffff;
    padding: 5rem 2rem;
}

.story-content .section-title {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy-text);
    margin-bottom: 3rem;
    font-family: 'Inter Tight', sans-serif;
}

.story-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    align-items: start;
}

.story-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-text);
}

.story-intro {
    font-size: 1.25rem;
    color: var(--navy-text);
    margin-bottom: 2rem;
    font-weight: 500;
}

.story-text p {
    margin-bottom: 1.5rem;
}

.story-text strong {
    color: var(--primary-green);
    font-weight: 700;
}

/* Centered story section */
.story-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-content-centered .section-label {
    text-align: center;
}

.story-content-centered .section-title {
    text-align: center;
}

.story-text-centered {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-text);
    text-align: left;
}

.story-text-centered .story-intro {
    font-size: 1.25rem;
    color: var(--navy-text);
    margin-bottom: 2rem;
    font-weight: 500;
    text-align: center;
}

.story-text-centered p {
    margin-bottom: 1.5rem;
}

.story-text-centered strong {
    color: var(--primary-green);
    font-weight: 700;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: #F8FAFC;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid #E8F3EA;
}

.highlight-card {
    background: #ffffff;
    border: 1px solid #E8F3EA;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.highlight-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 124, 89, 0.15);
}

.highlight-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 0.25rem;
    font-family: 'Inter Tight', sans-serif;
    line-height: 1;
}

.highlight-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy-text);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.highlight-card p {
    font-size: 0.95rem;
    color: var(--gray-text);
    line-height: 1.5;
    margin: 0;
}

/* ==========================
   VALUES SECTION
   ========================== */

.values-section {
    background: linear-gradient(180deg, #F4F8F5 0%, #E8F3EA 100%);
    padding: 5rem 2rem;
}

.values-content {
    text-align: center;
}

.values-content .section-label {
    text-align: center;
}

.values-content .section-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--navy-text);
    margin-bottom: 1rem;
    font-family: 'Inter Tight', sans-serif;
    text-align: center;
}

.values-content .section-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--gray-text);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.value-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid #E8F3EA;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(74, 124, 89, 0.15);
    border-color: var(--primary-green);
}

.value-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    background: #E8F3EA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy-text);
    margin-bottom: 1rem;
    font-family: 'Inter Tight', sans-serif;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-text);
}

/* ==========================
   WHY CHOOSE US SECTION
   ========================== */

.why-choose-section {
    background: #ffffff;
    padding: 5rem 2rem;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-choose-content {
    text-align: center;
}

.why-choose-content .section-label {
    text-align: center;
}

.why-choose-content .section-title {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy-text);
    margin-bottom: 1rem;
    font-family: 'Inter Tight', sans-serif;
    text-align: center;
}

.why-choose-content .section-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--gray-text);
    margin-bottom: 3rem;
    text-align: center;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-check {
    width: 24px;
    height: 24px;
    color: var(--primary-green);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy-text);
    margin-bottom: 0.5rem;
    font-family: 'Inter Tight', sans-serif;
}

.feature-content p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--gray-text);
}

.testimonial-highlight {
    background: #2C3E35;
    border-radius: 20px;
    padding: 3rem;
    color: #E8F3EA;
    position: relative;
}

.testimonial-highlight::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 4rem;
    color: rgba(232, 243, 234, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.client-quote {
    font-size: 1.25rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.quote-attribution {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(232, 243, 234, 0.2);
    padding-top: 1.5rem;
}

.client-name {
    font-size: 1rem;
    font-weight: 600;
    color: #E8F3EA;
}

.client-case {
    font-size: 0.875rem;
    color: #A8C5AE;
}

.result-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    text-align: right;
}

.result-label {
    font-size: 0.875rem;
    color: #A8C5AE;
    text-align: right;
}

/* ==========================
   TEAM EXPERTISE SECTION
   ========================== */

.team-section {
    background: #F8FAFC;
    padding: 5rem 2rem;
    text-align: center;
}

.team-section .section-label {
    text-align: center;
}

.team-section .section-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--navy-text);
    margin-bottom: 1rem;
    font-family: 'Inter Tight', sans-serif;
    text-align: center;
}

.team-section .section-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--gray-text);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 4rem 3rem;
    background: #2C3E35;
    border-radius: 20px;
    position: relative;
}

.team-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
}

.team-stat {
    text-align: center;
    color: #E8F3EA;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.team-stat .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: 'Inter Tight', sans-serif;
    line-height: 1;
    text-align: center;
}

.team-stat .stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: #E8F3EA;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.team-stat .stat-description {
    font-size: 0.9rem;
    color: #A8C5AE;
    line-height: 1.4;
    text-align: center;
    max-width: 120px;
    margin: 0 auto;
}

.team-expertise {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.expertise-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid #E8F3EA;
    transition: all 0.3s ease;
    text-align: left;
}

.expertise-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(74, 124, 89, 0.15);
    border-color: var(--primary-green);
}

.expertise-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    background: #E8F3EA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expertise-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy-text);
    margin-bottom: 1rem;
    font-family: 'Inter Tight', sans-serif;
}

.expertise-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-text);
}

/* ==========================
   CREDENTIALS SECTION
   ========================== */

.credentials-section {
    background: #ffffff;
    padding: 5rem 2rem;
}

.credentials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.credentials-content {
    text-align: center;
}

.credentials-content .section-label {
    text-align: center;
}

.credentials-content .section-title {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy-text);
    margin-bottom: 1rem;
    font-family: 'Inter Tight', sans-serif;
    text-align: center;
}

.credentials-content .section-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--gray-text);
    margin-bottom: 3rem;
    text-align: center;
}

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #F8FAFC;
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
    transition: all 0.3s ease;
}

.credential-item:hover {
    background: #E8F3EA;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 124, 89, 0.1);
}

.credential-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-green);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.credential-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy-text);
    margin-bottom: 0.5rem;
    font-family: 'Inter Tight', sans-serif;
}

.credential-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--gray-text);
}

.accreditation-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.badge-item {
    background: #2C3E35;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    color: #E8F3EA;
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: var(--primary-green);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(74, 124, 89, 0.25);
}

.badge-logo {
    font-size: 2rem;
    font-weight: 800;
    color: #E8F3EA;
    margin-bottom: 1rem;
    font-family: 'Inter Tight', sans-serif;
}

.badge-text {
    font-size: 0.875rem;
    color: #A8C5AE;
    line-height: 1.4;
    font-weight: 500;
}

/* ==========================
   CALL TO ACTION SECTION
   ========================== */

.about-cta-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, #5A8B6B 100%);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
}



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

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-family: 'Inter Tight', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.cta-buttons .btn-primary {
    background: #ffffff;
    color: var(--primary-green);
    border: 2px solid #ffffff;
    font-weight: 700;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* ==========================
   RESPONSIVE DESIGN FOR ABOUT PAGE
   ========================== */

@media (max-width: 1024px) {
    .story-grid {
        gap: 4rem;
    }
    
    .why-choose-grid {
        gap: 4rem;
    }
    
    .credentials-grid {
        gap: 4rem;
    }
    
    .team-expertise {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-hero .hero-title {
        font-size: 3rem;
        text-align: center;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1.25rem;
        text-align: center;
    }
    
    .about-hero .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 2rem;
    }
    
    .team-expertise {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-hero .hero-title,
    .story-content .section-title,
    .why-choose-content .section-title,
    .credentials-content .section-title {
        text-align: center;
    }
    
    .story-highlights {
        order: -1;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 1rem;
    }
    
    .about-hero .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .story-section,
    .values-section,
    .why-choose-section,
    .team-section,
    .credentials-section,
    .about-cta-section {
        padding: 3rem 1rem 4rem 1rem;
        margin-bottom: 0;
    }
    
    .value-item,
    .expertise-item {
        padding: 2rem;
    }
    
    .testimonial-highlight {
        padding: 2rem;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    
    .cta-title {
        font-size: 2.25rem;
    }
    
    .about-image-container {
        height: 350px;
    }
}
