﻿/*#region General Section*/

/* Fonts - Arabic Website */
:root {
    /* Primary Arabic fonts */
    --default-font: "Cairo", sans-serif;
    --heading-font: "Cairo", sans-serif;
    --nav-font: "Cairo", sans-serif;
    --arabic-script-font: "Amiri", serif;
    /* Latin fallback fonts */
    --latin-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
    --latin-heading-font: "Nunito", sans-serif;
}

/* For body text - uses Cairo for Arabic, falls back to Roboto */
body {
    font-family: var(--default-font);
}

/* For headings - uses Cairo */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
}

/* For navigation - uses Cairo */
nav, .navbar {
    font-family: var(--nav-font);
}

/* For Quranic text or special Arabic script elements */
.quran-text, .arabic-poetry, .calligraphy {
    font-family: var(--arabic-script-font);
}

/*#endregion General Section*/

/*#region Our Work Section*/
.our-work {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), transparent 20%) 100%);
    position: relative;
    overflow: hidden;
    direction: rtl;
}

    .our-work .container {
        position: relative;
        z-index: 1;
    }

    .our-work .section-header {
        text-align: center;
        margin-bottom: 70px;
    }

        .our-work .section-header h2 {
            font-size: 3.2rem;
            font-weight: 900;
            color: var(--heading-color);
            margin-bottom: 15px;
            display: inline-block;
            background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

            .our-work .section-header h2::after {
                content: '';
                display: block;
                width: 100px;
                height: 4px;
                background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
                border-radius: 2px;
                margin: 15px auto 0;
            }

        .our-work .section-header p {
            font-size: 1.3rem;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            margin-top: 25px;
            max-width: 600px;
            margin-right: auto;
            margin-left: auto;
            line-height: 1.8;
        }

/* Project Content */
.project-content {
    padding: 40px;
    background: var(--surface-color);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.02) inset;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

    .project-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 30px 50px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(45, 134, 137, 0.05) inset;
    }

    .project-content::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #4fd1c5));
        border-radius: 2px;
    }

.project-header {
    margin-bottom: 35px;
}

.project-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.project-category,
.project-year {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 6px 15px;
    border-radius: 20px;
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    color: var(--accent-color);
}

.project-year {
    background: color-mix(in srgb, var(--golden-color), transparent 90%);
    color: color-mix(in srgb, var(--golden-color), #000 30%);
}

.project-header h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

    .project-header h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, var(--accent-color), transparent);
        border-radius: 1.5px;
    }

.project-client {
    display: flex;
    align-items: center;
    gap: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 1.1rem;
    background: var(--background-color);
    padding: 15px;
    border-radius: 12px;
    margin-top: 20px;
}

    .project-client i {
        color: var(--accent-color);
        font-size: 1.3rem;
        background: color-mix(in srgb, var(--accent-color), transparent 90%);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .project-client strong {
        color: var(--accent-color);
        font-weight: 700;
    }

.project-description .lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--default-color);
    padding: 25px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, color-mix(in srgb, var(--surface-color), transparent 100%) 100%);
    border-right: 4px solid var(--accent-color);
    border-radius: 15px;
    margin-bottom: 35px;
    position: relative;
}

    .project-description .lead::before {
        content: '"';
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 4rem;
        color: color-mix(in srgb, var(--accent-color), transparent 80%);
        font-family: serif;
        line-height: 1;
    }

/* Project Images Grid */
.project-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 100%;
}

.project-image-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .project-image-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .project-image-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .project-image-item:hover img {
        transform: scale(1.05);
    }

.image-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-image-item:hover .image-overlay {
    opacity: 1;
}

.image-expand-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--accent-color);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

    .image-expand-btn:hover {
        background: white;
        transform: scale(1.1);
    }

/* Project Video */
.project-video-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.project-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    cursor: pointer;
}

.project-video {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
}

.video-play-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--accent-color);
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

    .video-play-btn:hover {
        background: white;
        transform: scale(1.1);
    }

.video-caption {
    text-align: center;
    color: white;
    padding: 0 20px;
}

    .video-caption h5 {
        font-size: 1.5rem;
        margin-bottom: 8px;
        font-weight: 700;
    }

    .video-caption p {
        font-size: 1rem;
        opacity: 0.9;
        margin: 0;
    }

/* Project Scope */
.project-scope {
    margin-bottom: 40px;
}

    .project-scope h4 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--heading-color);
        margin-bottom: 25px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .project-scope h4 i {
            color: var(--accent-color);
            background: color-mix(in srgb, var(--accent-color), transparent 90%);
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

.scope-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .scope-list li {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 25px;
        padding: 20px;
        background: var(--background-color);
        border-radius: 15px;
        transition: all 0.3s ease;
    }

        .scope-list li:hover {
            background: color-mix(in srgb, var(--accent-color), transparent 96%);
            transform: translateX(-10px);
            box-shadow: 0 10px 20px rgba(45, 134, 137, 0.1);
        }

.scope-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

    .scope-icon i {
        color: #22c55e;
        font-size: 1.5rem;
        background: rgba(34, 197, 94, 0.1);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.scope-content {
    flex: 1;
    text-align: right;
}

    .scope-content strong {
        color: var(--heading-color);
        display: block;
        margin-bottom: 8px;
        font-size: 1.15rem;
        font-weight: 700;
    }

    .scope-content span {
        color: var(--default-color);
        line-height: 1.7;
        display: block;
    }

/* Project Actions */
.project-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.btn-contact {
    flex: 1;
    min-width: 200px;
    padding: 16px 30px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--surface-color);
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

    .btn-contact:hover {
        background: var(--accent-color);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(45, 134, 137, 0.2);
    }

/* Project Stats */
.project-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--surface-color), transparent 100%) 100%);
    border-radius: 20px;
    border: 1px solid rgba(45, 134, 137, 0.1);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--surface-color);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .stat-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(45, 134, 137, 0.1);
    }

.stat-info {
    text-align: right;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--heading-color);
    line-height: 1;
    margin-bottom: 5px;
}

.our-work-stat-label {
    font-size: 0.95rem;
    color: var(--accent-color) !important;
    font-weight: 600;
}

/* Fullscreen Lightbox */
.fullscreen-lightbox {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

    .fullscreen-lightbox.active {
        display: block;
        opacity: 1;
    }

.lightbox-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.lightbox-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    color: white;
    font-size: 1.8rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .lightbox-close:hover {
        background: var(--accent-color);
        transform: rotate(90deg) scale(1.1);
        border-color: var(--accent-color);
    }

.lightbox-content {
    width: 90%;
    max-width: 1200px;
    height: 80vh;
    position: relative;
}

.lightbox-slide {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.lightbox-slide.active {
    display: block;
}

.lightbox-media {
    width: 100%;
    height: calc(100% - 100px);
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

    .lightbox-media img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.lightbox-video {
    width: 100%;
    height: 100%;
}

    .lightbox-video video {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.lightbox-caption {
    text-align: center;
    padding: 25px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 0 0 15px 15px;
    position: relative;
    margin-top: -5px;
    border-top: 2px solid var(--accent-color);
}

    .lightbox-caption h4 {
        font-size: 1.6rem;
        margin-bottom: 10px;
        font-weight: 700;
        color: white;
    }

    .lightbox-caption p {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.8);
    }

.lightbox-controls {
    position: absolute;
    bottom: 40px;
    right: 50%;
    transform: translateX(50%);
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .lightbox-prev:hover,
    .lightbox-next:hover {
        background: var(--accent-color);
        transform: scale(1.1);
        border-color: var(--accent-color);
    }

.lightbox-counter {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    min-width: 60px;
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .project-images-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .project-image-item {
        aspect-ratio: 16/9;
    }

    .project-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-actions {
        flex-direction: column;
    }

    .btn-contact {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .our-work {
        padding: 60px 0;
    }

        .our-work .section-header h2 {
            font-size: 2.4rem;
        }

        .our-work .section-header p {
            font-size: 1.1rem;
        }

    .project-content {
        padding: 25px;
    }

    .project-header h3 {
        font-size: 1.8rem;
    }

    .project-images-grid {
        margin-top: 30px;
    }

    .project-video-wrapper {
        margin-top: 30px;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .stat-info {
        text-align: center;
    }

    .lightbox-container {
        padding: 20px;
    }

    .lightbox-close {
        top: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .lightbox-controls {
        gap: 20px;
        padding: 12px 24px;
    }
}

@media (max-width: 576px) {
    .project-stats {
        grid-template-columns: 1fr;
    }

    .lightbox-content {
        width: 95%;
        height: 70vh;
    }

    .lightbox-caption {
        padding: 15px;
    }

        .lightbox-caption h4 {
            font-size: 1.3rem;
        }

        .lightbox-caption p {
            font-size: 1rem;
        }
}
/*#endregion Our Work Section*/

/*#region Stables Project Section*/
.stables-project {
    padding: 100px 0;
    background: linear-gradient(to left, color-mix(in srgb, var(--background-color), transparent 0%) 0%, color-mix(in srgb, var(--surface-color), transparent 10%) 50%, color-mix(in srgb, var(--background-color), transparent 0%) 100%);
    position: relative;
    overflow: hidden;
    direction: rtl;
}

    .stables-project::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 20% 50%, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, transparent 50%), radial-gradient(circle at 80% 30%, color-mix(in srgb, var(--accent-color), transparent 92%) 0%, transparent 50%);
        pointer-events: none;
    }

    .stables-project .section-header {
        text-align: center;
        margin-bottom: 60px;
        position: relative;
    }

        .stables-project .section-header h3 {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--heading-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            background: linear-gradient(135deg, var(--heading-color) 0%, color-mix(in srgb, var(--heading-color), var(--accent-color) 50%) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

            .stables-project .section-header h3::after {
                content: '';
                position: absolute;
                bottom: -10px;
                right: 50%;
                transform: translateX(50%);
                width: 100px;
                height: 4px;
                background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #4fd1c5 50%));
                border-radius: 2px;
            }

        .stables-project .section-header p {
            font-size: 1.2rem;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            margin-top: 25px;
            font-weight: 500;
        }
/* Modern Video Section */
.modern-video-section {
    position: relative;
    height: 100%;
}

.modern-video-container {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    height: 100%;
    display: flex;
    flex-direction: column;
}
/* Video Player */
.stables-project-video-player-wrapper {
    position: relative;
    background: #000;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.stables-project-video-player {
    position: relative;
    width: 100%;
    height: 350px;
    background: #000;
}

.stables-project-project-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Video Overlay */
.stables-project-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

    .stables-project-video-overlay.hidden {
        opacity: 0;
        pointer-events: none;
    }

.stables-project-overlay-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.stables-project-play-button-circle {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.stables-project-play-icon-stables-project {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    /*color: white;*/
    z-index: 2;
}

.stables-project-play-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(45, 134, 137, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.3);
        opacity: 0;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.stables-project-video-title {
    margin-top: 20px;
}

.stables-project-title-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.stables-project-title-text h4 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.stables-project-title-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    color: #e0e0e0;
}
/* Video Stats Grid */
.video-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 30px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

@media (max-width: 768px) {
    .video-stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-color: var(--accent-color);
    }

.stat-icon-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.stat-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), #1a6b6e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    z-index: 2;
}

.stat-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(45, 134, 137, 0.1);
    border-radius: 50%;
    animation: pulse 2s infinite;
    z-index: 1;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 5px;
    line-height: 1;
}

.stables-project-stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.stat-desc {
    font-size: 0.9rem;
    color: #666;
}
/* Project Details Card */
.project-details-card {
    background: var(--surface-color);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .project-details-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #4fd1c5 50%));
        border-radius: 25px 25px 0 0;
    }

.project-title-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.title-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #4fd1c5 50%));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .title-icon i {
        font-size: 32px;
        color: white;
    }

.project-title-header h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

.project-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    padding: 8px 16px;
    border-radius: 20px;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
}

    .project-tag i {
        font-size: 1rem;
    }
/* Project Content Box */
.project-content-box {
    margin-top: 30px;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

    .content-header h5 {
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--heading-color);
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .content-header h5 i {
            color: var(--accent-color);
        }

.progress-indicator {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.progress-bar {
    width: 120px;
    height: 8px;
    background: color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #4ade80);
    border-radius: 4px;
    transition: width 1s ease;
}

.progress-text {
    font-size: 0.9rem;
    color: #22c55e;
    font-weight: 600;
}
/* Implementation List */
.implementation-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.implementation-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--background-color);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    align-items: flex-start;
    flex-direction: row-reverse;
    text-align: right;
}

    .implementation-item:hover {
        border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
        transform: translateX(-10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .implementation-item:nth-child(odd) {
        border-right: 3px solid var(--accent-color);
    }

    .implementation-item:nth-child(even) {
        border-right: 3px solid #4fd1c5;
    }

.item-icon {
    width: 50px;
    height: 50px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .item-icon i {
        font-size: 22px;
        color: var(--accent-color);
    }

.item-content {
    flex: 1;
}

    .item-content h6 {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--heading-color);
        margin-bottom: 8px;
    }

    .item-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: var(--default-color);
        margin-bottom: 12px;
    }

.item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 500;
}

    .tag i {
        font-size: 0.9rem;
    }
/* Project Features */
.project-features {
    margin-top: 40px;
    padding: 25px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
    border-radius: 15px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .feature-icon i {
        font-size: 28px;
        color: white;
    }

.feature-highlight h6 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

    .feature-list span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.95rem;
        color: var(--heading-color);
        font-weight: 500;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        background: white;
    }

        .feature-list span i {
            color: #22c55e;
            font-size: 1rem;
        }
/* Responsive */
@media (max-width: 992px) {
    .video-player {
        height: 300px;
    }

    .play-button-circle {
        width: 70px;
        height: 70px;
    }

    .title-text h4 {
        font-size: 1.5rem;
    }

    .project-details-card {
        padding: 30px;
    }

    .content-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .progress-indicator {
        align-items: flex-start;
    }

    .feature-list {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .stables-project {
        padding: 60px 0;
    }

        .stables-project .section-header h3 {
            font-size: 2rem;
        }

    .video-player {
        height: 250px;
    }

    .modern-video-container {
        border-radius: 20px;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .project-title-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .title-icon {
        width: 60px;
        height: 60px;
    }

        .title-icon i {
            font-size: 28px;
        }

    .implementation-item {
        flex-direction: column;
        text-align: center;
    }

    .item-tags {
        justify-content: center;
    }

    .feature-highlight {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .video-player {
        height: 200px;
    }

    .play-button-circle {
        width: 60px;
        height: 60px;
    }

    .play-icon {
        font-size: 2rem;
    }

    .video-stats-grid,
    .project-details-card {
        padding: 20px;
    }

    .implementation-item {
        padding: 15px;
    }

    .item-tags {
        flex-direction: column;
        align-items: flex-start;
    }

    .tag {
        width: 100%;
        justify-content: center;
    }
}
/*#endregion Stables Project Section*/

/*#region Modern Stables Section*/
.modern-stables {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--background-color), transparent 20%) 50%, var(--surface-color) 100%);
    position: relative;
    overflow: hidden;
    direction: rtl;
}

    .modern-stables::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 10% 20%, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, transparent 50%), radial-gradient(circle at 90% 80%, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, transparent 50%);
        pointer-events: none;
        z-index: 0;
    }

    .modern-stables .container {
        position: relative;
        z-index: 1;
    }
