/**
 * About Us Page Styles - Beautiful Modern Design
 */

/* About Banner */
.about-banner-section {
    position: relative;
    padding: 180px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.about-banner-section:hover .about-banner-background {
    transform: scale(1);
}

.about-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(235, 55, 41, 0.85) 0%, rgba(126, 20, 22, 0.9) 100%);
    z-index: 1;
}

.about-banner-container {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.about-banner-content {
    text-align: center;
    color: #ffffff;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.banner-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.95);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 300;
}

/* About Main Content */
.about-main-content-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.about-main-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(235, 55, 41, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(126, 20, 22, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.about-main-content-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.about-main-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-main-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-main-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.about-main-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(235, 55, 41, 0.2);
}

.about-main-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    position: relative;
    z-index: 0;
}

.about-main-text {
    padding: 20px 0;
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-main-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #1a1a2e;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    padding-bottom: 20px;
}

.about-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #eb3729 0%, #7e1416 100%);
    border-radius: 2px;
}

.about-main-description {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
    font-weight: 300;
}

.about-main-description p {
    margin-bottom: 25px;
}

.about-main-description p:last-child {
    margin-bottom: 0;
}

/* About Features */
.about-features-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-features-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(235, 55, 41, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-features-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.features-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 70px;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 25px;
}

.features-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #eb3729 0%, #7e1416 100%);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.feature-item {
    background: #ffffff;
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(235, 55, 41, 0.02) 0%, rgba(126, 20, 22, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.feature-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(235, 55, 41, 0.2);
    border-color: rgba(235, 55, 41, 0.2);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #eb3729 0%, #7e1416 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(235, 55, 41, 0.3);
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(235, 55, 41, 0.4);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
}

.feature-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

/* About Team */
.about-team-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.about-team-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.team-header {
    text-align: center;
    margin-bottom: 70px;
}

.team-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 25px;
}

.team-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #eb3729 0%, #7e1416 100%);
    border-radius: 2px;
}

.team-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(235, 55, 41, 0.05) 0%, rgba(126, 20, 22, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.team-member:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(235, 55, 41, 0.25);
    border-color: rgba(235, 55, 41, 0.2);
}

.team-member:hover::before {
    opacity: 1;
}

.member-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    position: relative;
}

.member-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
}

.member-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(235, 55, 41, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-member:hover .member-image::after {
    opacity: 1;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 35px 30px;
    text-align: center;
    position: relative;
    z-index: 2;
    background: #ffffff;
}

.member-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.member-position {
    font-size: 1.05rem;
    color: #eb3729;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.member-bio {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
    font-weight: 300;
}

/* Page Content */
.about-us-content {
    background: #ffffff;
}

.about-us-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.page-content {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.entry-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: #1a1a2e;
    font-weight: 800;
    margin-top: 40px;
    margin-bottom: 20px;
}

.entry-content h2 {
    font-size: 2rem;
    border-bottom: 3px solid #eb3729;
    padding-bottom: 10px;
}

.entry-content h3 {
    font-size: 1.6rem;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.entry-content li {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 968px) {
    .about-banner-section {
        background-attachment: scroll;
    }
    
    .about-main-content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-main-image {
        order: -1;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-banner-section {
        padding: 120px 0;
        min-height: 450px;
    }
    
    .about-main-content-section,
    .about-features-section,
    .about-team-section {
        padding: 80px 0;
    }
    
    .about-main-content-container,
    .about-features-container,
    .about-team-container,
    .about-us-container {
        padding: 0 20px;
    }
    
    .about-main-content-wrapper {
        gap: 40px;
    }
    
    .features-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-item {
        padding: 40px 25px;
    }
    
    .member-image {
        height: 300px;
    }
    
    .page-content {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .about-banner-section {
        padding: 100px 0;
        min-height: 400px;
    }
    
    .about-main-content-section,
    .about-features-section,
    .about-team-section {
        padding: 60px 0;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .member-image {
        height: 250px;
    }
}

