/* ==========================================================================
   ZOVA TRADING - LUXURY DARK GOLD GLOBAL THEME & HEADER MATCHING MOCKUP
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800;900&family=El+Messiri:wght@400;600;700&display=swap');

:root {
    --zova-bg-dark: #040507;
    --zova-bg-card: #080a0e;
    --zova-bg-card-hover: #131722;
    --zova-bg-header: #040507;
    
    --zova-gold-primary: #d4af37;
    --zova-gold-light: #f5e6be;
    --zova-gold-bright: #e5c158;
    --zova-gold-dark: #a88219;
    
    --zova-text-white: #ffffff;
    --zova-text-light: #e0e4ec;
    --zova-text-muted: #9aa3b4;
    --zova-border-gold: rgba(212, 175, 55, 0.35);
    --zova-gold-glow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

* {
    box-sizing: border-box;
    font-family: 'Cairo', 'El Messiri', sans-serif;
}

body {
    background-color: var(--zova-bg-dark) !important;
    color: var(--zova-text-light) !important;
    font-family: 'Cairo', 'El Messiri', sans-serif !important;
    margin: 0;
    padding: 0;
}

/* ==========================================================================
   ULTRA CHIC TOP BAR STYLING (FIXED RTL PHONE NUMBERS & DUAL CALL/WHATSAPP)
   ========================================================================== */
.zova-topbar {
    background: linear-gradient(180deg, #040507 0%, #080a0d 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    padding: 8px 0;
    font-size: 0.88rem;
    color: #e0e4ec;
}

.zova-topbar-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.zova-topbar-slogan {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e5c158;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.zova-topbar-slogan i {
    color: #d4af37;
    font-size: 0.95rem;
}

.zova-topbar-contacts {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.zova-topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.zova-topbar-label {
    color: #e5c158;
    font-weight: 700;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.zova-topbar-num {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    direction: ltr !important;
    display: inline-block;
    unicode-bidi: isolate;
    letter-spacing: 0.5px;
}

.zova-topbar-icon-link {
    color: #d4af37;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.zova-topbar-icon-link:hover {
    background: #d4af37;
    color: #000000;
    transform: scale(1.1);
}

.zova-topbar-icon-link.whats {
    color: #25d366;
    background: rgba(37, 211, 102, 0.15);
}

.zova-topbar-icon-link.whats:hover {
    background: #25d366;
    color: #ffffff;
    transform: scale(1.1);
}

.zova-topbar-divider {
    color: rgba(212, 175, 55, 0.4);
    font-weight: 300;
}

/* ==========================================================================
   HEADER NAVBAR STYLING (EXACT MATCH TO USER MOCKUP IMAGE)
   ========================================================================== */
.ebhdr9-hdr {
    background-color: #040507 !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3) !important;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.85) !important;
}

.ebhdr9-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
    background: transparent !important;
}

.zova-header-logo-wrapper {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.zova-header-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.zova-header-logo:hover {
    transform: scale(1.03);
}

.ebhdr9-nav-menu-pages {
    background: transparent !important;
    background-color: transparent !important;
    display: flex;
    align-items: center;
}

.zova-nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.zova-nav-link {
    color: #ffffff !important;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.zova-nav-link:hover,
.zova-nav-link.active {
    color: #e5c158 !important;
}

/* Gold active underline matching header image */
.zova-nav-link.active::after,
.zova-nav-link:hover::after {
    content: "";
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 100%;
    height: 2.5px;
    background: linear-gradient(90deg, #d4af37 0%, #e5c158 100%);
    border-radius: 2px;
}

/* Left Action Container */
.zova-header-left-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Left Outlined Gold Button matching header image */
.zova-header-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 22px;
    border: 1.5px solid #d4af37;
    border-radius: 8px;
    color: #d4af37 !important;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    background: transparent !important;
    transition: all 0.35s ease;
}

.zova-header-cta-btn:hover {
    background: linear-gradient(135deg, #d4af37 0%, #a88219 100%) !important;
    color: #000000 !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    border-color: #d4af37;
}

.zova-header-cta-btn i {
    font-size: 0.9rem;
}

/* Dropdown Menu Desktop */
.zova-nav-dropdown {
    position: relative;
}

.zova-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 250px;
    background: #131722;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 10000;
}

.zova-nav-dropdown:hover .zova-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.zova-dropdown-item a {
    display: block;
    padding: 10px 20px;
    color: #e0e4ec;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

.zova-dropdown-item a:hover {
    background-color: rgba(212, 175, 55, 0.15);
    color: #e5c158;
}

/* ==========================================================================
   ZOVA TRADING - FULL PANORAMIC HERO BANNER (100% EXACT MATCH TO USER MOCKUP)
   ========================================================================== */
.zova-panoramic-hero {
    position: relative;
    width: 100%;
    background: #040507 !important;
    overflow: hidden;
    border-bottom: 1.5px solid rgba(212, 175, 55, 0.4);
}

.zova-hero-banner-wrapper {
    display: grid;
    grid-template-columns: 1.25fr 0.9fr 1.25fr;
    min-height: 480px;
    position: relative;
    width: 100%;
    align-items: stretch;
}

/* Individual Background Panels */
.zova-hero-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    min-height: 420px;
}

.zova-panel-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
}

.zova-hero-panel:hover .zova-panel-bg {
    transform: scale(1.05);
}

/* Blurred Glass Overlay on Side Backgrounds */
.zova-panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4,5,7,0.1) 0%, rgba(4,5,7,0.3) 55%, rgba(4,5,7,0.92) 100%) !important;
    backdrop-filter: blur(2px);
}

/* Content overlays on Panels */
.zova-panel-content {
    position: relative;
    z-index: 5;
    padding: 25px 35px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.zova-content-right {
    justify-content: flex-end;
    text-align: right;
}

.zova-content-left {
    justify-content: flex-start;
    text-align: right;
}

.zova-panel-icon-circle {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    border: 1.5px solid #d4af37;
    background: rgba(4, 5, 7, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e5c158;
    font-size: 1.35rem;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(6px);
    transition: all 0.35s ease;
}

.zova-hero-panel:hover .zova-panel-icon-circle {
    transform: scale(1.1);
    background: #d4af37;
    color: #000000;
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.7);
}

.zova-panel-title {
    color: #e5c158;
    font-size: 1.45rem;
    font-weight: 800;
    margin: 0 0 4px 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95);
}

.zova-panel-desc {
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.45;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95);
    white-space: nowrap;
}

