/* ==========================================================================
   SWIFAX — style.css
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html, body {
    overflow-x: hidden;
    max-width: 100%;
}
body {
    padding-top: 62px; /* تعويض ارتفاع الـ navbar الـ fixed */
    background-color: #fdfaf5;
    background-image:
        repeating-linear-gradient(45deg,  rgba(74,44,17,0.025) 0px, rgba(74,44,17,0.025) 1px, transparent 1px, transparent 14px),
        repeating-linear-gradient(-45deg, rgba(74,44,17,0.025) 0px, rgba(74,44,17,0.025) 1px, transparent 1px, transparent 14px);
    background-size: 28px 28px;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.main-navbar {
    padding: 10px 0;
    border-bottom: 1px solid #f2f2f2;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease, transform 0.38s cubic-bezier(0.4,0,0.2,1);
    background-image: linear-gradient(180deg, #ffffff 0%, #fdf8f1 100%);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
.main-navbar.scrolled { box-shadow: 0 4px 25px rgba(0,0,0,0.1); }
.main-navbar::after {
    content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37 20%, #b02a26 50%, #d4af37 80%, transparent);
    background-size: 200% 100%;
    animation: shimmerMove 6s linear infinite;
}

.main-navbar .navbar-brand img { height: 42px; width: auto; object-fit: contain; }
.main-navbar .navbar-brand { transition: opacity 0.2s ease; }
.main-navbar .navbar-brand:hover { opacity: 0.85; }

.main-navbar .nav-link {
    color: #2b2b2b !important; font-weight: 600; text-transform: uppercase;
    font-size: 0.85rem; letter-spacing: 0.8px; padding: 8px 0 !important;
    display: inline-flex; align-items: center; gap: 4px;
    transition: color 0.2s ease; white-space: nowrap;
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active { color: #b02a26 !important; }
.main-navbar .nav-link::after { display: none !important; }

.main-navbar .navbar-toggler {
    border: 1.5px solid #ecdccb !important; border-radius: 8px;
    padding: 7px 10px !important; flex-shrink: 0;
}
.main-navbar .navbar-toggler:focus { box-shadow: none !important; }
.main-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%2874,44,17,0.85%29' stroke-width='2.4' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
    width: 22px; height: 22px;
}
.main-navbar .social-icons a {
    color: #555; font-size: 1rem;
    transition: color 0.2s ease, transform 0.2s ease; display: inline-block;
}
.main-navbar .social-icons a:hover { color: #b02a26; transform: translateY(-2px); }

/* ── Dropdown toggle arrows ── */
.products-dropdown .nav-link.dropdown-toggle,
.new-dropdown .nav-link.dropdown-toggle { display: inline-flex; align-items: center; gap: 6px; }
.products-dropdown .nav-link.dropdown-toggle::before,
.new-dropdown .nav-link.dropdown-toggle::before {
    content: '▾'; font-size: 0.85rem; line-height: 1; transition: transform 0.25s ease;
}
.products-dropdown.show .nav-link.dropdown-toggle::before,
.new-dropdown.show .nav-link.dropdown-toggle::before { transform: rotate(180deg); }

/* ── BRANDS dropdown ── */
.products-dropdown-menu {
    border: none; border-radius: 14px; padding: 4px 0;
    margin-top: 12px !important; min-width: 220px; max-width: 220px;
    background-color: #fff;
    box-shadow: 0 16px 45px rgba(44,26,14,0.18), 0 0 0 1px rgba(44,26,14,0.06);
    overflow: hidden; animation: fadeDownMenu 0.22s cubic-bezier(0.22,1,0.36,1);
}
.products-dropdown-menu li { border-bottom: 1px solid #f3ebe1; }
.products-dropdown-menu li:last-child { border-bottom: none; }
.products-dropdown-menu .dropdown-item {
    padding: 1px 10px; display: flex; align-items: center; justify-content: center;
    transition: background-color 0.2s ease;
}
.products-dropdown-menu .dropdown-item:hover,
.products-dropdown-menu .dropdown-item:focus { background-color: #fdf6ee; }
.products-dropdown-menu .dropdown-item img {
    max-height: var(--logo-h, 52px); max-width: var(--logo-w, 160px);
    width: auto; height: auto; object-fit: contain; display: block;
    mix-blend-mode: multiply;
    transition: transform 0.25s ease;
}
.products-dropdown-menu .dropdown-item:hover img { transform: scale(1.05); }

@media (min-width: 992px) {
    .products-dropdown-menu { left: 50%; margin-left: -110px; margin-top: 12px; }
    .products-dropdown:hover .products-dropdown-menu {
        display: block; animation: fadeDownMenu 0.22s cubic-bezier(0.22,1,0.36,1);
    }
}

/* ── NEW dropdown ── */
.new-dropdown-menu {
    border: none; border-radius: 14px; padding: 6px 0;
    margin-top: 14px !important; min-width: 360px; background-color: #fff;
    box-shadow: 0 16px 45px rgba(44,26,14,0.18), 0 0 0 1px rgba(44,26,14,0.05);
    overflow: hidden; list-style: none;
    animation: fadeDownMenu 0.22s cubic-bezier(0.22,1,0.36,1);
}
.new-dropdown-item { border-bottom: 1px solid #f5ede4; }
.new-dropdown-item:last-child { border-bottom: none; }
.new-dropdown-link {
    display: flex; align-items: center; justify-content: space-between;
    gap: 18px; padding: 16px 28px; text-decoration: none; transition: background-color 0.2s ease;
}
.new-dropdown-link:hover { background-color: #fdf6ee; }
.new-dropdown-logo { max-height: 38px; max-width: 170px; object-fit: contain; flex-shrink: 0; }
.new-badge-img     { width: 60px; height: auto; object-fit: contain; flex-shrink: 0; }

@media (min-width: 992px) {
    .new-dropdown-menu { left: 50%; margin-left: -180px; margin-top: 14px; }
    .new-dropdown:hover .new-dropdown-menu {
        display: block; animation: fadeDownMenu 0.22s cubic-bezier(0.22,1,0.36,1);
    }
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .main-navbar .container {
        display: flex; flex-wrap: wrap; align-items: center;
        justify-content: space-between; padding: 0 clamp(10px, 3vw, 14px); gap: 0;
    }
    .main-navbar .navbar-brand { flex: 0 0 auto; order: 1; margin: 0; }
    .main-navbar .navbar-brand img { height: clamp(34px, 8vw, 38px); }
    .main-navbar .d-flex.align-items-center {
        flex: 0 0 auto; order: 2; margin-inline-start: auto !important;
        display: flex; align-items: center; gap: 8px !important;
    }
    .main-navbar .social-icons { display: flex; gap: 6px !important; }
    .main-navbar .social-icons a {
        width: 34px; height: 34px; display: inline-flex; align-items: center;
        justify-content: center; border-radius: 50%; background: rgba(74,44,17,0.07);
        color: #555; font-size: 0.9rem; transition: background 0.2s ease, color 0.2s ease;
        text-decoration: none;
    }
    .main-navbar .social-icons a:hover { background: rgba(176,42,38,0.1); color: #b02a26; }
    .main-navbar .navbar-toggler { padding: 6px 9px !important; flex-shrink: 0; }
    .main-navbar .navbar-collapse {
        order: 3; flex: 0 0 100%; width: 100%; overflow: visible;
        background: linear-gradient(160deg, #ffffff 0%, #fdf8f2 100%);
        border-radius: 16px; margin-top: 10px; margin-bottom: 4px;
        border: 1px solid #ede3d8;
        box-shadow: 0 16px 40px rgba(44,26,14,0.12), 0 0 0 1px rgba(236,220,203,0.6);
        padding: 4px 12px 14px;
    }
    .main-navbar .navbar-nav {
        flex-direction: column; align-items: stretch; gap: 0; width: 100%; padding: 0; margin: 0;
    }
    .main-navbar .nav-item { width: 100%; }
    .main-navbar .nav-link {
        display: flex; align-items: center; justify-content: center; gap: 6px;
        font-size: 0.8rem !important; font-weight: 700; letter-spacing: 1.2px;
        padding: 13px 8px !important; width: 100%; border-radius: 0;
        border-bottom: 1px solid rgba(237,219,203,0.8); color: #3d1f0a !important;
        white-space: nowrap; transition: color 0.2s ease, background 0.2s ease, border-radius 0.2s ease;
    }
    .main-navbar .nav-link:hover,
    .main-navbar .nav-link.active { color: #b02a26 !important; background: rgba(176,42,38,0.04); border-radius: 10px; }
    .main-navbar .nav-item:last-child > .nav-link { border-bottom: none; }
    .products-dropdown-menu, .new-dropdown-menu {
        position: static !important; float: none !important; inset: auto !important;
        margin: 0 0 8px !important; transform: none !important; width: 100% !important;
        min-width: 0 !important; max-width: 100% !important; background: #fdf9f4 !important;
        border: 1px solid rgba(237,219,203,0.9) !important; border-radius: 14px !important;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.9) !important;
        overflow: hidden !important; padding: 4px 6px !important; animation: none !important;
    }
    .products-dropdown-menu li { border-bottom: 1px solid rgba(237,219,203,0.7); }
    .products-dropdown-menu li:last-child { border-bottom: none; }
    .products-dropdown-menu .dropdown-item {
        padding: 10px 16px;  display: flex; align-items: center; justify-content: center;
        border-radius: 10px; transition: background 0.18s ease;
    }
    .products-dropdown-menu .dropdown-item:hover { background: rgba(176,42,38,0.05) !important; }
    .products-dropdown-menu .dropdown-item img { max-height: 46px !important; max-width: 160px !important; }
    .new-dropdown-item { border-bottom: 1px solid rgba(237,219,203,0.7); }
    .new-dropdown-item:last-child { border-bottom: none; }
    .new-dropdown-link { padding: 12px 20px; gap: 16px; justify-content: center; }
    .new-dropdown-logo { max-height: 32px !important; max-width: 130px !important; }
    .new-badge-img     { width: 44px !important; }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .main-navbar .navbar-collapse { padding: 6px 20px 18px; }
    .main-navbar .nav-link { font-size: 0.82rem !important; padding: 14px 10px !important; }
    .products-dropdown-menu .dropdown-item img { max-height: 50px !important; }
}

@media (max-width: 767.98px) {
    .main-navbar .navbar-collapse { padding: 4px 10px 12px; }
}

@media (max-width: 480px) {
    body { padding-top: 54px; }
    .main-navbar .container        { padding: 0 10px; }
    .main-navbar .navbar-brand img { height: 34px !important; }
    .main-navbar .social-icons a   { width: 30px; height: 30px; font-size: 0.82rem; }
    .main-navbar .navbar-toggler   { padding: 5px 8px !important; }
    .main-navbar .nav-link         { font-size: 0.75rem !important; padding: 11px 6px !important; letter-spacing: 1px !important; }
    .products-dropdown-menu .dropdown-item img { height: 40px !important; max-width: 130px !important; }
    .new-dropdown-logo { max-height: 28px !important; max-width: 110px !important; }
}

html, body { overflow-x: hidden; }
.main-navbar { max-width: 100%; }

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */
.hero-slider-section { position: relative; width: 100%; overflow: hidden; }
.carousel-item {
    height: 77vh; min-height: 520px;
    background-size: cover !important; background-position: center center !important;
    background-repeat: no-repeat !important; position: relative;
}
.carousel-item::before {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to right, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0.1) 55%, rgba(0,0,0,0) 100%);
}
.min-vh-75 { height: 100%; min-height: 72vh; }
.header-content-wrapper {
    position: relative !important; z-index: 99 !important;
    padding-left: 5%; margin-top: -150px; pointer-events: auto !important;
}
.header-content-wrapper .hero-title {
    color: #fff !important; font-family: 'Playfair Display', serif !important;
    font-size: 4.2rem; font-weight: 200 !important; text-transform: uppercase;
    line-height: 1; margin: 2px 0; letter-spacing: 2px;
}
.header-content-wrapper .hero-subtitle {
    color: rgba(255,255,255,0.92) !important; font-family: 'cormorant garamond', serif !important;
    font-style: italic !important; font-size: 1.8rem; font-weight: 200; margin-bottom: 8px;
}
.header-content-wrapper .title-divider {
    width: 350px; height: 1px; background-color: #fff !important;
    opacity: 0.8 !important; margin: 10px 0 !important; border: none;
}
.header-content-wrapper .hero-desc {
    font-family: 'Inter', sans-serif !important; color: rgba(255,255,255,0.88) !important;
    font-size: 0.9rem; font-weight: 400; line-height: 1.4;
    max-width: 380px; margin-top: 8px; margin-bottom: 32px;
}
.button-group { display: flex !important; flex-direction: column !important; align-items: flex-start !important; gap: 10px !important;  }
.button-group .btn { position: relative !important; z-index: 100 !important; margin-top: 0 !important; min-width: 200px; justify-content: space-between !important; }
.btn-main-danger {
    background-color: #b02a26 !important; color: #fff !important; border: none !important;
    border-radius: 12px !important; padding: 8px 20px !important; font-weight: 700 !important;
    font-size: 0.75rem; display: inline-flex; align-items: center;
    transition: background-color 0.25s ease, transform 0.2s ease !important;
    text-decoration: none; white-space: nowrap;
    box-shadow: 0 8px 24px rgba(176,42,38,0.5), inset 0 1px 0 rgba(255,255,255,0.3);
    background-image: linear-gradient(160deg, #d4453d 0%, #b02a26 60%, #8f201d 100%);
}
.btn-main-danger:hover { background-color: #8f201d !important; transform: translateY(-2px); }
.btn-main-outline {
    background-color: transparent !important; color: #fff !important;
    border: 1.5px solid #fff !important; border-radius: 12px !important;
    padding: 8px 20px !important; font-weight: 700 !important; font-size: 0.75rem;
    display: inline-flex; align-items: center; transition: all 0.25s ease !important;
    text-decoration: none; white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25); backdrop-filter: blur(3px);
}
.btn-main-outline:hover { background-color: rgba(255,255,255,0.2) !important; transform: translateY(-2px); }
.custom-slider-btn { width: 5% !important; pointer-events: none !important; z-index: 10 !important; }
.carousel-icon-box {
    background: rgba(255,255,255,0.8); color: #4a2c11; width: 45px; height: 45px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15); pointer-events: auto !important;
}
.custom-slider-btn:hover .carousel-icon-box { background: #b02a26; color: #fff; }
.custom-indicators [data-bs-target] {
    width: 8px; height: 8px; border-radius: 50%; background-color: #a8927f;
    border: none; opacity: 0.4; transition: all 0.3s ease;
}
.custom-indicators .active { width: 24px; border-radius: 4px; background-color: #b02a26; opacity: 1; }
.carousel-item .animate-slide { opacity: 0; transform: translateY(25px); transition: all 0.6s cubic-bezier(0.25,1,0.5,1) 0.15s; }
.carousel-item.active .animate-slide { opacity: 1; transform: translateY(0); }

@media (max-width: 991.98px) {
    .carousel-item { height: 60vh !important; min-height: 420px !important; }
    .carousel-item::before { background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%) !important; }
    .header-content-wrapper {
        padding-left: 15px; padding-right: 15px; text-align: center;
        position: absolute !important; top: 45% !important; left: 50% !important;
        transform: translate(-50%, -50%) !important; width: 90% !important;
        z-index: 9999 !important; margin-top: 0 !important;
    }
    .header-content-wrapper .hero-title    { font-size: 2.8rem !important; }
    .header-content-wrapper .hero-subtitle { font-size: 1.4rem !important; }
    .header-content-wrapper .title-divider { width: 160px !important; margin: 8px auto !important; }
    .header-content-wrapper .hero-desc     { font-size: 0.9rem !important; max-width: 85% !important; margin: 0 auto 15px !important; }
    .button-group { align-items: center !important; gap: 8px !important; margin-top: 10px !important; }
    .button-group .btn { min-width: 200px; }
    .custom-slider-btn { display: none !important; }
}
@media (max-width: 575.98px) {
    .carousel-item { height: 58vh !important; min-height: 400px !important; }
    .header-content-wrapper .hero-title    { font-size: 2.2rem !important; }
    .header-content-wrapper .hero-subtitle { font-size: 1.2rem !important; }
    .header-content-wrapper .hero-desc     { font-size: 0.8rem !important; max-width: 90% !important; }
    .button-group .btn { min-width: 200px; font-size: 0.7rem !important; padding: 7px 14px !important; }
}

/* ==========================================================================
   FEATURES
   ========================================================================== */
.features-section-premium { padding: 55px 0 80px; background-color: #fff; position: relative; background-image: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.06), transparent 60%); }
.premium-feature-card {
    display: flex; align-items: center; gap: 18px; height: 100%;
    background-image: linear-gradient(160deg, #fff 0%, #fdf3e9 100%);
    border: 1px solid #ecd9c4; border-radius: 16px; padding: 18px;
    box-shadow: 0 8px 24px rgba(74,44,17,0.1), inset 0 1px 0 rgba(255,255,255,0.8);
    position: relative; overflow: hidden; cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.premium-feature-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(74,44,17,0.15), inset 0 1px 0 rgba(255,255,255,0.8); }
.p-icon-box {
    background-image: radial-gradient(circle at 30% 30%, #fff8ee, #f3e0c9);
    color: #4a2c11; width: 52px; height: 52px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
    border: 1px solid #ebdacc; flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(74,44,17,0.15), 0 0 0 4px rgba(212,175,55,0.08);
}
.p-feature-title { font-size: 0.95rem; font-weight: 700; color: #4a2c11; margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.3px; }
.p-feature-text  { font-size: 0.85rem; color: #777; margin: 0; }
@media (max-width: 575.98px) {
    .p-icon-box { width: 42px; height: 42px; font-size: 1rem; }
    .p-feature-title { font-size: 0.75rem; }
    .p-feature-text { display: none; }
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-section {
    padding: 70px 0 50px; position: relative; background-color: #fbf4ea;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.55' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E"), radial-gradient(circle at 90% 10%, rgba(212,175,55,0.1), transparent 40%);
}
.about-main-title { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 800; color: #3d1f0a; letter-spacing: 1px; margin-bottom: 8px; }
.about-title-line { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.about-icon-star  { color: #9c8180; font-size: 0.7rem; flex-shrink: 0; }
.about-hr { flex: 0 0 160px; height: 2px; border: none; opacity: 1; margin: 0; background-image: linear-gradient(90deg, #c9a05c, #8a5a2e) !important; box-shadow: 0 0 6px rgba(201,160,92,0.4); }
.about-body-text p    { font-size: 0.85rem; color: #4a2c11; line-height: 1.9; margin-bottom: 20px; }
.about-founder-name   { color: #b02a26; font-weight: 700; }
.about-img-wrapper { border-radius: 15px; overflow: hidden; position: relative; border: 3px solid rgba(74,44,17,0.35); box-shadow: 0 30px 70px rgba(61,31,10,0.28), 0 0 0 8px rgba(212,175,55,0.07); }
.about-founder-img { width: 100%; height: 420px; object-fit: cover; display: block; }
@media (max-width: 991.98px) { .about-main-title { font-size: 2.2rem; } .about-founder-img { height: 320px; } }
@media (max-width: 767.98px) { .about-section { padding: 50px 0 40px; } .about-main-title { font-size: 1.9rem; } .about-founder-img { height: 260px; } }

/* ==========================================================================
   TIMELINE
   ========================================================================== */
.timeline-title { display: flex; align-items: center; justify-content: center; width: 100% !important; margin: 0 auto 1.5rem auto !important; font-family: "Cinzel", Georgia, serif; text-transform: uppercase; letter-spacing: 0.18em; font-size: 20px; color: #3e322b; }
.timeline-title::before, .timeline-title::after { content: ''; flex: 1; height: 1px; background-color: #3e322b; opacity: 0.25; }
.timeline-title span { padding: 0 20px; white-space: nowrap; font-weight: 500; }
.timeline-line { position: absolute; top: 35px; left: 10%; width: 80%; height: 2px; z-index: 1; background-image: linear-gradient(90deg, transparent, #d4af37 15%, #3a220f 30%, #3a220f 70%, #d4af37 85%, transparent) !important; }
.timeline-icon { width: 70px; height: 70px; line-height: 66px; text-align: center; background-image: radial-gradient(circle at 30% 30%, #fbe9d2, #f2dec8); border: 2px solid #f2dec8; border-radius: 50%; color: #191f24; margin: 0 auto 1rem auto; transition: all 0.35s cubic-bezier(0.22,1,0.36,1); box-shadow: 0 6px 18px rgba(0,0,0,0.12), 0 0 0 5px rgba(212,175,55,0.12); }
.timeline-item:hover .timeline-icon { border-color: #9e1717; color: #9e1717; transform: translateY(-6px) scale(1.08); }
.timeline-year { font-weight: 700; margin-bottom: 0.25rem; color: #212529; }
.timeline-sub  { color: #970413; font-weight: 600; margin-bottom: 0.3rem; font-size: 0.85rem; }
.timeline-desc { color: #3e322b; font-style: italic; font-size: 0.90rem; line-height: 1.2; padding: 0 0.5rem; }

/* ==========================================================================
   STATS BANNER
   ========================================================================== */
.stats-banner { position: relative; background-size: cover; background-position: center; max-width: 1100px; margin: 3rem auto 0; padding: 1.8rem 2rem; border-radius: 15px; overflow: hidden; box-shadow: 0 20px 55px rgba(0,0,0,0.35), 0 0 0 1px rgba(212,175,55,0.15); }
.stats-banner::before { content: ''; position: absolute; inset: 0; background: rgba(15,5,2,0.38); z-index: 0; border-radius: 15px; }
.stat-box { display: flex; align-items: center; justify-content: center; margin: 0.1rem 0; position: relative; z-index: 1; }
.stat-icon { width: 65px; height: 65px; font-size: 1.8rem; border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 1rem; color: #fff; opacity: 0.9; flex-shrink: 0; background-image: linear-gradient(160deg, rgba(212,175,55,0.25), rgba(255,255,255,0.04)); }
.stat-number  { font-weight: 700; font-size: 1.5rem; color: #fff; line-height: 1; margin-bottom: 3px; }
.stat-text    { font-size: 0.78rem; color: rgba(255,255,255,0.9); line-height: 1.4; }
.stat-subtext { color: rgba(255,255,255,0.55); font-size: 0.72rem; }
@media (max-width: 767.98px) {
    .stats-banner { max-width: 95%; border-radius: 18px; padding: 1.4rem 1.2rem; }
    .stats-banner .row > [class*="col"] { width: 100% !important; flex: 0 0 100% !important; max-width: 100% !important; }
    .stat-box { flex-direction: row; text-align: left; align-items: center; justify-content: flex-start; gap: 18px; padding: 16px 4px; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .stats-banner .row > [class*="col"]:last-child .stat-box { border-bottom: none; }
    .stat-icon { margin-right: 0; margin-bottom: 0; width: 58px; height: 58px; font-size: 1.5rem; flex-shrink: 0; }
    .stat-number { font-size: 1.45rem; }
    .stat-text   { font-size: 0.8rem; }
}

/* ==========================================================================
   OUR BRANDS / PRODUCTS
   ========================================================================== */
:root {
    --brown-dark:  #2c1a0e; --brown-mid: #6b3d1e; --brown-light: #c4956a; --gold: #b8860b;
    --transition:  0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --solution-logo-max-width: 180px; --solution-logo-max-height: 120px;
}
.products-section { background-size: cover; background-position: center; padding: 90px 0 80px; overflow: hidden; position: relative; background-color: #f3e7d8; }
.products-section::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0; background-image: repeating-linear-gradient(0deg, rgba(74,44,17,0.02) 0px, transparent 1px, transparent 40px), repeating-linear-gradient(90deg, rgba(74,44,17,0.02) 0px, transparent 1px, transparent 40px); }
.products-header { text-align: center; margin-bottom: 20px; position: relative; z-index: 1; }
.products-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--brown-dark); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 12px; }
.products-header .divider { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 10px auto 10px; }
.products-header .divider::before, .products-header .divider::after { content: ''; display: block; width: 80px; height: 1.5px; background: var(--brown-light); }
.products-header .divider-icon { color: var(--gold); font-size: 1rem; animation: glowPulse 2s ease-in-out infinite; }
.products-header p { color: #7a5c3e; font-size: 0.95rem; font-weight: 300; max-width: 450px; margin: 0 auto; line-height: 1.7; }
.slider-wrapper { position: relative; width: 100%; max-width: 1100px; margin: 0 auto; padding: 20px 0 0; z-index: 1; }
.slider-track { position: relative; width: 100%; overflow: visible; }
.product-card {
    position: absolute !important; left: 50%; top: 60px; width: 290px;
    background: linear-gradient(165deg, #fdf6ee 0%, #f7e9d6 100%); border-radius: 24px;
    padding: 34px 28px 30px; text-align: center; border: 1.5px solid rgba(196,149,106,0.25);
    box-shadow: 0 8px 28px rgba(44,26,14,0.09); cursor: pointer;
    transition: transform 0.58s cubic-bezier(0.22,1,0.36,1), opacity 0.58s cubic-bezier(0.22,1,0.36,1), box-shadow 0.45s ease, background 0.45s ease, border-color 0.45s ease;
}
.product-card.is-center { background: linear-gradient(160deg, #fff 0%, #fff7ea 100%); border-color: rgba(196,149,106,0.5); width: 330px; animation: floatCard 4s ease-in-out infinite; }
@keyframes floatCard { 0%, 100% { translate: 0 0; } 50% { translate: 0 -8px; } }
.badge-most-loved { display: inline-flex; align-items: center; gap: 5px; background: var(--brown-mid); color: #fff; font-size: 0.67rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 16px; border-radius: 50px; margin-bottom: 20px; box-shadow: 0 4px 12px rgba(107,61,30,0.35); }
.badge-placeholder { height: 31px; margin-bottom: 20px; }
.product-img-wrap { height: 180px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; transition: height 0.45s ease; }
.product-card.is-center .product-img-wrap { height: 220px; }
.product-img-wrap img { max-height: 100%; max-width: 700px; object-fit: contain; transition: transform 0.55s cubic-bezier(0.22,1,0.36,1); filter: drop-shadow(0 8px 20px rgba(44,26,14,0.14)); }
.product-card.is-center .product-img-wrap img { transform: scale(1.04); }
.product-card.is-center:hover .product-img-wrap img { transform: scale(1.22) translateY(-6px); }
.product-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--brown-dark); margin-bottom: 10px; transition: font-size 0.4s ease; }
.product-card.is-center h3 { font-size: 1.5rem; }
.card-divider { width: 30px; height: 2px; background: linear-gradient(90deg, #c9a05c, #8a5a2e); margin: 0 auto 18px; border-radius: 2px; }
.btn-explore { display: inline-block; border: 1.8px solid var(--brown-dark); color: var(--brown-dark); background: transparent; padding: 9px 26px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; border-radius: 50px; cursor: pointer; transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease; text-decoration: none; }
.product-card.is-center .btn-explore { background: var(--brown-dark); color: #fff; box-shadow: 0 6px 22px rgba(44,26,14,0.38); padding: 11px 38px; }
.btn-explore:hover { background: var(--brown-dark); color: #fff; box-shadow: 0 6px 18px rgba(44,26,14,0.3); }
.slider-arrow { display: none !important; }
.slider-dots { display: flex !important; justify-content: center; align-items: center; gap: 9px; margin-top: 36px; }
.dot { width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0; background: rgba(107,61,30,0.22); cursor: pointer; transition: background 0.25s, transform 0.25s; }
.dot.active { background: var(--brown-mid); transform: scale(1.55); }
@media (max-width: 900px) {
    .slider-wrapper { max-width: 780px; }
    .product-card { width: 235px; padding: 26px 20px 22px; }
    .product-card.is-center { width: 268px; padding: 32px 24px 26px; }
    .product-img-wrap { height: 145px; } .product-card.is-center .product-img-wrap { height: 178px; }
    .product-card h3 { font-size: 1.05rem; } .product-card.is-center h3 { font-size: 1.3rem; }
}
@media (max-width: 580px) {
    .slider-wrapper { max-width: 100%; }
    .product-card { width: 185px; padding: 20px 14px 18px; }
    .product-card.is-center { width: 210px; padding: 26px 18px 22px; }
    .product-img-wrap { height: 120px; } .product-card.is-center .product-img-wrap { height: 150px; }
    .product-card h3 { font-size: 0.95rem; } .product-card.is-center h3 { font-size: 1.15rem; }
    .product-card.is-center .btn-explore { padding: 9px 26px; font-size: 0.64rem; }
}

/* ==========================================================================
   SOLUTIONS
   ========================================================================== */
.solutions-section { position: relative; background-color: #fdedde; padding: 70px 20px 80px; overflow: hidden; margin-top: 0; }
.solutions-section::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0; background-image: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.12), transparent 55%); }
.solutions-header { text-align: center; margin-bottom: 55px; position: relative; z-index: 1; }
.solutions-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; color: var(--brown-dark); letter-spacing: 0.02em; margin-bottom: 12px; }
.solutions-header p { color: #7a5c3e; font-size: 0.95rem; max-width: 600px; margin: 0 auto; line-height: 1.7; }
.solutions-columns { display: flex; align-items: flex-start; justify-content: center; gap: 60px; max-width: 960px; margin: 0 auto; position: relative; z-index: 1; flex-wrap: wrap; }
.solutions-col { flex: 1; min-width: 240px; text-align: center; }
.solutions-col-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 800; color: var(--brown-dark); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 30px; }
.solutions-divider-vertical { width: 1.5px; align-self: stretch; background: linear-gradient(180deg, transparent, rgba(196,149,106,0.5), transparent); margin-top: 10px; }
.solutions-items { display: flex; justify-content: center; align-items: flex-start; gap: 36px; flex-wrap: wrap; }
.solution-item { display: flex; flex-direction: column; align-items: center; gap: 10px; text-decoration: none; transition: transform 0.3s ease; min-width: 110px; }
.solution-item:hover { transform: translateY(-5px); }
.solution-item img { max-width: 180px; max-height: 160px; object-fit: contain; transition: transform 0.3s ease; }
.solution-item:hover img { transform: scale(1.06); }
.solution-label { color: #7a5c3e; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.8px; text-align: center; white-space: nowrap; text-transform: uppercase; border-top: 1px solid rgba(196,149,106,0.4); padding-top: 7px; width: 100%; }
@media (max-width: 767.98px) {
    .solutions-columns { flex-direction: column; gap: 36px; }
    .solutions-divider-vertical { display: none; }
    .solutions-col-title { font-size: 1.25rem; margin-bottom: 20px; }
    .solutions-items { gap: 36px; }
}

/* ==========================================================================
   EVENTS
   ========================================================================== */
.events-section { padding: 80px 0; background-color: #fff; position: relative; background-image: radial-gradient(ellipse at 50% 0%, rgba(176,42,38,0.04), transparent 60%); }
.events-header       { text-align: center; margin-bottom: 20px; }
.events-main-title   { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: #3d1f0a; letter-spacing: 3px; margin-bottom: 10px; }
.events-subtitle     { font-size: 0.88rem; color: #361d09; margin-bottom: 8px; }
.events-timeline     { position: relative; }
.events-timeline-line { position: absolute; top: 22px; left: 5%; right: 5%; height: 2px; background-color: #e0d0c4; z-index: 0; }
.event-year-wrapper  { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 1; margin-bottom: 16px; }
.event-year-dot      { width: 12px; height: 12px; border-radius: 50%; background-color: #b02a26; box-shadow: 0 0 0 2px #b02a26, 0 0 12px rgba(176,42,38,0.5); margin-bottom: 8px; }
.event-year-badge    { background-image: linear-gradient(160deg, #c8362f, #b02a26); color: #fff; font-size: 0.82rem; font-weight: 800; letter-spacing: 1.5px; padding: 5px 18px; border-radius: 20px; }
.event-card { background-image: linear-gradient(160deg, #fff 0%, #fffaf3 100%); border-radius: 16px; border: 1.5px solid #e8d8c8; overflow: hidden; box-shadow: 0 4px 20px rgba(61,31,10,0.07); transition: box-shadow 0.4s cubic-bezier(0.22,1,0.36,1), transform 0.4s cubic-bezier(0.22,1,0.36,1); position: relative; transform-style: preserve-3d; perspective: 800px; }
.event-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #d4af37, #b02a26, #d4af37); opacity: 0; transition: opacity 0.4s ease; z-index: 2; }
.event-card:hover::before { opacity: 1; }
.event-card:hover { box-shadow: 0 28px 65px rgba(61,31,10,0.22); }
.event-card-img { width: 100%; height: 240px; overflow: hidden; position: relative; }
.event-img-slider { display: flex; width: 100%; height: 100%; transition: transform 0.5s cubic-bezier(0.22,1,0.36,1); will-change: transform; }
.event-img-slide { min-width: 100%; height: 100%; flex-shrink: 0; }
.event-img-slide img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s ease; }
.event-card:hover .event-img-slide img { transform: scale(1.04); }
.event-img-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 5; }
.event-img-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.45); cursor: pointer; transition: background 0.25s ease, transform 0.25s ease; border: none; padding: 0; }
.event-img-dot.active { background: #fff; transform: scale(1.35); }
.event-img-prev, .event-img-next { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; background: rgba(0,0,0,0.35); color: #fff; border: none; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; cursor: pointer; opacity: 0; transition: opacity 0.25s ease, background 0.2s ease; }
.event-img-prev { left: 8px; } .event-img-next { right: 8px; }
.event-card:hover .event-img-prev, .event-card:hover .event-img-next { opacity: 1; }
.event-img-prev:hover, .event-img-next:hover { background: rgba(176,42,38,0.75); }
.event-card-body  { padding: 24px 22px 28px; text-align: center; }
.event-card-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: #3d1f0a; margin-bottom: 10px; }
.event-card-divider { width: 40px; height: 2px; background-image: linear-gradient(90deg, #c9a05c, #8a5a2e) !important; margin: 0 auto 14px; border-radius: 2px; }
.event-card-desc  { font-size: 0.82rem; color: #3b2210; line-height: 1.75; margin: 0; text-align: start; }
@media (max-width: 991.98px) { .events-main-title { font-size: 2.3rem; } .events-timeline-line { display: none; } .event-card-img { height: 300px;  } }
@media (max-width: 767.98px) { .events-section { padding: 55px 0; } .events-main-title { font-size: 1.9rem; } }

/* ==========================================================================
   CERTIFICATIONS
   ========================================================================== */
.certifications-section { padding: 80px 0 90px; background-color: #fdf8f1; background-image: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.07), transparent 55%); }
.certifications-header { text-align: center; margin-bottom: 50px; }
.certifications-title-wrapper { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 8px; }
.certifications-line { width: 90px; height: 1.5px; border: none; margin: 0; background: linear-gradient(90deg, transparent, #b02a26) !important; }
.certifications-line.right { background: linear-gradient(90deg, #b02a26, transparent) !important; }
.certifications-main-title { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: #3d1f0a; letter-spacing: 3px; text-transform: uppercase; white-space: nowrap; margin: 0; }
.certifications-subtitle { font-size: 0.86rem; color: #7a5c3e; margin: 6px 0 0; letter-spacing: 0.3px; }
.certifications-box { max-width: 860px; margin: 0 auto; background-image: linear-gradient(160deg, #fdf5ef 0%, #f8e7d7 100%); border-radius: 20px; border: 1.5px solid #e8d8c8; padding: 50px 40px; box-shadow: 0 18px 45px rgba(61,31,10,0.1), inset 0 1px 0 rgba(255,255,255,0.6); }
.certifications-logos { display: flex; align-items: center; justify-content: center; gap: 0; }
.cert-item { flex: 1; display: flex; align-items: center; justify-content: center; padding: 10px 30px; transition: transform 0.3s ease; }
.cert-item:hover { transform: scale(1.05); }
.cert-item img { max-width: 220px; height: 110px; object-fit: contain; display: block; }
.cert-divider { width: 1px; height: 100px; flex-shrink: 0; background-image: linear-gradient(180deg, transparent, #c4956a, transparent) !important; }
@media (max-width: 767.98px) {
    .certifications-section { padding: 55px 0 65px; }
    .certifications-main-title { font-size: 1rem; letter-spacing: 1.5px; }
    .certifications-line { width: 50px; }
    .certifications-box { padding: 30px 16px; border-radius: 14px; max-width: 95%; }
    .certifications-logos { flex-direction: column; gap: 28px; }
    .cert-divider { width: 80px; height: 1px; }
    .cert-item { padding: 0; }
    .cert-item img { height: 75px; max-width: 180px; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-section {
    background-color: #fff;
    border-top: 1px solid #ede0d2;
    padding: 60px 0 0;
}
.footer-logo {
    height: 70px; width: auto; object-fit: contain; display: block; margin-bottom: 0;
}
.footer-col-title {
    font-size: 0.78rem; font-weight: 800;
    color: #3d1f0a; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 18px;
}
.footer-title {
    font-size: 0.78rem; font-weight: 800;
    color: #3d1f0a; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 18px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    font-size: 0.88rem; color: #666; text-decoration: none; transition: color 0.2s ease;
}
.footer-links a:hover { color: #b02a26; }
.footer-contact-item { font-size: 0.88rem; color: #666; margin-bottom: 6px; display: block; }
.footer-socials { display: flex; gap: 9px; margin-top: 16px; flex-wrap: wrap; }
.footer-socials a {
    width: 36px; height: 36px; border-radius: 50%;
    background-color: #3d1f0a; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.82rem; text-decoration: none;
    transition: background-color 0.25s ease, transform 0.2s ease;
}
.footer-socials a:hover { background-color: #b02a26; transform: translateY(-2px); }
.footer-address { font-size: 0.88rem; color: #666; line-height: 1.9; margin: 0; }
.footer-copyright {
    background-color: #2c1a0e; margin-top: 50px;
    padding: 16px 0; text-align: center;
}
.footer-copyright p {
    font-size: 0.82rem; color: rgba(255,255,255,0.6); margin: 0; letter-spacing: 0.5px;
}
@media (max-width: 991.98px) {
    .footer-section { padding: 44px 0 0; }
    .footer-col-title { margin-top: 28px; }
    .footer-title { margin-top: 28px; }
}
@media (max-width: 767.98px) {
    .footer-logo { height: 55px; }
    .footer-copyright { margin-top: 36px; }
}