/*
Theme Name: Manoj Textile Custom
Theme URI: https://manojtextilemathura.com
Author: Do Digitals
Author URI: https://dodigitals.org
Description: 100% Custom, high-performance theme optimized for Core Web Vitals and Technical SEO. No Bootstrap.
Version: 1.0
Text Domain: manojtextile
*/

/* =========================================
   1. GLOBAL VARIABLES & RESET
========================================= */
:root {
    /* Logo Exact Colors */
    --primary-blue: #3551a5; 
    --secondary-black: #1f2e3f; 
    --accent-gold: #E2C34B;
    --bg-light: #F1F5F9;
    --bg-white: #FFFFFF;
    
    /* Text Colors */
    --text-dark: var(--secondary-black);
    --text-medium: #64748B;
    
    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* FIX: Global Font Application for Inputs & Buttons */
input, textarea, button, select {
    font-family: var(--font-body);
    font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

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

/* =========================================
   2. BUTTONS
========================================= */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: var(--font-body);
}
.btn-primary {
    background-color: var(--primary-blue);
    color: var(--bg-white);
    border: 2px solid var(--primary-blue);
}
.btn-primary:hover {
    background-color: var(--secondary-black);
    color: var(--bg-white);
    border-color: var(--secondary-black);
}
.btn-outline {
    background-color: transparent;
    color: var(--secondary-black);
    border: 2px solid var(--secondary-black);
}
.btn-outline:hover {
    background-color: var(--secondary-black);
    color: var(--bg-white);
}

/* =========================================
   3. DESKTOP HEADER (Premium Modern UI)
========================================= */
.custom-header {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); 
    border-bottom: none;
}

.header-top { padding: 20px 0; }
.header-top-inner {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 20px;
}
.header-info { display: flex; align-items: center; gap: 20px; }
.site-logo img { max-height: 70px; width: auto; display: block; }
.dynamic-title {
    font-size: 1.6rem; font-weight: 800; color: var(--primary-blue);
    text-transform: uppercase; letter-spacing: -0.5px;
}
.company-tagline {
    font-size: 0.9rem; font-weight: 600; color: var(--secondary-black); margin-bottom: 5px;
}
.company-meta {
    display: flex; gap: 18px; font-size: 0.85rem; color: var(--text-medium);
}
.meta-item {
    display: flex; align-items: center; gap: 6px; background: #f8fafc;
    padding: 4px 10px; border-radius: 6px; border: 1px solid #e2e8f0;
}
.gst-badge { color: #0f172a; font-weight: 700; }

.header-ctas { display: flex; align-items: center; gap: 15px; }
.call-box {
    display: flex; align-items: center; gap: 12px; background: #ffffff;
    border: 1px solid #e2e8f0; padding: 8px 20px 8px 12px; border-radius: 50px; 
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); transition: transform 0.3s ease;
}
.call-box:hover {
    transform: translateY(-2px); border-color: var(--primary-blue);
}
.call-box svg { background: #ecfdf5; padding: 6px; border-radius: 50%; width: 36px; height: 36px; }
.call-text { display: flex; flex-direction: column; }
.call-number { font-weight: 800; color: var(--secondary-black); font-size: 1.05rem; }
.response-rate { font-size: 0.7rem; color: #10b981; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.btn-email {
    display: flex; align-items: center; background: linear-gradient(135deg, var(--primary-blue), #2a4185);
    color: white; padding: 12px 24px; border-radius: 50px; font-weight: 600; font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(53, 81, 165, 0.3); transition: all 0.3s ease;
}
.btn-email:hover {
    box-shadow: 0 6px 16px rgba(53, 81, 165, 0.4); transform: translateY(-2px); color: white;
}

.header-bottom { background: linear-gradient(90deg, var(--secondary-black) 0%, #0f172a 100%); }
.header-bottom-inner { display: flex; justify-content: space-between; align-items: center; padding: 0 10px; }
.nav-menu { list-style: none; display: flex; margin: 0; padding: 0; }
.nav-menu a {
    display: flex; align-items: center; color: #e2e8f0; padding: 18px 24px;
    font-size: 0.95rem; font-weight: 600; text-decoration: none; position: relative; transition: color 0.3s;
}
.nav-menu a:hover { color: #ffffff; }
.nav-menu a::after {
    content: ''; position: absolute; bottom: 0; left: 24px; right: 24px;
    height: 3px; background-color: var(--accent-gold); transform: scaleX(0); transition: transform 0.3s ease;
}
.nav-menu a:hover::after { transform: scaleX(1); }

/* Desktop Search Bar */
.header-bottom-inner .header-search { flex-grow: 1; display: flex; justify-content: flex-end; }
.header-bottom-inner .search-form { display: flex; width: auto; background: transparent; border: none; }
.header-bottom-inner .search-field {
    background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255,255,255,0.2);
    border-right: none; border-radius: 20px 0 0 20px; padding: 8px 15px; color: #fff;
    width: 250px; outline: none; font-family: var(--font-body);
}
.header-bottom-inner .search-field::placeholder { color: rgba(255,255,255,0.5); }
.header-bottom-inner .search-submit {
    background: var(--primary-blue); border-radius: 0 20px 20px 0; padding: 8px 20px;
    border: 1px solid var(--primary-blue); color: #fff; cursor: pointer; font-weight: 600; font-family: var(--font-body);
}
.header-bottom-inner .nav-menu { margin-right: auto; }

/* =========================================
   4. HOME PAGE SECTIONS
========================================= */
.hero-section { background-color: var(--bg-light); padding: 80px 0; border-bottom: 1px solid #E2E8F0; }
.hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.hero-title { font-size: 3rem; color: var(--secondary-black); margin-bottom: 20px; }
.hero-subtitle { font-size: 1.125rem; color: var(--text-medium); margin-bottom: 30px; }
.hero-buttons { display: flex; gap: 15px; }
.hero-image-placeholder img { width: 100%; border-radius: 12px; box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }

.silo-section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.5rem; color: var(--primary-blue); }
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.silo-card { background: var(--bg-white); border: 1px solid #E2E8F0; border-radius: 10px; padding: 30px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.silo-card:hover { transform: translateY(-5px); box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.card-icon { font-size: 2.5rem; margin-bottom: 15px; }
.silo-card h3 { border-bottom: 2px solid var(--accent-gold); padding-bottom: 10px; margin-bottom: 20px; }
.silo-links { list-style: none; }
.silo-links li { margin-bottom: 12px; }
.silo-links a { color: var(--text-medium); font-weight: 500; }
.silo-links a:hover { color: var(--primary-blue); padding-left: 5px; }

.promo-card { background-color: var(--secondary-black); color: var(--bg-white); }
.promo-card h3 { border-color: var(--primary-blue); color: var(--bg-white); }
.promo-card .silo-links a { color: #CBD5E1; }
.promo-card .silo-links a:hover { color: var(--accent-gold); }

.locations-section { background-color: var(--primary-blue); color: var(--bg-white); padding: 60px 0; text-align: center; }
.location-links { display: flex; justify-content: center; gap: 15px; margin-top: 20px; flex-wrap: wrap; }
.loc-badge { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.3); padding: 10px 20px; border-radius: 50px; color: var(--bg-white); font-weight: 600; }
.loc-badge:hover { background: var(--accent-gold); color: var(--secondary-black); border-color: var(--accent-gold); }

.trust-section { padding: 50px 0; background: var(--bg-light); }
.trust-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.trust-item h4 { margin-bottom: 5px; }

/* =========================================
   5. POPUPS & OVERLAYS (Offcanvas & Modal)
========================================= */
/* Off-Canvas Menu */
.mobile-menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5); z-index: 99998;
    opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }

.mobile-offcanvas-menu {
    position: fixed; top: 0; left: -100%; 
    width: 300px; max-width: 80%; height: 100vh; background: #fff; z-index: 99999;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1); transition: left 0.4s ease-in-out; 
    display: flex; flex-direction: column; visibility: hidden;
}
.mobile-offcanvas-menu.active { left: 0; visibility: visible; }

/* FIX: Brand Colors applied to Offcanvas Header */
.offcanvas-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px; background: var(--primary-blue); color: #fff; 
}
.offcanvas-logo { display: flex; align-items: center; gap: 10px; }
.offcanvas-logo img { height: 40px; background: #fff; padding: 2px; border-radius: 4px; width: auto; }
.offcanvas-title { font-size: 0.95rem; font-weight: 600; text-transform: uppercase; }
.close-menu-btn { background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }
.offcanvas-body { flex-grow: 1; overflow-y: auto; padding-bottom: 20px; }
.mobile-navigation ul { list-style: none; padding: 0; margin: 0; }
.mobile-navigation li a {
    display: block; padding: 15px 20px; color: #000; font-weight: 600;
    text-decoration: none; border-bottom: 1px solid #f1f1f1;
}
.static-mobile-links li a { font-weight: 500; color: #333; }
.offcanvas-footer { padding: 20px; border-top: 1px solid #eee; }
.mobile-call-btn { display: flex; align-items: center; gap: 10px; color: #000; font-weight: 700; text-decoration: none; }
.mobile-call-btn svg { color: var(--primary-blue); } /* FIX: Brand Color */

/* SMS Modal */
.sms-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); z-index: 100000;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.sms-modal-overlay.active { opacity: 1; visibility: visible; }
.sms-modal {
    background: #f8f9fa; width: 90%; max-width: 400px;
    border-radius: 8px; overflow: hidden; transform: translateY(-20px); transition: transform 0.3s ease;
}
.sms-modal.active { transform: translateY(0); }
.sms-modal-header {
    background: #fff; padding: 15px 20px; display: flex; justify-content: center; 
    position: relative; border-bottom: 1px solid #eee;
}
.sms-modal-header h3 { margin: 0; color: var(--primary-blue); font-size: 1.5rem; } /* FIX: Brand Color */
.close-modal-btn {
    position: absolute; right: 15px; top: 15px; background: none; border: none; 
    font-size: 1.2rem; color: #666; cursor: pointer;
}
.sms-modal-body { padding: 20px; }
.form-group { margin-bottom: 15px; }
#smsRequirement {
    width: 100%; height: 100px; padding: 15px; border: 1px solid #ddd; border-radius: 4px; 
    background: #f0f0f0; resize: none; font-family: var(--font-body); /* FIX: Applied Font */
}
.phone-group {
    display: flex; background: #fff; border: 1px solid #ddd; border-radius: 4px; overflow: hidden;
}
.country-code {
    display: flex; align-items: center; padding: 10px; background: #fff; border-right: 1px solid #ddd; gap: 5px;
}
.country-code img { width: 20px; }
#smsMobile { flex-grow: 1; border: none; padding: 10px 15px; outline: none; font-family: var(--font-body); /* FIX: Applied Font */ }

/* FIX: Brand Colors on Popup Submit Button */
.btn-submit-sms {
    width: 100%; background: var(--primary-blue); color: #fff; border: none;
    padding: 12px; border-radius: 4px; font-size: 1rem; font-weight: 600; 
    cursor: pointer; font-family: var(--font-body); transition: 0.3s;
}
.btn-submit-sms:hover {
    background: var(--secondary-black);
}

/* =========================================
   6. RESPONSIVE QUERIES (Mobile & Tablet)
========================================= */
.mobile-top-controls, .mobile-bottom-nav { display: none !important; }

/* Tablet */
@media (max-width: 1024px) {
    .header-top-inner { flex-direction: column; text-align: center; }
    .header-info { flex-direction: column; gap: 10px; }
    .company-meta { justify-content: center; flex-wrap: wrap; }
}

/* Mobile Magic (IndiaMART App Style) */
@media (max-width: 768px) {
    .header-ctas, .header-bottom { display: none !important; }
    body { padding-bottom: 70px; }

    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero-title { font-size: 2.2rem; }

    .mobile-top-controls {
        display: flex !important; justify-content: space-between; align-items: center;
        padding: 12px 15px; background: #fff; border-bottom: 1px solid #f1f1f1;
    }
    .mobile-actions { display: flex; gap: 15px; align-items: center; }

    .header-top { padding: 15px; border-bottom: 1px solid #e2e8f0; }
    .header-info {
        flex-direction: row !important; align-items: center !important;
        justify-content: flex-start !important; gap: 15px;
    }
    .site-logo {
        width: 80px; flex-shrink: 0; background: #fff;
    }
    .site-logo img { max-height: 70px; width: 100%; object-fit: contain; }
    .dynamic-title { font-size: 1rem; font-weight: 800; color: var(--primary-blue); text-transform: uppercase; letter-spacing: -0.5px;}
    .company-details { text-align: left; }
    .company-meta { flex-direction: column !important; gap: 4px !important; align-items: flex-start !important; }
    .meta-item { background: transparent; border: none; padding: 0; font-size: 0.85rem; color: #444; }

    .mobile-bottom-nav {
        display: flex !important; position: fixed; bottom: 0; left: 0; width: 100%;
        background: #fff; box-shadow: 0 -2px 15px rgba(0,0,0,0.08); z-index: 9999;
        justify-content: space-around; align-items: flex-end; padding: 10px 5px 8px;
    }
    .nav-item {
        display: flex; flex-direction: column; align-items: center; text-decoration: none;
        color: #374151; font-size: 0.75rem; font-weight: 500; width: 20%;
    }
    .nav-item svg { width: 24px; height: 24px; margin-bottom: 4px; }
    .nav-item:hover, .nav-item:hover svg { color: var(--primary-blue); }

    .center-pop { position: relative; }
    .pop-bg {
        background: #fff; border-radius: 50%; width: 55px; height: 55px;
        display: flex; justify-content: center; align-items: center;
        box-shadow: 0 -4px 10px rgba(0,0,0,0.08); border: 1px solid #e2e8f0;
        position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
    }
    .pop-bg::after {
        content: ''; position: absolute; bottom: -2px; left: 0;
        width: 100%; height: 10px; background: #fff;
    }
    .center-pop svg { position: relative; z-index: 2; stroke: var(--primary-blue); }
    .center-pop span { margin-top: 25px; }
}

/* =========================================
   DESKTOP CONNECT POPUP (IndiaMART Style)
========================================= */
.desktop-connect-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7); z-index: 100000;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.desktop-connect-overlay.active { opacity: 1; visibility: visible; }

.desktop-connect-modal {
    background: #fff; width: 90%; max-width: 800px;
    border-radius: 8px; position: relative; overflow: hidden;
    transform: scale(0.95); transition: transform 0.3s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}
.desktop-connect-overlay.active .desktop-connect-modal { transform: scale(1); }

.close-connect-btn {
    position: absolute; right: 20px; top: 20px; background: none;
    border: none; font-size: 2rem; color: #333; cursor: pointer; z-index: 10; line-height: 1;
}

.connect-inner { display: flex; flex-wrap: wrap; }

/* Left Side: Logo Pane */
.connect-left {
    flex: 1; min-width: 280px; max-width: 320px; background: #f8fafc;
    border-right: 1px solid #e2e8f0; padding: 50px 30px;
    display: flex; flex-direction: column; align-items: center; text-align: center;
}
.connect-logo-box {
    width: 180px; height: 180px; border: 1px solid #e2e8f0; border-radius: 8px;
    display: flex; justify-content: center; align-items: center; background: #fff;
    margin-bottom: 25px; padding: 15px;
}
.connect-logo-box img { max-width: 100%; max-height: 100%; object-fit: contain; }
.connect-left h3 { font-size: 1.2rem; color: var(--secondary-black); margin: 0; font-weight: 700; }

/* Right Side: Form Pane */
.connect-right { flex: 2; padding: 50px; min-width: 300px; }
.connect-right h2 { font-size: 1.5rem; font-weight: 400; color: #000; margin-bottom: 35px; line-height: 1.4; }
.connect-right h2 strong { font-weight: 800; color: var(--primary-blue); }

.connect-right label { display: block; font-size: 1rem; font-weight: 600; color: #333; margin-bottom: 10px; }
.connect-input-wrap {
    display: flex; border: 2px solid var(--primary-blue); /* Brand Color Border */
    border-radius: 6px; overflow: hidden; margin-bottom: 8px;
}
.connect-country {
    display: flex; align-items: center; padding: 12px 18px; background: #f1f5f9;
    border-right: 1px solid #e2e8f0; gap: 8px; font-weight: 600; color: #333;
}
.connect-country img { width: 22px; }
.connect-input-wrap input {
    flex-grow: 1; border: none; padding: 12px 18px; font-size: 1.05rem; outline: none;
    font-family: var(--font-body);
}
.connect-help { font-size: 0.85rem; color: #64748B; margin-bottom: 30px; }

.btn-connect-submit {
    background: var(--primary-blue); color: #fff; border: none;
    padding: 14px 45px; border-radius: 6px; font-size: 1.1rem; font-weight: 700;
    cursor: pointer; transition: 0.3s; display: inline-block; font-family: var(--font-body);
}
.btn-connect-submit:hover { background: var(--secondary-black); }

/* Hide left pane on smaller screens to look good on tablets */
@media (max-width: 768px) {
    .connect-left { display: none; }
    .connect-right { padding: 40px 25px; }
    .connect-right h2 { font-size: 1.3rem; }
}

/* =========================================
   PREMIUM HOMEPAGE DESIGN (SUPER DUPER UI)
========================================= */

/* General Utilities */
.section-title { font-size: 2.2rem; font-weight: 800; color: var(--secondary-black); margin-bottom: 10px; line-height: 1.2; }
.section-title.text-white { color: #fff; }
.title-divider { width: 60px; height: 4px; background: var(--accent-gold); border-radius: 2px; margin-bottom: 20px; }
.title-divider.center-div { margin: 0 auto 20px auto; }
.section-header.center { text-align: center; margin-bottom: 50px; }
.section-subtitle { font-size: 1.1rem; color: var(--text-medium); max-width: 600px; margin: 0 auto; }

/* Buttons */
.btn-premium {
    display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px;
    border-radius: 50px; font-weight: 700; font-size: 1rem; text-decoration: none;
    transition: all 0.3s ease; cursor: pointer; border: 2px solid transparent;
}
.btn-premium.btn-small { padding: 10px 20px; font-size: 0.9rem; }
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E); color: #fff;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4); color: #fff; }
.btn-call-outline {
    background: transparent; color: var(--primary-blue); border-color: var(--primary-blue);
}
.btn-call-outline:hover {
    background: var(--primary-blue); color: #fff; transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(53, 81, 165, 0.2);
}

/* 1. Hero Section */
/* =========================================
   ULTRA PREMIUM HERO SECTION (DARK MODE)
========================================= */

.ultra-hero {
    position: relative;
    /* Animated Gradient Background using Brand Colors */
    background: linear-gradient(-45deg, #0B1121, #1A2B4C, #081526, #111C33);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    padding: 100px 0 120px;
    overflow: hidden;
    color: #ffffff;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
/* Background Animation Keyframes */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
/* Textile / Manufacturing Mesh Overlay */
.ultra-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Diagonal subtle lines representing thread/weave/mesh */
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 15px);
    z-index: 1;
    pointer-events: none;
}

/* Moving Glowing Background Effects */
.hero-glow-1, .hero-glow-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}
/* Primary Blue Glow - Now Animated */
.hero-glow-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(53, 81, 165, 0.4) 0%, transparent 70%);
    top: -150px; left: -150px;
    animation: moveGlowBlue 10s ease-in-out infinite alternate;
}

/* Accent Gold Glow - Now Animated */
.hero-glow-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(226, 195, 75, 0.15) 0%, transparent 70%);
    bottom: -100px; right: -100px;
    animation: moveGlowGold 12s ease-in-out infinite alternate;
}

/* Glow Movement Animations */
@keyframes moveGlowBlue {
    0% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    100% { transform: translate(60px, 40px) scale(1.1); opacity: 0.6; }
}

@keyframes moveGlowGold {
    0% { transform: translate(0, 0) scale(1); opacity: 0.15; }
    100% { transform: translate(-50px, -60px) scale(1.2); opacity: 0.3; }
}

/* Ensures content stays above the animated background and overlay */
.ultra-hero-container {
    position: relative; z-index: 10;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}

/* Left Content Styles */
.ultra-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 20px; border-radius: 50px; font-size: 0.85rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #cbd5e1;
    margin-bottom: 25px; backdrop-filter: blur(10px);
}
.pulse-dot {
    width: 8px; height: 8px; background: #10b981; border-radius: 50%;
    box-shadow: 0 0 10px #10b981; animation: pulse 2s infinite;
}

.ultra-title {
    font-size: 3rem; font-weight: 800; line-height: 1.15;
    margin-bottom: 25px; color: #ffffff; letter-spacing: -1px;
}
.text-gold {
    background: linear-gradient(90deg, #E2C34B 0%, #F5D973 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.ultra-desc { font-size: 1.15rem; color: #94a3b8; line-height: 1.7; margin-bottom: 35px; max-width: 90%; }

.ultra-bullets { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 40px; }
.ultra-bullet-item {
    display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05); padding: 10px 18px; border-radius: 8px;
    font-weight: 600; font-size: 0.95rem; color: #e2e8f0;
}
.ultra-bullet-item svg { width: 18px; height: 18px; }

/* Action Buttons */
.ultra-actions { display: flex; flex-wrap: wrap; gap: 15px; }
.ultra-btn {
    display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px;
    border-radius: 50px; font-weight: 700; font-size: 1.05rem; text-decoration: none;
    transition: all 0.3s ease;
}
.ultra-btn svg { width: 22px; height: 22px; }

.btn-wa-glow {
    background: #25D366; color: #fff;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3); border: 2px solid #25D366;
}
.btn-wa-glow:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4); color: #fff; }

.btn-outline-white {
    background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.2);
}
.btn-outline-white:hover {
    background: #fff; color: #0B1121; border-color: #fff; transform: translateY(-3px);
}

/* Right Visual (Floating 3D) */
.ultra-hero-visual { position: relative; perspective: 1000px; }
.ultra-image-wrap { position: relative; border-radius: 24px; animation: floatImage 6s ease-in-out infinite; }
.ultra-image-wrap img {
    width: 100%; display: block; border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    object-fit: cover; aspect-ratio: 4/3;
}

/* Glassmorphism Cards */
.glass-card {
    position: absolute; background: rgba(255,255,255,0.1); backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2); padding: 15px 25px; border-radius: 16px;
    display: flex; align-items: center; gap: 15px; box-shadow: 0 15px 35px rgba(0,0,0,0.2); z-index: 2;
}
.glass-icon { font-size: 2rem; background: rgba(255,255,255,0.2); width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 12px; }
.glass-text { display: flex; flex-direction: column; }
.glass-text strong { font-size: 1.4rem; color: #fff; line-height: 1.1; }
.glass-text span { font-size: 0.85rem; color: #cbd5e1; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

.glass-card-1 { top: -40px; right: -10px; animation: floatCard 5s ease-in-out infinite reverse; }
.glass-card-2 { bottom: -30px; left: -30px; animation: floatCard 7s ease-in-out infinite; }

/* Animations */
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); } 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); } }
@keyframes floatImage { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Responsive */
@media (max-width: 1024px) {
    .ultra-hero-container { grid-template-columns: 1fr; text-align: center; }
    .ultra-badge { margin: 0 auto 25px; }
    .ultra-bullets { justify-content: center; }
    .ultra-actions { justify-content: center; }
    .ultra-desc { margin: 0 auto 35px; }
    .glass-card-1 { top: 20px; right: 10px; }
    .glass-card-2 { bottom: 20px; left: 10px; }
}
@media (max-width: 768px) {
    .ultra-title { font-size: 1.7rem; text-align: start; margin: 0 auto 25px; max-width: 90%; }
	.ultra-desc { margin: 0 auto 35px; text-align: left; }
	.ultra-bullet-item { padding: 10px 10px; font-size: 0.7rem; }
    .ultra-hero { padding: 60px 0 80px; }
    .ultra-btn { width: 100%; justify-content: center; font-size: 0.85rem; }
    .glass-card { display: none; /* Hide glass cards on small mobiles for cleaner look */ }
}

/* NEW: Image Slider CSS */
.mt-hero-slider {
    position: relative; width: 100%; aspect-ratio: 4/3; border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 30px 60px rgba(0,0,0,0.5); overflow: hidden;
}
.slide-img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; opacity: 0; transition: opacity 1s ease-in-out;
}
.slide-img.active-slide { opacity: 1; z-index: 2; }