/* Center Panel Brand Circle Emblem (Obsidian Black #040507 Background - NO NAVY BLUE) */
.zova-hero-panel-center {
    position: relative;
    z-index: 10;
    background: transparent !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zova-center-circle-badge {
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: #040507 !important;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    padding: 25px 20px 35px 20px;
    position: relative;
    margin: -35px 0;
}

/* Faded Top & Bottom Golden Arch Border Mask */
.zova-center-circle-badge::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 1.5px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0) 0%, #d4af37 32%, #d4af37 68%, rgba(212, 175, 55, 0) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* PURE TRANSPARENT LOGO IMAGE WITHOUT BLACK BOX OR ARTIFICIAL SHADOWS */
.zova-center-circle-logo {
    height: 205px !important;
    max-height: 48% !important;
    width: auto;
    object-fit: contain;
    margin-top: -10px;
    margin-bottom: 2px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    filter: none !important;
}

.zova-center-main-title {
    color: #ffffff;
    font-size: 2.35rem;
    font-weight: 900;
    margin: 0 0 4px 0;
    letter-spacing: 0.5px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.95);
}

.zova-center-sub-title {
    color: #e5c158;
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 25px 0;
    max-width: 340px;
    line-height: 1.45;
}

.zova-center-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 90%;
    justify-content: center;
}

.zova-hero-btn-gold {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #e5c158 0%, #d4af37 50%, #a88219 100%);
    color: #0b0903 !important;
    font-weight: 800;
    font-size: 0.98rem;
    padding: 11px 24px;
    border-radius: 9px;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.45);
}

.zova-hero-btn-gold:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f5e6be 50%, #d4af37 100%);
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.65);
}

.zova-hero-btn-outline {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid #d4af37;
    color: #e5c158 !important;
    font-weight: 800;
    font-size: 0.98rem;
    padding: 10px 22px;
    border-radius: 9px;
    text-decoration: none;
    transition: all 0.35s ease;
}

.zova-hero-btn-outline:hover {
    background: #d4af37;
    color: #000000 !important;
    transform: translateY(-2px);
}

