/**
 * About Page Styles
 */

/* Image Label Styling */
.image-container {
    position: relative;
}

.image-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 8px 16px;
    background: rgba(212, 170, 64, 0.9);
    color: white;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: all 0.3s ease;
}

.image-label:hover {
    background: rgba(212, 170, 64, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

[dir="rtl"] .image-label {
    left: auto;
    right: 15px;
}

/* Hero Section */
.about-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin-top: -100px;
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* Our Story Section */
.our-story {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 170, 64, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 25px;
}

.story-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

.story-images {
    position: relative;
    height: 500px;
}

.img-main {
    width: 70%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    right: 0;
}

.img-secondary {
    width: 50%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 0;
    left: 0;
    border: 5px solid white;
}

/* Mission & Vision */
.mission-vision {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

.mv-card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(212, 170, 64, 0.2);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    font-size: 2rem;
    color: white;
}

.mv-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.mv-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
}

/* Companies Timeline */
.our-companies-about {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000, #1a1a1a);
}

.companies-timeline {
    position: relative;
    padding: 40px 0;
}

.companies-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
}

.timeline-item.left .timeline-content {
    margin-right: 50%;
    padding-right: 40px;
    text-align: right;
}

.timeline-item.right .timeline-content {
    margin-left: 50%;
    padding-left: 40px;
    text-align: left;
}

.timeline-content {
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 1px solid rgba(212, 170, 64, 0.2);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px rgba(212, 170, 64, 0.2);
    transform: translateY(-50%);
}

.timeline-item.left .timeline-content::before {
    right: -50px;
}

.timeline-item.right .timeline-content::before {
    left: -50px;
}

.timeline-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.timeline-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.timeline-content p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.timeline-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.timeline-link:hover {
    gap: 15px;
    color: var(--secondary-color);
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

.why-card {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(212, 170, 64, 0.2);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 170, 64, 0.1), rgba(255, 107, 53, 0.1));
    border-radius: 15px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.why-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.why-card p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .timeline-item.left .timeline-content,
    .timeline-item.right .timeline-content {
        margin-left: 60px;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        text-align: right;
    }

    .companies-timeline::before {
        left: 20px;
    }

    .timeline-content::before {
        right: auto !important;
        left: -40px !important;
    }

    .story-images {
        margin-top: 50px;
        height: 400px;
    }

    .img-main {
        position: static;
        width: 100%;
        margin-bottom: 20px;
    }

    .img-secondary {
        display: none;
    }
}

/* Luxury Black & Gold Theme Overrides */
.section-title h2,
.timeline-content h4,
.mv-card h3,
.why-card h4 {
    color: #D4AA40 !important;
}

.story-content p,
.timeline-content p,
.mv-card p,
.why-card p {
    color: #F2E8C9 !important;
}

.section-badge {
    background: linear-gradient(135deg, #D4AA40, #BF9835) !important;
    color: #000000 !important;
}

.mv-icon {
    background: linear-gradient(135deg, #D4AA40, #BF9835, #A58230) !important;
    color: #000000 !important;
}

.mv-card:hover,
.why-card:hover {
    border-color: #D4AA40;
    box-shadow: 0 20px 40px rgba(212, 170, 64, 0.2);
}

.why-icon {
    background: linear-gradient(135deg, rgba(212, 170, 64, 0.2), rgba(191, 152, 53, 0.2)) !important;
    color: #D4AA40 !important;
}

.timeline-link {
    color: #D4AA40 !important;
}

.timeline-link:hover {
    color: #BF9835 !important;
}

.stat-number {
    color: #D4AA40 !important;
}

.stat-label {
    color: #F2E8C9 !important;
}