/* Slider Control Arrows (Glassmorphism) */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15); /* Glass effect */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    opacity: 0; /* Default hide */
    transition: all 0.3s ease;
}
.mt-hero-slider:hover .slider-btn {
    opacity: 1; /* Hover karne par dikhenge */
}
.slider-btn:hover {
    background: var(--accent-gold);
    color: var(--secondary-black);
    border-color: var(--accent-gold);
    transform: translateY(-50%) scale(1.1); /* Hover pe thode bade honge */
}
.slider-btn svg { width: 22px; height: 22px; }
.prev-btn { left: 15px; }
.next-btn { right: 15px; }

/* Mobile View adjustments for arrows */
@media (max-width: 768px) {
    .slider-btn { opacity: 1; width: 36px; height: 36px; } /* Mobile me hamesha dikhenge */
    .slider-btn svg { width: 18px; height: 18px; }
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }
}

/* =========================================
   DYNAMIC CATEGORIES SLIDER (WHITE ANIMATED BG)
========================================= */
.white-animated-bg {
    position: relative;
    background-color: #ffffff; /* Pure White Background */
    padding: 60px 0;
    z-index: 5;
    overflow: hidden;
}

/* Textile & Manufacturing Floating Elements */
.floating-shapes {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 0; overflow: hidden;
}
.shape {
    position: absolute;
    background: rgba(53, 81, 165, 0.03); /* Faint Blue */
    border-radius: 50%;
    animation: floatShapes 20s infinite linear;
}
.shape-1 { width: 350px; height: 350px; top: -100px; left: -100px; animation-duration: 25s; }
.shape-2 { width: 150px; height: 150px; bottom: 10%; right: 5%; animation-duration: 18s; animation-direction: reverse; }
/* Hollow Gold Circle */
.shape-3 { 
    width: 80px; height: 80px; top: 30%; left: 20%; 
    background: transparent; border: 3px solid rgba(226, 195, 75, 0.15); 
    animation-duration: 22s; 
}
/* Spinning Tech Cross (Represents precision/machinery) */
.shape-cross {
    width: 50px; height: 50px; top: 20%; right: 20%;
    background: linear-gradient(90deg, transparent 45%, rgba(53, 81, 165, 0.06) 45%, rgba(53, 81, 165, 0.06) 55%, transparent 55%),
                linear-gradient(0deg, transparent 45%, rgba(53, 81, 165, 0.06) 45%, rgba(53, 81, 165, 0.06) 55%, transparent 55%);
    animation: floatShapes 15s infinite linear reverse;
    border-radius: 0;
}

@keyframes floatShapes {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

/* Animated Stitching Line (Textile feel) */
.animated-stitching-line {
    position: absolute; top: 50%; left: 0; width: 100%; height: 2px;
    background-image: linear-gradient(90deg, rgba(53, 81, 165, 0.1) 50%, transparent 50%);
    background-size: 20px 2px; z-index: 0;
    animation: moveStitch 30s linear infinite;
}
@keyframes moveStitch {
    0% { background-position: 0 0; }
    100% { background-position: 1000px 0; }
}

/* --- SLIDER LAYOUT & CENTER ARROWS --- */
.slider-wrapper-outer {
    position: relative; z-index: 10;
    padding: 0 20px; /* Space for arrows */
}

/* Center Arrows Design */
.cat-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px; height: 60px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--primary-blue);
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s ease;
    z-index: 20;
}
.cat-arrow:hover {
    background: var(--primary-blue);
    color: #ffffff;
    border-color: var(--primary-blue);
    box-shadow: 0 15px 35px rgba(53, 81, 165, 0.25);
    transform: translateY(-50%) scale(1.1);
}
/* Placing them outside the cards */
.left-arrow { left: -30px; }
.right-arrow { right: -30px; }

/* Viewport and Tracks */
.cat-slider-viewport {
    width: 100%; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x mandatory;
    -ms-overflow-style: none; scrollbar-width: none; padding: 20px 0 40px 0;
}
.cat-slider-viewport::-webkit-scrollbar { display: none; }
.category-slide-track { display: flex; gap: 30px; padding: 0 10px; }
.slide-card { flex: 0 0 calc(20% - 20px); min-width: 250px; scroll-snap-align: start; }