/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #4fd1c5 70%));
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    margin-left: 20px;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.badge-icon {
    color: white;
    font-size: 1.1rem;
}

.badge-text {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.section-header h3 {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--heading-color);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--heading-color), color-mix(in srgb, var(--heading-color), var(--accent-color) 60%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

    .section-header h3::after {
        content: '';
        position: absolute;
        bottom: -10px;
        right: 50%;
        transform: translateX(50%);
        width: 150px;
        height: 4px;
        background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
        border-radius: 2px;
    }

.section-header p {
    font-size: 1.3rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-top: 25px;
    font-weight: 500;
    line-height: 1.6;
}
/* Advanced Media Wrapper */
.advanced-media-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.media-card {
    background: var(--surface-color);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12), 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.4s ease;
}

    .media-card:hover {
        box-shadow: 0 35px 70px rgba(0, 0, 0, 0.15), 0 10px 25px rgba(0, 0, 0, 0.1);
        transform: translateY(-5px);
    }

.video-featured {
    position: relative;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    background: #000;
    overflow: hidden;
}

    .video-wrapper video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .video-wrapper:hover video {
        transform: scale(1.03);
    }

.video-controls-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 1;
}

.video-wrapper.playing .video-controls-overlay {
    opacity: 0;
    pointer-events: none;
}

.video-play-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

    .video-play-btn:hover {
        background: var(--accent-color);
        transform: scale(1.05);
    }

        .video-play-btn:hover .play-icon i {
            color: white;
        }

        .video-play-btn:hover .play-text {
            color: white;
        }

.play-icon {
    position: relative;
    width: 50px;
    height: 50px;
}

    .play-icon i {
        font-size: 50px;
        color: var(--accent-color);
        position: absolute;
        top: 0;
        right: 0;
        transition: all 0.3s ease;
    }

        .play-icon i.bi-pause-circle {
            opacity: 0;
        }

.video-wrapper.playing .play-icon i.bi-play-circle {
    opacity: 0;
}

.video-wrapper.playing .play-icon i.bi-pause-circle {
    opacity: 1;
}

.play-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.play-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading-color);
}

.duration {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-top: 3px;
}
/* Video Features Dots */
.video-features {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.feature-dot {
    position: absolute;
    width: 24px;
    height: 24px;
    cursor: pointer;
    pointer-events: auto;
}

    .feature-dot:hover .feature-tooltip {
        opacity: 1;
        transform: translate(-50%, -10px);
        pointer-events: auto;
    }

.dot-pulse {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    position: relative;
    animation: pulseDot 2s infinite;
}

    .dot-pulse::before {
        content: '';
        position: absolute;
        top: 50%;
        right: 50%;
        transform: translate(50%, -50%);
        width: 8px;
        height: 8px;
        background: var(--accent-color);
        border-radius: 50%;
    }

@keyframes pulseDot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.feature-tooltip {
    position: absolute;
    top: -45px;
    right: 50%;
    transform: translateX(50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

    .feature-tooltip::after {
        content: '';
        position: absolute;
        bottom: -6px;
        right: 50%;
        transform: translateX(50%);
        border-width: 6px 6px 0;
        border-style: solid;
        border-color: rgba(0, 0, 0, 0.8) transparent transparent;
    }
/* Media Footer */
.media-footer {
    padding: 20px 25px;
    background: var(--background-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.tech-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tech-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

    .tech-tag:hover {
        background: var(--accent-color);
        color: white;
        transform: translateY(-2px);
    }

    .tech-tag i {
        font-size: 0.95rem;
    }

.media-actions {
    display: flex;
    gap: 8px;
}

.action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    background: var(--surface-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--default-color);
}

    .action-btn:hover {
        background: var(--accent-color);
        color: white;
        border-color: var(--accent-color);
        transform: rotate(15deg);
    }

    .action-btn i {
        font-size: 1rem;
    }
/* Tech Stats */
.tech-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: auto;
}

.tech-stat-card {
    background: var(--surface-color);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.3s ease;
}

    .tech-stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
    }

.stat-graph {
    position: relative;
    width: 70px;
    height: 70px;
}

.circular-progress {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), transparent 90%) 0%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .circular-progress::before {
        content: '';
        position: absolute;
        width: 84%;
        height: 84%;
        background: var(--surface-color);
        border-radius: 50%;
    }

.progress-value {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-info {
    flex: 1;
}

    .stat-info h6 {
        font-size: 1rem;
        font-weight: 600;
        color: var(--heading-color);
        margin-bottom: 5px;
    }

    .stat-info p {
        font-size: 0.9rem;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        margin: 0;
    }
/* Advanced Content Card */
.advanced-content-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.content-header {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.project-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.meta-item {
    background: var(--surface-color);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

    .meta-item:hover {
        border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
        transform: translateY(-3px);
    }

.meta-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 95%));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .meta-icon i {
        font-size: 1.5rem;
        color: var(--accent-color);
    }

.meta-content {
    flex: 1;
}

.meta-label {
    display: block;
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 4px;
}

.meta-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading-color);
}

.specification-card {
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 98%) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.spec-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

    .spec-header i {
        font-size: 1.8rem;
        color: var(--accent-color);
    }

    .spec-header h5 {
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--heading-color);
        margin: 0;
    }

