/*
 * Halı Ticaret - Hakkımızda Sayfası CSS
 * Hakkımızda sayfasına özel stiller
 */

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/page-header-bg.jpg') no-repeat center center/cover;
    padding: 100px 0;
    color: var(--text-white);
    margin-bottom: 0;
}

.page-header-content {
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--secondary-color);
}

.breadcrumb-item a {
    color: var(--secondary-color);
}

.breadcrumb-item.active {
    color: var(--text-white);
}

/*--------------------------------------------------------------
# About Story Section
--------------------------------------------------------------*/
.about-story-content .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.about-story-content .section-title h2::after {
    left: 0;
    transform: translateX(0);
}

.about-story-image {
    position: relative;
    box-shadow: var(--shadow-medium);
    border-radius: var(--radius-medium);
    overflow: hidden;
}

.about-story-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border: 5px solid var(--secondary-color);
    border-radius: var(--radius-small);
    z-index: -1;
}

/*--------------------------------------------------------------
# Mission & Vision Section
--------------------------------------------------------------*/
.mission-vision-card {
    background: var(--text-white);
    border-radius: var(--radius-medium);
    padding: 35px 30px;
    height: 100%;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
    border-top: 4px solid var(--primary-color);
    z-index: 1;
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.mission-vision-icon {
    width: 80px;
    height: 80px;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 32px;
    transition: var(--transition-normal);
}

.mission-vision-card:hover .mission-vision-icon {
    background: var(--primary-color);
    color: var(--text-white);
    transform: rotateY(360deg);
}

.mission-vision-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.mission-vision-list {
    margin-top: 20px;
}

.mission-vision-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.mission-vision-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 5px;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team-card {
    background: var(--text-white);
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-normal);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.team-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 25px 20px;
    text-align: center;
    position: relative;
}

.team-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.team-info h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-info p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.team-social a:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.why-choose-card {
    background: var(--text-white);
    border-radius: var(--radius-medium);
    padding: 30px;
    height: 100%;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--primary-color);
    transition: var(--transition-normal);
    z-index: -1;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.why-choose-card:hover::before {
    height: 100%;
}

.why-choose-icon {
    width: 70px;
    height: 70px;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 28px;
    transition: var(--transition-normal);
}

.why-choose-card:hover .why-choose-icon {
    background: var(--primary-color);
    color: var(--text-white);
    transform: rotateY(360deg);
}

.why-choose-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
    transition: var(--transition-fast);
}

.why-choose-card:hover h3 {
    padding-left: 10px;
}

/*--------------------------------------------------------------
# Counter Section
--------------------------------------------------------------*/
.counter-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/counter-bg.jpg') no-repeat center center/cover;
    color: var(--text-white);
}

.counter-item {
    text-align: center;
    padding: 20px;
}

.counter-icon {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.counter-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.counter-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta-section {
    background: linear-gradient(rgba(139, 69, 19, 0.9), rgba(139, 69, 19, 0.9)), url('../images/cta-bg.jpg') no-repeat center center/cover;
    color: var(--text-white);
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 991px) {
    .page-header {
        padding: 80px 0;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .counter-number {
        font-size: 30px;
    }
    
    .counter-icon {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 30px;
    }
    
    .about-story-image::before {
        display: none;
    }
    
    .counter-item {
        margin-bottom: 30px;
    }
    
    .cta-section h2 {
        font-size: 30px;
    }
} 