/* Keep your cinematic card hover effects... */
.cinematic-card { position: relative; height: 350px; border-radius: 24px; overflow: hidden; display: flex; align-items: flex-end; text-decoration: none; box-shadow: 0 15px 35px rgba(0,0,0,0.08); transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); border: 1px solid rgba(0,0,0,0.05); background: #fff; }
.cinematic-card:hover { transform: translateY(-15px); box-shadow: 0 9px 18px rgba(11, 17, 33, 0.2); }
.cinematic-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.cinematic-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform 0.8s ease; }
.cinematic-no-img { width: 100%; height: 100%; background: linear-gradient(135deg, var(--primary-blue), #0B1121); }
.cinematic-card:hover .cinematic-bg img { transform: scale(1.12); }
.cinematic-gradient { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(11, 17, 33, 0.9) 0%, rgba(11, 17, 33, 0.1) 60%, transparent 100%); z-index: 2; opacity: 0.8; transition: opacity 0.5s ease; }
.cinematic-card:hover .cinematic-gradient { opacity: 0.95; }
.cinematic-content { position: relative; z-index: 3; width: 100%; padding: 10px; }
.cinematic-glass { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 16px; padding: 8px; color: #fff; transition: all 0.5s ease; }
.cine-header { display: flex; justify-content: space-between; align-items: center; }
.cine-header h3 { font-size: 1rem; font-weight: 800; margin: 0; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.cine-icon-wrap { width: 25px; height: 25px; border-radius: 50%; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.3); display: flex; align-items: center; justify-content: center; transition: all 0.4s ease; }
.cine-icon-wrap svg { width: 15px; height: 15px; color: #fff; transition: all 0.4s ease; }
.cinematic-card:hover .cine-icon-wrap { background: var(--accent-gold); border-color: var(--accent-gold); transform: rotate(-45deg); }
.cinematic-card:hover .cine-icon-wrap svg { color: #0B1121; }
.cine-reveal { max-height: 0; opacity: 0; overflow: hidden; transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); }
.cine-reveal p { color: #cbd5e1; font-size: 0.8rem; line-height: 1.6; margin: 0 0 8px 0; }
.cine-btn { display: inline-block; font-weight: 700; color: var(--accent-gold); text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1px; }
.cinematic-card:hover .cine-reveal { max-height: 200px; opacity: 1; margin-top: 8px; }

/* Responsive Adjustments */
@media (max-width: 1024px) { 
    .slide-card { flex: 0 0 calc(50% - 15px); } 
    .left-arrow { left: -10px; }
    .right-arrow { right: -10px; }
}
@media (max-width: 768px) { 
    .slide-card { flex: 0 0 85%; } 
    .slider-wrapper-outer { padding: 0 5px; }
    .cat-arrow { width: 45px; height: 45px; }
    .left-arrow { left: 10px; }
    .right-arrow { right: 10px; }
}
/* --- NEW: INDUSTRIAL LUXURY HEADER & NAVIGATION --- */
.category-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

.header-left { text-align: left; }
.header-left .title-divider { margin: 0; }

.header-right-nav {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

/* Precision Box Arrows */
.tech-arrow {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid rgba(53, 81, 165, 0.3);
    border-radius: 10px; /* Slight square look for industrial feel */
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

/* Arrow Fill Animation */
.tech-arrow::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--primary-blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 0;
}
.tech-arrow:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.tech-arrow svg {
    position: relative;
    z-index: 1;
    width: 24px; height: 24px;
    transition: all 0.4s ease;
}
.tech-arrow:hover svg {
    color: #ffffff;
    transform: scale(1.15);
}
.tech-arrow:active { transform: scale(0.95); }

/* Glowing Thread / Laser Line */
.tech-nav-line {
    width: 60px;
    height: 2px;
    background: rgba(53, 81, 165, 0.15);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}
.laser-dot {
    position: absolute;
    top: 0; left: 0;
    width: 20px;
    height: 100%;
    background: var(--accent-gold);
    box-shadow: 0 0 10px var(--accent-gold), 0 0 20px var(--accent-gold);
    animation: laserScan 2s infinite ease-in-out;
}
@keyframes laserScan {
    0% { left: -20px; }
    50% { left: 100%; }
    100% { left: -20px; }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .category-header-wrapper { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 30px; }
    .header-right-nav { align-self: flex-end; }
    .tech-arrow { width: 40px; height: 40px; }
    .tech-nav-line { width: 40px; }
}

/* 2. About Card */
/* =========================================
   BENTO GRID ABOUT US (APPLE STYLE)
========================================= */
.bento-about-section {
    background-color: #f4f7f9; /* Very light, soft background */
    padding: 60px 0;
    z-index: 10;
    position: relative;
}

/* The Magic Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 24px;
    margin: 0 auto;
}

/* Common Box Styles */
.bento-box {
    border-radius: 32px; /* Super rounded corners like iOS */
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
.bento-box:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 40px rgba(53, 81, 165, 0.12);
}

/* --- Box 1: The Image --- */
.bento-img-box {
    grid-column: span 2;
    grid-row: span 2;
    background: #e2e8f0;
    position: relative;
}
.bento-img-box img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.bento-img-box:hover img { transform: scale(1.05); }

.bento-img-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%;
    padding: 40px 30px 30px;
    background: linear-gradient(to top, rgba(11,17,33,0.9), transparent);
    color: #fff; pointer-events: none;
}
.bento-tag { background: var(--accent-gold); color: var(--secondary-black); font-size: 0.75rem; font-weight: 800; padding: 6px 14px; border-radius: 20px; text-transform: uppercase; margin-bottom: 10px; display: inline-block; }
.bento-img-overlay h3 { font-size: 2rem; font-weight: 800; margin: 0; }

/* --- Box 2: The Text Content --- */
.bento-text-box {
    grid-column: span 2;
    grid-row: span 2;
    background: #ffffff;
    padding: 40px;
    display: flex; align-items: center;
    border: 1px solid rgba(0,0,0,0.03);
}
.bento-icon-top { font-size: 2.5rem; margin-bottom: 20px; opacity: 0.8; }
.bento-editor-content { color: var(--text-medium); font-size: 1.1rem; line-height: 1.8; }
/* .bento-editor-content p:first-child { font-size: 1.35rem; font-weight: 700; color: var(--secondary-black); line-height: 1.5; margin-bottom: 20px; } */
.bento-editor-content ul { padding-left: 20px; margin-bottom: 20px; color: var(--primary-blue); font-weight: 600; }
.bento-editor-content li { margin-bottom: 10px; color: var(--secondary-black); }

/* --- Box 3: Dark Stat --- */
.bento-stat-dark {
    grid-column: span 1;
    background: var(--secondary-black);
    color: #ffffff;
    padding: 30px; display: flex; flex-direction: column; justify-content: center;
}
.bento-stat-dark .bento-stat-icon { font-size: 2rem; margin-bottom: 15px; }
.bento-stat-dark h4 { font-size: 2.2rem; font-weight: 900; color: var(--accent-gold); margin: 0 0 5px 0; line-height: 1; }
.bento-stat-dark p { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: #cbd5e1; margin: 0; }

/* --- Box 4: Light Stat --- */
.bento-stat-light {
    grid-column: span 1;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.03);
    padding: 30px; display: flex; flex-direction: column; justify-content: center;
}
.bento-stat-light .bento-stat-icon { font-size: 2rem; margin-bottom: 15px; }
.bento-stat-light h4 { font-size: 2.2rem; font-weight: 900; color: var(--primary-blue); margin: 0 0 5px 0; line-height: 1; }
.bento-stat-light p { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-medium); margin: 0; }

/* --- Box 5: Gold CTA Box --- */
.bento-action-box {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--accent-gold), #f5d973);
    padding: 30px 40px;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.action-box-content h3 { font-size: 1.6rem; font-weight: 800; color: var(--secondary-black); margin: 0 0 8px 0; line-height: 1.2; }
.action-box-content p { font-size: 1rem; color: rgba(11,17,33,0.7); font-weight: 600; margin: 0; }

.action-box-buttons { display: flex; gap: 15px; align-items: center; flex-direction: column; min-width: 250px; }
.bento-btn-primary {
    background: var(--secondary-black); color: #fff; padding: 14px 18px; border-radius: 50px;
    font-weight: 700; display: inline-flex; align-items: center; gap: 10px; text-decoration: none; transition: 0.3s;
}
.bento-btn-primary:hover { background: var(--primary-blue); transform: scale(1.05); color:#fff;}
.bento-btn-primary svg { width: 20px; height: 20px; transition: 0.3s; }
.bento-btn-primary:hover svg { transform: translateX(5px); }

.bento-btn-icon {
    height: 50px;
    background: #fff;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: #1f2e3f;
    padding: 14px 18px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: 0.3s;
}
.bento-btn-icon:hover { transform: scale(1.1) rotate(10deg); }

/* Responsive Grid Adjustments */
@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-img-box { grid-column: span 2; height: 400px; }
    .bento-text-box { grid-column: span 2; }
    .bento-action-box { grid-column: span 2; flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
    .bento-grid { grid-template-columns: 1fr; gap: 15px; }
    .bento-img-box, .bento-text-box, .bento-stat-dark, .bento-stat-light, .bento-action-box { grid-column: span 1; grid-row: auto; }
    .bento-img-box { height: 300px; }
    .bento-text-box { padding: 30px 20px; }
    .action-box-buttons { flex-direction: column; width: 100%; }
    .bento-btn-primary { justify-content: center; width: 100%; }
}

/* =========================================
   LATEST PRODUCTS SLIDER (LUXURY EDITION)
========================================= */

/* The Viewport and Track Layout */
.prod-slider-viewport {
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none; /* IE/Edge */
    scrollbar-width: none; /* Firefox */
    padding: 20px 0 60px 0; /* Extra bottom padding for shadow room */
}
.prod-slider-viewport::-webkit-scrollbar { display: none; } /* Chrome/Safari */

.product-slide-track {
    display: flex;
    gap: 35px;
    padding: 0 15px;
}

/* --- THE NEW LUXURY PRODUCT CARD --- */
.lux-prod-card {
    flex: 0 0 calc(25% - 26.25px); /* 4 items per row */
    min-width: 300px;
    scroll-snap-align: start;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.lux-prod-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(11, 17, 33, 0.1);
    border-color: rgba(53, 81, 165, 0.15);
}

/* Image Visual Area */
.lux-prod-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f1f5f9;
}
.lux-prod-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.lux-prod-card:hover .lux-prod-visual img {
    transform: scale(1.08);
}
.prod-no-img {
    display: flex; align-items: center; justify-content: center; height: 100%;
    color: var(--text-medium); font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
}

/* Faint gradient overlay over image */
.lux-prod-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
    opacity: 0; transition: opacity 0.5s ease;
}
.lux-prod-card:hover .lux-prod-overlay { opacity: 1; }

/* The 'New Arrival' Badge */
.lux-prod-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--secondary-black);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Content Details Area */
.lux-prod-details {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #ffffff;
}

.lux-prod-meta { margin-bottom: 10px; }
.lux-cat-tag {
    font-size: 0.75rem;
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.lux-prod-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--secondary-black);
    margin: 0 0 20px 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}
.lux-prod-card:hover .lux-prod-title { color: var(--primary-blue); }

/* Price and Action Button Bottom Row */
.lux-prod-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
	
}

.lux-price-block { display: flex; align-items: baseline; gap: 2px; }
.lux-price-block .currency { font-size: 1rem; font-weight: 700; color: var(--text-medium); margin-bottom: 2px; }
.lux-price-block .amount { font-size: 1.3rem; font-weight: 900; color: var(--accent-gold); line-height: 1; }
.lux-price-block .unit { font-size: 0.85rem; font-weight: 600; color: var(--text-medium); margin-left: 5px; margin-bottom: 2px;}

