.logo-container{
    margin-top: 0px;
    margin-bottom: 0px;
    width: 60px;
}

/* About Us Page Styles */
body {
    font-family: 'Cairo', sans-serif;
    background: #f8f9fa;
    color: #222;
}
/* Animated Section Styles */
.animated-section {
    opacity: 0;
    transform: translateY(60px) scale(0.98);
    transition: opacity 1s cubic-bezier(.23,1.01,.32,1), transform 1s cubic-bezier(.23,1.01,.32,1);
}

.animated-section.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Hero Section */
.aboutus-hero-section {
    position: relative;
    padding: 160px 0 120px;
    background: radial-gradient(circle at 12% 18%, rgba(255,255,255,0.85), transparent 40%), linear-gradient(135deg, #fff7e0 0%, #fef3c7 45%, #fff 100%);
    color: #1f1c17;
    overflow: hidden;
    min-height: 800px;
    
}

.hero-background-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(219,182,63,0.45), transparent 70%);
    filter: blur(12px);
}

.orb-left {
    top: -120px;
    left: -80px;
}

.orb-right {
    bottom: -160px;
    right: -40px;
}

.aboutus-hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,1.5fr);
    gap: 40px;
    align-items: center;
}

.aboutus-hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}




.aboutus-hero-title {
    font-size: clamp(36px, 4vw, 60px);
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.aboutus-hero-title span {
    display: block;
    font-weight: 400;
    color: rgba(31, 28, 23, 0.7);
}

.aboutus-hero-desc {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(31, 28, 23, 0.78);
    margin: 0;
    max-width: 640px;
}

.hero-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid rgba(195, 159, 43, 0.25);
    background: rgba(255, 255, 255, 0.95);
    font-size: 14px;
}

.hero-pill i {
    color: #C39F2B;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}

.hero-stat {
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(195, 159, 43, 0.15);
    box-shadow: 0 15px 35px rgba(195, 159, 43, 0.15);
}

.stat-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #C39F2B;
}

.stat-label {
    font-size: 14px;
    color: rgba(31, 28, 23, 0.65);
}

.aboutus-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1000px;
    border-radius: 44px;
    padding: 0 32px 32px;
    overflow: hidden;
    align-self: flex-start;
    margin-right: 15px;
}
.hero-showcase-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}
/* Responsive Design */
@media (max-width: 991px) {
    .aboutus-hero-section {
        padding: 120px 0 80px;
    }
    .aboutus-hero-layout {
        grid-template-columns: 1fr;
    }
    .hero-pill-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .aboutus-hero-visual {
        margin-top: 32px;
        max-width: 420px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .aboutus-hero-section {
        padding: 100px 0 60px;
    }
    .aboutus-hero-title {
        font-size: 32px;
        margin-top: 20px;
    }
    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }
    .aboutus-hero-desc {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
}
.animated-section {
    opacity: 0;
    transform: translateY(60px) scale(0.98);
    transition: opacity 1s cubic-bezier(.23,1.01,.32,1), transform 1s cubic-bezier(.23,1.01,.32,1);
}
.animated-section.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
/* ============================================
   STORY SECTION - قسم قصتنا
   ============================================ */

.aboutus-story-section {
    padding: 60px 0;
}

.aboutus-story-text h2 {
    color: #C39F2B;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 18px;
}

.aboutus-story-text p {
    font-size: 20px;
    color: #444;
    line-height: 2;
}

.aboutus-story-img img {
    max-width: 680px;
}

/* ============================================
   CAROUSEL SECTION - قسم الكاروسيل
   ============================================ */

.aboutus-carousel-section {
    background: #fff;
    padding: 60px 0;
}

.carousel-container {
    display: flex;
    align-items: stretch;
    gap: 30px;
}

.carousel-left {
    flex: 0.5;
    display: flex;
    flex-direction: column;
    width: 60%;
}

.carousel-right {
    flex: 3;
    display: flex;
    flex-direction: column;
}

.carousel-title h3 {
    color: #C39F2B;
    font-size: 28px;
    font-weight: 800;
    margin: 0;
}

.carousel-text p {
    color: #444;
    font-size: 20px;
    line-height: 2;
    margin: 0;
}

.carousel-image {
    display: flex;
    align-items: flex-end;
}

.carousel-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    max-height: 350px;
}