/* ==========================================================================
   ZOVA TRADING - ACTIVITIES SECTION (3 CARDS PER ROW MATCHING USER MOCKUP)
   ========================================================================== */
.zova-activities-section {
    padding: 75px 0 100px 0 !important;
    background: #040507 !important;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.zova-section-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.zova-section-title-wrapper h2 {
    color: #e5c158;
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.zova-section-title-wrapper h2::before,
.zova-section-title-wrapper h2::after {
    content: "";
    width: 80px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    display: inline-block;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
}

.zova-activity-card {
    background: #080a0e !important;
    border: 1.5px solid rgba(212, 175, 55, 0.35) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8) !important;
}

.zova-activity-card:hover {
    transform: translateY(-8px) !important;
    border-color: #e5c158 !important;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.25) !important;
}

.zova-activity-img-wrapper {
    width: 100%;
    height: 210px;
    overflow: hidden;
    position: relative;
    background: #0d1017;
}

.zova-activity-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.zova-activity-card:hover .zova-activity-img {
    transform: scale(1.06);
}

.zova-activity-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid #d4af37;
    background: #080a0e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 1.3rem;
    margin: -26px auto 14px auto;
    position: relative;
    z-index: 10;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
    transition: all 0.35s ease;
}

.zova-activity-card:hover .zova-activity-icon-circle {
    background: #d4af37;
    color: #000000;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.zova-activity-body {
    padding: 0 25px 25px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
}

.zova-activity-title {
    color: #e5c158;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 0 8px 0;
}

.zova-activity-desc {
    color: #9aa3b4;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.zova-activity-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e5c158 !important;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.zova-activity-link:hover {
    color: #ffffff !important;
}

.zova-activity-link i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.zova-activity-link:hover i {
    transform: translateX(-4px);
}

/* ==========================================================================
   ZOVA TRADING - FAQ ACCORDION STYLING & TOGGLE FIX
   ========================================================================== */
.ebfq3-sec {
    background: #040507 !important;
    padding: 70px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.ebfq3-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 25px;
}

.ebfq3-title {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin: 0 0 40px 0;
}

.ebfq3-accordion {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ebfq3-item {
    background: #080a0e !important;
    border: 1.5px solid rgba(212, 175, 55, 0.3) !important;
    border-radius: 12px !important;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.ebfq3-item:hover,
.ebfq3-item.ebfq3-open {
    border-color: #e5c158 !important;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2) !important;
}

.ebfq3-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    cursor: pointer;
    color: #e5c158 !important;
    font-size: 1.15rem;
    font-weight: 700;
    text-align: right;
    transition: color 0.3s ease;
}

.ebfq3-btn span {
    color: #e5c158;
    line-height: 1.5;
}

.ebfq3-icon {
    color: #d4af37;
    font-size: 1.1rem;
    transition: transform 0.4s ease;
    margin-right: 15px;
}

.ebfq3-item.ebfq3-open .ebfq3-icon {
    transform: rotate(180deg);
    color: #ffffff;
}

.ebfq3-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid transparent;
}

.ebfq3-item.ebfq3-open .ebfq3-answer {
    max-height: 400px;
    opacity: 1;
    border-top-color: rgba(212, 175, 55, 0.2);
    padding: 20px 25px;
}

.ebfq3-answer p {
    color: #e0e4ec;
    font-size: 0.98rem;
    line-height: 1.7;
    margin: 0;
}

/* Points cards (Why Us) dark theme override */
.ebpt1-why-us-sec {
    background-color: var(--zova-bg-dark) !important;
}

.ebpt1-title {
    color: var(--zova-text-white) !important;
}

.ebpt1-title-highlight {
    color: var(--zova-gold-bright) !important;
}

.ebpt1-card-box {
    background: var(--zova-bg-card) !important;
    border: 1px solid var(--zova-border-gold) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
    border-radius: 16px !important;
}

.ebpt1-card:hover .ebpt1-card-box {
    border-color: var(--zova-gold-bright) !important;
    box-shadow: var(--zova-gold-glow) !important;
}

.ebpt1-card-title {
    color: var(--zova-gold-bright) !important;
}

.ebpt1-card-desc {
    color: var(--zova-text-light) !important;
}

.ebpt1-card-num {
    color: rgba(212, 175, 55, 0.15) !important;
}

/* Achievements dark theme override */
.ebatc1-stats-section {
    background-color: var(--zova-bg-dark) !important;
}