.spec-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: var(--surface-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

    .spec-item:hover {
        transform: translateX(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .spec-item i {
        color: #22c55e;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .spec-item span {
        font-size: 1rem;
        color: var(--default-color);
        font-weight: 500;
    }
/* Achievements Section */
.achievements-section {
    flex: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 35px;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.decoration-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.title-decoration i {
    font-size: 1.8rem;
    color: var(--golden-color, #f5d489);
    animation: trophySpin 4s infinite linear;
}

@keyframes trophySpin {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.section-title h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--heading-color);
    margin: 0;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.achievement-card {
    background: var(--surface-color);
    padding: 25px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.4s ease;
}

    .achievement-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
    }

    .achievement-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, color-mix(in srgb, var(--accent-color), transparent 0%), color-mix(in srgb, var(--accent-color), transparent 100%));
        opacity: 0.8;
    }

    .achievement-card:nth-child(odd)::before {
        background: linear-gradient(90deg, var(--accent-color), #4fd1c5);
    }

    .achievement-card:nth-child(even)::before {
        background: linear-gradient(90deg, #4fd1c5, var(--accent-color));
    }

.modern-stables-achievement-number {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 3rem;
    font-weight: 900;
    /*color: color-mix(in srgb, var(--accent-color), transparent 92%);*/
    color: var(--accent-color);
    line-height: 1;
    opacity: 0.3;
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.achievement-card:hover .achievement-icon {
    background: var(--accent-color);
    transform: scale(1.1) rotate(5deg);
}

.achievement-icon i {
    font-size: 1.8rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.achievement-card:hover .achievement-icon i {
    color: white;
}

.achievement-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

.achievement-content p {
    font-size: 0.95rem;
    color: var(--default-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

.achievement-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

    .achievement-features span {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 6px 12px;
        background: color-mix(in srgb, var(--accent-color), transparent 96%);
        border-radius: 15px;
        font-size: 0.85rem;
        color: var(--accent-color);
        font-weight: 500;
    }

        .achievement-features span i {
            font-size: 0.9rem;
        }
/* Project Summary */
.project-summary {
    background: var(--surface-color);
    padding: 25px;
    border-radius: 20px;
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.summary-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

    .summary-header i {
        font-size: 1.8rem;
        color: var(--accent-color);
    }

    .summary-header h5 {
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--heading-color);
        margin: 0;
    }

.summary-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

    .summary-item:last-child {
        border-bottom: none;
    }

.summary-label {
    font-size: 1rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-weight: 500;
}

.summary-value {
    font-size: 1rem;
    color: var(--heading-color);
    font-weight: 600;
}

.quality-stars {
    display: flex;
    align-items: center;
    gap: 3px;
}

    .quality-stars i {
        color: var(--golden-color, #f5d489);
        font-size: 1.1rem;
    }

.rating-text {
    margin-right: 8px;
    color: var(--heading-color);
    font-weight: 600;
}

.warranty-badge {
    display: inline-block;
    padding: 6px 15px;
    background: linear-gradient(135deg, #22c55e, #4ade80);
    color: white;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    animation: warrantyPulse 2s infinite;
}

@keyframes warrantyPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}
/* Responsive */
@media (max-width: 1200px) {
    .project-meta {
        grid-template-columns: repeat(3, 1fr);
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .modern-stables {
        padding: 60px 0;
    }

    .section-header h3 {
        font-size: 2.2rem;
    }

    .video-wrapper {
        height: 300px;
    }

    .tech-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .project-meta {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .section-header h3 {
        font-size: 1.9rem;
    }

    .video-wrapper {
        height: 250px;
    }

    .video-play-btn {
        padding: 12px 25px;
    }

    .play-icon {
        width: 40px;
        height: 40px;
    }

        .play-icon i {
            font-size: 40px;
        }

    .media-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .tech-tags {
        justify-content: center;
    }

    .media-actions {
        justify-content: center;
    }

    .tech-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-meta {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .section-header h3 {
        font-size: 1.7rem;
    }

    .video-wrapper {
        height: 200px;
    }

    .tech-stats {
        grid-template-columns: 1fr;
    }

    .project-meta {
        grid-template-columns: 1fr;
    }

    .achievement-features {
        flex-direction: column;
        align-items: flex-start;
    }

    .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}
/* Horizontal Specification Card */
.specification-card.horizontal {
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 98%) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

    .specification-card.horizontal .spec-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 25px;
        text-align: right;
    }

        .specification-card.horizontal .spec-header i {
            font-size: 2rem;
            color: var(--accent-color);
            background: white;
            width: 60px;
            height: 60px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .specification-card.horizontal .spec-header h5 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--heading-color);
            margin: 0;
            flex: 1;
        }

.spec-content-horizontal {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    text-align: center;
}

.spec-item-horizontal {
    flex: 1;
    background: var(--surface-color);
    padding: 25px 15px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .spec-item-horizontal:hover {
        transform: translateY(-5px);
        border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

.spec-icon {
    width: 50px;
    height: 50px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .spec-icon i {
        font-size: 1.5rem;
        color: var(--accent-color);
    }

.spec-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading-color);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .spec-content-horizontal {
        flex-direction: column;
        gap: 15px;
    }

    .spec-item-horizontal {
        flex-direction: row;
        justify-content: flex-start;
        text-align: right;
        padding: 20px;
        gap: 20px;
    }

    .spec-text {
        text-align: right;
    }
}
/* Four Column Achievements Grid */
.achievements-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.achievement-card-col {
    background: var(--surface-color);
    padding: 30px 25px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

    .achievement-card-col:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
    }

    .achievement-card-col:nth-child(1)::before {
        background: linear-gradient(135deg, var(--accent-color), #4fd1c5);
    }

    .achievement-card-col:nth-child(2)::before {
        background: linear-gradient(135deg, #4fd1c5, #22c55e);
    }

    .achievement-card-col:nth-child(3)::before {
        background: linear-gradient(135deg, #22c55e, #f59e0b);
    }

    .achievement-card-col:nth-child(4)::before {
        background: linear-gradient(135deg, #f59e0b, var(--accent-color));
    }

    .achievement-card-col::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 5px;
        opacity: 0.8;
        z-index: 1;
    }

.achievement-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3.5rem;
    font-weight: 900;
    color: color-mix(in srgb, var(--accent-color), transparent 94%);
    line-height: 1;
    opacity: 0.2;
    z-index: 0;
}

.achievement-card-col .achievement-icon {
    width: 80px;
    height: 80px;
    background: var(--surface-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 90%);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.achievement-card-col:hover .achievement-icon {
    background: var(--accent-color);
    transform: scale(1.1) rotate(5deg);
    border-color: transparent;
}

.achievement-card-col .achievement-icon i {
    font-size: 2.2rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.achievement-card-col:hover .achievement-icon i {
    color: white;
}

.achievement-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
}

    .achievement-content h5 {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--heading-color);
        margin-bottom: 15px;
        line-height: 1.4;
        min-height: 3.5em;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .achievement-content p {
        font-size: 1rem;
        color: var(--default-color);
        line-height: 1.6;
        margin-bottom: 20px;
        flex: 1;
    }

.achievement-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

    .achievement-features span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 15px;
        background: color-mix(in srgb, var(--accent-color), transparent 96%);
        border-radius: 12px;
        font-size: 0.9rem;
        color: var(--accent-color);
        font-weight: 500;
        justify-content: center;
        transition: all 0.3s ease;
    }

        .achievement-features span:hover {
            background: var(--accent-color);
            color: white;
            transform: translateX(-5px);
        }

        .achievement-features span i {
            font-size: 1rem;
        }
/* Responsive for 4-column grid */
@media (max-width: 1200px) {
    .achievements-grid-4col {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .achievement-content h5 {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .achievements-grid-4col {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .achievement-card-col {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .achievement-card-col {
        padding: 25px 20px;
    }

        .achievement-card-col .achievement-icon {
            width: 70px;
            height: 70px;
        }

            .achievement-card-col .achievement-icon i {
                font-size: 2rem;
            }

    .achievement-content h5 {
        font-size: 1.2rem;
    }

    .achievement-features span {
        justify-content: flex-start;
    }
}
/*#endregion Modern Stables Section*/

/*#region Metal Facades Project - محفظة الواجهات المعدنية */
.metal-facades {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--background-color), transparent 30%) 50%, var(--surface-color) 100%);
    position: relative;
    overflow: hidden;
    direction: rtl;
}

    .metal-facades::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 30% 20%, color-mix(in srgb, #4a5568, transparent 95%) 0%, transparent 50%), radial-gradient(circle at 70% 80%, color-mix(in srgb, #2d3748, transparent 95%) 0%, transparent 50%);
        pointer-events: none;
        z-index: 0;
    }

    .metal-facades .container {
        position: relative;
        z-index: 1;
    }
    /* Header Styles */
    .metal-facades .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

.project-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4a5568, #2d3748);
    padding: 10px 25px;
    border-radius: 25px;
    margin-bottom: 20px;
    margin-left: 20px;
    box-shadow: 0 5px 20px rgba(74, 85, 104, 0.2);
}

.tag-icon {
    color: white;
    font-size: 1.2rem;
    animation: gearRotate 3s infinite linear;
}

@keyframes gearRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.tag-text {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.metal-facades .section-header h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--heading-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

    .metal-facades .section-header h3::after {
        content: '';
        position: absolute;
        bottom: -10px;
        /*right: 0;*/
        width: 200px;
        height: 4px;
        /*background: linear-gradient(90deg, #4a5568, #2d3748);*/
        /*border-radius: 2px;*/
    }

.metal-facades .section-header p {
    font-size: 1.3rem;
    color: #4a5568;
    margin-top: 25px;
    font-weight: 500;
    line-height: 1.6;
}
/* Content Column (Left Side) */
.facade-content-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 35px;
}
/* Project Overview Card */
.project-overview {
    /*background: linear-gradient(135deg, #f7fafc, #e2e8f0);*/
    padding: 30px;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

    .project-overview::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 80px;
        height: 80px;
        background: #4a5568;
        border-radius: 0 20px 0 80px;
        opacity: 0.1;
    }

.overview-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

    .overview-badge i {
        font-size: 2rem;
        color: #4a5568;
        background: white;
        width: 60px;
        height: 60px;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

.badge-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4a5568;
    background: white;
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.overview-content h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.overview-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}
/* Specifications Card Horizontal */
.specs-card-horizontal {
    background: var(--surface-color);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.specs-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
}

.header-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4a5568, #2d3748);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .header-icon i {
        font-size: 2rem;
        color: white;
    }

.header-content {
    flex: 1;
}

    .header-content h5 {
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--heading-color);
        margin-bottom: 8px;
    }

.specs-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 500;
    margin: 0;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.spec-item-box {
    /*background: #f7fafc;*/
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

    .spec-item-box:hover {
        background: white;
        border-color: #4a5568;
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(74, 85, 104, 0.15);
    }

.spec-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

    .spec-icon i {
        font-size: 1.8rem;
        color: #4a5568;
        transition: all 0.3s ease;
    }

.spec-item-box:hover .spec-icon {
    background: #4a5568;
    border-color: #4a5568;
}

    .spec-item-box:hover .spec-icon i {
        color: white;
    }

.spec-content h6 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.spec-content span {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 500;
}
/* Features Highlight Section */
.features-highlight {
    flex: 1;
}

.highlight-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

    .highlight-title i {
        font-size: 2rem;
        color: #d69e2e;
        background: #fefcbf;
        width: 60px;
        height: 60px;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .highlight-title h5 {
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--heading-color);
        margin: 0;
    }

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item-highlight {
    background: var(--surface-color);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .feature-item-highlight:hover {
        border-color: #4a5568;
        transform: translateX(-5px);
        box-shadow: var(--box-shadow);
    }

    .feature-item-highlight:nth-child(1) {
        border-right: 4px solid #4a5568;
    }

    .feature-item-highlight:nth-child(2) {
        border-right: 4px solid #d69e2e;
    }

    .feature-item-highlight:nth-child(3) {
        border-right: 4px solid #38a169;
    }

    .feature-item-highlight:nth-child(4) {
        border-right: 4px solid #805ad5;
    }

.feature-number {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 3.5rem;
    font-weight: 900;
    color: #e2e8f0;
    line-height: 1;
    opacity: 0.3;
    z-index: 0;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #f7fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

    .feature-icon i {
        font-size: 1.5rem;
        color: #4a5568;
    }

.feature-item-highlight:nth-child(1) .feature-icon i {
    color: #4a5568;
}

.feature-item-highlight:nth-child(2) .feature-icon i {
    color: #d69e2e;
}

.feature-item-highlight:nth-child(3) .feature-icon i {
    color: #38a169;
}

.feature-item-highlight:nth-child(4) .feature-icon i {
    color: #805ad5;
}

.feature-content {
    position: relative;
    z-index: 1;
}

    .feature-content h6 {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--heading-color);
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .feature-content p {
        font-size: 1rem;
        color: var(--default-color);
        line-height: 1.6;
        margin-bottom: 15px;
    }

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

    .feature-tags span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 15px;
        background: #f7fafc;
        border-radius: 15px;
        font-size: 0.9rem;
        color: #4a5568;
        font-weight: 500;
        transition: all 0.3s ease;
    }

        .feature-tags span:hover {
            background: #4a5568;
            color: white;
        }

        .feature-tags span i {
            font-size: 0.9rem;
        }
/* Project Stats Summary */
.project-stats-summary {
    margin-top: auto;
}

.stats-card {
    background: linear-gradient(135deg, #2d3748, #1a202c);
    padding: 25px;
    border-radius: 15px;
    color: white;
}

.stats-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

    .stats-header i {
        font-size: 1.8rem;
        color: #d69e2e;
    }

    .stats-header h6 {
        font-size: 1.3rem;
        font-weight: 600;
        margin: 0;
        color: white;
    }

.stats-content {
    padding: 10px 0;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.stat-item-compact {
    text-align: center;
}

.stat-value-metal-facades {
    font-size: 1.5rem;
    font-weight: 700;
    /*color: #d69e2e;*/
    color: #d69e2e;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: white !important;
    font-weight: 500;
}
/* Media Column (Right Side) */
.facade-media-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 35px;
}
/* Media Presentation */
.media-presentation {
    background: var(--surface-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.presentation-header {
    padding: 25px 30px;
    /*background: #f7fafc;*/
    border-bottom: 2px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.presentation-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .presentation-title i {
        font-size: 1.8rem;
        color: #4a5568;
    }

    .presentation-title h5 {
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--heading-color);
        margin: 0;
    }

.presentation-actions {
    display: flex;
    gap: 10px;
}

.presentation-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #4a5568;
}

    .presentation-btn:hover {
        background: #4a5568;
        border-color: #4a5568;
        color: white;
        transform: rotate(15deg);
    }

    .presentation-btn i {
        font-size: 1.2rem;
    }
/* Video Section */
.presentation-video {
    padding: 30px;
}

.video-immersive {
    position: relative;
    width: 100%;
    height: 350px;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
}

    .video-immersive video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .video-immersive:hover video {
        transform: scale(1.03);
    }

.video-overlay-immersive {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(45, 55, 72, 0.7) 0%, rgba(26, 32, 44, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 1;
}

.video-immersive.playing .video-overlay-immersive {
    opacity: 0;
    pointer-events: none;
}

.immersive-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.immersive-play {
    background: linear-gradient(135deg, #d69e2e, #b7791f);
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(214, 158, 46, 0.3);
}

    .immersive-play:hover {
        transform: scale(1.1);
        box-shadow: 0 15px 40px rgba(214, 158, 46, 0.4);
    }

    .immersive-play i {
        font-size: 2.5rem;
        color: white;
    }

    .immersive-play span {
        font-size: 1.3rem;
        font-weight: 600;
        color: white;
    }

.immersive-info {
    display: flex;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
    font-size: 1rem;
}

    .info-item i {
        font-size: 1.2rem;
        color: #d69e2e;
    }
/* Video Timeline */
.video-timeline {
    height: 40px;
    /*background: #f7fafc;*/
    border-radius: 10px;
    margin-top: 20px;
    position: relative;
}

.timeline-marker {
    position: absolute;
    top: 0;
    cursor: pointer;
}

.marker-dot {
    width: 20px;
    height: 20px;
    background: #4a5568;
    border-radius: 50%;
    margin: 10px auto;
    position: relative;
    transition: all 0.3s ease;
}

    .marker-dot::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 50%;
        transform: translate(50%, -50%);
        width: 8px;
        height: 8px;
        background: white;
        border-radius: 50%;
    }

.timeline-marker:hover .marker-dot {
    transform: scale(1.5);
    background: #d69e2e;
}

.marker-label {
    position: absolute;
    top: -30px;
    right: 50%;
    transform: translateX(50%);
    background: #2d3748;
    color: white;
    padding: 5px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.timeline-marker:hover .marker-label {
    opacity: 1;
    top: -35px;
}
/* Presentation Details */
.presentation-details {
    padding: 25px 30px;
    /*background: #f7fafc;*/
    border-top: 2px solid #e2e8f0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.detail-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .detail-title i {
        font-size: 1.3rem;
        color: #4a5568;
    }

    .detail-title span {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--heading-color);
    }

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-label {
    font-size: 0.95rem;
    color: #4a5568;
    font-weight: 500;
}

.detail-value {
    font-size: 0.95rem;
    color: var(--heading-color);
    font-weight: 600;
}

.tech-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /*background: white;*/
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 0.9rem;
    /*color: #4a5568;*/
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

    .tech-badge:hover {
        background: #4a5568;
        color: white;
        border-color: #4a5568;
        transform: translateX(-5px);
    }

    .tech-badge i {
        font-size: 1rem;
    }
/* Location Highlight */
.location-highlight {
    background: var(--surface-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 2px solid #e2e8f0;
}

.location-header {
    padding: 25px 30px;
    background: linear-gradient(135deg, #d69e2e, #b7791f);
    display: flex;
    align-items: center;
    gap: 15px;
}

    .location-header i {
        font-size: 1.8rem;
        color: white;
    }

    .location-header h6 {
        font-size: 1.3rem;
        font-weight: 600;
        color: white;
        margin: 0;
    }

.location-content {
    padding: 25px 30px;
}

.location-map {
    /*background: #f7fafc;*/
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 2px dashed #cbd5e1;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

    .map-placeholder i {
        font-size: 4rem;
        color: #4a5568;
        opacity: 0.5;
    }

    .map-placeholder span {
        font-size: 1.2rem;
        font-weight: 600;
        color: #4a5568;
    }

.location-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.location-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    /*background: white;*/
    border-radius: 15px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

    .location-stat:hover {
        border-color: #d69e2e;
        transform: translateY(-5px);
    }

.stat-icon {
    width: 50px;
    height: 50px;
    background: #fefcbf;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .stat-icon i {
        font-size: 1.5rem;
        color: #d69e2e;
    }

.stat-details {
    flex: 1;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: white !important;
    margin-bottom: 3px;
}

.stat-desc {
    font-size: 0.9rem;
    color: #4a5568;
}
/* Responsive Design */
@media (max-width: 1200px) {
    .specs-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stat-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .presentation-details {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .metal-facades {
        padding: 60px 0;
    }

        .metal-facades .section-header h3 {
            font-size: 2rem;
        }

    .video-immersive {
        height: 300px;
    }

    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .metal-facades .section-header h3 {
        font-size: 1.8rem;
    }

    .video-immersive {
        height: 250px;
    }

    .immersive-play {
        padding: 15px 30px;
    }

        .immersive-play i {
            font-size: 2rem;
        }

        .immersive-play span {
            font-size: 1.1rem;
        }

    .specs-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .location-stats {
        grid-template-columns: 1fr;
    }

    .feature-tags {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .metal-facades .section-header h3 {
        font-size: 1.6rem;
    }

    .video-immersive {
        height: 200px;
    }

    .project-overview {
        padding: 20px;
    }

    .overview-content h4 {
        font-size: 1.5rem;
    }

    .highlight-title h5 {
        font-size: 1.3rem;
    }

    .feature-item-highlight {
        padding: 20px;
    }

    .presentation-details {
        padding: 20px;
    }

    .location-content {
        padding: 20px;
    }
}
/*#endregion Metal Facades Project */

/*#region Horse Equipment Section - معدات خيول لتجهيز الإسطبلات */
.horse-equipment {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 92%) 50%, var(--surface-color) 100%);
    position: relative;
    overflow: hidden;
    direction: rtl;
}

    .horse-equipment::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 20% 30%, color-mix(in srgb, #f5d489, transparent 90%) 0%, transparent 50%), radial-gradient(circle at 80% 70%, color-mix(in srgb, var(--accent-color), transparent 88%) 0%, transparent 50%);
        pointer-events: none;
        z-index: 0;
    }

    .horse-equipment .container {
        position: relative;
        z-index: 1;
    }
    /* Section Header */
    .horse-equipment .section-header {
        text-align: center;
        margin-bottom: 60px;
        position: relative;
    }

.equipment-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f5d489, #e6c279);
    padding: 10px 25px;
    border-radius: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(245, 212, 137, 0.3);
    animation: badgeFloat 3s infinite ease-in-out;
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.equipment-badge i {
    color: #8b5a2b;
    font-size: 1.3rem;
    animation: horseIcon 2s infinite ease-in-out;
}

@keyframes horseIcon {
    0%, 100% {
        transform: rotate(0) scale(1);
    }

    25% {
        transform: rotate(-5deg) scale(1.05);
    }

    75% {
        transform: rotate(5deg) scale(1.05);
    }
}

.equipment-badge span {
    color: #8b5a2b;
    font-weight: 700;
    font-size: 1rem;
}

.horse-equipment .section-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--heading-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--heading-color) 0%, #8b5a2b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

    .horse-equipment .section-header h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        right: 50%;
        transform: translateX(50%);
        width: 150px;
        height: 4px;
        background: linear-gradient(90deg, #f5d489, var(--accent-color));
        border-radius: 2px;
    }

.section-subtitle {
    font-size: 1.3rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-top: 25px;
    font-weight: 500;
    line-height: 1.6;
}
/* Equipment Gallery */
.equipment-gallery {
    background: var(--surface-color);
    border-radius: 25px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.3s ease;
}

    .equipment-gallery:hover {
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

    .gallery-item:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
        z-index: 2;
    }

.gallery-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

    .gallery-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

.gallery-item:hover .gallery-image img {
    transform: scale(1.15);
}

.image-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 1;
    transition: all 0.3s ease;
}

.gallery-item:hover .image-overlay {
    background: linear-gradient(to bottom, rgba(245, 212, 137, 0.1) 0%, rgba(245, 212, 137, 0.9) 100%);
}

.overlay-content {
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.item-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    margin-bottom: 10px;
    position: absolute;
    top: 20px;
    left: 20px;
    transition: all 0.3s ease;
}

.gallery-item:hover .item-number {
    color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.item-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.gallery-item:hover .item-title {
    color: #8b5a2b;
    text-shadow: none;
}

.view-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-color);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .view-btn:hover {
        background: var(--accent-color);
        color: white;
        transform: translateX(-8px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        border-color: white;
    }

    .view-btn i {
        font-size: 1.2rem;
        transition: transform 0.3s ease;
    }

    .view-btn:hover i {
        transform: scale(1.2);
    }
/* Gallery Navigation */
.gallery-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.gallery-counter {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: var(--default-color);
    font-weight: 500;
}

.counter-current {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.4rem;
}

.counter-total {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.gallery-arrows {
    display: flex;
    gap: 15px;
}

.gallery-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 60%);
    background: var(--surface-color);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .gallery-arrow::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: var(--accent-color);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1;
    }

    .gallery-arrow i {
        position: relative;
        z-index: 2;
        font-size: 1.5rem;
        transition: color 0.3s ease;
    }

    .gallery-arrow:hover::before {
        transform: translateX(0);
    }

    .gallery-arrow:hover i {
        color: white;
    }

    .gallery-arrow:hover {
        border-color: var(--accent-color);
        transform: scale(1.1);
    }
/* Equipment Content */
.equipment-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.content-intro {
    background: linear-gradient(135deg, #f5d489, #e6c279);
    padding: 35px;
    border-radius: 25px;
    color: #8b5a2b;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(245, 212, 137, 0.2);
}

    .content-intro::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100px;
        height: 100px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 0 25px 0 100px;
    }

.intro-icon {
    font-size: 3.5rem;
    color: #8b5a2b;
    margin-bottom: 20px;
    opacity: 0.9;
    animation: starPulse 2s infinite ease-in-out;
}

@keyframes starPulse {
    0%, 100% {
        transform: scale(1) rotate(0);
    }

    50% {
        transform: scale(1.1) rotate(10deg);
    }
}

.content-intro h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #8b5a2b;
    position: relative;
    display: inline-block;
}

    .content-intro h3::after {
        content: '';
        position: absolute;
        bottom: -8px;
        right: 50%;
        transform: translateX(50%);
        width: 100px;
        height: 3px;
        background: rgba(139, 90, 43, 0.3);
        border-radius: 2px;
    }

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
    margin: 20px 0 0 0;
    font-weight: 500;
}
/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.feature-card {
    background: var(--surface-color);
    padding: 25px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #f5d489, var(--accent-color));
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .feature-card:hover {
        border-color: color-mix(in srgb, var(--accent-color), transparent 30%);
        transform: translateX(-10px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

        .feature-card:hover::before {
            opacity: 1;
        }

    .feature-card.active {
        border-color: var(--accent-color);
        background: color-mix(in srgb, var(--accent-color), transparent 98%);
        transform: translateX(-10px);
    }

        .feature-card.active::before {
            opacity: 1;
        }

.feature-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.feature-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #f5d489, var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(245, 212, 137, 0.4);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--accent-color);
    transform: rotate(10deg) scale(1.1);
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: white;
}

.feature-header h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--heading-color);
    margin: 0;
    flex: 1;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-header h4 {
    color: var(--accent-color);
}

.feature-description {
    font-size: 1.05rem;
    color: var(--default-color);
    line-height: 1.7;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-description {
    color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.feature-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .feature-benefits span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        background: color-mix(in srgb, var(--accent-color), transparent 95%);
        border-radius: 20px;
        font-size: 0.9rem;
        color: var(--accent-color);
        font-weight: 600;
        transition: all 0.3s ease;
    }

        .feature-benefits span:hover {
            background: var(--accent-color);
            color: white;
            transform: translateY(-3px);
        }

        .feature-benefits span i {
            font-size: 1rem;
        }
/* Equipment CTA */
.equipment-cta {
    background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), transparent 5%));
    padding: 30px;
    border-radius: 25px;
    border: 3px solid color-mix(in srgb, #f5d489, transparent 30%);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

    .equipment-cta::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 80px;
        height: 80px;
        background: color-mix(in srgb, #f5d489, transparent 90%);
        border-radius: 0 25px 0 100px;
    }

.cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

    .cta-content i {
        font-size: 2.5rem;
        color: #f5d489;
        flex-shrink: 0;
        animation: infoSpin 4s infinite linear;
    }

@keyframes infoSpin {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.cta-content p {
    font-size: 1.15rem;
    color: var(--default-color);
    margin: 0;
    line-height: 1.7;
    text-align: right;
    font-weight: 500;
}

.cta-button {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

    .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #128C7E, #25D366);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: -1;
    }

    .cta-button:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    }

        .cta-button:hover::before {
            opacity: 1;
        }

    .cta-button i {
        font-size: 1.5rem;
        transition: transform 0.3s ease;
    }

    .cta-button:hover i {
        transform: scale(1.2);
    }
/* Fullscreen Lightbox */
.equipment-lightbox {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    direction: rtl;
}

    .equipment-lightbox.active {
        display: flex;
        opacity: 1;
        align-items: center;
        justify-content: center;
    }

.lightbox-backdrop {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.lightbox-container {
    position: relative;
    width: 95%;
    max-width: 1400px;
    height: 90vh;
    display: flex;
    flex-direction: column;
    background: rgba(20, 20, 20, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 25px;
    left: 25px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    color: white;
    font-size: 1.8rem;
    backdrop-filter: blur(10px);
}

    .lightbox-close:hover {
        background: var(--accent-color);
        transform: rotate(90deg) scale(1.1);
    }

.lightbox-slider {
    flex: 1;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
}

.lightbox-slide {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

    .lightbox-slide.active {
        opacity: 1;
        z-index: 10;
    }

    .lightbox-slide img {
        max-width: 85%;
        max-height: 60%;
        object-fit: contain;
        border-radius: 10px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        animation: slideFadeIn 0.5s ease;
        margin: 0 auto 30px auto;
        display: block;
    }

@keyframes slideFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-info {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 35px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    backdrop-filter: blur(10px);
    border-radius: 15px;
    max-width: 800px;
    width: 85%;
    margin: 0 auto;
}

.info-number {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    margin-bottom: -20px;
}

.info-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    width: 100%;
}

    .info-content h4 {
        font-size: 2rem;
        font-weight: 700;
        color: white;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        margin: 0;
    }

    .info-content p {
        font-size: 1.2rem;
        opacity: 0.9;
        margin: 0;
        line-height: 1.6;
        color: #f5d489;
        max-width: 600px;
    }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    color: white;
    font-size: 2.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

    .lightbox-nav.prev {
        right: 30px;
    }

    .lightbox-nav.next {
        left: 30px;
    }

    .lightbox-nav:hover {
        background: var(--accent-color);
        transform: translateY(-50%) scale(1.15);
        border-color: var(--accent-color);
    }

.lightbox-counter {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 100;
}

.current {
    color: #f5d489;
    font-size: 1.6rem;
}

.separator {
    opacity: 0.5;
}

.total {
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .lightbox-slide img {
        max-width: 90%;
        max-height: 55%;
    }
}

@media (max-width: 1200px) {
    .lightbox-container {
        height: 85vh;
    }

    .lightbox-slide img {
        max-width: 95%;
        max-height: 50%;
    }
}

@media (max-width: 992px) {
    .lightbox-slide {
        padding: 30px;
    }

        .lightbox-slide img {
            max-width: 100%;
            max-height: 45%;
            margin-bottom: 25px;
        }

    .lightbox-info {
        padding: 25px 30px;
        width: 90%;
    }

    .info-number {
        font-size: 4rem;
    }

    .info-content h4 {
        font-size: 1.8rem;
    }

    .info-content p {
        font-size: 1.1rem;
    }

    .lightbox-nav {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .lightbox-container {
        height: 90vh;
        width: 98%;
    }

    .lightbox-slide {
        padding: 20px;
    }

        .lightbox-slide img {
            max-height: 40%;
            margin-bottom: 20px;
        }

    .lightbox-info {
        padding: 20px;
        gap: 10px;
        width: 95%;
    }

    .info-number {
        font-size: 3rem;
        margin-bottom: -10px;
    }

    .info-content h4 {
        font-size: 1.5rem;
    }

    .info-content p {
        font-size: 1rem;
    }

    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

        .lightbox-nav.prev {
            right: 15px;
        }

        .lightbox-nav.next {
            left: 15px;
        }

    .lightbox-counter {
        bottom: 30px;
        padding: 10px 20px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .lightbox-container {
        height: 95vh;
        border-radius: 15px;
    }

    .lightbox-slide img {
        max-height: 35%;
        margin-bottom: 15px;
    }

    .lightbox-info {
        padding: 15px;
        gap: 8px;
    }

    .info-number {
        font-size: 2.5rem;
        margin-bottom: -5px;
    }

    .info-content h4 {
        font-size: 1.3rem;
    }

    .info-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

        .lightbox-nav.prev {
            right: 10px;
        }

        .lightbox-nav.next {
            left: 10px;
        }

    .lightbox-counter {
        bottom: 20px;
        padding: 8px 15px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .lightbox-slide img {
        max-height: 40%;
    }

    .lightbox-info {
        padding: 15px;
    }

    .info-number {
        font-size: 2.5rem;
    }

    .info-content h4 {
        font-size: 1.3rem;
    }

    .info-content p {
        font-size: 0.9rem;
    }
}
/* Responsive Design */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-image {
        height: 280px;
    }

    .lightbox-container {
        width: 98%;
        height: 85vh;
    }
}

@media (max-width: 992px) {
    .horse-equipment {
        padding: 80px 0;
    }

        .horse-equipment .section-header h2 {
            font-size: 2.4rem;
        }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-image {
        height: 240px;
    }

    .content-intro h3 {
        font-size: 1.8rem;
    }

    .lightbox-nav {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .lightbox-info {
        padding: 25px 30px;
    }

    .info-content h4 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .horse-equipment .section-header h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-image {
        height: 280px;
    }

    .gallery-nav {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .gallery-arrows {
        justify-content: space-between;
    }

    .content-intro {
        padding: 25px;
    }

    .intro-text {
        font-size: 1.1rem;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-header {
        gap: 15px;
    }

        .feature-header h4 {
            font-size: 1.2rem;
        }

    .lightbox-container {
        height: 80vh;
        border-radius: 15px;
    }

    .lightbox-slide {
        padding: 20px;
    }

    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }

        .lightbox-nav.prev {
            right: 15px;
        }

        .lightbox-nav.next {
            left: 15px;
        }

    .lightbox-close {
        top: 15px;
        left: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .lightbox-info {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .info-number {
        font-size: 3.5rem;
    }

    .info-content h4 {
        font-size: 1.4rem;
    }

    .info-content p {
        font-size: 1rem;
    }

    .lightbox-counter {
        bottom: 100px;
        padding: 10px 20px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .horse-equipment .section-header h2 {
        font-size: 1.8rem;
    }

    .equipment-gallery {
        padding: 20px;
    }

    .gallery-image {
        height: 220px;
    }

    .item-title {
        font-size: 1.3rem;
    }

    .view-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .feature-benefits {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-button {
        padding: 15px 25px;
        font-size: 1.1rem;
    }

    .lightbox-slide {
        padding: 15px;
    }
}
/*#endregion Horse Equipment Section */

/*#region Our Work 2 Section*/
.our-work-2 {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    direction: rtl;
}
    /* Header */
    .our-work-2 .work-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .our-work-2 .section-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(45, 134, 137, 0.1);
        color: var(--accent-color);
        padding: 8px 20px;
        border-radius: 50px;
        font-weight: 600;
        margin-bottom: 20px;
    }

        .our-work-2 .section-badge i {
            font-size: 1.1rem;
        }

    .our-work-2 .section-title {
        font-size: 2.2rem;
        color: var(--heading-color);
        margin-bottom: 15px;
    }

    .our-work-2 .section-desc {
        color: #666;
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }
    /* Work Cards Grid */
    .our-work-2 .row {
        margin: -15px;
    }

    .our-work-2 .col-sm-12,
    .our-work-2 .col-md-6 {
        padding: 15px;
    }
    /* Card */
    .our-work-2 .work-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        border: 1px solid #eee;
    }

        .our-work-2 .work-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            border-color: var(--accent-color);
        }

    .our-work-2 .card-image {
        height: 220px;
        position: relative;
        overflow: hidden;
    }

        .our-work-2 .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

    .our-work-2 .work-card:hover .card-image img {
        transform: scale(1.05);
    }

    .our-work-2 .card-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: white;
        padding: 6px 15px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.85rem;
        display: flex;
        align-items: center;
        gap: 6px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        z-index: 2;
    }

        .our-work-2 .card-badge i {
            color: var(--accent-color);
        }

    .our-work-2 .card-content {
        padding: 25px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .our-work-2 .card-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }

    .our-work-2 .card-number {
        font-size: 2.5rem;
        font-weight: 800;
        color: #e9ecef;
        line-height: 1;
    }

    .our-work-2 .card-title h3 {
        font-size: 1.3rem;
        color: var(--heading-color);
        margin-bottom: 5px;
        line-height: 1.4;
    }

    .our-work-2 .card-title p {
        color: var(--accent-color);
        font-size: 0.9rem;
        font-weight: 500;
    }

    .our-work-2 .card-desc {
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
        font-size: 0.95rem;
        flex: 1;
    }

    .our-work-2 .card-features {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 20px;
    }

        .our-work-2 .card-features span {
            display: flex;
            align-items: center;
            gap: 5px;
            background: #f8f9fa;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #555;
        }

        .our-work-2 .card-features i {
            color: var(--accent-color);
            font-size: 0.9rem;
        }

    .our-work-2 .card-btn {
        width: 100%;
        padding: 12px;
        background: transparent;
        border: 2px solid var(--accent-color);
        border-radius: 8px;
        color: var(--accent-color);
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        cursor: pointer;
        transition: all 0.3s;
        margin-top: auto;
    }

        .our-work-2 .card-btn:hover {
            background: var(--accent-color);
            color: white;
            transform: translateX(-5px);
        }

        .our-work-2 .card-btn i {
            transition: transform 0.3s;
        }

        .our-work-2 .card-btn:hover i {
            transform: translateX(-5px);
        }
/* Modal */
.our-work-2-work-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    direction: rtl;
}

    .our-work-2-work-modal.active {
        display: flex;
    }

    .our-work-2-work-modal .modal-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(5px);
    }

    .our-work-2-work-modal .modal-box {
        position: relative;
        background: white;
        border-radius: 20px;
        max-width: 1000px;
        width: 100%;
        max-height: 90vh;
        overflow-y: auto;
        z-index: 2;
        animation: modalSlideIn 0.3s ease;
    }

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.our-work-2-work-modal .modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
    background: white;
    border: none;
    border-radius: 50%;
    color: #333;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

    .our-work-2-work-modal .modal-close:hover {
        background: var(--accent-color);
        color: white;
        transform: rotate(90deg);
    }

.our-work-2-work-modal .modal-content {
    padding: 30px;
}
/* Modal Header */
.our-work-2-work-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.our-work-2-work-modal .modal-title h3 {
    font-size: 1.8rem;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.our-work-2-work-modal .modal-subtitle {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 500;
}

.our-work-2-work-modal .modal-counter {
    font-size: 1.2rem;
    font-weight: 600;
    color: #555;
    display: flex;
    align-items: center;
    gap: 5px;
}

.our-work-2-work-modal .current-index {
    color: var(--accent-color);
}
/* Main Media Container */
.our-work-2-work-modal .main-media-container {
    position: relative;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
    min-height: 400px;
}

.our-work-2-work-modal .main-media-wrapper {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-work-2-work-modal .main-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .our-work-2-work-modal .main-image.loaded {
        opacity: 1;
    }

.our-work-2-work-modal .video-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-work-2-work-modal .main-video {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: contain;
    background: #000;
}
/* Navigation Buttons */
.our-work-2-work-modal .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    color: var(--accent-color);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

    .our-work-2-work-modal .nav-btn:hover {
        background: var(--accent-color);
        color: white;
        transform: translateY(-50%) scale(1.1);
    }

.our-work-2-work-modal .prev-btn {
    right: 20px;
}

.our-work-2-work-modal .next-btn {
    left: 20px;
}
/* Media Indicator */
.our-work-2-work-modal .media-indicator {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    flex-wrap: wrap;
}

.our-work-2-work-modal .images-count,
.our-work-2-work-modal .videos-count {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #555;
}

    .our-work-2-work-modal .images-count i {
        color: #4CAF50;
    }

    .our-work-2-work-modal .videos-count i {
        color: #FF5722;
    }
/* Thumbnails Grid */
.our-work-2-work-modal .thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.our-work-2-work-modal .thumbnail-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
}

    .our-work-2-work-modal .thumbnail-item:hover {
        border-color: rgba(45, 134, 137, 0.3);
        transform: translateY(-3px);
    }

    .our-work-2-work-modal .thumbnail-item.active {
        border-color: var(--accent-color);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

.our-work-2-work-modal .thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.our-work-2-work-modal .thumbnail-item:hover .thumbnail-img {
    transform: scale(1.1);
}
/* Video Thumbnail */
.our-work-2-work-modal .video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
}

.our-work-2-work-modal .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1rem;
    z-index: 2;
}
/* Type Badge */
.our-work-2-work-modal .type-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    z-index: 2;
}
/* Project Details */
.our-work-2-work-modal .project-details {
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

    .our-work-2-work-modal .project-details h4 {
        font-size: 1.4rem;
        color: var(--heading-color);
        margin-bottom: 15px;
    }

    .our-work-2-work-modal .project-details p {
        color: #666;
        line-height: 1.7;
        margin-bottom: 25px;
        font-size: 1.05rem;
    }

.our-work-2-work-modal .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.our-work-2-work-modal .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #555;
    font-size: 0.95rem;
}

    .our-work-2-work-modal .feature-item i {
        color: var(--accent-color);
        font-size: 1.1rem;
    }

.our-work-2-work-modal .contact-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

    .our-work-2-work-modal .contact-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    }
/* Responsive Design */
@media (max-width: 1200px) {
    .our-work-2-work-modal .thumbnails-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .our-work-2-work-modal .thumbnails-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .our-work-2-work-modal .features-grid {
        grid-template-columns: 1fr;
    }

    .our-work-2-work-modal .main-media-wrapper {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .our-work-2 {
        padding: 60px 0;
    }

        .our-work-2 .section-title {
            font-size: 1.8rem;
        }

        .our-work-2 .card-image {
            height: 180px;
        }

    .our-work-2-work-modal .modal-box {
        max-height: 95vh;
        max-width: 95%;
    }

    .our-work-2-work-modal .modal-content {
        padding: 20px;
    }

    .our-work-2-work-modal .main-media-wrapper {
        height: 300px;
    }

    .our-work-2-work-modal .modal-title h3 {
        font-size: 1.5rem;
    }

    .our-work-2-work-modal .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .our-work-2-work-modal .thumbnails-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .our-work-2 .section-title {
        font-size: 1.6rem;
    }

    .our-work-2 .section-desc {
        font-size: 1rem;
        padding: 0 15px;
    }

    .our-work-2 .col-sm-12 {
        padding: 10px;
    }

    .our-work-2 .work-card {
        border-radius: 15px;
    }

    .our-work-2 .card-content {
        padding: 20px;
    }

    .our-work-2 .card-number {
        font-size: 2rem;
    }

    .our-work-2 .card-title h3 {
        font-size: 1.2rem;
    }

    .our-work-2-work-modal {
        padding: 10px;
    }

        .our-work-2-work-modal .modal-box {
            border-radius: 15px;
        }

        .our-work-2-work-modal .main-media-wrapper {
            height: 250px;
        }

        .our-work-2-work-modal .media-indicator {
            flex-direction: column;
            gap: 10px;
        }

        .our-work-2-work-modal .modal-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }

        .our-work-2-work-modal .modal-counter {
            align-self: flex-end;
        }
}

@media (max-width: 480px) {
    .our-work-2 {
        padding: 40px 0;
    }

        .our-work-2 .card-image {
            height: 150px;
        }

        .our-work-2 .card-features {
            flex-direction: column;
            gap: 5px;
        }

    .our-work-2-work-modal .thumbnails-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .our-work-2-work-modal .main-media-wrapper {
        height: 200px;
    }
}
/*#endregion Our Work Section*/

/*#region Equestrian Services Section */

.equestrian-services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}
    /* Section Header */
    .equestrian-services .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .equestrian-services .header-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(135deg, #8B4513, #A0522D);
        color: white;
        padding: 10px 25px;
        border-radius: 50px;
        font-weight: 600;
        margin-bottom: 20px;
    }

        .equestrian-services .header-badge i {
            font-size: 1.2rem;
        }

    .equestrian-services h2 {
        font-size: 2.5rem;
        color: #2C3E50;
        margin-bottom: 15px;
    }

    .equestrian-services .section-subtitle {
        color: #666;
        font-size: 1.2rem;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.6;
    }
/* Main Services Grid */
.services-main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .services-main-grid {
        grid-template-columns: 1fr;
    }
}

.service-main-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .service-main-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        border-color: #8B4513;
    }

.service-main-header {
    /*background: linear-gradient(135deg, #2C3E50, #34495E);*/
    background-color: var(--accent-color);
    color: white;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
}

.service-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    /*background: #8B4513;*/
    background-color: var(--golden-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.service-title h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
}

.service-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
}

.service-main-content {
    padding: 40px;
}

.service-description {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

@media (max-width: 576px) {
    .service-features {
        grid-template-columns: 1fr;
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444;
    font-size: 1rem;
}

    .feature-item i {
        /*color: #8B4513;*/
        color: var(--golden-color);
        font-size: 1.1rem;
    }

.service-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    /*color: #8B4513;*/
    color: #2d8689;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

.equipment-types {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.type-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0f2f5;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #555;
}

    .type-tag i {
        color: #8B4513;
    }

.service-main-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding: 18px;
    /*background: linear-gradient(135deg, #8B4513, #A0522D);*/
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    justify-content: center;
}

    .service-main-btn:hover {
        transform: translateX(-5px);
        box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
    }
/* Specialized Services */
.specialized-services {
    margin-bottom: 80px;
}

.specialized-header {
    text-align: center;
    margin-bottom: 50px;
}

    .specialized-header h3 {
        font-size: 2rem;
        color: #2C3E50;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

        .specialized-header h3 i {
            /*color: #8B4513;*/
            color: var(--accent-color);
        }

    .specialized-header p {
        color: #666;
        font-size: 1.1rem;
    }

.specialized-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.specialized-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    border: 2px solid #eee;
    transition: all 0.3s;
}

    .specialized-card:hover {
        border-color: #8B4513;
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.specialized-icon {
    width: 60px;
    height: 60px;
    /*background: linear-gradient(135deg, #8B4513, #A0522D);*/
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.specialized-content h4 {
    font-size: 1.4rem;
    color: #2C3E50;
    margin-bottom: 15px;
}

.specialized-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.specialized-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .specialized-features span {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #555;
        font-size: 0.95rem;
    }

    .specialized-features i {
        color: #8B4513;
        font-size: 1rem;
    }
/* Equestrian Features */
.equestrian-features {
    margin-bottom: 80px;
}

.features-header {
    text-align: center;
    margin-bottom: 50px;
}

    .features-header h3 {
        font-size: 2rem;
        color: #2C3E50;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .features-header i {
        /*color: #8B4513;*/
        color: var(--accent-color);
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-highlight {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 30px;
    background: white;
    border-radius: 15px;
    border: 2px solid #eee;
    transition: all 0.3s;
}

    .feature-highlight:hover {
        border-color: #8B4513;
        transform: translateY(-5px);
    }

.highlight-icon {
    width: 50px;
    height: 50px;
    /*background: linear-gradient(135deg, #8B4513, #A0522D);*/
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.3rem;
    color: #2C3E50;
    margin-bottom: 10px;
}

.highlight-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}
/* Call to Action */
.equestrian-cta {
    /*background: linear-gradient(135deg, #2C3E50, #34495E);*/
    background: var(--accent-color);
    border-radius: 25px;
    padding: 60px;
    text-align: center;
    color: white;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .cta-content {
        flex-direction: column;
    }
}

.cta-icon {
    font-size: 4rem;
    color: #8B4513;
}

.cta-text h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
}

.cta-text p {
    font-size: 1.2rem;
    opacity: 0.9;
    color:white;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 200px;
    justify-content: center;
}

    .cta-btn.primary {
        background: #25D366;
        color: white;
    }

    .cta-btn.secondary {
        background: #8B4513;
        color: white;
    }

    .cta-btn.outline {
        background: transparent;
        border: 2px solid white;
        color: white;
    }

    .cta-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    .cta-btn.outline:hover {
        background: white;
        color: #2C3E50;
    }
/* Responsive Design */
@media (max-width: 992px) {
    .equestrian-services {
        padding: 80px 0;
    }

    h2 {
        font-size: 2rem;
    }

    .service-main-header {
        padding: 30px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .service-number {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2.5rem;
    }

    .equestrian-cta {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .equestrian-services {
        padding: 60px 0;
    }

    .service-main-content {
        padding: 30px;
    }

    .specialized-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-btn {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .specialized-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .service-stats {
        flex-direction: column;
        gap: 20px;
    }
}
/*#endregion Equestrian Services Section */

/*#region Equestrian Services Section Dark Mode */

.equestrian-services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    transition: background 0.3s ease;
}

/* Dark Mode Override for Equestrian Services */
[data-theme="dark"] .equestrian-services {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* Section Header */
.equestrian-services .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.equestrian-services .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

[data-theme="dark"] .equestrian-services .header-badge {
    background: linear-gradient(135deg, var(--accent-color), #5cb0b3);
}

.equestrian-services .header-badge i {
    font-size: 1.2rem;
}

.equestrian-services h2 {
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

[data-theme="dark"] .equestrian-services h2 {
    color: var(--heading-color);
}

.equestrian-services .section-subtitle {
    color: #666;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    transition: color 0.3s ease;
}

[data-theme="dark"] .equestrian-services .section-subtitle {
    color: #b0b0b0;
}

/* Main Services Grid */
.services-main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .services-main-grid {
        grid-template-columns: 1fr;
    }
}

.service-main-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

[data-theme="dark"] .service-main-card {
    background: var(--surface-color);
    box-shadow: var(--box-shadow);
    border-color: rgba(255, 255, 255, 0.1);
}

.service-main-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #8B4513;
}

[data-theme="dark"] .service-main-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.service-main-header {
    background: linear-gradient(135deg, #2C3E50, #34495E);
    color: white;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    transition: background 0.3s ease;
}

[data-theme="dark"] .service-main-header {
    background: linear-gradient(135deg, var(--accent-color), #5cb0b3);
}

.service-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
    transition: color 0.3s ease;
}

[data-theme="dark"] .service-number {
    color: rgba(255, 255, 255, 0.3);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: #8B4513;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
    transition: all 0.3s ease;
}

[data-theme="dark"] .service-icon {
    background: var(--accent-color);
    box-shadow: 0 5px 15px rgba(74, 160, 163, 0.4);
}

.service-title h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
}

.service-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    transition: background 0.3s ease;
}

[data-theme="dark"] .service-tag {
    background: rgba(255, 255, 255, 0.3);
}

.service-main-content {
    padding: 40px;
}

.service-description {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

[data-theme="dark"] .service-description {
    color: var(--default-color);
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

@media (max-width: 576px) {
    .service-features {
        grid-template-columns: 1fr;
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444;
    font-size: 1rem;
    transition: color 0.3s ease;
}

[data-theme="dark"] .feature-item {
    color: var(--default-color);
}

.feature-item i {
    color: #8B4513;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

[data-theme="dark"] .feature-item i {
    color: var(--accent-color);
}

.service-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: background 0.3s ease;
}

[data-theme="dark"] .service-stats {
    background: var(--background-color);
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8B4513;
    line-height: 1;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

[data-theme="dark"] .stat-value {
    color: var(--accent-color);
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

[data-theme="dark"] .stat-label {
    color: #b0b0b0;
}

.equipment-types {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.type-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0f2f5;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #555;
    transition: all 0.3s ease;
}

[data-theme="dark"] .type-tag {
    background: var(--background-color);
    color: var(--default-color);
}

.type-tag i {
    color: #8B4513;
    transition: color 0.3s ease;
}

[data-theme="dark"] .type-tag i {
    color: var(--accent-color);
}

.service-main-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    justify-content: center;
}

[data-theme="dark"] .service-main-btn {
    background: linear-gradient(135deg, var(--accent-color), #5cb0b3);
}

.service-main-btn:hover {
    transform: translateX(-5px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
}

[data-theme="dark"] .service-main-btn:hover {
    box-shadow: 0 10px 25px rgba(74, 160, 163, 0.4);
}

/* Specialized Services */
.specialized-services {
    margin-bottom: 80px;
}

.specialized-header {
    text-align: center;
    margin-bottom: 50px;
}

    .specialized-header h3 {
        font-size: 2rem;
        color: #2C3E50;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        transition: color 0.3s ease;
    }

[data-theme="dark"] .specialized-header h3 {
    color: var(--heading-color);
}

.specialized-header h3 i {
    color: #8B4513;
    transition: color 0.3s ease;
}

[data-theme="dark"] .specialized-header h3 i {
    color: var(--accent-color);
}

.specialized-header p {
    color: #666;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

[data-theme="dark"] .specialized-header p {
    color: #b0b0b0;
}

.specialized-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.specialized-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    border: 2px solid #eee;
    transition: all 0.3s;
}

[data-theme="dark"] .specialized-card {
    background: var(--surface-color);
    border-color: rgba(255, 255, 255, 0.1);
}

.specialized-card:hover {
    border-color: #8B4513;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .specialized-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.specialized-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: background 0.3s ease;
}

[data-theme="dark"] .specialized-icon {
    background: linear-gradient(135deg, var(--accent-color), #5cb0b3);
}

.specialized-content h4 {
    font-size: 1.4rem;
    color: #2C3E50;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

[data-theme="dark"] .specialized-content h4 {
    color: var(--heading-color);
}

.specialized-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
    transition: color 0.3s ease;
}

[data-theme="dark"] .specialized-content p {
    color: var(--default-color);
}

.specialized-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .specialized-features span {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #555;
        font-size: 0.95rem;
        transition: color 0.3s ease;
    }

[data-theme="dark"] .specialized-features span {
    color: var(--default-color);
}

.specialized-features i {
    color: #8B4513;
    font-size: 1rem;
    transition: color 0.3s ease;
}

[data-theme="dark"] .specialized-features i {
    color: var(--accent-color);
}

/* Equestrian Features */
.equestrian-features {
    margin-bottom: 80px;
}

.features-header {
    text-align: center;
    margin-bottom: 50px;
}

    .features-header h3 {
        font-size: 2rem;
        color: #2C3E50;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        transition: color 0.3s ease;
    }

[data-theme="dark"] .features-header h3 {
    color: var(--heading-color);
}

.features-header i {
    color: #8B4513;
    transition: color 0.3s ease;
}

[data-theme="dark"] .features-header i {
    color: var(--accent-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-highlight {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 30px;
    background: white;
    border-radius: 15px;
    border: 2px solid #eee;
    transition: all 0.3s;
}

[data-theme="dark"] .feature-highlight {
    background: var(--surface-color);
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-highlight:hover {
    border-color: #8B4513;
    transform: translateY(-5px);
}

[data-theme="dark"] .feature-highlight:hover {
    border-color: var(--accent-color);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

[data-theme="dark"] .highlight-icon {
    background: linear-gradient(135deg, var(--accent-color), #5cb0b3);
}

.highlight-content h4 {
    font-size: 1.3rem;
    color: #2C3E50;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

[data-theme="dark"] .highlight-content h4 {
    color: var(--heading-color);
}

.highlight-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

[data-theme="dark"] .highlight-content p {
    color: var(--default-color);
}

/* Call to Action */
.equestrian-cta {
    background: linear-gradient(135deg, #2C3E50, #34495E);
    border-radius: 25px;
    padding: 60px;
    text-align: center;
    color: white;
    transition: background 0.3s ease;
}

[data-theme="dark"] .equestrian-cta {
    background: linear-gradient(135deg, var(--accent-color), #5cb0b3);
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .cta-content {
        flex-direction: column;
    }
}

.cta-icon {
    font-size: 4rem;
    color: #8B4513;
    transition: color 0.3s ease;
}

[data-theme="dark"] .cta-icon {
    color: white;
}

.cta-text h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-text p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 200px;
    justify-content: center;
}

    .cta-btn.primary {
        background: #25D366;
        color: white;
    }

    .cta-btn.secondary {
        background: #8B4513;
        color: white;
    }

    .cta-btn.outline {
        background: transparent;
        border: 2px solid white;
        color: white;
    }

    .cta-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    .cta-btn.outline:hover {
        background: white;
        color: #2C3E50;
    }

[data-theme="dark"] .cta-btn.outline:hover {
    background: white;
    color: #1a1a1a;
}

/* Responsive Design */
@media (max-width: 992px) {
    .equestrian-services {
        padding: 80px 0;
    }

    h2 {
        font-size: 2rem;
    }

    .service-main-header {
        padding: 30px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .service-number {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2.5rem;
    }

    .equestrian-cta {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .equestrian-services {
        padding: 60px 0;
    }

    .service-main-content {
        padding: 30px;
    }

    .specialized-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-btn {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .specialized-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .service-stats {
        flex-direction: column;
        gap: 20px;
    }
}

/*#endregion Equestrian Services Section */


/*#region Shipments Section */
.shipments-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    transition: background 0.3s ease;
}

/* Dark Mode Override */
[data-theme="dark"] .shipments-section {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

/* Section Header */
.shipments-section .shipments-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.shipments-section .shipments-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    transition: background 0.3s ease;
}

[data-theme="dark"] .shipments-section .shipments-header-badge {
    background: linear-gradient(135deg, #e74c3c, #d9534f);
}

.shipments-section h2 {
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

[data-theme="dark"] .shipments-section h2 {
    color: var(--heading-color);
}

/* Video Showcase - FULL SIZE VERSION */
.shipments-video-showcase {
    margin-bottom: 30px;
}

.shipments-video-container {
    max-width: 1200px;
    margin: 0 auto;
}

.shipments-video-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
}

.shipments-video-player {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.shipments-video-element {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    background: #000;
    cursor: pointer;
}

[data-theme="dark"] .shipments-video-player {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Video Poster Overlay */
.shipments-video-poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.shipments-video-element.playing ~ .shipments-video-poster-overlay {
    opacity: 0;
    pointer-events: none;
}

.shipments-play-button {
    width: 80px;
    height: 80px;
    background: #e74c3c;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
}

    .shipments-play-button:hover {
        transform: scale(1.1);
        background: #c0392b;
    }

.shipments-poster-info {
    text-align: center;
    color: white;
}

    .shipments-poster-info h4 {
        font-size: 2rem;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .shipments-poster-info p {
        font-size: 1.2rem;
        opacity: 0.9;
    }

/* Custom Video Controls */
.shipments-custom-video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .shipments-video-player:hover .shipments-custom-video-controls,
    .shipments-custom-video-controls.visible {
        opacity: 1;
    }

.shipments-controls-left,
.shipments-controls-center,
.shipments-controls-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.shipments-control-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}

    .shipments-control-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.1);
    }

.shipments-time-display {
    display: flex;
    align-items: center;
    gap: 5px;
    color: white;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    min-width: 100px;
}

.shipments-time-separator {
    opacity: 0.7;
}

/* Progress Bar */
.shipments-progress-container {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    margin: 0 20px;
    min-width: 200px;
}

.shipments-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #e74c3c;
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
}

.shipments-progress-thumb {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.shipments-progress-container:hover .shipments-progress-thumb {
    opacity: 1;
}

/* Volume Control */
.shipments-volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.shipments-volume-slider-container {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%) rotate(-90deg);
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 10px;
    border-radius: 10px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 4;
}

.shipments-volume-control:hover .shipments-volume-slider-container {
    opacity: 1;
    pointer-events: all;
}

.shipments-volume-slider {
    width: 100px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.shipments-volume-level {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: white;
    border-radius: 3px;
    width: 100%;
}

/* Fullscreen Styles */
.shipments-video-player.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    border-radius: 0;
}

    .shipments-video-player.fullscreen .shipments-video-element {
        max-height: 100vh;
        height: 100vh;
        object-fit: contain;
    }

/* Responsive Design */
@media (max-width: 1200px) {
    .shipments-video-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .shipments-section {
        padding: 80px 0;
    }

    .shipments-video-element {
        max-height: 60vh;
    }

    .shipments-custom-video-controls {
        padding: 15px 20px;
    }

    .shipments-controls-left,
    .shipments-controls-center,
    .shipments-controls-right {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .shipments-section {
        padding: 60px 0;
    }

        .shipments-section h2 {
            font-size: 2rem;
        }

    .shipments-video-element {
        max-height: 50vh;
    }

    .shipments-play-button {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .shipments-poster-info h4 {
        font-size: 1.5rem;
    }

    .shipments-custom-video-controls {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .shipments-controls-left,
    .shipments-controls-center,
    .shipments-controls-right {
        width: 100%;
        justify-content: space-between;
    }

    .shipments-progress-container {
        margin: 10px 0;
    }

    .shipments-volume-slider-container {
        display: none;
    }
}

@media (max-width: 576px) {
    .shipments-video-element {
        max-height: 40vh;
    }

    .shipments-play-button {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .shipments-poster-info h4 {
        font-size: 1.3rem;
    }

    .shipments-time-display {
        min-width: 80px;
        font-size: 0.85rem;
    }

    .shipments-progress-container {
        min-width: 150px;
    }
}
/*#endregion Shipments Section */

/*#region Our Designs Section */
.our-designs-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    transition: background 0.3s ease;
}

/* Dark Mode Override */
[data-theme="dark"] .our-designs-section {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

/* Section Header */
.our-designs-section .our-designs-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.our-designs-section .our-designs-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    transition: background 0.3s ease;
}

[data-theme="dark"] .our-designs-section .our-designs-header-badge {
    background: linear-gradient(135deg, #e74c3c, #d9534f);
}

.our-designs-section h2 {
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

[data-theme="dark"] .our-designs-section h2 {
    color: var(--heading-color);
}

/* Video Showcase - FULL SIZE VERSION */
.our-designs-video-showcase {
    margin-bottom: 30px;
}

.our-designs-video-container {
    max-width: 1200px;
    margin: 0 auto;
}

.our-designs-video-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
}

.our-designs-video-player {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.our-designs-video-element {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    background: #000;
    cursor: pointer;
}

[data-theme="dark"] .our-designs-video-player {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Video Poster Overlay */
.our-designs-video-poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.our-designs-video-element.playing ~ .our-designs-video-poster-overlay {
    opacity: 0;
    pointer-events: none;
}

.our-designs-play-button {
    width: 80px;
    height: 80px;
    background: #e74c3c;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
}

    .our-designs-play-button:hover {
        transform: scale(1.1);
        background: #c0392b;
    }

.our-designs-poster-info {
    text-align: center;
    color: white;
}

    .our-designs-poster-info h4 {
        font-size: 2rem;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .our-designs-poster-info p {
        font-size: 1.2rem;
        opacity: 0.9;
    }

/* Custom Video Controls */
.our-designs-custom-video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .our-designs-video-player:hover .our-designs-custom-video-controls,
    .our-designs-custom-video-controls.visible {
        opacity: 1;
    }

.our-designs-controls-left,
.our-designs-controls-center,
.our-designs-controls-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.our-designs-control-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}

    .our-designs-control-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.1);
    }

.our-designs-time-display {
    display: flex;
    align-items: center;
    gap: 5px;
    color: white;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    min-width: 100px;
}

.our-designs-time-separator {
    opacity: 0.7;
}

/* Progress Bar */
.our-designs-progress-container {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    margin: 0 20px;
    min-width: 200px;
}

.our-designs-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #e74c3c;
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
}

.our-designs-progress-thumb {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.our-designs-progress-container:hover .our-designs-progress-thumb {
    opacity: 1;
}

/* Volume Control */
.our-designs-volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.our-designs-volume-slider-container {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%) rotate(-90deg);
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 10px;
    border-radius: 10px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 4;
}

.our-designs-volume-control:hover .our-designs-volume-slider-container {
    opacity: 1;
    pointer-events: all;
}

.our-designs-volume-slider {
    width: 100px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.our-designs-volume-level {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: white;
    border-radius: 3px;
    width: 100%;
}

/* Fullscreen Styles */
.our-designs-video-player.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    border-radius: 0;
}

    .our-designs-video-player.fullscreen .our-designs-video-element {
        max-height: 100vh;
        height: 100vh;
        object-fit: contain;
    }

/* Responsive Design */
@media (max-width: 1200px) {
    .our-designs-video-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .our-designs-section {
        padding: 80px 0;
    }

    .our-designs-video-element {
        max-height: 60vh;
    }

    .our-designs-custom-video-controls {
        padding: 15px 20px;
    }

    .our-designs-controls-left,
    .our-designs-controls-center,
    .our-designs-controls-right {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .our-designs-section {
        padding: 60px 0;
    }

        .our-designs-section h2 {
            font-size: 2rem;
        }

    .our-designs-video-element {
        max-height: 50vh;
    }

    .our-designs-play-button {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .our-designs-poster-info h4 {
        font-size: 1.5rem;
    }

    .our-designs-custom-video-controls {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .our-designs-controls-left,
    .our-designs-controls-center,
    .our-designs-controls-right {
        width: 100%;
        justify-content: space-between;
    }

    .our-designs-progress-container {
        margin: 10px 0;
    }

    .our-designs-volume-slider-container {
        display: none;
    }
}

@media (max-width: 576px) {
    .our-designs-video-element {
        max-height: 40vh;
    }

    .our-designs-play-button {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .our-designs-poster-info h4 {
        font-size: 1.3rem;
    }

    .our-designs-time-display {
        min-width: 80px;
        font-size: 0.85rem;
    }

    .our-designs-progress-container {
        min-width: 150px;
    }
}
/*#endregion Our Designs Section */