.carousel-video {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.carousel-video-element {
    width: 180%;
    height: 100%;
    border-radius: 8px 8px 0 0;
    object-fit: cover;
    max-height: 650px;
}
/* ============================================
   MISSION SECTION CSS COMPLET
   ============================================ */

/* Section principale */
.aboutus-mission-section {
    padding: 60px 0;
}

/* Container avec flexbox */
.aboutus-mission-section .container {
    gap: 60px !important;
}

/* Image de la mission */
.aboutus-mission-img {
    flex: 1;
    text-align: center;
}

.aboutus-mission-img img {
    max-width: 1200px;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Texte de la mission */
.aboutus-mission-text {
    flex: 1;
}

/* Titres h2 dans la section mission */
.aboutus-mission-text h2 {
    color: #C39F2B;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 18px;
    font-family: 'Cairo', sans-serif;
}

/* Paragraphes dans la section mission */
.aboutus-mission-text p {
    font-size: 20px;
    color: #444;
    line-height: 2;
    font-family: 'Cairo', sans-serif;
}

/* ============================================
   MEDIA QUERIES
   ============================================ */

/* Tablettes et écrans moyens */
@media (max-width: 991px) {
    .aboutus-mission-section .container {
        gap: 40px !important;
    }
    
    .aboutus-mission-text h2 {
        font-size: 28px;
    }
    
    .aboutus-mission-text p {
        font-size: 18px;
    }
}

/* Mobiles */
@media (max-width: 768px) {
    /* Padding réduit sur mobile */
    .aboutus-mission-section {
        padding: 30px 0;
    }
    
    /* Container devient colonne sur mobile */
    .aboutus-mission-section .container {
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    /* Titres plus petits */
    .aboutus-mission-text h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    /* Paragraphes plus petits */
    .aboutus-mission-text p {
        font-size: 16px;
        line-height: 1.8;
    }
    
    /* Image prend toute la largeur */
    .aboutus-mission-img {
        width: 100%;
    }
    
    .aboutus-mission-img img {
        max-width: 100%;
    }
    
    /* Texte prend toute la largeur */
    .aboutus-mission-text {
        width: 100%;
    }
}

/* Petits mobiles */
@media (max-width: 576px) {
    .aboutus-mission-section {
        padding: 20px 0;
    }
    
    .aboutus-mission-section .container {
        gap: 20px !important;
    }
    
    .aboutus-mission-text h2 {
        font-size: 22px;
    }
    
    .aboutus-mission-text p {
        font-size: 15px;
        line-height: 1.7;
    }
}
/* ============================================
   MEDIA QUERIES - استجابة الشاشات
   ============================================ */

@media (max-width: 991px) {
    .aboutus-story-text h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    /* Story Section - جوال */
    .aboutus-story-section {
        padding: 30px 0;
    }

    .aboutus-story-text h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .aboutus-story-text p {
        font-size: 16px;
        line-height: 1.8;
    }

    .aboutus-story-img img {
        max-width: 100%;
    }

    /* Carousel Section - جوال */
    .carousel-container {
        flex-direction: column;
        gap: 20px;
    }

    .carousel-left, .carousel-right {
        width: 100%;
        flex: none;
    }

    .carousel-title h3 {
        font-size: 22px;
    }

    .carousel-text p {
        font-size: 16px;
        line-height: 1.8;
    }

    .carousel-img {
        max-height: 250px;
    }

    .carousel-video-element {
        width: 100%;
        max-height: 350px;
    }
}
.aboutus-values-section {
    background: #f8f9fa;
    padding: 60px 0;
}
.aboutus-value-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    transition: transform 0.4s, box-shadow 0.4s;
}
.aboutus-value-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 36px rgba(195,159,43,0.13);
}
.aboutus-value-card h4 {
    color: #C39F2B;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}
.aboutus-value-card p {
    font-size: 16px;
    color: #666;
}
.aboutus-team-section {
    background: #fff;
    padding: 60px 0;
}
.aboutus-team-card {
    background: #f8f9fa;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    transition: transform 0.4s, box-shadow 0.4s;
}
.aboutus-team-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 36px rgba(195,159,43,0.13);
}
.aboutus-team-card h5 {
    color: #C39F2B;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}
.aboutus-team-card p {
    font-size: 15px;
    color: #666;
}
/* ============================================
   GALLERY SECTION CSS COMPLET
   ============================================ */

/* Section principale de la galerie */
.aboutus-gallery-section {
    background: #f8f9fa;
    padding: 60px 0;
}

/* Titre de la section */
.aboutus-gallery-section h2 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    color: #222;
    margin-bottom: 40px;
}

/* Conteneur du carousel */
#galleryCarousel {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Wrapper pour chaque image */
.gallery-image-wrapper {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.gallery-image-wrapper picture {
    width: 100%;
}

/* Style des images de la galerie */
.gallery-image {
    display: block;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s;
    object-fit: cover;
    height: 400px;
    width: 100%;
}

/* Effet hover sur les images */
.gallery-image:hover {
    transform: scale(1.04) rotate(-2deg);
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

/* ============================================
   CONTROLES DU CAROUSEL - STYLE DORÉ
   ============================================ */

/* Boutons de navigation (flèches) */
#galleryCarousel .carousel-control-prev,
#galleryCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: #C39F2B;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s ease;
}

/* Position du bouton précédent (RTL) */
#galleryCarousel .carousel-control-prev {
    right: -25px;
    left: auto;
}

/* Position du bouton suivant (RTL) */
#galleryCarousel .carousel-control-next {
    left: -25px;
    right: auto;
}