.ebatc1-title {
    color: var(--zova-text-white) !important;
}

.ebatc1-title-highlight {
    color: var(--zova-gold-bright) !important;
}

.ebatc1-orb-card {
    background: var(--zova-bg-card) !important;
    border: 1px solid var(--zova-border-gold) !important;
    color: var(--zova-text-white) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4) !important;
}

.ebatc1-orb-label {
    color: var(--zova-text-light) !important;
}

.ebatc1-orb-value {
    color: var(--zova-gold-bright) !important;
}

/* Contact section dark theme override */
.ebci2-contact-section-title {
    color: var(--zova-gold-bright) !important;
}

.ebci2-contact-card {
    background-color: var(--zova-bg-card) !important;
    border: 1px solid var(--zova-border-gold) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
}

.ebci2-contact-card-title {
    color: var(--zova-gold-bright) !important;
}

.ebci2-contact-card-text {
    color: var(--zova-text-light) !important;
}

.ebci2-contact-address-title h3 {
    color: var(--zova-text-white) !important;
}

/* Footer dark theme styling alignment */
.ebftr1-footer {
    color: var(--zova-text-light);
}

/* Floating contact buttons - Vertical Stacked */
.floating-contact-btn {
    position: fixed;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    min-width: 120px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.floating-whatsapp {
    left: 25px;
    bottom: 25px;
    background: #25D366;
    color: #ffffff;
}

.floating-phone {
    left: 25px;
    bottom: 85px;
    background: linear-gradient(135deg, #d4af37 0%, #a88219 100%);
    color: #000000;
}

@media (max-width: 768px) {
    .floating-contact-btn {
        padding: 0 !important;
        width: 46px !important;
        min-width: 46px !important;
        height: 46px !important;
        border-radius: 50% !important;
        justify-content: center !important;
        align-items: center !important;
        box-shadow: 0 6px 20px rgba(0,0,0,0.6) !important;
    }

    .floating-contact-btn span {
        display: none !important;
    }

    .floating-contact-btn i {
        font-size: 1.25rem !important;
        margin: 0 !important;
    }

    .floating-whatsapp {
        left: 15px !important;
        bottom: 16px !important;
    }

    .floating-phone {
        left: 15px !important;
        bottom: 72px !important;
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN FOR PANORAMIC HERO & ACTIVITIES & FAQ
   ========================================================================== */
.ebhdr9-nav-toggle {
    display: none;
}

@media (max-width: 1024px) {
    .zova-hero-banner-wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    /* Mobile Order: Main Brand Circle First, then Showcase Panels */
    .zova-hero-panel-center {
        order: 1;
        padding: 30px 15px;
    }

    .zova-hero-panel-cosmetics {
        order: 2;
    }

    .zova-hero-panel-agri {
        order: 3;
    }

    /* Side Panels on Mobile */
    .zova-hero-panel {
        min-height: 240px;
    }

    .zova-panel-content {
        padding: 20px;
    }

    .zova-panel-title {
        font-size: 1.25rem;
    }

    .zova-panel-desc {
        font-size: 0.85rem;
        white-space: normal;
    }

    .zova-panel-icon-circle {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 1.15rem;
    }

    .zova-topbar-container {
        justify-content: center;
        text-align: center;
        gap: 8px;
    }

    .zova-topbar-slogan {
        font-size: 0.82rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 768px) {
    .zova-section-title-wrapper {
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .zova-section-title-wrapper h2 {
        font-size: 1.45rem !important;
        display: block !important;
        text-align: center !important;
        line-height: 1.4 !important;
    }

    .zova-section-title-wrapper h2::before,
    .zova-section-title-wrapper h2::after {
        display: none !important;
    }

    .ebfq3-title {
        font-size: 1.6rem !important;
        margin-bottom: 25px !important;
    }

    .ebfq3-btn {
        font-size: 1rem !important;
        padding: 15px 18px !important;
    }

    .ebfq3-answer p {
        font-size: 0.88rem !important;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .zova-center-circle-badge {
        width: 330px !important;
        height: 330px !important;
        padding: 15px 12px 20px 12px !important;
        margin: 0 auto !important;
    }

    .zova-center-circle-logo {
        height: 110px !important;
        max-height: 38% !important;
        margin-top: -5px !important;
        margin-bottom: 2px !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        filter: none !important;
    }

    .zova-center-main-title {
        font-size: 1.45rem !important;
        margin-bottom: 2px !important;
    }

    .zova-center-sub-title {
        font-size: 0.78rem !important;
        margin-bottom: 12px !important;
        max-width: 250px !important;
        line-height: 1.35 !important;
    }

    .zova-center-buttons {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
        width: 96% !important;
        margin: 0 auto !important;
    }

    .zova-hero-btn-gold,
    .zova-hero-btn-outline {
        flex: 1 1 48% !important;
        padding: 8px 6px !important;
        font-size: 0.76rem !important;
        border-radius: 7px !important;
        gap: 5px !important;
        white-space: nowrap !important;
        text-align: center !important;
    }

    .zova-hero-btn-gold i,
    .zova-hero-btn-outline i {
        font-size: 0.75rem !important;
    }

    .zova-topbar-slogan {
        display: none;
    }
    .zova-topbar-container {
        justify-content: center;
        padding: 4px 10px;
    }
    .zova-topbar-contacts {
        justify-content: center;
        gap: 6px;
        width: 100%;
    }
    .zova-topbar-item {
        padding: 3px 8px;
        gap: 5px;
    }
    .zova-topbar-label {
        font-size: 0.78rem;
    }
    .zova-topbar-num {
        font-size: 0.8rem;
    }
    .zova-topbar-icon-link {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }
    .zova-topbar-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .zova-panel-content {
        padding: 15px;
    }

    .zova-panel-title {
        font-size: 1.1rem;
    }

    .zova-panel-desc {
        font-size: 0.8rem;
    }
}

@media (max-width: 992px) {
    .ebhdr9-container {
        padding: 0 15px;
        height: 65px;
    }
    .zova-header-logo {
        height: 42px;
    }

    /* BURGER TOGGLE BUTTON DISPLAY ON MOBILE */
    .ebhdr9-nav-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        width: 32px !important;
        height: 22px !important;
        background: transparent !important;
        border: none !important;
        outline: none !important;
        cursor: pointer !important;
        z-index: 100005 !important;
        position: relative !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .ebhdr9-nav-toggle span {
        display: block !important;
        width: 100% !important;
        height: 3px !important;
        background-color: #d4af37 !important;
        border-radius: 3px !important;
        transition: all 0.35s ease !important;
    }

    /* Burger Transformation to X when Open */
    .ebhdr9-hdr-open .ebhdr9-nav-toggle span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg) !important;
    }
    .ebhdr9-hdr-open .ebhdr9-nav-toggle span:nth-child(2) {
        opacity: 0 !important;
    }
    .ebhdr9-hdr-open .ebhdr9-nav-toggle span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg) !important;
    }

    /* Hide Desktop Elements */
    .ebhdr9-nav-menu-pages {
        display: none !important;
    }
    .zova-header-cta-btn {
        display: none !important;
    }

    /* Mobile Drawer Menu */
    .ebhdr9-hdr-open .ebhdr9-nav-menu-pages {
        display: flex !important;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: #0c0e14 !important;
        border-left: 1px solid rgba(212, 175, 55, 0.3);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.9);
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 25px 30px 25px !important;
        z-index: 100000;
        overflow-y: auto;
    }

    .ebhdr9-hdr-open .zova-nav-list {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
        width: 100%;
    }

    .ebhdr9-hdr-open .zova-nav-link {
        font-size: 1.1rem !important;
        width: 100%;
        border-bottom: 1px solid rgba(212, 175, 55, 0.15);
        padding-bottom: 10px !important;
    }

    .ebhdr9-hdr-open .zova-dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        background: transparent !important;
        padding-right: 15px !important;
        width: 100% !important;
    }

    .ebhdr9-hdr-open .zova-dropdown-item a {
        padding: 8px 0 !important;
        font-size: 0.9rem !important;
        color: #9aa3b4 !important;
    }

    .ebhdr9-hdr-open .zova-header-cta-btn {
        display: flex !important;
        margin-top: 20px;
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   ZOVA TRADING - LUXURY ABOUT US SECTION (SECTION & PAGE STYLING)
   ========================================================================== */
.zova-about-section {
    position: relative;
    padding: 90px 0;
    background: linear-gradient(180deg, #040507 0%, #080b12 50%, #040507 100%);
    overflow: hidden;
}

.zova-about-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.zova-about-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 2;
}

.zova-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Visual Showcase Side */
.zova-about-visual {
    position: relative;
}

.zova-about-img-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--zova-border-gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.1);
}

.zova-about-main-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.zova-about-img-frame:hover .zova-about-main-img {
    transform: scale(1.05);
}

.zova-about-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 5, 7, 0.2) 0%, rgba(4, 5, 7, 0.75) 100%);
}

