/* Story Section Styles */
.story-section {
    padding: 120px 0 80px;
    background-color: #fff;
}

.section-title {
    font-size: 2.5rem;
    color: #1B365D;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #C9A55C;
    margin: 1rem auto 0;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1B365D;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* RTL Support */
[dir="rtl"] .story-text {
    text-align: right;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .story-section {
        padding: 100px 0 60px;
    }

    .section-title {
        font-size: 2rem;
    }

    .story-text {
        font-size: 1rem;
    }

    .stats-container {
        gap: 2rem;
    }

    .stat-item {
        min-width: 150px;
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

/* Vision & Mission Section */
.vision-mission-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.vision-card,
.mission-card {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.circle-decoration {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: rgba(201, 165, 92, 0.05);
    border-radius: 50%;
}

.card-title {
    font-size: 1.75rem;
    color: #1B365D;
    margin-bottom: 1.5rem;
    position: relative;
}

.card-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #1B365D;
    margin-top: 0.75rem;
}

.card-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #1B365D;
    font-weight: 500;
}

.feature-list li::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 1rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231B365D'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* RTL Support */
[dir="rtl"] .circle-decoration {
    left: -100px;
    right: auto;
}

[dir="rtl"] .card-title::after {
    margin-right: 0;
}

[dir="rtl"] .feature-list li {
    padding-right: 0;
}

[dir="rtl"] .feature-list li::before {
    margin-right: 0;
    margin-left: 1rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vision-card,
    .mission-card {
        padding: 2rem;
    }

    .circle-decoration {
        width: 150px;
        height: 150px;
        top: -75px;
        right: -75px;
    }

    [dir="rtl"] .circle-decoration {
        left: -75px;
        right: auto;
    }
}

@media (max-width: 576px) {
    .vision-mission-section {
        padding: 60px 0;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .card-text {
        font-size: 0.95rem;
    }

    .feature-list li {
        font-size: 0.95rem;
    }
}

/* Core Values Section */
.core-values-section {
    padding: 80px 0;
    background-color: #fff;
}

.core-values-section .section-title {
    font-size: 2.5rem;
    color: #1B365D;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.core-values-section .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #C9A55C;
    margin: 1rem auto 0;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: #fff;
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon svg {
    width: 40px;
    height: 40px;
    color: #1B365D;
}

.value-card h3 {
    color: #1B365D;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

/* RTL Support */
[dir="rtl"] .value-card {
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .core-values-section {
        padding: 60px 0;
    }

    .core-values-section .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-icon {
        width: 60px;
        height: 60px;
    }

    .value-icon svg {
        width: 30px;
        height: 30px;
    }

    .value-card h3 {
        font-size: 1.25rem;
    }

    .value-card p {
        font-size: 0.95rem;
    }
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.why-choose-section .section-title {
    font-size: 2.5rem;
    color: #1B365D;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.why-choose-section .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #C9A55C;
    margin: 1rem auto 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.advantage-icon {
    width: 48px;
    height: 48px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.advantage-icon svg {
    width: 24px;
    height: 24px;
    color: #1B365D;
}

.advantage-card h3 {
    color: #1B365D;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.advantage-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.advantage-card .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: auto;
}

.advantage-card .feature-list li {
    color: #1B365D;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
}

.advantage-card .feature-list li::before {
    content: '';
    width: 16px;
    height: 16px;
    margin-right: 0.75rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231B365D'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* RTL Support */
[dir="rtl"] .advantage-card .feature-list li::before {
    margin-right: 0;
    margin-left: 0.75rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-section .section-title {
        font-size: 2rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .advantage-card {
        padding: 2rem;
    }

    .advantage-card h3 {
        font-size: 1.25rem;
    }

    .advantage-card p {
        font-size: 0.9rem;
    }

    .advantage-card .feature-list li {
        font-size: 0.9rem;
    }
}

/* Transform CTA Section */
.transform-cta-section {
    background-color: #1B365D;
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-description {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    min-width: 200px;
}

.cta-buttons .btn-primary {
    background-color: #ffffff;
    color: #1B365D;
    border: none;
}

.cta-buttons .btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
    background-color: transparent;
}

.cta-buttons .btn-primary:hover {
    background-color: #f0f0f0;
}

.cta-buttons .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* RTL Support */
[dir="rtl"] .cta-buttons {
    flex-direction: row-reverse;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .transform-cta-section {
        padding: 80px 0;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
} 