/* Effet hover sur les boutons */
#galleryCarousel .carousel-control-prev:hover,
#galleryCarousel .carousel-control-next:hover {
    background: #DBB63F;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 24px rgba(195, 159, 43, 0.3);
}

/* Icônes des boutons */
#galleryCarousel .carousel-control-prev-icon,
#galleryCarousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 100% 100%;
}

/* ============================================
   INDICATEURS (DOTS) - STYLE DORÉ
   ============================================ */

/* Conteneur des indicateurs */
#galleryCarousel .carousel-indicators {
    margin-bottom: -10px;
    margin-top: 30px;
}

/* Style des boutons indicateurs */
#galleryCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    border: 2px solid transparent;
    margin: 0 6px;
    transition: all 0.3s ease;
}

/* Indicateur actif */
#galleryCarousel .carousel-indicators button.active {
    background-color: #C39F2B;
    width: 32px;
    border-radius: 6px;
    border-color: #C39F2B;
}

/* Effet hover sur les indicateurs */
#galleryCarousel .carousel-indicators button:hover {
    background-color: #DBB63F;
}

/* ============================================
   MEDIA QUERIES - RESPONSIVE
   ============================================ */

/* Tablettes et écrans moyens */
@media (max-width: 991px) {
    .aboutus-gallery-section {
        padding: 40px 0;
    }
    
    .gallery-image {
        height: 350px;
    }
    
    #galleryCarousel .carousel-control-prev {
        right: 10px;
    }
    
    #galleryCarousel .carousel-control-next {
        left: 10px;
    }
}

/* Mobiles */
@media (max-width: 768px) {
    .aboutus-gallery-section {
        padding: 30px 0;
    }
    
    .aboutus-gallery-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .gallery-image {
        height: 300px;
    }
    
    .gallery-image-wrapper {
        padding: 10px;
    }
    
    /* Cacher les flèches sur mobile - swipe tactile uniquement */
    #galleryCarousel .carousel-control-prev,
    #galleryCarousel .carousel-control-next {
        display: none !important;
    }
}

/* Petits mobiles */
@media (max-width: 576px) {
    .aboutus-gallery-section {
        padding: 20px 0;
    }
    
    .aboutus-gallery-section h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .gallery-image {
        height: 250px;
    }
    
    .gallery-image-wrapper {
        padding: 8px;
    }
}
@media (max-width: 768px) {
    .value-icon-circle {
        width: 60px;
        height: 60px;
    }
    .value-icon-circle i {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    .aboutus-story-section, .aboutus-mission-section, .aboutus-values-section, .aboutus-team-section, .aboutus-gallery-section, .aboutus-contact-section {
        padding: 30px 0;
    }
}
/* Footer */
.footer-section {
    background: linear-gradient(135deg, #4a4a4a 0%, #3a3a3a 50%, #2a2a2a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

/* Decorative Top Border */
.footer-top-border {
    height: 4px;
    background: linear-gradient(90deg, #DBB63F 0%, #c19b2e 50%, #DBB63F 100%);
    position: relative;
}

.footer-top-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
}

/* Main Footer Content */
.footer-main {
    padding: 60px 0 40px;
    position: relative;
    z-index: 2;
}

/* Brand Section */
.footer-brand {
    margin-bottom: 30px;
}

.brand-logo-footer {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(1.1);
}

.brand-text {
    flex: 1;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    color: #DBB63F;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.brand-tagline {
    font-size: 14px;
    color: #ccc;
    margin: 5px 0 0 0;
    font-style: italic;
}

.brand-description {
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.footer-awards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #DBB63F;
    font-size: 14px;
    font-weight: 500;
}

.award-item i {
    font-size: 16px;
}

/* Footer Links */
.footer-links {
    margin-bottom: 30px;
    text-align: center;
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #DBB63F, #c19b2e);
    border-radius: 1px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #bbb;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-right: 15px;
}

.footer-menu a::before {
    content: '→';
    position: absolute;
    right: 0;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    color: #DBB63F;
}

.footer-menu a:hover {
    color: #DBB63F;
    padding-right: 20px;
}

.footer-menu a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #DBB63F, #c19b2e);
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.social-icon i {
    position: relative;
    z-index: 2;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(219, 182, 63, 0.3);
}

.social-icon.facebook {
    background: #1877f2;
    color: #fff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(219, 182, 63, 0.3);
}

.social-icon::before {
    opacity: 1;
}

.social-icon i {
    color: #fff;
    transform: scale(1.1);
}

/* Footer Social Section */
.footer-social {
    text-align: center;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 25px 0;
    background: rgba(0,0,0,0.1);
}

.footer-copyright p {
    color: #999;
    margin: 0;
    font-size: 14px;
}


/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .brand-logo-footer {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-awards {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}