/* Floating Stats Badge on Image */
.zova-about-float-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: linear-gradient(135deg, #0d121c 0%, #07090e 100%);
    border: 1px solid var(--zova-border-gold);
    border-radius: 20px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    z-index: 3;
}

.zova-about-badge-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37 0%, #a88219 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #040507;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.zova-about-badge-text strong {
    display: block;
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 800;
}

.zova-about-badge-text span {
    color: var(--zova-gold-light);
    font-size: 0.88rem;
    font-weight: 600;
}

/* Experience Floating Badge Top Left */
.zova-about-exp-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--zova-border-gold);
    backdrop-filter: blur(12px);
    border-radius: 50px;
    padding: 10px 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    z-index: 3;
}

.zova-about-exp-badge i {
    color: var(--zova-gold-bright);
}

/* Content Side */
.zova-about-content {
    display: flex;
    flex-direction: column;
}

.zova-about-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--zova-gold-bright);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    width: fit-content;
    margin-bottom: 18px;
}

.zova-about-title {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 20px;
}

.zova-about-title span {
    color: var(--zova-gold-bright);
}

.zova-about-slogan-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 100%);
    border-right: 4px solid var(--zova-gold-primary);
    border-radius: 0 14px 14px 0;
    padding: 16px 22px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.zova-about-slogan-card i {
    color: var(--zova-gold-bright);
    font-size: 1.3rem;
}

