/**
 * About Section - Complete Redesign
 * قسم من نحن - تصميم كامل جديد
 */

/* Main Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000, #1a1a1a) !important;
    position: relative;
}

.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.about-section .row {
    display: flex;
    align-items: stretch;
    gap: 40px;
}

/* Image Column */
.about-section .col-lg-6:first-child {
    flex: 1;
}

/* Image Wrapper */
.about-image-wrapper {
    position: relative;
    height: 500px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    border: 1px solid rgba(212, 170, 64, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.floating-element.element-1 {
    bottom: 80px;
    right: -20px;
    animation-delay: 0s;
}

.floating-element.element-2 {
    top: 50px;
    left: -30px;
    animation-delay: 3s;
    width: 70px;
    height: 70px;
}

[dir="ltr"] .floating-element.element-1 {
    right: auto;
    left: -20px;
}

[dir="ltr"] .floating-element.element-2 {
    left: auto;
    right: -30px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, #D4AA40, #BF9835, #A58230);
    color: white;
    padding: 25px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

[dir="ltr"] .experience-badge {
    right: auto;
    left: 30px;
}

.experience-badge .number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 1rem;
    font-weight: 600;
}

/* Content Column */
.about-section .col-lg-6:last-child {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* About Content */
.about-content {
    padding: 0 20px;
}

[dir="rtl"] .about-content {
    padding-right: 30px;
    padding-left: 0;
}

/* Title Section */
.about-content .section-title {
    margin-bottom: 25px;
}

.about-content .subtitle {
    display: inline-block;
    background: rgba(212, 170, 64, 0.1);
    color: #D4AA40;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #D4AA40 !important;
    margin: 0;
    line-height: 1.3;
}

.about-content h2 .gradient-text {
    color: #D4AA40 !important;
    text-shadow: none !important;
}

/* Description Text */
.about-content .lead {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #F2E8C9 !important;
    margin-bottom: 30px;
    text-align: justify;
}

/* Features Grid */
.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

/* Feature Item */
.feature-item {
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    border: 1px solid rgba(212, 170, 64, 0.2);
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    box-shadow: 0 8px 20px rgba(212, 170, 64, 0.2);
    transform: translateY(-3px);
    border-color: #D4AA40;
}

.feature-item .icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #D4AA40, #BF9835, #A58230);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-item .content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #D4AA40 !important;
    margin: 0 0 5px 0;
}

.feature-item .content p {
    font-size: 0.85rem;
    color: #F2E8C9 !important;
    margin: 0;
    line-height: 1.4;
}

/* Action Button */
.about-content .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #D4AA40, #BF9835, #A58230);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-content .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 170, 64, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width: 992px) {
    .about-section .row {
        flex-direction: column;
        gap: 30px;
    }

    .about-image-wrapper {
        height: 400px;
    }

    .about-content {
        padding: 0;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-image-wrapper {
        height: 350px;
    }

    .experience-badge {
        top: 20px;
        right: 20px;
        padding: 20px;
    }

    .experience-badge .number {
        font-size: 2.5rem;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

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

    .feature-item .icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }

    .about-image-wrapper {
        height: 280px;
    }

    .experience-badge {
        top: 15px;
        right: 15px;
        padding: 15px 20px;
    }

    .experience-badge .number {
        font-size: 2rem;
    }

    .experience-badge .text {
        font-size: 0.85rem;
    }

    .about-content h2 {
        font-size: 1.5rem;
    }

    .about-content .lead {
        font-size: 0.95rem;
    }

    .feature-item {
        padding: 12px;
    }

    .feature-item .content h4 {
        font-size: 0.95rem;
    }

    .feature-item .content p {
        font-size: 0.8rem;
    }
}