/* Modern Hover Button */
.lux-view-btn {
    width: 35px;
    height: 35px;
    background: var(--secondary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.lux-view-btn svg { width: 20px; height: 20px; transition: transform 0.4s ease; }

/* The Arrow shoots forward on hover */
.lux-prod-card:hover .lux-view-btn {
    background: var(--primary-blue);
    box-shadow: 0 8px 20px rgba(53, 81, 165, 0.3);
    transform: scale(1.1);
}
.lux-prod-card:hover .lux-view-btn svg {
    transform: translateX(3px);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .lux-prod-card { flex: 0 0 calc(33.333% - 23.33px); }
}
@media (max-width: 900px) {
    .lux-prod-card { flex: 0 0 calc(50% - 17.5px); }
}
@media (max-width: 600px) {
    .lux-prod-card { flex: 0 0 85%; }
    .lux-prod-details { padding: 20px; }
    .lux-price-block .amount { font-size: 1.4rem; }
}

/* 3. Product Silo Grid */
/* =========================================
   INTERACTIVE DASHBOARD FEATURES SECTION
========================================= */
.feature-dashboard {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 50px;
    margin-top: 50px;
    align-items: start;
}

/* --- Left Sidebar (Tabs) --- */
.dash-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dash-tab {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 20px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.dash-tab:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
    transform: translateX(5px);
}

/* Active Tab Magic */
.dash-tab.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(53, 81, 165, 0.3);
    transform: translateX(15px);
    color: #ffffff;
}

.tab-icon {
    font-size: 1.8rem;
    width: 55px; height: 55px;
    background: #f4f7f9;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    transition: 0.3s;
}
.dash-tab.active .tab-icon { background: rgba(255,255,255,0.15); }

.tab-info h4 { margin: 0 0 5px 0; font-size: 1.15rem; font-weight: 800; color: var(--secondary-black); transition: 0.3s; }
.dash-tab.active .tab-info h4 { color: #ffffff; }
.tab-info span { font-size: 0.85rem; color: var(--text-medium); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; }
.dash-tab.active .tab-info span { color: #cbd5e1; }

.tab-arrow { margin-left: auto; font-size: 1.5rem; font-weight: bold; opacity: 0; transform: translateX(-15px); transition: 0.4s; }
.dash-tab.active .tab-arrow { opacity: 1; transform: translateX(0); }

/* --- Right Display Area --- */
.dash-display {
    background: #ffffff;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    min-height: 450px;
}

.dash-panel { display: none; }
.dash-panel.active { display: block; animation: slideFadeUp 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards; }

@keyframes slideFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.panel-watermark {
    position: absolute;
    top: -30px; right: -10px;
    font-size: 200px; font-weight: 900;
    color: #f8fafc;
    line-height: 1; user-select: none; pointer-events: none; z-index: 0;
}

.dash-panel h3 { font-size: 2.2rem; font-weight: 800; color: var(--secondary-black); margin-bottom: 15px; position: relative; z-index: 1; line-height: 1.2; }
.panel-intro { font-size: 1.15rem; color: var(--text-medium); margin-bottom: 35px; position: relative; z-index: 1; line-height: 1.6; }

/* 1. Premium Dash List (For Why Choose Us) */
.premium-dash-list { list-style: none; padding: 0; margin: 0; position: relative; z-index: 1; }
.premium-dash-list li { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; font-size: 1.1rem; color: var(--secondary-black); font-weight: 600; background: #f8fafc; padding: 15px 20px; border-radius: 12px; border-left: 4px solid var(--accent-gold); transition: 0.3s; }
.premium-dash-list li:hover { transform: translateX(10px); background: #ffffff; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.check-circle { width: 28px; height: 28px; background: var(--primary-blue); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.check-circle svg { width: 16px; height: 16px; }

/* 2. Process Timeline */
.process-timeline { position: relative; padding-left: 30px; border-left: 2px dashed #cbd5e1; z-index: 1; }
.timeline-item { position: relative; margin-bottom: 30px; }
.time-dot { position: absolute; left: -50px; top: -5px; width: 38px; height: 38px; background: var(--primary-blue); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; border: 4px solid #fff; box-shadow: 0 5px 15px rgba(53, 81, 165, 0.3); }
.time-text { font-size: 1.2rem; font-weight: 700; color: var(--secondary-black); padding-top: 2px; }

/* 3. Industry Grid */
.industry-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; z-index: 1; position: relative; }
.ind-card { background: #f8fafc; border: 1px solid #e2e8f0; padding: 20px; border-radius: 16px; display: flex; align-items: center; gap: 15px; transition: 0.3s; }
.ind-card:hover { background: var(--primary-blue); color: #fff; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(53, 81, 165, 0.2); border-color: var(--primary-blue); }
.ind-icon { font-size: 1.5rem; color: var(--accent-gold); }
.ind-name { font-weight: 700; font-size: 1.05rem; }

/* Responsive */
@media (max-width: 1024px) {
    .feature-dashboard { grid-template-columns: 1fr; gap: 30px; }
    .dash-sidebar { flex-direction: row; flex-wrap: wrap; }
    .dash-tab { flex: 1; min-width: 250px; }
    .dash-tab.active { transform: translateY(-5px); }
}
@media (max-width: 768px) {
    .dash-display { padding: 30px 20px; }
    .industry-grid { grid-template-columns: 1fr; }
    .panel-watermark { font-size: 100px; }
}
/* =========================================
   CKEDITOR OUTPUT STYLING FOR DASHBOARD
========================================= */

.ckeditor-output-styled { position: relative; z-index: 1; }

.ckeditor-output-styled p {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Style for Bullet Lists in "Why Choose Us" (Tab 1) */
.why-choose-style ul { list-style: none; padding: 0; margin: 0; }
.why-choose-style li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: var(--secondary-black);
    font-weight: 600;
    background: #f8fafc;
    padding: 15px 20px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}
.why-choose-style li:hover { transform: translateX(10px); background: #ffffff; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.why-choose-style li::before {
    content: '✔';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Style for Numbered Lists in "Process" (Tab 2) */
.process-style ol {
    list-style: none;
    padding-left: 20px;
    border-left: 2px dashed #cbd5e1;
    counter-reset: process-counter;
}
.process-style li {
    position: relative;
    margin-bottom: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-black);
    padding-left: 25px;
}
.process-style li::before {
    counter-increment: process-counter;
    content: counter(process-counter);
    position: absolute;
    left: -40px;
    top: -5px;
    width: 38px; height: 38px;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.1rem;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(53, 81, 165, 0.3);
}

/* Style for Bullet Lists in "Industries" (Tab 3) */
.industry-style ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.industry-style li {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 20px;
    border-radius: 16px;
    display: flex; align-items: center;
    font-weight: 700; font-size: 1.05rem;
    color: var(--secondary-black);
    transition: 0.3s;
}
.industry-style li:hover {
    background: var(--primary-blue); color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(53, 81, 165, 0.2);
    border-color: var(--primary-blue);
}
.industry-style li::before {
    content: '✦';
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-right: 15px;
}

@media (max-width: 768px) {
    .industry-style ul { grid-template-columns: 1fr; }
}

/* =========================================
   6. TESTIMONIALS & ULTIMATE CTA
========================================= */
/* Feedback Grid */
.feedback-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.feedback-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: transform 0.3s ease;
}
.feedback-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    background: #ffffff;
    border-color: var(--primary-blue);
}

.quote-mark {
    font-size: 80px;
    line-height: 0;
    color: var(--accent-gold);
    font-family: Georgia, serif;
    opacity: 0.3;
    position: absolute;
    top: 50px;
    left: 20px;
}

.feedback-text {
    font-size: 1.2rem;
    color: var(--secondary-black);
    font-style: italic;
    line-height: 1.7;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.feedback-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}
.author-avatar {
    width: 45px; height: 45px;
    background: var(--primary-blue); color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.2rem;
}
.author-info { display: flex; flex-direction: column; }
.author-info strong { color: var(--secondary-black); font-size: 1.05rem; }
.author-info span { color: var(--text-medium); font-size: 0.85rem; }


/* Ultimate CTA Block */
.ultimate-cta-section {
    padding: 0 0 100px;
    background: #ffffff;
}

.cta-luxury-box {
    background: linear-gradient(135deg, var(--secondary-black) 0%, #1a2b4c 100%);
    border-radius: 24px;
    padding: 60px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 30px 60px rgba(11,17,33,0.3);
    position: relative;
    overflow: hidden;
}

/* Subtle background glow inside CTA */
.cta-luxury-box::before {
    content: ''; position: absolute; top: -50%; left: -20%; width: 50%; height: 200%;
    background: radial-gradient(circle, rgba(226, 195, 75, 0.1) 0%, transparent 70%);
}

.cta-content-left {
    position: relative; z-index: 1; max-width: 600px;
}
.cta-content-left h2 {
    color: #ffffff; font-size: 2.8rem; font-weight: 900; line-height: 1.2; margin-bottom: 15px;
}
.cta-content-left p {
    color: #cbd5e1; font-size: 1.15rem; line-height: 1.7; margin-bottom: 20px;
}
.cta-highlight {
    display: inline-block; background: rgba(255,255,255,0.1); color: var(--accent-gold);
    padding: 8px 16px; border-radius: 8px; font-weight: 700; font-size: 0.95rem; border: 1px solid rgba(226, 195, 75, 0.3);
}

.cta-actions-right {
    display: flex; flex-direction: column; gap: 15px; position: relative; z-index: 1; min-width: 300px;
}

.cta-btn {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    padding: 16px 30px; border-radius: 50px; font-weight: 800; font-size: 1.05rem;
    text-decoration: none; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px;
}
.btn-whatsapp-solid { background: #25D366; color: #fff; box-shadow: 0 10px 20px rgba(37,211,102,0.3); }
.btn-whatsapp-solid:hover { background: #20bd5a; transform: translateY(-3px); color: #fff; }

.btn-call-solid { background: var(--accent-gold); color: var(--secondary-black); box-shadow: 0 10px 20px rgba(226, 195, 75, 0.3); }
.btn-call-solid:hover { background: #fff; color: var(--secondary-black); transform: translateY(-3px); }

/* Responsive */
@media (max-width: 1024px) {
    .cta-luxury-box { flex-direction: column; text-align: center; padding: 50px 40px; }
    .cta-content-left { max-width: 100%; }
    .cta-actions-right { width: 100%; }
}
@media (max-width: 768px) {
    .feedback-grid { grid-template-columns: 1fr; gap: 20px; }
    .cta-content-left h2 { font-size: 2rem; }
    .cta-luxury-box { padding: 40px 20px; }
    .cta-btn { font-size: 0.9rem; padding: 14px 20px; }
}

/* =========================================
   6. ULTRA PREMIUM RATINGS & REVIEWS
========================================= */

/* The Premium Dashboard Box */
.reviews-dashboard-lux {
    background: var(--secondary-black); /* Deep Navy Luxury */
    border-radius: 24px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr auto 1.5fr auto 1.5fr;
    align-items: center;
    gap: 40px;
    box-shadow: 0 20px 50px rgba(11, 17, 33, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}
/* Subtle glow inside the dark dashboard */
.reviews-dashboard-lux::before {
    content: ''; position: absolute; top: -50px; left: -50px; width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(226, 195, 75, 0.15) 0%, transparent 70%); border-radius: 50%;
}

.lux-stat-divider { width: 1px; height: 100px; background: rgba(255, 255, 255, 0.1); }

/* Left: Score */
.lux-agg-col { text-align: center; position: relative; z-index: 2; }
.lux-score-wrap { margin-bottom: 5px; }
.lux-score { font-size: 4rem; font-weight: 900; color: #ffffff; line-height: 1; }
.lux-out-of { font-size: 1.2rem; font-weight: 600; color: #cbd5e1; }
.lux-stars-big { display: flex; justify-content: center; gap: 5px; margin-bottom: 10px; }
.lux-stars-big svg { width: 30px; height: 30px; filter: drop-shadow(0 2px 5px rgba(226, 195, 75, 0.4)); }
.lux-review-count { font-size: 0.95rem; font-weight: 600; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; }

/* Middle: Premium Bars */
.lux-bars-col { position: relative; z-index: 2; }
.lux-bar-row { display: flex; align-items: center; gap: 15px; margin-bottom: 12px; }
.lux-star-label { font-size: 0.95rem; color: #ffffff; font-weight: 600; min-width: 50px; }
.lux-track { flex-grow: 1; background: rgba(255, 255, 255, 0.1); height: 8px; border-radius: 10px; overflow: hidden; }
.lux-fill { background: linear-gradient(90deg, #E2C34B, #F5D973); height: 100%; border-radius: 10px; box-shadow: 0 0 10px rgba(226, 195, 75, 0.5); }
.lux-pct-label { font-size: 0.9rem; color: #cbd5e1; min-width: 40px; text-align: right; font-weight: 600; }

/* Right: Animated Satisfaction Circles */
.lux-sat-col { text-align: center; position: relative; z-index: 2; }
.lux-sat-title { font-size: 1.2rem; font-weight: 700; color: #ffffff; margin: 0 0 25px 0; letter-spacing: 1px; }
.lux-circles-wrap { display: flex; justify-content: center; gap: 35px; }
.lux-circle-item { display: flex; flex-direction: column; align-items: center; }

/* CSS Magic Circle Gradient */
.lux-circle-graph {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: conic-gradient(var(--accent-gold) calc(var(--val) * 1%), rgba(255, 255, 255, 0.1) 0deg);
    position: relative;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 0 15px rgba(226, 195, 75, 0.2);
}
.lux-circle-graph::before {
    content: ''; position: absolute; inset: 4px;
    background: var(--secondary-black); border-radius: 50%;
}
.lux-circle-graph span { position: relative; z-index: 1; font-weight: 800; font-size: 1rem; color: #ffffff; }
.lux-circle-item p { font-size: 0.85rem; color: #cbd5e1; font-weight: 600; text-transform: uppercase; margin: 0; letter-spacing: 1px; }


/* --- The Floating Review Cards --- */
.lux-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.lux-review-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}
.lux-review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(53, 81, 165, 0.1);
    border-color: rgba(53, 81, 165, 0.15);
}

.lux-rev-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.lux-avatar {
    width: 45px; height: 45px;
    background: var(--primary-blue); color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.2rem; flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(53, 81, 165, 0.3);
}
.lux-user-info { flex-grow: 1; }
.lux-user-info h4 { font-size: 1.1rem; font-weight: 800; color: var(--secondary-black); margin: 0 0 4px 0; }
.lux-user-info p { font-size: 0.85rem; color: var(--text-medium); margin: 0; font-weight: 500; }

.lux-card-rating {
    background: #f8fafc; padding: 6px 12px; border-radius: 20px; font-weight: 800;
    font-size: 0.9rem; color: var(--secondary-black); display: flex; align-items: center; gap: 5px;
    border: 1px solid #e2e8f0;
}
.lux-card-rating svg { width: 14px; height: 14px; }

.lux-rev-body { flex-grow: 1; margin-bottom: 25px; }
.lux-rev-body p { font-size: 1.05rem; color: var(--secondary-black); line-height: 1.6; font-style: italic; font-weight: 500; margin: 0; }

.lux-rev-footer { border-top: 1px solid rgba(0,0,0,0.05); padding-top: 20px; }
.lux-prod-tag { font-size: 0.8rem; font-weight: 700; color: var(--primary-blue); text-transform: uppercase; letter-spacing: 1px; }

/* Responsive */
@media (max-width: 1024px) {
    .reviews-dashboard-lux { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .lux-stat-divider { display: none; }
    .lux-reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .lux-bars-col { padding: 0 20px; }
}
@media (max-width: 768px) {
    .lux-reviews-grid { grid-template-columns: 1fr; }
    .reviews-dashboard-lux { padding: 40px 20px; }
    .lux-circles-wrap { flex-direction: column; gap: 20px; }
}

/* =========================================
   8. THE STICKY SPLIT-SCREEN JOURNAL
========================================= */

.split-journal-section {
    background-color: #080c17; /* Deep Dark Background for the whole section */
    padding: 120px 0;
    position: relative;
    z-index: 10;
}

.split-layout-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    position: relative;
}

/* --- LEFT SIDE: Sticky Behavior --- */
.split-sticky-side {
    width: 40%;
    position: sticky;
    top: 150px; /* Sticks to the screen when scrolled */
    padding-right: 20px;
}

.pulse-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 16px; border-radius: 30px; margin-bottom: 25px;
}
.pulse-dot {
    width: 8px; height: 8px; background: var(--accent-gold); border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(226, 195, 75, 0.7);
    animation: goldPulse 2s infinite;
}
@keyframes goldPulse {
    0% { box-shadow: 0 0 0 0 rgba(226, 195, 75, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(226, 195, 75, 0); }
    100% { box-shadow: 0 0 0 0 rgba(226, 195, 75, 0); }
}
.pulse-txt { color: #cbd5e1; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

.sticky-title {
    font-size: 3.5rem; font-weight: 900; color: #ffffff;
    line-height: 1.1; margin: 0 0 20px 0; letter-spacing: -1px;
}
.sticky-title .text-gold { color: var(--accent-gold); }

.sticky-desc {
    font-size: 1.15rem; color: #94a3b8; line-height: 1.7; margin-bottom: 40px; max-width: 90%;
}

.btn-sticky-explore {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--primary-blue); color: #fff;
    padding: 16px 35px; border-radius: 50px;
    font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
    text-decoration: none; transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(53, 81, 165, 0.3);
}
.btn-sticky-explore:hover {
    background: #ffffff; color: var(--primary-blue); transform: translateY(-3px); box-shadow: 0 15px 35px rgba(255,255,255,0.2);
}
.btn-sticky-explore svg { width: 20px; height: 20px; transition: transform 0.3s; }
.btn-sticky-explore:hover svg { transform: translateX(5px); }


/* --- RIGHT SIDE: Scrolling Cards --- */
.split-scroll-side {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 100px; /* Big gap between articles for scroll effect */
}

/* The Article Card */
.split-card {
    position: relative;
    width: 100%;
    padding-bottom: 40px; /* Space for overlapping box */
}

/* Image Frame */
.split-img-frame {
    display: block;
    width: 100%;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.split-img-frame img {
    width: 100%; height: 100%; object-fit: none; transition: transform 0.8s ease;
}
.split-card:hover .split-img-frame img { transform: scale(1.05); }
.split-no-img { width: 100%; height: 100%; background: #1e293b; color: #fff; display: flex; align-items: center; justify-content: center; }

/* The Overlapping Content Box (Offset to left and bottom) */
.split-card-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    width: 90%;
    position: relative;
    margin: -80px 0 0 40px; /* Moves box UP over the image, and slightly RIGHT */
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}
.split-card:hover .split-card-content {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.split-meta { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.split-cat { font-size: 0.75rem; font-weight: 800; color: var(--primary-blue); text-transform: uppercase; letter-spacing: 1px; }
.split-date { font-size: 0.85rem; color: #94a3b8; font-weight: 600; }

.split-card-title { font-size: 1.6rem; font-weight: 900; line-height: 1.3; margin: 0 0 15px 0; }
.split-card-title a { color: var(--secondary-black); text-decoration: none; transition: color 0.3s; }
.split-card:hover .split-card-title a { color: var(--primary-blue); }

.split-excerpt { font-size: 1.05rem; color: var(--text-medium); line-height: 1.6; margin-bottom: 20px; }

.split-read-link {
    font-weight: 800; color: var(--accent-gold); text-transform: uppercase; letter-spacing: 1px;
    font-size: 0.9rem; text-decoration: none; display: flex; align-items: center; gap: 5px;
}
.split-read-link .arrow { transition: transform 0.3s; }
.split-card:hover .split-read-link .arrow { transform: translateX(5px); }

/* Responsive adjustments */
@media (max-width: 1024px) {
    .split-layout-wrapper { flex-direction: column; gap: 60px; }
    .split-sticky-side { width: 100%; position: relative; top: 0; text-align: center; padding: 0; }
    .sticky-desc { margin: 0 auto 40px auto; }
    .split-scroll-side { width: 100%; gap: 60px; }
    .split-card-content { width: 90%; margin: -50px auto 0 auto; } /* Center the overlapping box */
}
@media (max-width: 600px) {
    .sticky-title { font-size: 2.5rem; }
    .split-img-frame { height: 250px; }
    .split-card-content { width: 95%; padding: 25px; margin-top: -30px; }
    .split-card-title { font-size: 1.3rem; }
}

/* 5. Map Section */
/* =========================================
   7. ULTRA PREMIUM LOCATION & MAP
========================================= */
.ultra-location-section {
    position: relative;
    background-color: var(--secondary-black); /* Deep Navy */
    padding: 120px 0;
    overflow: hidden;
    z-index: 10;
}
.ultra-location-section .text-white { color: #ffffff; }

/* Cyber Grid Background Effect */
.location-cyber-grid {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
}
.location-glow {
    position: absolute;
    top: 50%; left: 0; width: 50%; height: 50%;
    background: radial-gradient(circle, rgba(53, 81, 165, 0.2) 0%, transparent 70%);
    transform: translateY(-50%);
    z-index: 0;
}

.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

/* --- Left: Content & Glass Cards --- */
.location-content { position: relative; z-index: 2; }
.location-desc {
    font-size: 1.15rem; color: #cbd5e1; line-height: 1.8;
    margin-bottom: 40px; max-width: 500px;
}

.contact-cards-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-card-lux {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.contact-card-lux:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.contact-icon-lux {
    width: 50px; height: 50px;
    background: rgba(53, 81, 165, 0.2);
    border: 1px solid rgba(53, 81, 165, 0.5);
    color: var(--accent-gold);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: transform 0.4s;
}
.contact-card-lux:hover .contact-icon-lux { transform: scale(1.1) rotate(5deg); background: var(--primary-blue); color:#fff; border-color:var(--primary-blue);}
.contact-icon-lux svg { width: 24px; height: 24px; }

.contact-info-lux { display: flex; flex-direction: column; }
.contact-info-lux .label { font-size: 0.85rem; font-weight: 600; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-info-lux .value { font-size: 1.2rem; font-weight: 800; color: #ffffff; }

/* --- Right: Glowing Map Interface --- */
.location-map-side { position: relative; z-index: 2; }
.lux-map-frame {
    background: rgba(11, 17, 33, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 40px rgba(53, 81, 165, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.5s ease;
}
.lux-map-frame:hover { transform: translateY(-5px); box-shadow: 0 40px 70px rgba(0,0,0,0.6), 0 0 50px rgba(53, 81, 165, 0.3); }

/* The Top UI Bar (Apple/Mac style dots + Live text) */
.map-top-bar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 15px 15px;
}
.live-indicator { display: flex; align-items: center; gap: 10px; }
.pulse-ring {
    width: 12px; height: 12px; background: #10b981; border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: livePulse 2s infinite;
}
@keyframes livePulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.live-text { font-size: 0.85rem; font-weight: 700; color: #10b981; text-transform: uppercase; letter-spacing: 1px; }

.frame-dots { display: flex; gap: 6px; }
.frame-dots span { width: 10px; height: 10px; border-radius: 50%; background: #475569; }
.frame-dots span:nth-child(1) { background: #ef4444; }
.frame-dots span:nth-child(2) { background: #eab308; }
.frame-dots span:nth-child(3) { background: #22c55e; }

/* Map Embed styling */
.map-embed-area {
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
    width: 100%;
    position: relative;
}
.map-embed-area iframe {
    width: 100% !important;
    height: 100% !important;
    border: none;
    display: block;
    /* Optional: Makes google maps look slightly darker to match theme */
    filter: contrast(1.1) opacity(0.9); 
}
.empty-map-state {
    height: 100%; display: flex; align-items: center; justify-content: center;
    background: #1e293b; color: #94a3b8; font-weight: 600; text-align: center; padding: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .location-wrapper { grid-template-columns: 1fr; gap: 50px; }
    .contact-cards-wrap { flex-direction: row; flex-wrap: wrap; }
    .contact-card-lux { flex: 1; min-width: 250px; }
}
@media (max-width: 768px) {
    .contact-cards-wrap { flex-direction: column; }
    .ultra-location-section { padding: 80px 0; }
    .map-embed-area { height: 300px; }
}

/* =========================================
   8. ULTRA PREMIUM LUXURY FOOTER
========================================= */
.luxury-footer {
    background-color: #080c17; /* Ekdum Deep Dark Navy / Black */
    color: #ffffff;
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
    z-index: 10;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Subtle Background Effects */
.footer-glow {
    position: absolute; 
    top: 0; 
    left: 50%; 
    transform: translateX(-50%);
    width: 80%; 
    height: 200px;
    background: radial-gradient(ellipse at top, rgba(226, 195, 75, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.footer-grid-bg {
    position: absolute; 
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr; /* 3 Columns Layout */
    gap: 60px;
    margin-bottom: 60px;
    position: relative; 
    z-index: 2;
}

/* Common Footer Headings */
.footer-col h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.footer-logo-text {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: 12px;
    letter-spacing: -1px;
}
.footer-divider {
    width: 50px; 
    height: 3px;
    background: var(--accent-gold);
    margin-bottom: 25px;
    border-radius: 2px;
}

/* Col 1: About & Socials */
.footer-about-p {
    font-size: 1.05rem; 
    color: #94a3b8; 
    line-height: 1.8; 
    margin-bottom: 30px;
    max-width: 90%;
}

/* Premium Social Media Icons */
.footer-social-row {
    display: flex;
    gap: 15px;
}
.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}
.social-icon svg { width: 20px; height: 20px; transition: transform 0.3s; }

/* Brand Hover Effects for Socials */
.social-icon:hover {
    transform: translateY(-8px) rotate(5deg);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}
.social-icon:hover svg { transform: scale(1.1); }
.social-icon.fb:hover { background: #1877F2; border-color: #1877F2; }
.social-icon.ig:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); border-color: transparent; }
.social-icon.yt:hover { background: #FF0000; border-color: #FF0000; }
.social-icon.x:hover { background: #000000; border-color: #333333; }

/* Col 2: Quick Links Menu */
.footer-menu { list-style: none; padding: 0; margin: 0; }
.footer-menu li { margin-bottom: 16px; }
.footer-menu a {
    color: #94a3b8; 
    text-decoration: none; 
    font-size: 1.05rem; 
    font-weight: 500;
    transition: all 0.3s ease; 
    display: inline-flex; 
    align-items: center;
}
.footer-menu a::before {
    content: '→'; 
    color: var(--accent-gold); 
    margin-right: 10px; 
    font-size: 1.2rem;
    opacity: 0; 
    transform: translateX(-10px); 
    transition: all 0.3s ease;
}
.footer-menu a:hover { color: #ffffff; transform: translateX(5px); }
.footer-menu a:hover::before { opacity: 1; transform: translateX(0); }

/* Col 3: Contact Info SVGs */
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li {
    display: flex; 
    align-items: flex-start; 
    gap: 15px; 
    margin-bottom: 22px;
}
.icon-svg {
    width: 24px;
    height: 24px;
    color: var(--accent-gold); /* Icons ab Gold color mein dikhenge */
    flex-shrink: 0;
    margin-top: 2px;
}
.icon-svg svg {
    width: 100%;
    height: 100%;
}
.footer-contact-list .text { 
    color: #94a3b8; 
    font-size: 1.05rem; 
    line-height: 1.6; 
    text-decoration: none; 
    transition: 0.3s; 
}
a.text:hover { color: var(--accent-gold); }

/* Footer Bottom (Copyright) */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
    position: relative; 
    z-index: 2;
}
.footer-bottom p { color: #64748b; font-size: 0.95rem; margin: 0; }
.footer-bottom strong { color: #cbd5e1; font-weight: 700; }

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-top-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
    .brand-col { grid-column: span 2; }
    .footer-about-p { max-width: 100%; }
}
@media (max-width: 768px) {
    .footer-top-grid { grid-template-columns: 1fr; gap: 40px; }
    .brand-col { grid-column: span 1; text-align: center; }
    .footer-divider { margin: 0 auto 25px; }
    .footer-social-row { justify-content: center; }
    .links-col, .contact-col { text-align: center; }
    .footer-contact-list li { flex-direction: column; align-items: center; gap: 8px; }
}


/* =========================================
   9. FLOATING BUTTONS (WhatsApp & BTT)
========================================= */
/* Floating WhatsApp */
.float-wa {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: waPulse 2s infinite;
}
.float-wa svg { width: 35px; height: 35px; }
.float-wa:hover { 
    transform: scale(1.1) translateY(-5px); 
    animation: none; 
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}

@keyframes waPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Floating Back to Top (BTT) */
.float-btt {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(11, 17, 33, 0.8);
    backdrop-filter: blur(5px);
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.float-btt.visible { 
    opacity: 1; 
    visibility: visible; 
    transform: translateY(0); 
}
.float-btt:hover { 
    background: var(--accent-gold); 
    color: var(--secondary-black); 
    transform: translateY(-5px); 
    box-shadow: 0 15px 30px rgba(226, 195, 75, 0.3);
}
.float-btt svg { width: 24px; height: 24px; transition: transform 0.3s; }
.float-btt:hover svg { transform: translateY(-3px); }

/* Responsive Floating Buttons */
@media (max-width: 768px) {
    .float-wa { bottom: 80px; left: 20px; width: 55px; height: 55px; }
    .float-wa svg { width: 30px; height: 30px; }
    .float-btt { bottom: 80px; right: 20px; width: 45px; height: 45px; }
}


/* =========================================
   PRODUCT LIST PAGE STYLING
========================================= */

/* Hero Banner */
.catalog-hero {
    background-color: var(--secondary-black);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.catalog-hero .section-title { margin-bottom: 15px; }

.mt-breadcrumbs {
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 600;
}
.mt-breadcrumbs a { color: var(--accent-gold); text-decoration: none; margin-right: 5px; }
.mt-breadcrumbs span { margin: 0 10px; opacity: 0.5; }

/* Main Layout Grid */
.catalog-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
}

/* Sidebar Filters */
.catalog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    margin-bottom: 30px;
}
.sidebar-widget h3 { font-size: 1.25rem; color: var(--secondary-black); margin-bottom: 15px; font-weight: 800; }
.filter-divider { width: 40px; height: 3px; background: var(--accent-gold); margin-bottom: 20px; }

.cat-filter-list { list-style: none; padding: 0; margin: 0; }
.cat-filter-list li { margin-bottom: 12px; }
.cat-filter-list a {
    display: flex; justify-content: space-between; align-items: center;
    text-decoration: none; color: var(--text-medium); font-weight: 600;
    transition: 0.3s; padding: 5px 0;
}
.cat-filter-list a:hover, .cat-filter-list a.active { color: var(--primary-blue); transform: translateX(5px); }
.cat-filter-list .count { font-size: 0.8rem; background: #f1f5f9; padding: 2px 8px; border-radius: 20px; color: #64748b; }

.sidebar-help-card {
    background: var(--primary-blue); color: #fff; padding: 30px; border-radius: 20px;
}
.sidebar-help-card h4 { font-size: 1.2rem; margin-bottom: 10px; color: #fff; }
.sidebar-help-card p { font-size: 0.9rem; opacity: 0.8; margin-bottom: 20px; }
.help-btn { display: block; background: var(--accent-gold); color: var(--secondary-black); text-align: center; padding: 12px; border-radius: 12px; text-decoration: none; font-weight: 800; text-transform: uppercase; font-size: 0.85rem; }

/* Grid and Header */
.results-header { margin-bottom: 30px; padding-bottom: 15px; border-bottom: 1px solid #e2e8f0; }
.results-header p { color: #64748b; font-weight: 600; font-size: 0.95rem; }

.lux-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Pagination */
.mt-pagination { margin-top: 50px; text-align: center; }
.mt-pagination .page-numbers {
    display: inline-block; width: 45px; height: 45px; line-height: 45px;
    background: #fff; border: 1px solid #e2e8f0; border-radius: 50%;
    margin: 0 5px; text-decoration: none; color: var(--secondary-black);
    font-weight: 800; transition: 0.3s;
}
.mt-pagination .page-numbers.current, .mt-pagination .page-numbers:hover {
    background: var(--primary-blue); color: #fff; border-color: var(--primary-blue);
}

/* Responsive */
@media (max-width: 1100px) {
    .catalog-layout { grid-template-columns: 1fr; }
    .catalog-sidebar { position: relative; top: 0; }
    .lux-catalog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .lux-catalog-grid { grid-template-columns: 1fr; }
}

/* =========================================
   SINGLE PRODUCT PAGE: CENTER FOCUS ORBIT
========================================= */

.orbit-product-page {
    background-color: var(--secondary-black); /* Core dark theme */
    position: relative;
    overflow: hidden;
}

/* Background Effects (Matches Homepage Location Section) */
.orbit-bg-grid {
    position: absolute; inset: 0; z-index: 0; opacity: 0.15;
    background-size: 40px 40px;
    background-image: linear-gradient(to right, #e2c34b 1px, transparent 1px), linear-gradient(to bottom, #e2c34b 1px, transparent 1px);
}
.orbit-ambient-glow {
    position: absolute; top: 10%; left: 50%; transform: translateX(-50%);
    width: 60vw; height: 60vw; background: radial-gradient(circle, rgba(53, 81, 165, 0.2) 0%, transparent 70%);
    z-index: 0; pointer-events: none;
}

/* Breadcrumbs */
.orbit-breadcrumbs { position: relative; z-index: 2; padding-bottom: 30px; font-size: 0.95rem; font-weight: 600; color: #94a3b8; }
.orbit-breadcrumbs a { color: var(--accent-gold); text-decoration: none; transition: 0.3s; }
.orbit-breadcrumbs a:hover { color: #fff; }
.orbit-breadcrumbs .sep { margin: 0 10px; opacity: 0.4; }
.orbit-breadcrumbs .current { color: #fff; }


/* 1. THE ORBIT DASHBOARD (Center Layout) */
.orbit-dashboard {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 320px 1fr 320px; /* Left info, Big Center, Right Price */
    gap: 40px;
    align-items: center; /* Vertically aligns all columns in center */
    margin-bottom: 60px;
}

/* Glass Card Global Style */
.orbit-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px; padding: 35px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* LEFT COL */
.orbit-badge { display: inline-block; background: rgba(226, 195, 75, 0.1); color: var(--accent-gold); padding: 6px 14px; border-radius: 20px; font-weight: 800; font-size: 0.8rem; text-transform: uppercase; margin-bottom: 15px; }
.orbit-title { font-size: 2rem; font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 15px; letter-spacing: -1px; }
.orbit-excerpt { font-size: 1.05rem; line-height: 1.7; color: #cbd5e1; margin-bottom: 25px; }

.orbit-quick-specs { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
.qs-item { color: #94a3b8; font-size: 0.95rem; margin-bottom: 8px; font-weight: 600; }


/* CENTER COL (The Product Stage) */
.orbit-stage-ring {
    width: 100%; aspect-ratio: 1/1; /* Perfect Square */
    border-radius: 50%; /* Circle Background */
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    display: flex; align-items: center; justify-content: center;
    position: relative; padding: 20px;
}
/* Glowing border behind image */
.orbit-stage-ring::before {
    content: ''; position: absolute; inset: 10%; border-radius: 50%;
    border: 1px dashed rgba(226, 195, 75, 0.3); animation: spinSlow 30s linear infinite;
}
@keyframes spinSlow { 100% { transform: rotate(360deg); } }

.orbit-main-img {
    position: relative; z-index: 2; width: 100%; height: 100%;
    border-radius: 20px; overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.orbit-main-img img { width: 100%; height: 100%; object-fit: contain; transition: opacity 0.4s ease; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5)); }
.orbit-no-img { color: #94a3b8; font-weight: 700; }

.orbit-thumb-dock {
    display: flex; justify-content: center; gap: 15px; margin-top: 20px;
}
.o-thumb { width: 65px; height: 65px; border-radius: 12px; overflow: hidden; border: 2px solid transparent; cursor: pointer; opacity: 0.5; transition: 0.3s; }
.o-thumb img { width: 100%; height: 100%; object-fit: cover; }
.o-thumb.active, .o-thumb:hover { opacity: 1; border-color: var(--accent-gold); transform: translateY(-5px); }


/* RIGHT COL */
.highlight-card { border-color: rgba(226, 195, 75, 0.3); background: rgba(226, 195, 75, 0.05); margin-bottom: 20px; }
.orbit-label { color: #94a3b8; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 10px; }
.orbit-price { margin-bottom: 30px; }
.orbit-price .sym { font-size: 1.5rem; color: #cbd5e1; font-weight: 700; margin-right: 5px; }
.orbit-price { font-size: 3.5rem; font-weight: 900; color: var(--accent-gold); line-height: 1; }
.orbit-price .unt { font-size: 1.1rem; color: #94a3b8; font-weight: 600; }

.orbit-actions { display: flex; flex-direction: column; gap: 15px; }
.o-btn-wa {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: #25D366; color: #fff; padding: 18px; border-radius: 12px; font-weight: 800; text-transform: uppercase; text-decoration: none; transition: 0.3s; box-shadow: 0 10px 20px rgba(37,211,102,0.2);
}
.o-btn-wa svg { width: 22px; height: 22px; }
.o-btn-wa:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(37,211,102,0.4); }

.o-btn-call {
    text-align: center; border: 2px solid rgba(255,255,255,0.2); color: #fff; padding: 16px; border-radius: 12px; font-weight: 800; text-transform: uppercase; text-decoration: none; transition: 0.3s;
}
.o-btn-call:hover { border-color: var(--accent-gold); color: var(--accent-gold); }

.o-btn-dl { display: flex; align-items: center; gap: 15px; padding: 20px; text-decoration: none; color: #fff; font-weight: 700; transition: 0.3s; }
.o-btn-dl:hover { background: rgba(226, 195, 75, 0.1); border-color: var(--accent-gold); }
.o-btn-dl .icon { font-size: 1.5rem; }


/* 2. FULL DETAILS & VIDEO */
.full-width-card { position: relative; z-index: 2; padding: 50px; }
.orbit-specs-grid { display: grid; gap: 60px; }
.orbit-rich-text { color: #cbd5e1; font-size: 1.05rem; line-height: 1.8; }
.orbit-rich-text ul { padding-left: 20px; margin-bottom: 15px; }
.orbit-rich-text li { margin-bottom: 10px; }
.orbit-video-frame { width: 100%; aspect-ratio: 16/9; border-radius: 16px; overflow: hidden; background: #000; border: 1px solid rgba(255,255,255,0.1); }
.orbit-video-frame iframe, .orbit-video-frame video { width: 100%; height: 100%; border: none; }


/* 3. RELATED PRODUCTS SLIDER */
.orbit-related-section { position: relative; z-index: 2; }
.lux-card-slider {
    display: flex; gap: 30px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 20px 0 40px; -ms-overflow-style: none; scrollbar-width: none;
}
.lux-card-slider::-webkit-scrollbar { display: none; }
.slider-item { flex: 0 0 320px; scroll-snap-align: start; }


/* Responsive */
@media (max-width: 1100px) {
    .orbit-dashboard { grid-template-columns: 1fr 1fr; }
    .orbit-col-center { grid-column: span 2; grid-row: 1; margin-bottom: 20px; }
    .orbit-stage-ring { max-width: 500px; margin: 0 auto; }
}
@media (max-width: 768px) {
    .orbit-dashboard { grid-template-columns: 1fr; gap: 30px; }
    .orbit-col-center { grid-column: span 1; }
    .orbit-glass-card { padding: 25px; }
    .orbit-specs-grid { grid-template-columns: 1fr; gap: 40px; }
    .slider-item { flex: 0 0 280px; }
    .swipe-hint { display: block !important; }
}


/* =========================================
   4-COLUMN CATEGORY GRID
========================================= */
.four-col-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Strictly 4 Columns */
    gap: 30px;
}

/* Tablet Layout (2 Columns) */
@media (max-width: 1024px) {
    .four-col-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* Mobile Layout (1 Column) */
@media (max-width: 600px) {
    .four-col-cat-grid { grid-template-columns: 1fr; }
}

/* =========================================
   BLOG LIST: 4-COLUMN GRID LAYOUT
========================================= */

.four-col-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Strictly 4 Columns */
    gap: 30px;
    position: relative;
    z-index: 10;
}

/* Individual Card */
.blog-grid-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #e2e8f0;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.blog-grid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(53, 81, 165, 0.1);
    border-color: rgba(53, 81, 165, 0.2);
}

/* Image Area */
.bgc-visual {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}
.bgc-visual img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-grid-card:hover .bgc-visual img { transform: scale(1.08); }

.bgc-no-img {
    width: 100%; height: 100%; background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    display: flex; align-items: center; justify-content: center; color: #94a3b8; font-weight: 800;
}

.bgc-cat-badge {
    position: absolute; top: 15px; left: 15px; z-index: 2;
    background: rgba(255,255,255,0.9); backdrop-filter: blur(5px);
    color: var(--secondary-black); font-weight: 800; font-size: 0.75rem; text-transform: uppercase;
    padding: 6px 12px; border-radius: 20px;
}

/* Content Area */
.bgc-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bgc-meta { margin-bottom: 10px; }
.bgc-date { font-size: 0.85rem; color: #94a3b8; font-weight: 600; }

.bgc-title {
    font-size: 1.3rem; font-weight: 900; color: var(--secondary-black);
    line-height: 1.3; margin: 0 0 15px 0; transition: color 0.3s;
}
.blog-grid-card:hover .bgc-title { color: var(--primary-blue); }

.bgc-excerpt {
    font-size: 0.95rem; line-height: 1.6; color: #64748b;
    margin-bottom: 20px; flex-grow: 1;
}

/* Bottom Read More */
.bgc-bottom {
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid #f1f5f9; padding-top: 15px;
}
.bgc-read {
    font-weight: 800; color: var(--primary-blue); text-transform: uppercase;
    font-size: 0.85rem; letter-spacing: 1px; transition: 0.3s;
}
.bgc-arrow {
    width: 35px; height: 35px; border-radius: 50%; background: #f8fafc;
    display: flex; align-items: center; justify-content: center; color: var(--primary-blue); transition: 0.3s;
}
.bgc-arrow svg { width: 16px; height: 16px; transition: transform 0.3s; }

.blog-grid-card:hover .bgc-read { color: var(--accent-gold); }
.blog-grid-card:hover .bgc-arrow { background: var(--primary-blue); color: #fff; }
.blog-grid-card:hover .bgc-arrow svg { transform: translateX(3px); }

/* Pagination Styles (Same as before but specific to this page) */
.mt-pagination .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    width: 45px; height: 45px; border-radius: 50%; background: #ffffff;
    color: var(--secondary-black); font-weight: 800; text-decoration: none;
    border: 1px solid #e2e8f0; transition: 0.3s; margin: 0 5px; box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.mt-pagination .page-numbers.current, .mt-pagination .page-numbers:hover {
    background: var(--primary-blue); color: #fff; border-color: var(--primary-blue); box-shadow: 0 10px 20px rgba(53, 81, 165, 0.2);
}
.mt-pagination .page-numbers.prev, .mt-pagination .page-numbers.next { width: auto; padding: 0 25px; border-radius: 30px; }

/* Responsive Grid Adjustments */
@media (max-width: 1200px) {
    .four-col-blog-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .four-col-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .four-col-blog-grid { grid-template-columns: 1fr; }
}

/* =========================================
   SINGLE BLOG POST: SPLIT-SCREEN VIP
========================================= */

.split-breadcrumbs { padding-bottom: 30px; font-size: 0.95rem; font-weight: 600; color: #94a3b8; }
.split-breadcrumbs a { color: var(--primary-blue); text-decoration: none; transition: 0.3s; }
.split-breadcrumbs a:hover { color: var(--secondary-black); }
.split-breadcrumbs .sep { margin: 0 10px; color: #cbd5e1; }
.split-breadcrumbs .current { color: var(--secondary-black); }

/* The Split Layout Grid - UPDATED FOR PERFECT STICKY */
.split-layout-grid {
    display: grid;
    grid-template-columns: 350px 1fr; /* Fixed left side, fluid right side */
    gap: 60px;
    align-items: stretch; /* Forces left sidebar to match right content height */
}

/* --- LEFT: STICKY SIDEBAR --- */
.split-left-sidebar {
    height: 100%; /* Crucial for sticky behavior inside grid */
    position: relative;
}

.split-sticky-box {
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 40px; /* Gap from the top of the browser window */
    padding-bottom: 30px; /* Safe padding */
    z-index: 10;
}

.split-visual {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}
.split-visual img { width: 100%; height: auto; object-fit: cover; }
.split-no-img { width: 100%; height: 100%; background: #e2e8f0; display: flex; align-items: center; justify-content: center; font-weight: 800; color: #94a3b8; }
.split-cat-badge {
    position: absolute; top: 15px; left: 15px; background: var(--accent-gold); color: var(--secondary-black);
    padding: 6px 16px; border-radius: 30px; font-weight: 800; font-size: 0.8rem; text-transform: uppercase;
}

/* Meta Data Card */
.split-meta-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #e2e8f0;
}
.meta-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid #f1f5f9; }
.meta-row:nth-child(3) { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.meta-label { color: #94a3b8; font-size: 0.9rem; font-weight: 600; text-transform: uppercase; }
.meta-val { color: var(--secondary-black); font-size: 0.95rem; font-weight: 800; }

.split-share-box { margin-top: 25px; pt-25px; border-top: 1px dashed #cbd5e1; padding-top: 20px; }
.share-title { display: block; font-size: 0.85rem; color: #94a3b8; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
.share-buttons { display: flex; gap: 10px; }
.s-btn { width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; transition: 0.3s; }
.s-btn svg { width: 20px; height: 20px; }
.s-btn.wa { background: #25D366; } .s-btn.wa:hover { background: #1ebd5a; transform: translateY(-3px); }
.s-btn.fb { background: #1877F2; } .s-btn.fb:hover { background: #166fe5; transform: translateY(-3px); }


/* --- RIGHT: THE CONTENT READER --- */
.split-reader-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    border: 1px solid #e2e8f0;
}

.split-main-title {
    font-size: 2rem; font-weight: 900; line-height: 1.1; color: var(--secondary-black);
    margin: 0 0 25px 0; letter-spacing: -1px;
}

.split-lead-text {
    font-size: 1.3rem; line-height: 1.6; color: var(--primary-blue); font-weight: 600;
}

/* Rich Text Styling */
.split-rich-text {
    font-size: 1.15rem; line-height: 1.8; color: #475569;
}
.split-rich-text p { margin-bottom: 25px; }
.split-rich-text h2, .split-rich-text h3 { color: var(--secondary-black); font-weight: 900; margin: 40px 0 20px; line-height: 1.3; }
.split-rich-text h2 { font-size: 2.2rem; }
.split-rich-text h3 { font-size: 1.8rem; }
.split-rich-text img { max-width: 100%; height: auto; border-radius: 16px; margin: 30px 0; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.split-rich-text ul, .split-rich-text ol { padding-left: 20px; margin-bottom: 25px; }
.split-rich-text li { margin-bottom: 12px; }
.split-rich-text blockquote {
    font-size: 1.5rem; font-style: italic; border-left: 5px solid var(--accent-gold);
    padding: 30px; background: #f8fafc; border-radius: 0 16px 16px 0; margin: 40px 0; color: var(--secondary-black);
}

.split-tags-area { margin-top: 50px; padding-top: 30px; border-top: 1px solid #f1f5f9; }
.tag-label { font-weight: 800; color: #94a3b8; margin-right: 10px; }
.tag-item { display: inline-block; background: #f1f5f9; color: var(--primary-blue); font-weight: 700; font-size: 0.85rem; padding: 6px 14px; border-radius: 8px; margin-right: 8px; margin-bottom: 8px; }

/* Responsive */
@media (max-width: 1024px) {
    .split-layout-grid { grid-template-columns: 1fr; gap: 40px; }
    .split-left-sidebar { height: auto; }
    .split-sticky-box { position: relative; top: 0; display: flex; gap: 30px; }
    .split-visual { width: 50%; height: 300px; margin-bottom: 0; }
    .split-meta-card { width: 50%; }
    .split-main-title { font-size: 2.8rem; }
}
@media (max-width: 768px) {
    .split-sticky-box { flex-direction: column; gap: 20px; }
    .split-visual { width: 100%; }
    .split-meta-card { width: 100%; }
    .split-reader-card { padding: 30px 20px; }
    .split-main-title { font-size: 2.2rem; }
}

/* =========================================
   ABOUT US: THE BENTO GRID DASHBOARD
========================================= */

.lux-badge-nav {
    font-size: 0.9rem; font-weight: 700; color: #64748b;
    background: #ffffff; padding: 10px 20px; border-radius: 50px;
    border: 1px solid rgba(53,81,165,0.1); box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.lux-badge-nav a { color: var(--primary-blue); text-decoration: none; }
.lux-badge-nav .sep { margin: 0 5px; opacity: 0.5; }

/* The Master Bento Grid */
.bento-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(250px, auto);
    gap: 25px;
    position: relative;
    z-index: 10;
}

/* Base Card Style (The White Luxury Box) */
.bento-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(53, 81, 165, 0.05);
    border: 1px solid rgba(53, 81, 165, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(53, 81, 165, 0.1);
}

/* Span Classes */
.bento-span-2 { grid-column: span 2; }
.bento-span-4 { grid-column: span 4; }

/* Typography inside Bento */
.bento-card h2 { font-size: 2.2rem; font-weight: 900; color: var(--secondary-black); line-height: 1.2; margin-bottom: 20px; letter-spacing: -1px; }
.bento-card h3 { font-size: 1.5rem; font-weight: 800; color: var(--secondary-black); margin-bottom: 15px; }
.bento-card p { font-size: 1.1rem; line-height: 1.7; color: #475569; margin-bottom: 15px; }
.bento-card p:last-child { margin-bottom: 0; }

/* Specific Box Styles */
.bento-icon { font-size: 3rem; margin-bottom: 20px; display: inline-block; background: #f8fafc; width: 70px; height: 70px; line-height: 70px; text-align: center; border-radius: 20px; }

.bento-image-box { overflow: hidden; }
.bento-img-badge { position: absolute; bottom: 20px; left: 20px; background: rgba(255,255,255,0.9); backdrop-filter: blur(5px); padding: 10px 20px; border-radius: 50px; font-weight: 800; font-size: 0.9rem; color: var(--secondary-black); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.bento-no-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: #e2e8f0; color: #94a3b8; font-weight: 800; font-size: 1.2rem; }

/* Checklist Grid */
.bento-checklist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.check-item { position: relative; padding-left: 30px; font-weight: 600; color: #475569; font-size: 1.05rem; }
.check-item::before { content: '✓'; position: absolute; left: 0; top: -2px; color: #10b981; font-weight: 900; font-size: 1.1rem; background: rgba(16,185,129,0.1); width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }

/* Expertise 4 Columns */
.expertise-four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.exp-item { background: #f8fafc; padding: 30px 20px; border-radius: 20px; border: 1px solid #e2e8f0; }
.exp-emoji { font-size: 2.5rem; margin-bottom: 15px; }
.exp-item h4 { font-size: 1.2rem; font-weight: 800; color: var(--primary-blue); margin-bottom: 10px; }
.exp-item p { font-size: 0.95rem; }

/* Manufacturing Process Pipeline */
.process-pipeline { display: flex; align-items: center; justify-content: space-between; padding: 0 40px; }
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 2; }
.p-number { width: 60px; height: 60px; background: var(--secondary-black); color: var(--accent-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 900; margin-bottom: 15px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.process-step h4 { font-size: 1.1rem; font-weight: 800; color: var(--secondary-black); }
.process-line { flex-grow: 1; height: 4px; background: #e2e8f0; margin: 0 20px; transform: translateY(-20px); position: relative; z-index: 1; }

/* Testimonials Box */
.testi-text { font-size: 1.2rem !important; font-style: italic; color: var(--secondary-black) !important; margin: 15px 0 !important; }
.testi-author { font-weight: 800; color: #94a3b8; text-transform: uppercase; font-size: 0.9rem; }

/* CTA Box */
.bento-cta { background: linear-gradient(135deg, var(--secondary-black), var(--primary-blue)); color: #fff; text-align: center; align-items: center; }
.bento-cta h2 { color: #fff; }
.bento-cta p { color: #cbd5e1; margin-bottom: 30px; }
.bento-wa-btn { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: #fff; padding: 18px 40px; border-radius: 50px; font-weight: 800; text-transform: uppercase; text-decoration: none; box-shadow: 0 10px 30px rgba(37,211,102,0.3); transition: 0.3s; }
.bento-wa-btn svg { width: 24px; height: 24px; }
.bento-wa-btn:hover { background: #fff; color: #25D366; transform: translateY(-5px); }


/* Responsive Adjustments */
@media (max-width: 1024px) {
    .bento-dashboard-grid { grid-template-columns: 1fr 1fr; }
    .bento-span-4 { grid-column: span 2; }
    .expertise-four-col { grid-template-columns: 1fr 1fr; }
    .process-pipeline { flex-direction: column; gap: 30px; }
    .process-line { width: 4px; height: 40px; margin: 0; transform: none; }
}
@media (max-width: 768px) {
    .bento-dashboard-grid { grid-template-columns: 1fr; }
    .bento-span-2, .bento-span-4 { grid-column: span 1; }
    .bento-checklist-grid { grid-template-columns: 1fr; }
    .expertise-four-col { grid-template-columns: 1fr; }
    .bento-card { padding: 30px 20px; }
}

/* =========================================
   CONTACT US: BENTO DASHBOARD STYLES
========================================= */

/* Individual Info Cards (Phone, Mail, Loc) */
.c-info-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(53, 81, 165, 0.04);
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}
.c-info-box:hover { transform: translateX(10px); border-color: var(--primary-blue); }

.c-icon-wrap {
    font-size: 2.5rem;
    background: #f8fafc;
    width: 70px; height: 70px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 20px;
    flex-shrink: 0;
}

.c-details h3 { font-size: 1.3rem; font-weight: 800; color: var(--secondary-black); margin: 0 0 10px 0; }
.c-details p { font-size: 1rem; color: #64748b; margin: 0 0 5px 0; font-weight: 600; }
.c-details a { color: var(--primary-blue); text-decoration: none; transition: 0.3s; }
.c-details a:hover { color: var(--accent-gold); }

/* Quick Inquiry Card Specifics */
.dark-mode-list li { color: #cbd5e1 !important; }
.dark-mode-list li::before { background: rgba(226, 195, 75, 0.1) !important; color: var(--accent-gold) !important; }

.c-btn-outline {
    flex: 1; text-align: center; border: 1px solid rgba(255,255,255,0.2);
    color: #fff; padding: 15px; border-radius: 15px; font-weight: 700;
    text-decoration: none; transition: 0.3s; font-size: 0.95rem;
}
.c-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* Map Frame */
.c-map-frame iframe { width: 100% !important; height: 100% !important; border: none; }

/* =========================================
   CONTACT FORM VIP STYLE
========================================= */
.mt-vip-form { display: flex; flex-direction: column; gap: 15px; }
.mt-vip-form .form-row { display: flex; gap: 15px; }
.mt-vip-form .form-group { width: 100%; }
.mt-vip-form input, .mt-vip-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 15px;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: 0.3s;
}
.mt-vip-form input::placeholder, .mt-vip-form textarea::placeholder { color: #94a3b8; }
.mt-vip-form input:focus, .mt-vip-form textarea:focus {
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(226, 195, 75, 0.1);
}

.bento-submit-btn {
    width: 100%;
    background: var(--accent-gold);
    color: var(--secondary-black);
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}
.bento-submit-btn:hover { background: #fff; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255,255,255,0.2); }

@media (max-width: 768px) {
    .mt-vip-form .form-row { flex-direction: column; }
}

/* =========================================
   LEGAL / POLICY PAGES (TRUST CENTER)
========================================= */

.legal-split-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 10;
}

/* Sidebar Navigation */
.legal-sticky-nav {
    position: sticky;
    top: 100px;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(53, 81, 165, 0.03);
    border: 1px solid #e2e8f0;
}

.legal-nav-title {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--secondary-black);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}

.legal-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}
.legal-nav-list li { margin-bottom: 10px; }
.legal-nav-list a {
    display: block;
    padding: 10px 15px;
    color: #64748b;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: 0.3s;
}
.legal-nav-list a:hover { background: #f8fafc; color: var(--primary-blue); }
.legal-nav-list a.active {
    background: rgba(53, 81, 165, 0.1);
    color: var(--primary-blue);
    font-weight: 800;
}

/* Legal Help Box */
.legal-help-box {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px dashed #cbd5e1;
}
.legal-help-box h4 { font-size: 1.1rem; font-weight: 800; color: var(--secondary-black); margin-bottom: 10px; }
.legal-help-box p { font-size: 0.9rem; color: #64748b; margin-bottom: 15px; }
.legal-contact-btn {
    display: inline-block; width: 100%; padding: 10px;
    background: #ffffff; border: 1px solid var(--primary-blue);
    color: var(--primary-blue); font-weight: 700; border-radius: 8px;
    text-decoration: none; transition: 0.3s;
}
.legal-contact-btn:hover { background: var(--primary-blue); color: #ffffff; }

/* The Policy Content Formatting */
.legal-rich-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #334155;
}
.legal-rich-text p { margin-bottom: 20px; }
.legal-rich-text h2 { font-size: 1.8rem; font-weight: 800; color: var(--secondary-black); margin: 40px 0 15px; border-bottom: 1px solid #f1f5f9; padding-bottom: 10px; }
.legal-rich-text h3 { font-size: 1.4rem; font-weight: 700; color: var(--secondary-black); margin: 30px 0 15px; }
.legal-rich-text ul, .legal-rich-text ol { padding-left: 20px; margin-bottom: 25px; }
.legal-rich-text li { margin-bottom: 10px; }

/* Responsive */
@media (max-width: 900px) {
    .legal-split-layout { grid-template-columns: 1fr; }
    .legal-sticky-nav { position: relative; top: 0; }
    .bento-card { padding: 30px 20px !important; }
}

/* =========================================
   HEADER SEARCH BAR STYLING
========================================= */
.header-search { margin-left: 20px; }
.header-search .search-form {
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 4px 4px 4px 20px;
    transition: all 0.3s ease;
}
.header-search .search-form:focus-within {
    background: #ffffff;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(53, 81, 165, 0.1);
}
.header-search .search-field {
    background: transparent;
    border: none;
    color: var(--secondary-black);
    outline: none;
    width: 220px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
}
.header-search .search-field::placeholder { color: #94a3b8; font-weight: 500; }
.header-search .search-submit {
    background: var(--primary-blue);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}
.header-search .search-submit:hover { background: var(--secondary-black); }

/* =========================================
   NO RESULTS (BIG SEARCH BAR) STYLING
========================================= */
.search-again-box .search-form-big {
    display: flex;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #fff;
}
.search-again-box .search-field-big {
    flex-grow: 1;
    padding: 20px 25px;
    border: none;
    outline: none;
    font-size: 1.1rem;
    color: var(--secondary-black);
}
.search-again-box .search-submit-big {
    background: var(--accent-gold);
    color: var(--secondary-black);
    border: none;
    padding: 0 40px;
    font-weight: 900;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}
.search-again-box .search-submit-big:hover { background: var(--primary-blue); color: #fff; }

/* Responsive adjustments for Search */
@media (max-width: 1024px) {
    .header-search .search-field { width: 150px; }
}
@media (max-width: 768px) {
    .header-search { display: none; /* Usually hidden on mobile header, placed in offcanvas menu */ }
    .search-again-box .search-form-big { flex-direction: column; border-radius: 15px; }
    .search-again-box .search-submit-big { padding: 20px; }
}


/* =========================================
   CATEGORY SEO: ULTRA-PREMIUM BOX GRID
========================================= */

.seo-box-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.seo-card {
    position: relative;
    background: #ffffff;
    border-radius: 30px; 
    padding: 50px 40px;
    box-shadow: 0 15px 40px rgba(53, 81, 165, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
}

.span-full { grid-column: 1 / -1; }

/* --- 1. FULL WIDTH INTRO CARD --- */
.intro-card {
    padding: 60px 50px;
    background: linear-gradient(120deg, #ffffff 0%, #f8fafc 100%);
}
.intro-quote-mark {
    position: absolute;
    top: -20px; right: 30px;
    font-size: 15rem; font-family: Georgia, serif;
    color: rgba(53, 81, 165, 0.03);
    line-height: 1; pointer-events: none; z-index: -1;
}
.intro-card .lead-p {
    font-size: 1.4rem; color: var(--primary-blue); font-weight: 600; 
    margin-bottom: 25px; line-height: 1.7; max-width: 900px;
}
.intro-card .desc-p { 
    font-size: 1.15rem; color: #475569; line-height: 1.8; margin: 0; max-width: 1000px; 
}

/* --- 2. THE 3 MINI CARDS --- */
.mini-card { transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.mini-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(53, 81, 165, 0.08);
    border-color: rgba(53, 81, 165, 0.3);
}

.card-top-accent {
    position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold));
    opacity: 0; transition: 0.4s ease;
}
.mini-card:hover .card-top-accent { opacity: 1; }

.seo-icon-wrap { margin-bottom: 25px; }
.icon-inner {
    width: 65px; height: 65px;
    background: #f8fafc; border: 1px solid #e2e8f0;
    border-radius: 18px; display: flex; align-items: center; justify-content: center;
    font-size: 2rem; box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    transition: 0.4s ease;
}
.mini-card:hover .icon-inner { transform: scale(1.1) rotate(5deg); background: #fff; border-color: var(--accent-gold); }

.mini-card h3 { font-size: 1.5rem; font-weight: 900; color: var(--secondary-black); margin-bottom: 15px; letter-spacing: -0.5px;}
.mini-card p { font-size: 1.05rem; color: #64748b; margin-bottom: 25px; line-height: 1.6; }

/* Lists Styling */
.seo-check-list { list-style: none; padding: 0; margin: 0; flex-grow: 1; }
.seo-check-list li { position: relative; padding-left: 32px; margin-bottom: 15px; font-weight: 600; color: var(--secondary-black); font-size: 1rem;}
.seo-check-list li::before {
    content: '✓'; position: absolute; left: 0; top: 0; 
    color: #fff; background: #10b981; width: 20px; height: 20px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 0.75rem; box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.seo-number-list { padding-left: 20px; margin: 0; font-weight: 600; color: var(--secondary-black); flex-grow: 1;}
.seo-number-list li { margin-bottom: 15px; padding-left: 8px; font-size: 1rem; }
.seo-number-list li::marker { color: var(--primary-blue); font-weight: 900; font-size: 1.2rem; }

/* --- 3. FINAL CTA CARD --- */
.cta-card {
    flex-direction: row; align-items: center; justify-content: space-between;
    background: #0b1121; /* Deep luxury dark */
    border: none; color: #fff; padding: 50px 60px;
}
.cta-glow-bg {
    position: absolute; right: 10%; top: -50%; width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(226,195,75,0.15) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none; z-index: -1;
}

.cta-badge {
    display: inline-block; padding: 6px 16px; background: rgba(255,255,255,0.1);
    color: var(--accent-gold); border-radius: 50px; font-size: 0.85rem; font-weight: 800;
    text-transform: uppercase; margin-bottom: 15px; border: 1px solid rgba(226,195,75,0.3);
}
.cta-card-content h3 { color: #ffffff; font-size: 2.2rem; margin-bottom: 10px; font-weight: 900; }
.cta-card-content p { color: #cbd5e1; margin: 0; font-size: 1.15rem; max-width: 600px;}

.seo-btn-wa {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 18px 40px; border-radius: 50px;
    background: #25D366; color: #ffffff; font-weight: 800; font-size: 1.1rem;
    text-decoration: none; transition: 0.3s; flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
}
.seo-btn-wa svg { width: 24px; height: 24px; }
.seo-btn-wa:hover { background: #fff; color: #25D366; transform: scale(1.05); }

/* Responsive */
@media (max-width: 1024px) {
    .seo-box-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-card { flex-direction: column; text-align: center; gap: 30px; padding: 40px 30px; }
    .cta-card-content p { margin: 0 auto; }
}
@media (max-width: 768px) {
    .seo-box-grid { grid-template-columns: 1fr; }
    .intro-card { padding: 40px 25px; }
    .seo-card { padding: 40px 25px; }
    .intro-card .lead-p { font-size: 1.2rem; }
    .cta-card-content h3 { font-size: 1.8rem; }
}

/* =========================================
   SIDEBAR PREMIUM CTA WIDGET
========================================= */
.sidebar-premium-cta {
    background: linear-gradient(135deg, var(--secondary-black), #1e293b);
    border-radius: 24px;
    padding: 35px 25px;
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-top: 30px;
    border: 1px solid rgba(255,255,255,0.05);
}
.sidebar-premium-cta .cta-glow {
    position: absolute; top: -50px; right: -50px; width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(226,195,75,0.2) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none; z-index: 0;
}
.sidebar-premium-cta .cta-badge {
    display: inline-block; padding: 5px 12px; background: rgba(255,255,255,0.1);
    color: var(--accent-gold); border-radius: 50px; font-size: 0.75rem; font-weight: 800;
    text-transform: uppercase; margin-bottom: 15px; border: 1px solid rgba(226,195,75,0.3);
    position: relative; z-index: 1;
}
.sidebar-premium-cta h3 { 
    font-size: 1.5rem; font-weight: 900; color: #fff; margin-bottom: 15px; line-height: 1.2; position: relative; z-index: 1;
}
.sidebar-premium-cta p { 
    font-size: 1rem; color: #cbd5e1; margin-bottom: 25px; line-height: 1.6; position: relative; z-index: 1;
}
.sidebar-wa-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: #25D366; color: #fff; padding: 15px; border-radius: 50px;
    font-weight: 800; font-size: 1.05rem; text-decoration: none; transition: 0.3s;
    position: relative; z-index: 1; box-shadow: 0 10px 20px rgba(37,211,102,0.2);
}
.sidebar-wa-btn svg { width: 22px; height: 22px; }
.sidebar-wa-btn:hover { background: #fff; color: #25D366; transform: translateY(-3px); }

/* =========================================
   RICH & COLORFUL MAGIC SEO GRID
========================================= */

.magic-seo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 Column Math */
    gap: 30px;
}

.magic-box {
    position: relative;
    border-radius: 30px;
    padding: 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    z-index: 1;
}
.magic-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* SPAN MATH */
.span-4 { grid-column: span 4; } /* Box 1 takes 66% width */
.span-2 { grid-column: span 2; } /* Box 2, 3, 4, 5 take 33% width each */

/* THE WATERMARK (FILLING THE EMPTY SPACE) */
.box-watermark {
    position: absolute; right: -15px; bottom: -30px;
    font-size: 10rem; line-height: 1;
    opacity: 0.04; /* Very subtle */
    pointer-events: none; z-index: 0;
    transform: rotate(-15deg);
}

/* THEMES & COLORS */

/* 1. Blue Theme (Image Integrated Box) */
.box-blue { background: #eff6ff; border: 1px solid #bfdbfe; }
.box-blue .magic-glow { position: absolute; top:-50px; left:-50px; width: 250px; height: 250px; background: radial-gradient(circle, rgba(59,130,246,0.2) 0%, transparent 70%); border-radius: 50%; z-index:-1;}
.box-blue h3 { color: #1e3a8a; }
.box-blue .magic-icon { background: #dbeafe; color: #2563eb; }

/* Box 1 Image Layout */
.image-rich-box { flex-direction: row; padding: 0; align-items: stretch; }
.box-text-side { flex: 1.2; padding: 40px; position: relative; z-index: 2; }
.box-image-side { 
    flex: 1; position: relative; overflow: hidden; 
    border-left: 1px solid rgba(255,255,255,0.8);
}
.box-image-side img { 
    width: 100%; height: 100%; object-fit: cover; 
    transition: 0.6s ease;
}
.image-rich-box:hover .box-image-side img { transform: scale(1.08); }

/* 2. Gold/Yellow Theme */
.box-gold { background: #fefce8; border: 1px solid #fef08a; }
.box-gold .magic-glow { position: absolute; top:-50px; right:-50px; width: 150px; height: 150px; background: radial-gradient(circle, rgba(234,179,8,0.2) 0%, transparent 70%); border-radius: 50%; z-index:-1;}
.box-gold h3 { color: #854d0e; }
.box-gold .magic-icon { background: #fef08a; color: #ca8a04; }

/* 3. Green Theme */
.box-green { background: #ecfdf5; border: 1px solid #a7f3d0; }
.box-green .magic-glow { position: absolute; top:-50px; right:-50px; width: 150px; height: 150px; background: radial-gradient(circle, rgba(16,185,129,0.2) 0%, transparent 70%); border-radius: 50%; z-index:-1;}
.box-green h3 { color: #064e3b; }
.box-green .magic-icon { background: #d1fae5; color: #059669; }

/* 4. Purple/Pink Theme */
.box-purple { background: #faf5ff; border: 1px solid #e9d5ff; }
.box-purple .magic-glow { position: absolute; top:-50px; right:-50px; width: 150px; height: 150px; background: radial-gradient(circle, rgba(168,85,247,0.2) 0%, transparent 70%); border-radius: 50%; z-index:-1;}
.box-purple h3 { color: #581c87; }
.box-purple .magic-icon { background: #f3e8ff; color: #9333ea; }

/* 5. Dark CTA Theme */
.box-dark-cta { background: linear-gradient(135deg, #0f172a, #1e293b); border: 1px solid #334155; color: #fff;}
.box-dark-cta .magic-glow { position: absolute; top:-50px; right:-50px; width: 150px; height: 150px; background: radial-gradient(circle, rgba(226,195,75,0.2) 0%, transparent 70%); border-radius: 50%; z-index:-1;}
.box-dark-cta h3 { color: #fff; margin-bottom: 10px; font-size: 1.5rem;}
.box-dark-cta p { color: #cbd5e1; font-size: 0.95rem; margin-bottom: 25px;}
.m-badge { display: inline-block; padding: 4px 12px; background: rgba(226,195,75,0.15); color: var(--accent-gold); border-radius: 50px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; margin-bottom: 15px; width: max-content;}

/* Common Magic Box Styles */
.magic-icon {
    width: 55px; height: 55px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin-bottom: 20px; transition: 0.4s ease; position: relative; z-index: 2;
}
.magic-box:hover .magic-icon { transform: scale(1.1) rotate(10deg); }

.magic-box h3 { font-size: 1.5rem; font-weight: 900; margin-bottom: 12px; letter-spacing: -0.5px; position: relative; z-index: 2;}
.magic-box p { font-size: 1rem; color: #475569; margin-bottom: 15px; line-height: 1.6; position: relative; z-index: 2;}

/* Lists */
.magic-check-list { list-style: none; padding: 0; margin: 0; position: relative; z-index: 2;}
.magic-check-list li { position: relative; padding-left: 28px; margin-bottom: 12px; font-weight: 600; color: #334155; font-size: 0.95rem;}
.magic-check-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: #10b981; font-weight: 900; font-size: 1.1rem;}

.magic-num-list { padding-left: 20px; margin: 0; font-weight: 600; color: #334155; position: relative; z-index: 2;}
.magic-num-list li { margin-bottom: 12px; padding-left: 5px; font-size: 0.95rem;}

/* Tags */
.magic-tags { display: flex; flex-wrap: wrap; gap: 10px; position: relative; z-index: 2;}
.magic-tags span, .magic-tags p { background: #fff; border: 1px solid #e9d5ff; color: #581c87; padding: 8px 15px; border-radius: 12px; font-weight: 700; font-size: 0.85rem;}

/* WhatsApp Button */
.magic-btn-wa {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    background: #25D366; color: #fff; padding: 12px 20px; border-radius: 50px;
    font-weight: 800; font-size: 1rem; text-decoration: none; transition: 0.3s;
    box-shadow: 0 10px 20px rgba(37,211,102,0.2); margin-top: auto; position: relative; z-index: 2;
}
.magic-btn-wa svg { width: 20px; height: 20px; }
.magic-btn-wa:hover { background: #fff; color: #25D366; transform: translateY(-2px); }

/* 5. Rose/Pink Theme (Applications) */
.box-rose { background: #fff1f2; border: 1px solid #fecdd3; }
.box-rose .magic-glow { position: absolute; top:-50px; right:-50px; width: 150px; height: 150px; background: radial-gradient(circle, rgba(244,63,94,0.15) 0%, transparent 70%); border-radius: 50%; z-index:-1;}
.box-rose h3 { color: #881337; }
.box-rose .magic-icon { background: #ffe4e6; color: #e11d48; }

/* SPAN MATH UPDATE */
.span-full { grid-column: span 6; } /* Bottom CTA Full Width */

@media (max-width: 1024px) {
    .span-4 { grid-column: span 6; }
    .span-2 { grid-column: span 3; }
    .box-dark-cta { flex-direction: column !important; text-align: center; gap: 30px; padding: 40px 30px !important;}
}
@media (max-width: 768px) {
    .span-2 { grid-column: span 6; }
}
.box-rose .magic-tags li {
    list-style: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .span-4 { grid-column: span 6; } /* Box 1 Full Width on iPad */
    .span-2 { grid-column: span 3; } /* Box 2,3,4,5 Half Width on iPad */
}
@media (max-width: 768px) {
    .span-2 { grid-column: span 6; } /* All Full Width on Mobile */
    .image-rich-box { flex-direction: column; }
    .box-image-side { height: 250px; border-left: none; border-top: 1px solid rgba(255,255,255,0.8); }
}