.zova-about-slogan-card p {
    color: var(--zova-gold-light);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
}

.zova-about-desc {
    color: var(--zova-text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Feature Pillars Grid (2x2) */
.zova-about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.zova-pillar-item {
    background: rgba(13, 18, 28, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: all 0.3s ease;
}

.zova-pillar-item:hover {
    border-color: var(--zova-gold-primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 175, 55, 0.15);
    background: rgba(20, 26, 40, 0.85);
}

.zova-pillar-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zova-gold-bright);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.zova-pillar-text h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.zova-pillar-text p {
    color: var(--zova-text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Buttons Group */
.zova-about-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.zova-about-btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d4af37 0%, #a88219 100%);
    color: #000000;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.zova-about-btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #f5e6be 0%, #d4af37 100%);
    color: #000000;
}

.zova-about-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--zova-border-gold);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.zova-about-btn-outline:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--zova-gold-bright);
    color: var(--zova-gold-bright);
    transform: translateY(-3px);
}

/* Mission & Vision Cards Section (For man-nahn page & homepage showcase) */
.zova-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.zova-value-card {
    background: linear-gradient(145deg, rgba(13, 18, 28, 0.9) 0%, rgba(7, 9, 14, 0.95) 100%);
    border: 1px solid var(--zova-border-gold);
    border-radius: 20px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.zova-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f5e6be, transparent);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.zova-value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.2);
    border-color: var(--zova-gold-bright);
}

.zova-value-card:hover::before {
    opacity: 1;
}

