/* ============================================
   EKET Fuarcılık - Hakkımızda Widget Stilleri
   ============================================ */

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

/* Left Side - Image Area */
.about-image-area {
    flex: 0 0 520px;
    position: relative;
}

.about-image-container {
    position: relative;
}

.about-main-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

/* Decorative Dots - Left side */
.about-dots-left {
    position: absolute;
    top: 40%;
    left: -40px;
    width: 40px;
    height: 160px;
    background-image: radial-gradient(circle, #cbd5e0 3px, transparent 3px);
    background-size: 12px 12px;
    z-index: 1;
}

/* Decorative Dots - Right side */
.about-dots-right {
    position: absolute;
    top: 15%;
    right: -60px;
    width: 40px;
    height: 140px;
    background-image: radial-gradient(circle, #cbd5e0 3px, transparent 3px);
    background-size: 12px 12px;
    z-index: 1;
}

/* Bottom Controls Container */
.about-bottom-controls {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    display: flex;
    align-items: flex-end;
    gap: 0;
    z-index: 10;
}

/* Stats Badge */
.about-stats-badge {
    background-color: var(--white);
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.stats-avatars {
    display: flex;
}

.stats-avatars img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -10px;
    object-fit: cover;
}

.stats-avatars img:first-child {
    margin-left: 0;
}

.stats-text {
    display: flex;
    flex-direction: column;
}

.stats-number {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    font-family: var(--font-heading);
}

.stats-label {
    font-size: 0.8125rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Video Button */
.about-video-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--secondary-color);
    padding: 20px 28px;
    border-radius: 0 0 12px 0;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: -5px;
}

.about-video-btn:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.video-play-icon {
    width: 42px;
    height: 42px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.video-play-icon i {
    color: var(--gray-800);
    font-size: 0.875rem;
    margin-left: 3px;
}

/* Year Badge - Right side of image */
.about-year-badge {
    position: absolute;
    top: 50%;
    right: -30px;
    background-color: #6b7280;
    padding: 25px 18px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    z-index: 10;
    min-height: 180px;
}

.year-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-heading);
}

.year-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    margin-top: 12px;
    text-transform: uppercase;
}

/* Right Side - Content Area */
.about-content-area {
    flex: 1;
    position: relative;
    padding-top: 10px;
}

/* Decorative Star */
.about-star-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    opacity: 0.12;
    color: var(--gray-500);
}

.about-star-decoration svg {
    width: 100%;
    height: 100%;
}

/* Section Badge */
.about-badge {
    display: inline-block;
    padding: 10px 24px;
    background-color: transparent;
    border: 1.5px solid var(--primary-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Title */
.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.25;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

/* Description */
.about-description {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 25px;
}

.about-description-secondary {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 0;
}

/* Content Row - Two columns */
.about-content-row {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.about-text-column {
    flex: 1;
}

.about-features-column {
    flex: 0 0 auto;
}

/* Features List */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 38px;
    height: 38px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--white);
    font-size: 0.75rem;
}

.feature-text {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-800);
}

/* CTA Button */
.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.25);
}

.about-cta-btn:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.about-cta-btn i {
    font-size: 0.8125rem;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .about-wrapper {
        gap: 50px;
    }
    
    .about-image-area {
        flex: 0 0 450px;
    }
    
    .about-title {
        font-size: 2.125rem;
    }
    
    .about-main-image {
        height: 420px;
    }
    
    .about-year-badge {
        right: -50px;
    }
    
    .about-content-row {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-wrapper {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    
    .about-image-area {
        display: none;
    }
    
    .about-content-area {
        text-align: center;
        max-width: 600px;
    }
    
    .about-content-row {
        flex-direction: column;
        gap: 25px;
    }
    
    .about-features {
        align-items: center;
    }
    
    .about-star-decoration {
        right: 50%;
        margin-right: -40px;
    }
    
    .about-dots-right {
        display: none;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-image-area {
        max-width: 100%;
    }
    
    .about-main-image {
        height: 300px;
    }
    
    .about-title {
        font-size: 1.625rem;
    }
    
    .about-bottom-controls {
        flex-direction: column;
        align-items: stretch;
        bottom: -50px;
        left: 10px;
        right: auto;
        gap: 10px;
    }
    
    .about-stats-badge {
        padding: 12px 16px;
    }
    
    .stats-avatars img {
        width: 32px;
        height: 32px;
    }
    
    .stats-number {
        font-size: 1rem;
    }
    
    .stats-label {
        font-size: 0.75rem;
    }
    
    .about-video-btn {
        padding: 14px 20px;
        font-size: 0.8125rem;
        border-radius: 8px;
        margin-left: 0;
    }
    
    .video-play-icon {
        width: 36px;
        height: 36px;
    }
    
    .about-year-badge {
        right: 10px;
        top: auto;
        bottom: -30px;
        padding: 18px 14px;
        min-height: 140px;
    }
    
    .year-number {
        font-size: 2.25rem;
    }
    
    .year-text {
        font-size: 0.625rem;
    }
    
    .about-content-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .about-content-area {
        text-align: left;
        padding-top: 30px;
    }
    
    .about-features {
        align-items: flex-start;
    }
    
    .feature-icon {
        width: 32px;
        height: 32px;
    }
    
    .feature-icon i {
        font-size: 0.625rem;
    }
    
    .feature-text {
        font-size: 0.8125rem;
    }
    
    .about-dots-left,
    .about-dots-right {
        display: none;
    }
}
