/* ====================================
   CUSTOM FONTS
   ==================================== */

/* Delight Font (English) */
@font-face {
    font-family: 'Delight';
    src: url('fonts/Delight-Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Delight';
    src: url('fonts/Delight-ExtraLight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Delight';
    src: url('fonts/Delight-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Delight';
    src: url('fonts/Delight-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Delight';
    src: url('fonts/Delight-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Delight';
    src: url('fonts/Delight-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Delight';
    src: url('fonts/Delight-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Delight';
    src: url('fonts/Delight-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Watershed Font */
@font-face {
    font-family: 'Watershed';
    src: url('fonts/Watershed Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ALAKOB (Alako-Bold) */
@font-face {
    font-family: 'ALAKOB';
    src: url('fonts/Alako-Bold.woff2') format('woff2'),
         url('fonts/Alako-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* ====================================
   ARABIC FONT: TheYearofHandicrafts
   ==================================== */
@font-face {
    font-family: 'TheYearofHandicrafts';
    src: url('fonts/TheYearofHandicrafts-Regular.woff2') format('woff2'),
         url('fonts/TheYearofHandicrafts-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'TheYearofHandicrafts';
    src: url('fonts/TheYearofHandicrafts-Medium.woff2') format('woff2'),
         url('fonts/TheYearofHandicrafts-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'TheYearofHandicrafts';
    src: url('fonts/TheYearofHandicrafts-SemiBold.woff2') format('woff2'),
         url('fonts/TheYearofHandicrafts-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'TheYearofHandicrafts';
    src: url('fonts/TheYearofHandicrafts-Black.woff2') format('woff2'),
         url('fonts/TheYearofHandicrafts-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ====================================
   باقي الكود بدون تغيير
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Delight', sans-serif;
    font-weight: 400;
    color: #333;
    background: url("img-vid/photograph-wooden-surface.png") center/cover no-repeat fixed;
    overflow-x: hidden;
    transition: overflow 0.3s ease;
}
body.arabic {
    font-family: 'TheYearofHandicrafts', 'Delight', sans-serif;
    font-weight: 400;
    direction: rtl;
}

/* تطبيق الخط العربي على العناصر المهمة */
body.arabic .about-text p,
body.arabic .about-text h2,
body.arabic .stat-item p,
body.arabic .stat-desc,
body.arabic .slide-overlay p,
body.arabic .partners-main-title,
body.arabic .footer-links a,
body.arabic .footer-contact p,
body.arabic .btn-read-more,
body.arabic .lang-switch,
body.arabic .typewriter,
body.arabic .typewriter-subtitle {
    font-family: 'TheYearofHandicrafts', 'Delight', sans-serif !important;
}

/* ====================================
   LOADING SCREEN
   ==================================== */
.loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.loader.fade-out {
    opacity: 0;
    transform: translateY(-30px);
    pointer-events: none;
}
.loader-content {
    position: relative;
    width: 160px;
    height: 160px;
}
.loader-logo {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    object-fit: contain;
    z-index: 3;
    animation: pulse 1.8s ease-in-out infinite;
}
.loader-circle {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    transform: rotate(-90deg);
}
.circle-track { opacity: 0.2; }
.circle-progress {
    stroke-dashoffset: 439.8;
    animation: loading 2s ease-in-out infinite, spin 4s linear infinite;
    transform-origin: center;
}
@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}
@keyframes spin {
    from { transform: rotate(-90deg); }
    to { transform: rotate(270deg); }
}
@keyframes loading {
    0% { stroke-dashoffset: 439.8; }
    50% { stroke-dashoffset: 110; }
    100% { stroke-dashoffset: 439.8; }
}

/* ====================================
   NAVBAR & HERO & SECTIONS (كل الكود اللي تحت بدون تغيير)
   ==================================== */
.navbar {
    background-color: white !important;
    height: 100px;
    width: calc(100% - 30px);
    max-width: 2000px;
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.35s ease;
}
.container {
    width: 100%;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    text-decoration: none;
    transition: transform 0.25s ease;
}
.logo:hover { transform: scale(1.05) rotate(1deg); }
.logo-icon img { 
    width: 300px; 
    height: 300px; 
    object-fit: contain; 
}

.mobile-branding {
    display: none;
    flex: 1;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: #333;
}
.mobile-branding .logo-icon img { 
    width: 80px; 
    height: 80px; 
    object-fit: contain;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
    margin-right: 20%;
}
.nav-links li a {
    color: #333;
    font-family: 'Delight', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    padding-bottom: 4px;
}
.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #0e71aa;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.nav-links li a:hover { 
    color: #0e71aa; 
    transform: translateY(-2px); 
}
.nav-links li a:hover::after { width: 100%; }

.lang-switch {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #0e71aa;
    border: none;
    color: white;
    font-family: 'Delight', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 22px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.25s ease;
}
.lang-switch:hover { 
    background: #e4771e; 
    transform: scale(1.05); 
}

.nav-actions { display: none; }

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}
.video-container {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    opacity: 0;
    transform: scale(0.85);
    animation: videoPopIn 1.4s ease-out forwards;
}
#bg-video { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

@keyframes videoPopIn {
    0% { opacity: 0; transform: scale(0.85); }
    70% { opacity: 1; transform: scale(1.03); }
    100% { opacity: 1; transform: scale(1); }
}

.hero-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 38%;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.88) 0%,
        rgba(0,0,0,0.60) 50%,
        rgba(0,0,0,0.30) 75%,
        rgba(0,0,0,0.05) 95%,
        transparent 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 3;
    width: 90%;
    max-width: 900px;
    padding: 0;
}
.hero-content h1 {
    font-family: 'Delight', sans-serif;
    font-weight: 900;
    font-size: 3.8rem;
    margin-bottom: 12px;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #fff;
}
.hero-content p {
    font-weight: normal;
    font-size: 1.4rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    line-height: 1.5;
    margin: 0 0 20px 0;
    color: #f8f8f8;
    overflow: hidden;
    white-space: nowrap;
}

.hero-btn {
    display: inline-block;
    background: transparent;
    color: white;
    font-family: 'Delight', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 14px 36px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    text-decoration: none;
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.hero-btn:hover {
    background: #0e71aa;
    border-color: #0e71aa;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(228, 119, 30, 0.4);
}

.section-card {
    margin: 80px auto;
    max-width: 90%;
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}
.section-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 55px rgba(0, 0, 0, 0.18);
}
.section-card > .container { padding: 60px 50px; }

.about-section.section-card {
    position: relative;
    z-index: 10;
    margin-top: -40px;
    padding-top: 100px;
    margin-bottom: 0;
}
.about-section.section-card > .container {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.about-text {
    padding: 60px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-image {
    width: 90%;
    height: 90%;
    min-height: 350px;
    max-height: 600px;
    overflow: hidden;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.small-title {
    color: #0e71aa;
    font-weight: 800;
    font-size: 1.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    display: inline-block;
}
.about-text h2 {
    font-family: 'Delight', sans-serif;
    font-weight: normal;
    font-size: 2.4rem;
    color: #333;
    line-height: 1.2;
    margin-bottom: 25px;
}
.about-text p {
    font-family: 'Delight', sans-serif;
    font-weight: 400;
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 18px;
}
.about-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 30px 0;
    justify-content: center;
}
.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 80px;
}
.icon-item i {
    font-size: 2.2rem;
    color: #0e71aa;
    margin-bottom: 10px;
    animation: pulse-float 2.5s ease-in-out infinite;
}
.icon-item span {
    font-family: 'Delight', sans-serif;
    font-weight: normal;
    font-size: 0.85rem;
    color: #444;
}
@keyframes pulse-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.1); }
}
.about-footer {
    margin-top: 35px;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}
.btn-read-more {
    display: inline-block;
    background-color: #0e71aa;
    color: white;
    text-decoration: none;
    padding: 15px 36px;
    font-family: 'Delight', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: 0 5px 18px rgba(196, 154, 108, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(196, 154, 108, 0.45);
}

.stats-section {
    padding: 70px 50px;
    border-radius: 0 0 32px 32px;
    margin-top: -32px;
    position: relative;
    z-index: 5;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    justify-items: center;
    align-items: start;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.stat-item i {
    font-size: 2.8rem;
    color: #0e71aa;
    margin-bottom: 8px;
    transition: transform 0.4s ease;
}

.stat-item:hover i {
    transform: scale(1.15) rotate(5deg);
}

.stat-number {
    font-family: 'Delight', sans-serif;
    font-weight: 900;
    font-size: 3.2rem;
    color: #333;
    line-height: 1;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-item p {
    font-family: 'Delight', sans-serif;
    font-weight: normal;
    font-size: 1.1rem;
    color: #444;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-desc {
    font-family: 'Delight', sans-serif;
    font-weight: normal;
    font-size: 0.9rem;
    color: #777;
    line-height: 1.5;
    max-width: 180px;
    margin-top: 6px;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .stats-section {
        padding: 50px 20px;
        border-radius: 0 0 28px 28px;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .stat-item i {
        font-size: 2.4rem;
    }
    .stat-number {
        font-size: 2.6rem;
        min-height: 50px;
    }
    .stat-item p {
        font-size: 1rem;
    }
    .stat-desc {
        font-size: 0.85rem;
        max-width: 160px;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .stat-number {
        font-size: 2.8rem;
    }
    .stat-item p {
        font-size: 1.05rem;
    }
    .stat-desc {
        max-width: 200px;
    }
}

/* ALAKOB TEXT STYLE */
.typewriter-subtitle,
.small-title,
.alakob-text {
    font-family: 'ALAKOB', sans-serif !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
}

.typewriter-subtitle {
    font-size: 1.6rem !important;
    color: #f8f8f8 !important;
    text-shadow: 0 3px 12px rgba(26, 22, 22, 0.8) !important;
    line-height: 1.4 !important;
    margin: 15px 0 25px !important;
    display: block !important;
}

.small-title {
    font-size: 2.8rem !important;
    color: #0e71aa !important;
    display: block !important;
    margin-bottom: 20px !important;
    line-height: 1.3 !important;
}

/* باقي الأكواد (products, partners, footer, responsive) بدون تغيير */
.products-section.section-card { margin: 80px auto; max-width: 90%; border-radius: 32px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.12); position: relative; }
.products-section.section-card:hover { transform: translateY(-8px); box-shadow: 0 28px 55px rgba(0,0,0,0.18); }
.products-slider-container { position: relative; width: 100%; min-height: 650px; overflow: hidden; border-radius: 32px; }
.products-header-inside { position: absolute; top: 40px; left: 50%; transform: translateX(-50%); text-align: center; z-index: 10; color: white; text-shadow: 0 2px 8px rgba(0,0,0,0.6); }
.products-small-title { display: block; color: #0e71aa; font-family: 'Watershed', sans-serif; font-weight: 800; font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.products-title { font-family: 'Delight', sans-serif; font-weight: 500; font-size: 2.4rem; color: white; margin: 0; line-height: 1.2; }
.products-slider { position: relative; width: 100%; height: 100%; min-height: 650px; }
.slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1s ease-in; z-index: 1; }
.slide.active { opacity: 1; visibility: visible; z-index: 2; }
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 3rem 2rem 5rem; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); color: #fff; text-align: center; z-index: 3; }
.slide-overlay h3 { font-family: 'Watershed', sans-serif; font-weight: 700; font-size: 1.8rem; margin-bottom: .5rem; }
.slide-overlay p { font-family: 'Delight', sans-serif; font-size: 1.1rem; margin-bottom: 1rem; opacity: 0.9; }
.btn-view-product { display: inline-block; background: #e4771e; color: #fff; font-family: 'Delight', sans-serif; font-weight: 700; font-size: 1rem; padding: .75rem 2rem; border-radius: 50px; text-decoration: none; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(228, 119, 30, 0.4); }
.btn-view-product:hover { background: #5089d3; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(80, 137, 211, 0.4); }
.btn-view-all-responsive { display: none; margin-top: 12px; background: rgba(255, 255, 255, 0.2); color: white; font-family: 'Delight', sans-serif; font-weight: 700; font-size: 0.95rem; padding: 10px 28px; border: 1.5px solid rgba(255, 255, 255, 0.5); border-radius: 50px; text-decoration: none; transition: all 0.4s ease; backdrop-filter: blur(8px); width: fit-content; margin-left: auto; margin-right: auto; }
.btn-view-all-responsive:hover { background: #e4771e; border-color: #e4771e; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(228, 119, 30, 0.35); }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; background: rgba(255, 255, 255, 0.2); color: white; border: none; border-radius: 50%; font-size: 1.4rem; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(8px); transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.slider-arrow:hover { background: #e4771e; transform: translateY(-50%) scale(1.1); box-shadow: 0 8px 25px rgba(228, 119, 30, 0.4); }
.prev-arrow { left: 20px; }
.next-arrow { right: 20px; }
.products-btn-center { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 10; width: 100%; text-align: center; }
.btn-view-all-transparent { display: inline-block; background: rgba(255, 255, 255, 0.15); color: white; font-family: 'Delight', sans-serif; font-weight: 700; font-size: 1rem; padding: 10px 32px; border: 1.5px solid rgba(255, 255, 255, 0.4); border-radius: 50px; text-decoration: none; transition: all 0.4s ease; backdrop-filter: blur(8px); margin-top: 12px; }
.btn-view-all-transparent:hover { background: #0e71aa; border-color: #e4771e; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(228, 119, 30, 0.35); }

@media (max-width: 992px) {
    .products-slider-container { min-height: 600px; }
    .products-header-inside { top: 20px; }
    .products-title { font-size: 2rem; }
    .slide-overlay { padding: 2rem 1.5rem; }
    .slide-overlay h3 { font-size: 1.6rem; }
    .slide-overlay p { font-size: 1rem; }
    .btn-view-product { padding: .65rem 1.8rem; font-size: .95rem; }
    .slider-arrow { width: 45px; height: 45px; font-size: 1.2rem; }
    .btn-view-all-transparent { display: inline-block !important; font-size: 0.6rem !important; padding: 8px 24px !important; }
    .btn-view-all-responsive { display: none !important; }
}
@media (max-width: 576px) {
    .products-slider-container { min-height: 550px; }
    .products-title { font-size: 1.8rem; }
    .slide-overlay h3 { font-size: 1.4rem; }
    .slide-overlay p { font-size: 0.95rem; }
}
.product-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.products-slider .slide:hover .product-img { transform: scale(1.08); }
.products-slider .slide picture { width: 100%; height: 100%; display: block; }

.success-partners-section { background: #1a1a1a; color: #ddd; padding: 100px 20px 0; margin: 0 !important; text-align: center; position: relative; overflow: hidden; }
.partners-container { max-width: 1200px; margin: 0 auto; padding-bottom: 50px; }
.partners-title-wrapper { margin-bottom: 60px; }
.partners-small-title { display: block; color: #e4771e; font-family: 'Watershed', sans-serif; font-weight: 800; font-size: 0.95rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; }
.partners-main-title { font-family: 'Delight', sans-serif; font-weight: normal; font-size: 2.6rem; color: #fff; margin: 0; line-height: 1.2; }
.partners-logos { display: flex; justify-content: center; align-items: center; gap: 50px; flex-wrap: wrap; padding: 0; margin: 0; }
.partner-item { flex: 0 1 auto; display: flex; align-items: center; justify-content: center; padding: 10px; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); transition: all 0.4s ease; border-radius: 8px; overflow: hidden; }
.partner-item img { max-width: 130px; height: auto; width: auto; display: block; object-fit: contain; transition: none; }
.partner-item:hover { transform: translateY(-8px) scale(1.08); box-shadow: 0 15px 35px rgba(228, 119, 30, 0.4); border-color: #5089d3; }
.partners-footer-divider { position: absolute; bottom: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, transparent, #e4771e, #5089d3, #e4771e, transparent); margin: 0; padding: 0; border: none; box-shadow: 0 0 12px rgba(228, 119, 30, 0.5); z-index: 1; }

@media (max-width: 992px) { .partners-logos { gap: 35px; } .partner-item img { max-width: 110px; } .partners-container { padding-bottom: 40px; } }
@media (max-width: 768px) { .success-partners-section { padding: 80px 15px 0; } .partners-main-title { font-size: 2.2rem; } .partners-logos { gap: 25px; } .partners-container { padding-bottom: 35px; } .partner-item img { max-width: 90px; } }
@media (max-width: 576px) { .partners-logos { gap: 20px; } .partners-container { padding-bottom: 30px; } .partner-item { padding: 6px; border-width: 4px; border-radius: 6px; } .partner-item img { max-width: 60px; } }

.site-footer { background: #1a1a1a; color: #ddd; padding: 80px 0 30px; margin-top: 0 !important; margin-bottom: 0; position: relative; z-index: 2; }
.footer-container { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 40px; max-width: 90%; margin: 0 auto; }
.footer-logo img { width: 340px; height: auto; }
.footer-links h4, .footer-contact h4, .footer-social h4 { font-family: 'Delight', sans-serif; font-weight: 700; font-size: 1.3rem; color: #0e71aa; margin-bottom: 20px; position: relative; }
.footer-links h4::after, .footer-contact h4::after, .footer-social h4::after { content: ''; position: absolute; bottom: -8px; inset-inline-start: 0; width: 50px; height: 3px; background: #0e71aa; }
.footer-links ul { list-style: none; padding: 0; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a { color: #bbb; text-decoration: none; font-size: 1rem; transition: color 0.3s ease; }
.footer-links ul li a:hover { color: #0e71aa; }
.footer-contact p { margin-bottom: 14px; font-size: 1rem; display: flex; align-items: center; gap: 10px; }
.footer-contact i { color: #0e71aa; font-size: 1.1rem; }
.social-icons { display: flex; gap: 15px; }
.social-icons a { width: 42px; height: 42px; background: #333; color: #fff; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 1.1rem; transition: all 0.3s ease; text-decoration: none; }
.social-icons a:hover { background: #0e71aa; transform: translateY(-3px); box-shadow: 0 6px 15px rgba(228, 119, 30, 0.3); }
.footer-bottom { text-align: center; margin-top: 50px; padding-top: 25px; border-top: 1px solid #333; font-size: 0.95rem; color: #888; }

@media (max-width: 576px) {
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-links h4, .footer-contact h4, .footer-social h4 { text-align: center; }
    .footer-links h4::after, .footer-contact h4::after, .footer-social h4::after { display: none; }
    .social-icons { justify-content: center; }
}

@media (max-width: 992px) {
    .navbar { height: 90px; top: 0; border-radius: 0; width: 100%; }
    .container { padding: 0 25px; gap: 12px; }
    .desktop-only { display: none !important; }
    .nav-actions, .mobile-branding { display: flex; }
    .burger-menu { font-size: 1.6rem; cursor: pointer; z-index: 1002; }
    .mobile-branding .logo-icon img { width: 220px; height: 220px; }
    .nav-links { position: fixed; top: 90px; left: 50%; width: 92%; max-width: 370px; background: white; flex-direction: column; justify-content: center; align-items: center; gap: 22px; padding: 30px 20px; border-radius: 20px; box-shadow: 0 15px 35px rgba(0,0,0,0.2); transform: translateX(-50%) scale(0.8); opacity: 0; visibility: hidden; transition: all 0.4s ease; z-index: 1001; }
    .nav-links.active { transform: translateX(-50%) scale(1); opacity: 1; visibility: visible; }
    .hero-section { height: 20vh; min-height: 250px; }
    .hero-content { display: none; }
    .section-card { max-width: 92%; margin: 60px auto; border-radius: 28px; }
    .section-card > .container { padding: 40px 25px; }
    .about-section.section-card { margin-top: -60px; padding-top: 20px; margin-bottom: 0; }
    .about-section.section-card > .container { grid-template-columns: 1fr; padding: 0; }
    .about-text { padding: 45px 30px; text-align: center; }
    body.menu-open { overflow: hidden; }
    .products-slider { height: 560px; }
    .slide-overlay { padding: 1.5rem 1rem; }
    .slide-overlay h3 { font-size: 1.45rem; }
    .slide-overlay p { font-size: .9rem; }
    .about-image { width: 80%; max-width: 400px; margin: 0 auto; min-height: 250px; max-height: 300px; border-radius: 20px; }
    .about-image img { border-radius: 20px; }
    .stats-section { padding: 50px 20px; border-radius: 0 0 28px 28px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .stat-item i { font-size: 2.4rem; }
    .stat-number { font-size: 2.6rem; }
    .stat-item p { font-size: 1rem; }
    .stat-desc { font-size: 0.85rem; }
}

@media (max-width: 576px) {
    .stats-grid { grid-template-columns: 1fr; gap: 25px; }
    .stat-number { font-size: 2.8rem; }
    .stat-item p { font-size: 1.05rem; }
}

@media (min-width: 993px) {
    .about-section.section-card > .container { grid-template-columns: 1fr 1fr; }
}