.zova-value-icon {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid var(--zova-border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zova-gold-bright);
    font-size: 1.8rem;
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.zova-value-card:hover .zova-value-icon {
    background: var(--zova-gold-primary);
    color: #040507;
    transform: scale(1.08);
}

.zova-value-title {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.zova-value-desc {
    color: var(--zova-text-muted);
    font-size: 0.98rem;
    line-height: 1.75;
    margin: 0;
}

/* RESPONSIVE DESIGN - CRITICAL & DETAILED (الاهتمام الشديد بالريسبونسيف) */
@media (max-width: 1200px) {
    .zova-about-grid {
        gap: 40px;
    }
    
    .zova-about-main-img {
        height: 420px;
    }
    
    .zova-about-title {
        font-size: 1.9rem;
    }
}

@media (max-width: 991px) {
    .zova-about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .zova-about-visual {
        max-width: 650px;
        margin: 0 auto;
        width: 100%;
    }

    .zova-about-main-img {
        height: 380px;
    }

    .zova-about-content {
        text-align: center;
        align-items: center;
    }

    .zova-about-tag {
        margin-left: auto;
        margin-right: auto;
    }

    .zova-about-slogan-card {
        border-right: none;
        border-bottom: 3px solid var(--zova-gold-primary);
        border-radius: 12px;
        justify-content: center;
    }

    .zova-about-pillars {
        text-align: right;
    }

    .zova-about-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .zova-about-section {
        padding: 60px 0;
    }

    .zova-about-main-img {
        height: 300px;
    }

    .zova-about-float-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 15px;
        width: 100%;
        justify-content: center;
        border-radius: 16px;
        padding: 16px 20px;
    }

    .zova-about-exp-badge {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 15px;
        display: inline-flex;
        width: fit-content;
    }

    .zova-about-title {
        font-size: 1.55rem;
    }

    .zova-about-desc {
        font-size: 0.95rem;
    }

    .zova-about-pillars {
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
    }

    .zova-pillar-item {
        padding: 15px;
    }

    .zova-about-actions {
        flex-direction: column;
        width: 100%;
    }

    .zova-about-btn-gold,
    .zova-about-btn-outline {
        width: 100%;
        justify-content: center;
    }

    .zova-values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .zova-value-card {
        padding: 25px 20px;
        text-align: center;
    }

    .zova-value-icon {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .zova-about-container {
        padding: 0 15px;
    }

    .zova-about-main-img {
        height: 240px;
    }

    .zova-about-title {
        font-size: 1.35rem;
    }

    .zova-about-badge-text strong {
        font-size: 1.15rem;
    }

    .zova-about-badge-text span {
        font-size: 0.8rem;
    }

    .zova-about-badge-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   ZOVA PRODUCTS & SERVICE EXTRA SHOWCASE GALLERY STYLING
   ========================================================================== */
.zova-products-gallery {
    padding: 60px 0;
    position: relative;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
}

.zova-gallery-header {
    text-align: center;
    margin-bottom: 45px;
}

.zova-gallery-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--zova-border-gold);
    color: var(--zova-gold-bright);
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.zova-gallery-title {
    color: #ffffff;
    font-size: 2.1rem;
    font-weight: 800;
    margin: 10px 0;
}

.zova-gallery-subtitle {
    color: var(--zova-text-muted);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
}

.zova-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.zova-gallery-card {
    background: linear-gradient(145deg, rgba(14, 18, 27, 0.9), rgba(8, 10, 15, 0.95));
    border: 1px solid var(--zova-border-gold);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    position: relative;
}

.zova-gallery-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.8);
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.25), 0 0 25px rgba(212, 175, 55, 0.15);
}

.zova-gallery-img-box {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zova-gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.zova-gallery-card:hover .zova-gallery-img-box img {
    transform: scale(1.06);
}

.zova-gallery-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #d4af37 0%, #a88219 100%);
    color: #000000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.zova-gallery-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.zova-card-title {
    color: var(--zova-gold-bright);
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.zova-card-desc {
    color: var(--zova-text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 18px;
    flex-grow: 1;
}

.zova-card-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.zova-card-specs li {
    font-size: 0.92rem;
    color: var(--zova-text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.zova-card-specs li i {
    color: var(--zova-gold-primary);
    font-size: 0.85rem;
}

.zova-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #d4af37 0%, #a88219 100%);
    color: #000000;
    font-weight: 800;
    font-size: 0.98rem;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
}

.zova-card-btn:hover {
    background: linear-gradient(135deg, #f5e6be 0%, #d4af37 100%);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.zova-showcase-wide {
    background: linear-gradient(145deg, rgba(14, 18, 27, 0.95), rgba(8, 10, 15, 0.98));
    border: 1px solid var(--zova-border-gold);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    margin-top: 30px;
}

.zova-showcase-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
}

@media (max-width: 992px) {
    .zova-showcase-inner {
        grid-template-columns: 1fr;
    }
}

.zova-showcase-img-wrap {
    width: 100%;
    height: 100%;
    min-height: 340px;
    position: relative;
    overflow: hidden;
}

.zova-showcase-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zova-showcase-details {
    padding: 40px;
}

@media (max-width: 768px) {
    .zova-gallery-grid {
        grid-template-columns: 1fr;
    }
    .zova-showcase-details {
        padding: 25px;
    }
    .zova-gallery-title {
        font-size: 1.65rem;
    }
}

