/* ==========================================================================
   GLOBAL STYLE VARIABLES & RESET
   ========================================================================== */
:root {
    --primary-green: #1b4d3e;  /* Deep Forest Green */
    --accent-gold: #c5a059;   /* Premium Gold Accent */
    --text-dark: #333333;     /* Standard Charcoal Text */
    --bg-light: #f9f9f9;      /* Off-White Grid Squares */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #ffffff;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Common Inner Page Header Banner Utility */
.page-header {
    background-color: var(--primary-green);
    color: #ffffff;
    text-align: center;
    padding: 60px 5%;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

/* ==========================================================================
   HEADER NAVIGATION BAR (Global across all pages)
   ========================================================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 50px;
    width: auto;
}

nav {
    display: flex;
    align-items: center;
    width: 100%;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    width: 100%;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-links a:hover, 
.nav-links a.active {
    color: var(--primary-green);
}

/* Dropdown Menu Architecture */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    list-style: none;
    padding: 10px 0;
    min-width: 180px;
    border-radius: 4px;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    font-weight: 500;
}

.dropdown-menu li a:hover {
    background-color: var(--bg-light);
    color: var(--primary-green);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* ==========================================================================
   HOME PAGE: MANUFACTURING HERO BANNER & VIDEO LAYERING
   ========================================================================== */
.hero-manufacturing {
    position: relative;
    min-height: 70vh;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #121c17; 
    padding: 60px 8%;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-manufacturing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-manufacturing-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: #ffffff;
}

.hero-manufacturing-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-manufacturing-content .highlight-gold {
    color: var(--accent-gold);
}

.hero-subtext {
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 580px;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.btn-gold-cta {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-gold);
    color: #111111;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s ease, transform 0.2s ease;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.btn-gold-cta:hover {
    background-color: #d1b16e;
    transform: translateY(-2px);
}

.hero-badges-row {
    display: flex;
    gap: 35px;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 25px;
    flex-wrap: wrap;
}

.hero-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.hero-badge-item p {
    font-size: 0.85rem;
    line-height: 1.3;
    color: #e2e8f0;
    font-weight: 500;
}

.hero-badge-item p span {
    color: #94a3b8;
}

/* ==========================================================================
   HOME PAGE: WELCOME CORPORATE GRID
   ========================================================================== */
.welcome-corporate {
    padding: 70px 8%;
    text-align: center;
    background-color: #ffffff;
}

.welcome-corporate h2 {
    color: var(--primary-green);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.welcome-lead {
    max-width: 850px;
    margin: 0 auto 55px;
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.7;
}

.welcome-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-column-card {
    text-align: center;
    padding: 15px 10px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.9rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-column-card:hover .icon-circle {
    transform: scale(1.08);
    border-color: var(--accent-gold);
}

.feature-column-card h3 {
    color: var(--primary-green);
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-column-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
}

/* ==========================================================================
   HOME PAGE: INTERACTIVE CATEGORY PREVIEW CARDS
   ========================================================================== */
.categories-preview {
    padding: 60px 8%;
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 10px;
}

.section-title p {
    color: #666666;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-img-container {
    position: relative;
    width: 100%;
    height: 220px;
    background-color: #e2e8f0;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 6px;
}

.category-img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    z-index: 1;
    position: relative;
}

.door {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: var(--primary-green);
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.door-left { left: 0; transform-origin: left; }
.door-right { right: 0; transform-origin: right; }

.category-card:hover .door-left { transform: scaleX(0); }
.category-card:hover .door-right { transform: scaleX(0); }

.category-card h3 {
    color: var(--primary-green);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.category-card p {
    color: #555555;
    font-size: 0.95rem;
    margin-bottom: 20px;
    min-height: 70px;
}

.category-link {
    text-decoration: none;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.category-link:hover { color: var(--accent-gold); }

/* ==========================================================================
   PAGE: ABOUT US STYLING
   ========================================================================== */
.about-section {
    padding: 60px 8%;
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content { flex: 1; }
.about-content h2 { color: var(--primary-green); margin-bottom: 20px; font-size: 2rem; }
.about-content p { color: #555555; margin-bottom: 15px; font-size: 1.05rem; }
.about-image { flex: 1; text-align: center; }
.about-image img { max-width: 100%; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

/* ==========================================================================
   PAGE: PRODUCTS INNER GRID SHOWCASE
   ========================================================================== */
.products-container { padding: 40px 8%; max-width: 1200px; margin: 0 auto; }
.product-section-title { color: var(--primary-green); border-bottom: 2px solid var(--accent-gold); padding-bottom: 8px; margin: 40px 0 25px; font-size: 1.8rem; }
.products-showcase-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }

.product-item-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    transition: box-shadow 0.3s;
}
.product-item-card:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.08); }
.product-item-card img { height: 200px; object-fit: contain; margin-bottom: 15px; max-width: 100%; }
.product-item-card h4 { color: var(--primary-green); font-size: 1.2rem; margin-bottom: 8px; }
.product-item-card p { color: #666666; font-size: 0.9rem; }

/* ==========================================================================
   PAGE: TESTIMONIALS STYLING
   ========================================================================== */
.testimonials-section { padding: 60px 8%; background-color: var(--bg-light); text-align: center; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1100px; margin: 40px auto 0; }
.testimonial-bubble { background: #ffffff; border-radius: 8px; padding: 30px; text-align: left; box-shadow: 0 4px 12px rgba(0,0,0,0.02); position: relative; }
.testimonial-bubble p { font-style: italic; color: #4a5568; margin-bottom: 15px; }
.testimonial-author { font-weight: 700; color: var(--primary-green); font-size: 0.95rem; }
.testimonial-author span { display: block; font-weight: 400; color: #a0aec0; font-size: 0.85rem; }

/* ==========================================================================
   PAGE: CONTACT US & SUBMISSION LAYOUT
   ========================================================================== */
.contact-wrapper { padding: 60px 8%; display: flex; gap: 50px; max-width: 1200px; margin: 0 auto; flex-wrap: wrap; }
.contact-info-panel { flex: 1; min-width: 300px; }
.contact-info-panel h2 { color: var(--primary-green); margin-bottom: 15px; }
.contact-info-panel p { margin-bottom: 20px; color: #555555; }
.info-details { list-style: none; }
.info-details li { margin-bottom: 15px; font-size: 1rem; color: #333; }

.contact-form-panel { flex: 1.5; min-width: 300px; background: #ffffff; border: 1px solid #e2e8f0; padding: 40px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; color: var(--primary-green); }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #cbd5e1; border-radius: 4px; font-size: 0.95rem; }
.form-group textarea { height: 140px; resize: vertical; }
.btn-submit { background-color: var(--primary-green); color: #ffffff; border: none; padding: 12px 28px; font-weight: 700; border-radius: 4px; cursor: pointer; transition: background 0.2s; }
.btn-submit:hover { background-color: #123329; }

/* Google Map Embed Element Container */
.map-container { width: 100%; height: 350px; margin-top: 40px; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ==========================================================================
   GLOBAL UNIFIED DARK CORPORATE FOOTER
   ========================================================================== */
.global-footer {
    background-color: #0f172a; 
    color: #94a3b8;
    padding: 60px 8% 25px;
    margin-top: 60px;
    border-top: 4px solid var(--primary-green);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand-col { max-width: 400px; }

/* Refined Logo Styling: Preserves natural brand colors inside footer layout */
.footer-logo { 
    height: 55px; 
    width: auto; 
    margin-bottom: 20px; 
    background-color: #ffffff; 
    padding: 6px 12px;         
    border-radius: 4px;        
    display: inline-block;
    object-fit: contain;
}

.footer-brand-col p { font-size: 0.95rem; line-height: 1.6; }

.footer-links-col h4, .footer-contact-col h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-links-col ul { list-style: none; }
.footer-links-col ul li { margin-bottom: 12px; }
.footer-links-col ul li a { color: #94a3b8; text-decoration: none; transition: color 0.2s, padding-left 0.2s; }
.footer-links-col ul li a:hover { color: var(--accent-gold); padding-left: 4px; }
.footer-contact-col p { margin-bottom: 12px; font-size: 0.95rem; }

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #334155;
    font-size: 0.85rem;
    color: #64748b;
}

/* ==========================================================================
   FLOATING GLOBAL WHATSAPP COMMUNICATOR
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25D366; /* Official WhatsApp Green */
    color: #fff;
    border-radius: 50px;
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    
    /* Flexbox settings to perfectly center the new vector icon */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

/* ==========================================================================
   RESPONSIVE DESIGN SYSTEM
   ========================================================================== */
@media (max-width: 992px) {
    .hero-manufacturing { min-height: 60vh; padding: 50px 5%; }
    .hero-manufacturing-content h1 { font-size: 2.5rem; }
    .hero-badges-row { gap: 20px; }
    .about-section { flex-direction: column; text-align: center; gap: 30px; }
}

@media (max-width: 768px) {
    .navbar { padding: 15px 5%; flex-direction: column; gap: 15px; }
    .nav-links { justify-content: center; flex-wrap: wrap; gap: 10px; }
    .nav-links li { margin: 0 8px; }
    
    .hero-manufacturing { text-align: center; justify-content: center; }
    .hero-manufacturing-overlay { background: rgba(0,0,0,0.85); }
    .hero-manufacturing-content h1 { font-size: 2.1rem; }
    .hero-subtext { margin: 0 auto 30px; font-size: 1rem; }
    .hero-badges-row { justify-content: center; gap: 20px; margin-top: 35px; }
    
    .welcome-corporate { padding: 45px 5%; }
    .welcome-corporate h2 { font-size: 1.8rem; }
    .welcome-lead { font-size: 0.95rem; margin-bottom: 35px; }
    
    .contact-wrapper { padding: 40px 5%; gap: 30px; }
    .contact-form-panel { padding: 25px; }
    .footer-container { flex-direction: column; gap: 30px; }
}

/* ==========================================================================
   RIGHT-TO-LEFT (RTL) ARABIC UTILITY SYSTEM
   ========================================================================== */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .navbar {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-links li {
    margin: 0 15px;
}

[dir="rtl"] .dropdown-menu {
    left: auto;
    right: 0;
    text-align: right;
}

[dir="rtl"] .hero-manufacturing {
    text-align: right;
}

[dir="rtl"] .hero-manufacturing-overlay {
    background: linear-gradient(-90deg, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0.4) 100%);
}

[dir="rtl"] .hero-badge-item {
    flex-direction: row-reverse;
}

[dir="rtl"] .footer-container {
    flex-direction: row-reverse;
}

[dir="rtl"] .footer-links-col ul li a:hover {
    padding-left: 0;
    padding-right: 4px;
}

/* ==========================================================================
   PRIVATE LABEL NEW ARCHITECTURE (Matching WhatsApp Image)
   ========================================================================== */
.highlight-green { color: var(--primary-green); }

.pl-hero {
    background-color: #f8fafc;
    padding: 60px 8%;
}
.pl-hero-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}
.pl-hero-left { flex: 1.2; }
.pl-hero-right { flex: 0.8; }

.pl-hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 15px;
}
.pl-hero-left h2 {
    font-size: 1.8rem;
    color: #334155;
    margin-bottom: 15px;
    line-height: 1.3;
}
.pl-hero-left p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 30px;
}

/* Hero Quick Feature Checklist */
.pl-quick-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.pl-quick-item {
    display: flex;
    gap: 15px;
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary-green);
}
.qi-icon {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-top: 2px;
}
.qi-text strong {
    font-size: 0.95rem;
    color: #0f172a;
    display: block;
    margin-bottom: 3px;
}
.qi-text p {
    font-size: 0.88rem;
    color: #64748b;
    margin: 0;
}

/* Mockup Product Image Grid placeholders */
.mockup-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.mockup-card {
    background-color: #e2e8f0;
    height: 220px;
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.mockup-tag {
    background: var(--primary-green);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 20px;
    text-align: center;
    width: 100%;
}
/* Connect image paths configured earlier */
.m-handwash { background-image: url('images/sadex-handwash-lavender.png'); }
.m-laundry { background-image: url('images/sadex-liquid-blue.png'); }
.m-dishwash { background-image: url('images/life-plus-dishwash.png'); }
.m-floor { background-image: url('images/life-plus-floor-ocean.png'); }

/* ==========================================================================
   INTERACTIVE PROCESS WORKFLOW WHEEL
   ========================================================================== */
.pl-process-section {
    padding: 80px 8%;
    background: #ffffff;
}
.container-title {
    text-align: center;
    margin-bottom: 60px;
}
.container-title h2 {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}
.container-title p { color: #64748b; }

.process-wheel-layout {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 650px;
    margin: 0 auto;
}
.wheel-center-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    background: var(--primary-green);
    border-radius: 50%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(27,77,62,0.3);
    z-index: 5;
    border: 6px solid #ffffff;
}
.wheel-center-node h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 5px; color: var(--accent-gold); }
.wheel-center-node p { font-size: 0.85rem; color: #e2e8f0; }

.step-node {
    position: absolute;
    width: 160px;
    text-align: center;
    z-index: 2;
}
.step-node i {
    width: 55px;
    height: 55px;
    background: #f8fafc;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-green);
    margin: 0 auto 10px;
    transition: all 0.3s ease;
    position: relative;
}
.step-node::before {
    content: attr(data-step);
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(15px);
    background: var(--accent-gold);
    color: #111111;
    font-size: 0.75rem;
    font-weight: bold;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    z-index: 3;
}
.step-node h4 { font-size: 0.95rem; color: #0f172a; margin-bottom: 5px; font-weight: 700; }
.step-node p { font-size: 0.78rem; color: #64748b; line-height: 1.3; }

.step-node:hover i {
    background: var(--primary-green);
    color: #ffffff;
    border-color: var(--primary-green);
    transform: scale(1.1);
}

/* Absolute math mapping placement vectors for ideal circular positioning */
.s1 { top: 0%; left: 50%; transform: translateX(-50%); }
.s2 { top: 15%; right: 5%; }
.s3 { top: 50%; right: 0%; transform: translateY(-50%); }
.s4 { bottom: 15%; right: 5%; }
.s5 { bottom: 0%; left: 50%; transform: translateX(-50%); }
.s6 { bottom: 15%; left: 5%; }
.s7 { top: 50%; left: 0%; transform: translateY(-50%); }
.s8 { top: 15%; left: 5%; }

/* ==========================================================================
   TWIN CARDS & WHY PARTNER MATRIX SECTION
   ========================================================================== */
.pl-dual-cards {
    background-color: #f1f5f9;
    padding: 60px 8%;
}
.pl-cards-wrapper {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.pl-feature-card {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
}
.pl-feature-card h3 { font-size: 1.6rem; color: var(--primary-green); margin-bottom: 10px; }
.card-script { font-style: italic; color: var(--accent-gold); font-weight: 500; font-size: 1.3rem; }
.card-intro-desc { font-size: 0.98rem; color: #475569; margin-bottom: 25px; line-height: 1.5; }

.checkmark-list { list-style: none; }
.checkmark-list li { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.92rem; color: #334155; align-items: flex-start; }
.checkmark-list li i { color: var(--primary-green); margin-top: 3px; font-size: 1.05rem; }

.capabilities-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}
.cap-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: border-color 0.3s;
}
.cap-box:hover { border-color: var(--accent-gold); }
.cap-box i { font-size: 1.8rem; color: var(--primary-green); margin-bottom: 12px; }
.cap-box h5 { font-size: 0.95rem; color: #0f172a; font-weight: 700; }

/* Partnership Grid Elements */
.pl-partnership-matrix {
    padding: 70px 8%;
    background: #ffffff;
}
.matrix-header { text-align: center; margin-bottom: 40px; }
.matrix-header h3 { font-size: 2rem; color: var(--primary-green); letter-spacing: 0.5px; }
.matrix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.matrix-item {
    padding: 25px;
    border-bottom: 2px solid #e2e8f0;
    transition: border-color 0.3s;
}
.matrix-item:hover { border-color: var(--accent-gold); }
.matrix-item i { font-size: 1.8rem; color: var(--primary-green); margin-bottom: 15px; }
.matrix-item h4 { font-size: 1.05rem; color: #0f172a; margin-bottom: 10px; font-weight: 700; }
.matrix-item p { font-size: 0.9rem; color: #64748b; line-height: 1.5; }

/* Bottom Action Banner bar elements */
.pl-bottom-cta {
    background-color: var(--primary-green);
    padding: 30px 8%;
}
.cta-inner-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}
.cta-inner-box span { color: #ffffff; font-weight: 700; font-size: 1.1rem; letter-spacing: 0.5px; }
.cta-action-btn {
    background: var(--accent-gold);
    color: #111111;
    text-decoration: none;
    padding: 12px 25px;
    font-weight: 700;
    border-radius: 4px;
    font-size: 0.92rem;
    transition: opacity 0.2s;
}
.cta-action-btn:hover { opacity: 0.9; }

/* WhatsApp Logo Styling Override (Forces background masking out of footer column alignment structure) */
.wa-custom-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

/* ==========================================================================
   MOBILE MEDIA QUERY OVERRIDES FOR PROCESS WHEEL DISMANTLING
   ========================================================================== */
@media (max-width: 992px) {
    .pl-hero-container { flex-direction: column; text-align: center; }
    .pl-quick-item { text-align: left; }
    .pl-cards-wrapper { flex-direction: column; }
    
    /* Dismantle circle vector map into stack list flow format on smaller hardware viewports */
    .process-wheel-layout { height: auto; display: flex; flex-direction: column; gap: 30px; align-items: center; }
    .wheel-center-node { position: relative; top: auto; left: auto; transform: none; margin-bottom: 20px; }
    .step-node { position: relative; top: auto; left: auto; right: auto; bottom: auto; transform: none; width: 100%; max-width: 400px; }
}

/* ==========================================================================
   RTL ARABIC FLIPS & COMPATIBILITY LAYER
   ========================================================================== */
html[dir="rtl"] .pl-quick-item {
    border-left: none;
    border-right: 4px solid var(--primary-green);
    text-align: right;
}

html[dir="rtl"] .checkmark-list li i {
    transform: scaleX(-1); /* Flips layout vectors nicely */
}

html[dir="rtl"] .nav-links {
    display: flex;
    flex-direction: row-reverse;
}

html[dir="rtl"] .dropdown-menu {
    right: auto;
    left: 0;
    text-align: right;
}

@media (max-width: 992px) {
    html[dir="rtl"] .pl-quick-item {
        text-align: right;
    }
}
/* Private Label Hero Image Fix */
.responsive-hero-img {
    width: 100%;
    height: auto;
    max-width: 650px; /* Limits size on large desktop screens */
    border-radius: 12px; /* Smooths out the edges of the image */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); /* Adds a subtle depth behind the mockups */
    display: block;
    margin: 0 auto; /* Centers it nicely on tablet/mobile screens */
}

/* Multi-Product Elegant Hero Grid */
.brand-showcase-matrix {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.brand-item-card {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.brand-item-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.brand-item-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 30, 20, 0.85); /* Rich deep green translucent overlay */
    color: #dfb76c; /* Matching your luxury accent gold */
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    padding: 8px 4px;
    letter-spacing: 0.5px;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .brand-showcase-matrix {
        gap: 10px;
    }
    .brand-item-label {
        font-size: 0.75rem;
        padding: 6px 2px;
    }
}