
/* Remove default Woodmart headers/topbars entirely on homepage */
body.home header.whb-header,
body.home .whb-top-bar,
body.home .whb-main-header,
body.home .wd-header-text,
body.page-id-6391 header.whb-header,
body.page-id-6391 .whb-top-bar,
body.page-id-6391 .whb-main-header,
body.page-id-6391 .wd-header-text,
.whb-top-bar {
    display: none !important;
    height: 0 !important;
    overflow: hidden !important;
    visibility: hidden !important;
}


/* =========================================================
   HOMEPAGE FULL-WIDTH & CENTERING FIX
   ========================================================= */
body.home .main-page-wrapper > .container,
body.page-id-6391 .main-page-wrapper > .container,
body.home .container,
body.page-id-6391 .container,
body.home .content-layout-wrapper,
body.page-id-6391 .content-layout-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
}

body.home .wd-section-stretch,
body.page-id-6391 .wd-section-stretch,
body.home [class*="wd-section-stretch"],
body.page-id-6391 [class*="wd-section-stretch"] {
    left: 0 !important;
    right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Force homepage custom HTML sections to be full width (full screen) */
        body.page-id-6391 main.wd-content-layout.content-layout-wrapper.container,
        body.page-id-6391 .content-layout-wrapper {
            max-width: 100% !important;
            width: 100% !important;
            padding: 0 !important;
        }
        body.page-id-6391 .main-page-wrapper .site-content {
            padding: 0 !important;
            max-width: 100% !important;
            width: 100% !important;
        }
        body.page-id-6391 .entry-content {
            margin: 0 !important;
            max-width: 100% !important;
            width: 100% !important;
        }
        
        /* CSS Reset & Variables */
        :root {
            --primary: #0093fe;
            --primary-dark: #0073cc;
            --primary-light: #e0f2fe;
            --primary-glow: rgba(0, 147, 254, 0.4);
            --secondary: #0c1a30;
            --slate-900: #0f172a;
            --slate-800: #1e293b;
            --slate-700: #334155;
            --slate-600: #475569;
            --slate-400: #94a3b8;
            --slate-100: #f1f5f9;
            --slate-50: #f8fafc;
            --emerald: #10b981;
            --emerald-glow: rgba(16, 185, 129, 0.3);
            --rose: #ef4444;
            --white: #ffffff;
            
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
            --shadow-md: 0 10px 30px -5px rgba(0, 147, 254, 0.12);
            --shadow-lg: 0 20px 40px -10px rgba(12, 26, 48, 0.18);
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 50px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

/* Global reset removed to preserve theme grid */

        body.page-id-6391 {
            font-family: 'Tajawal', sans-serif !important;
            direction: rtl;
        }

        /* Typography Utilities */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 800;
            color: var(--secondary);
            line-height: 1.3;
        }

        p {
            color: var(--slate-600);
            font-size: 1.05rem;
            line-height: 1.7;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Global Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 32px;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: var(--radius-xl);
            text-decoration: none;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
            font-family: 'Tajawal', sans-serif !important;
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--white);
            box-shadow: 0 6px 20px var(--primary-glow);
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px var(--primary-glow);
            color: var(--white);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--white);
            border-color: var(--white);
        }

        .btn-outline:hover {
            background-color: var(--white);
            color: var(--secondary);
            transform: translateY(-2px);
        }

        .intro-overlay { display: none !important; }

        .intro-overlay.hide {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .intro-overlay h1 {
            font-size: 3.5rem;
            color: var(--white);
            animation: pulse 1.5s infinite ease-in-out;
            direction: ltr;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.9; }
            50% { transform: scale(1.05); opacity: 1; }
        }

        /* Glassmorphism Styles */
        .glass-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.4);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-md);
        }

        .glass-card-dark {
            background: rgba(12, 26, 48, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-lg);
            color: var(--white);
        }

        /* ==================== HERO SECTION ==================== */
        .hero-section {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(12, 26, 48, 0.7) 0%, rgba(15, 23, 42, 0.5) 100%), 
                        url('https://bestaqua.com.eg/wp-content/uploads/2026/06/bestqua.png');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 160px 20px 100px 20px;
            text-align: center;
            overflow: hidden;
            border-bottom: 5px solid var(--primary);
        }

        .hero-content {
            max-width: 900px;
            z-index: 10;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 147, 254, 0.2);
            border: 1px solid rgba(0, 147, 254, 0.4);
            padding: 8px 20px;
            border-radius: var(--radius-xl);
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 24px;
            color: #60a5fa;
            backdrop-filter: blur(4px);
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--white);
            margin-bottom: 24px;
            text-shadow: 0 4px 12px rgba(0,0,0,0.5);
            line-height: 1.25;
        }

        .hero-desc {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
            max-width: 760px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 0 2px 8px rgba(0,0,0,0.4);
            line-height: 1.8;
        }

        .hero-ctas {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ==================== TRUST RIBBON ==================== */
        .trust-ribbon {
            position: relative;
            margin-top: -50px;
            z-index: 20;
            padding: 0 24px;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            padding: 24px;
            border-radius: var(--radius-lg);
            background: var(--white);
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--slate-100);
        }

        .trust-card {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px;
            border-left: 1px solid var(--slate-100);
        }

        .trust-card:last-child {
            border-left: none;
        }

        .trust-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background-color: var(--primary-light);
            color: var(--primary);
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .trust-text h4 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 4px;
        }

        .trust-text p {
            font-size: 0.88rem;
            color: var(--slate-600);
            line-height: 1.4;
        }

        /* ==================== SAVINGS CALCULATOR ==================== */
        .calculator-section {
            padding: 100px 0;
            background: linear-gradient(180deg, var(--white) 0%, var(--primary-light) 100%);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-badge {
            display: inline-block;
            font-size: 0.88rem;
            font-weight: 800;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px;
            background: rgba(0, 147, 254, 0.08);
            padding: 6px 16px;
            border-radius: var(--radius-xl);
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 16px;
        }

        .section-desc {
            font-size: 1.15rem;
            color: var(--slate-600);
            max-width: 650px;
            margin: 0 auto;
        }

        .calc-wrapper {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 40px;
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 40px;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(0, 147, 254, 0.1);
        }

        .calc-inputs {
            display: flex;
            flex-direction: column;
            gap: 32px;
            padding-left: 20px;
            border-left: 1px solid var(--slate-100);
        }

        .calc-group {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .calc-label {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--secondary);
        }

        .calc-val-badge {
            background-color: var(--primary-light);
            color: var(--primary-dark);
            padding: 4px 12px;
            border-radius: var(--radius-sm);
            font-weight: 800;
            font-size: 1.1rem;
        }

        /* Custom Slider Range */
        .calc-slider {
            -webkit-appearance: none;
            width: 100%;
            height: 8px;
            border-radius: var(--radius-sm);
            background: var(--slate-100);
            outline: none;
            transition: var(--transition);
        }

        .calc-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--primary);
            cursor: pointer;
            box-shadow: 0 0 10px var(--primary-glow);
            transition: var(--transition);
        }

        .calc-slider::-webkit-slider-thumb:hover {
            transform: scale(1.2);
            background: var(--primary-dark);
        }

        .calc-results {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 10px;
        }

        .calc-results-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 24px;
            color: var(--secondary);
            border-bottom: 2px solid var(--slate-100);
            padding-bottom: 12px;
        }

        .result-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .result-label {
            font-size: 1.05rem;
            color: var(--slate-600);
        }

        .result-value {
            font-size: 1.35rem;
            font-weight: 800;
            color: var(--secondary);
        }

        .result-row.savings {
            background-color: #ecfdf5;
            border: 1px dashed var(--emerald);
            padding: 16px;
            border-radius: var(--radius-md);
            margin-top: 10px;
        }

        .result-row.savings .result-label {
            color: var(--emerald-dark);
            font-weight: 700;
            font-size: 1.15rem;
        }

        .result-row.savings .result-value {
            color: var(--emerald);
            font-size: 1.8rem;
            font-weight: 900;
            text-shadow: 0 1px 2px rgba(16, 185, 129, 0.1);
        }

        /* ==================== PRODUCT FEATURES (IFILTER) ==================== */
        .features-section {
            padding: 100px 0;
            background-color: var(--white);
        }

        .features-grid {
            display: flex;
            flex-direction: column;
            gap: 60px;
            margin-top: 50px;
        }

        .feature-card {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 40px;
            align-items: center;
            background: var(--slate-50);
            border-radius: var(--radius-lg);
            padding: 30px;
            border: 1px solid var(--slate-100);
            transition: var(--transition);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: rgba(0, 147, 254, 0.2);
        }

        .feature-card.reverse {
            grid-template-columns: 1fr 1.1fr;
        }

        .feature-img-wrapper {
            position: relative;
            border-radius: var(--radius-md);
            overflow: hidden;
            height: 380px;
            box-shadow: var(--shadow-sm);
        }

        .feature-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .feature-card:hover .feature-img-wrapper img {
            transform: scale(1.05);
        }

        .feature-info {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .feature-info h3 {
            font-size: 1.8rem;
            color: var(--secondary);
        }

        .feature-info p {
            font-size: 1.1rem;
            color: var(--slate-600);
            line-height: 1.7;
        }

        .feature-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 10px;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            color: var(--slate-700);
            font-size: 1rem;
        }

        .feature-list li::before {
            content: "✓";
            color: var(--primary);
            font-weight: 900;
            font-size: 1.1rem;
            background: var(--primary-light);
            width: 24px;
            height: 24px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        /* ==================== COMPARISON SECTION ==================== */
        .comparison-section {
            padding: 100px 0;
            background-color: var(--slate-50);
            border-top: 1px solid var(--slate-100);
            border-bottom: 1px solid var(--slate-100);
        }

        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            max-width: 1000px;
            margin: 50px auto 0 auto;
        }

        .comp-card {
            padding: 40px;
            border-radius: var(--radius-lg);
            background: var(--white);
            border: 1px solid var(--slate-100);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .comp-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .comp-card.traditional {
            border-top: 6px solid var(--rose);
        }

        .comp-card.bestaqua {
            background: var(--slate-900);
            color: var(--white);
            border: 2px solid var(--primary);
            box-shadow: 0 15px 35px rgba(0, 147, 254, 0.15);
        }

        .comp-card.bestaqua h3 {
            color: var(--white);
        }

        .comp-title {
            font-size: 1.45rem;
            font-weight: 800;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .comp-title.trad { color: var(--rose); }
        .comp-title.ba { color: var(--primary); }

        .comp-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .comp-item {
            display: flex;
            flex-direction: column;
            gap: 6px;
            padding-right: 28px;
            position: relative;
        }

        .comp-item::before {
            position: absolute;
            right: 0;
            top: 2px;
            font-size: 1.1rem;
            font-weight: 900;
        }

        .traditional .comp-item::before {
            content: "❌";
        }

        .bestaqua .comp-item::before {
            content: "✓";
            color: var(--primary);
            font-size: 1.3rem;
        }

        .comp-item strong {
            font-size: 1.05rem;
            color: inherit;
        }

        .traditional .comp-item strong {
            color: var(--secondary);
        }

        .bestaqua .comp-item strong {
            color: var(--white);
        }

        .comp-item p {
            font-size: 0.95rem;
            color: var(--slate-600);
            line-height: 1.5;
        }

        .bestaqua .comp-item p {
            color: var(--slate-400);
        }

        /* ==================== WHY BEST AQUA ==================== */
        .why-section {
            padding: 100px 0;
            background-color: var(--white);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .why-card {
            background: var(--slate-50);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--slate-100);
            transition: var(--transition);
        }

        .why-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
            border-color: rgba(0, 147, 254, 0.15);
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            height: 250px;
            overflow: hidden;
        }

        .video-wrapper video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .why-info {
            padding: 30px 24px;
            text-align: center;
        }

        .why-info h3 {
            font-size: 1.35rem;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 12px;
        }

        .why-info p {
            font-size: 0.98rem;
            color: var(--slate-600);
            line-height: 1.6;
        }

        /* ==================== ISO CERTIFICATIONS ==================== */
        .iso-section {
            position: relative;
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(12, 26, 48, 0.9) 0%, rgba(15, 23, 42, 0.85) 100%);
            color: var(--white);
            overflow: hidden;
            text-align: center;
        }

        .iso-section .video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            opacity: 0.12;
            mix-blend-mode: overlay;
        }

        .iso-container {
            position: relative;
            z-index: 10;
        }

        .iso-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .iso-card {
            padding: 40px 30px;
            border-radius: var(--radius-lg);
            text-align: center;
        }

        .iso-badge-icon {
            width: 68px;
            height: 68px;
            background: rgba(0, 147, 254, 0.2);
            border: 1px solid rgba(0, 147, 254, 0.4);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--primary-light);
            margin-bottom: 24px;
            box-shadow: 0 0 15px rgba(0, 147, 254, 0.25);
        }

        .iso-card h3 {
            font-size: 1.45rem;
            color: var(--white);
            margin-bottom: 12px;
        }

        .iso-card p {
            color: var(--slate-400);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* ==================== SECTORS ==================== */
        .sectors-section {
            padding: 100px 0;
            background-color: var(--slate-50);
        }

        .sectors-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .sector-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--slate-100);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .sector-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
        }

        .sector-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: var(--transition);
        }

        .sector-card:hover .sector-img {
            transform: scale(1.04);
        }

        .sector-content {
            padding: 30px 24px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .sector-content h3 {
            font-size: 1.35rem;
            font-weight: 800;
        }

        .sector-content p {
            font-size: 0.98rem;
            color: var(--slate-600);
            line-height: 1.6;
            min-height: 80px;
        }

        .sector-link {
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: var(--transition);
        }

        .sector-card:hover .sector-link {
            gap: 12px;
            color: var(--primary-dark);
        }

        /* ==================== TESTIMONIALS ==================== */
        .testimonials-section {
            padding: 100px 0;
            background-color: var(--secondary);
            color: var(--white);
            text-align: center;
        }

        .testimonials-section h2 {
            color: var(--white);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .test-card {
            padding: 40px 30px;
            text-align: right;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 320px;
        }

        .stars {
            color: #fbbf24;
            font-size: 1.2rem;
            margin-bottom: 16px;
        }

        .test-text {
            color: var(--slate-100);
            font-size: 1rem;
            line-height: 1.7;
            font-style: italic;
            margin-bottom: 24px;
        }

        .client-info h4 {
            font-size: 1.1rem;
            color: var(--primary);
            margin-bottom: 4px;
        }

        .client-info span {
            font-size: 0.88rem;
            color: var(--slate-400);
        }

        /* ==================== LEAD & CONTACT ==================== */
        .contact-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--white) 0%, var(--primary-light) 100%);
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 50px;
            align-items: center;
        }

        .contact-info-panel {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .contact-info-panel h2 {
            font-size: 2.5rem;
            line-height: 1.3;
        }

        .contact-card-box {
            display: flex;
            align-items: center;
            gap: 16px;
            background: var(--white);
            padding: 20px;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--slate-100);
        }

        .contact-box-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
        }

        .contact-box-text h4 {
            font-size: 1.05rem;
            font-weight: 700;
        }

        .contact-box-text p {
            font-size: 0.95rem;
            color: var(--slate-600);
        }

        .form-glass {
            padding: 40px;
            border-radius: var(--radius-lg);
            background: var(--white);
            border: 1px solid rgba(0, 147, 254, 0.15);
            box-shadow: var(--shadow-lg);
        }

        .form-title {
            font-size: 1.45rem;
            font-weight: 800;
            margin-bottom: 24px;
            color: var(--secondary);
            border-right: 4px solid var(--primary);
            padding-right: 12px;
        }

        .form-group {
            margin-bottom: 20px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-label {
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--slate-700);
        }

        .form-control {
            width: 100%;
            padding: 14px 20px;
            font-size: 1rem;
            border-radius: var(--radius-sm);
            border: 1px solid var(--slate-400);
            background-color: var(--slate-50);
            font-family: 'Tajawal', sans-serif !important;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            background-color: var(--white);
            box-shadow: 0 0 0 4px rgba(0, 147, 254, 0.1);
        }

        .form-success {
            display: none;
            text-align: center;
            padding: 20px;
            background: #ecfdf5;
            border: 1px solid var(--emerald);
            border-radius: var(--radius-md);
            color: var(--emerald-dark);
        }

        .form-success h3 {
            color: var(--emerald-dark);
            margin-bottom: 10px;
        }

        /* ==================== FOOTER / CTA SECTION ==================== */
        .footer-cta-section {
            position: relative;
            padding: 100px 0;
            background-image: linear-gradient(rgba(12, 26, 48, 0.8), rgba(12, 26, 48, 0.8)), url('https://assets.website-files.com/6426f64494011de4e04eb8d9/6439b12f05223669c9b29d98_sea%20(2).jpg');
            background-size: cover;
            background-position: center;
            color: var(--white);
            text-align: center;
            overflow: hidden;
        }

        .footer-cta-content h2 {
            font-size: 2.8rem;
            color: var(--white);
            margin-bottom: 20px;
        }

        .footer-cta-content p {
            color: var(--slate-400);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px auto;
            line-height: 1.8;
        }

        /* WhatsApp floating widget */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 60px;
            height: 60px;
            background-color: #25d366;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
            z-index: 99999;
            transition: var(--transition);
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
        }

        /* ==================== RESPONSIVE MEDIA QUERIES ==================== */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 2.8rem;
            }

            .trust-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .trust-card {
                border-left: none;
            }

            .calc-wrapper {
                grid-template-columns: 1fr;
            }

            .calc-inputs {
                padding-left: 0;
                border-left: none;
                border-bottom: 1px solid var(--slate-100);
                padding-bottom: 30px;
            }

            .feature-card, .feature-card.reverse {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .feature-img-wrapper {
                height: 300px;
                order: -1;
            }

            .comparison-grid {
                grid-template-columns: 1fr;
            }

            .why-grid, .iso-grid, .sectors-grid, .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .contact-wrapper {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-bottom: 80px !important;
            }

            .hero-section {
                padding-top: 150px !important;
                padding-bottom: 60px !important;
            }

            .hero-title {
                font-size: 2.2rem;
            }

            .hero-desc {
                font-size: 1.1rem;
            }

            .trust-grid {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2rem;
            }

            .footer-cta-content h2 {
                font-size: 2rem;
            }

            .whatsapp-float {
                bottom: 85px !important;
                left: 20px !important;
                width: 50px !important;
                height: 50px !important;
            }
            .whatsapp-float svg {
                width: 26px !important;
                height: 26px !important;
            }
        }

        @media (max-width: 576px) {
            .hero-section {
                padding-top: 145px !important;
                padding-bottom: 50px !important;
            }

            .hero-title {
                font-size: 1.8rem !important;
                line-height: 1.3 !important;
            }
            
            .hero-desc {
                font-size: 1rem !important;
            }
            
            .hero-ctas {
                flex-direction: column !important;
                width: 100% !important;
                gap: 12px !important;
            }
            
            .hero-ctas .btn {
                width: 100% !important;
                padding: 12px 24px !important;
                font-size: 1rem !important;
            }

            .trust-grid {
                padding: 16px !important;
                gap: 12px !important;
            }
            
            .trust-card {
                padding: 10px !important;
                gap: 12px !important;
            }
            
            .trust-icon {
                width: 44px !important;
                height: 44px !important;
                font-size: 1.25rem !important;
            }
            
            .trust-text h4 {
                font-size: 0.95rem !important;
            }
            
            .trust-text p {
                font-size: 0.82rem !important;
            }

            .calc-wrapper {
                padding: 20px !important;
            }
            
            .calc-label {
                font-size: 1rem !important;
            }
            
            .calc-val-badge {
                font-size: 0.95rem !important;
                padding: 2px 8px !important;
            }
            
            .calc-inputs {
                gap: 20px !important;
            }

            .result-row {
                flex-direction: column !important;
                align-items: flex-start !important;
                gap: 6px !important;
                border-bottom: 1px solid var(--slate-100) !important;
                padding-bottom: 12px !important;
            }
            
            .result-row:last-child, .result-row.savings {
                border-bottom: none !important;
            }
            
            .result-value {
                align-self: flex-end !important;
            }
            
            .result-row.savings {
                align-items: center !important;
                text-align: center !important;
            }
            
            .result-row.savings .result-value {
                align-self: center !important;
                font-size: 1.5rem !important;
            }

            .feature-card {
                padding: 16px !important;
                gap: 16px !important;
            }
            
            .feature-img-wrapper {
                height: 220px !important;
            }
            
            .feature-info h3 {
                font-size: 1.4rem !important;
            }
            
            .feature-info p {
                font-size: 0.95rem !important;
            }
            
            .feature-list li {
                font-size: 0.9rem !important;
            }

            .comp-card {
                padding: 24px 16px !important;
            }
            
            .comp-title {
                font-size: 1.15rem !important;
            }
            
            .comp-item strong {
                font-size: 0.95rem !important;
            }
            
            .comp-item p {
                font-size: 0.88rem !important;
            }

            .why-info {
                padding: 20px 16px !important;
            }
            
            .why-info h3 {
                font-size: 1.15rem !important;
            }
            
            .why-info p {
                font-size: 0.88rem !important;
            }
            
            .video-wrapper {
                height: 180px !important;
            }

            .iso-card {
                padding: 24px 16px !important;
            }
            
            .iso-card h3 {
                font-size: 1.15rem !important;
            }
            
            .iso-card p {
                font-size: 0.88rem !important;
            }

            .sector-content {
                padding: 20px 16px !important;
                gap: 10px !important;
            }
            
            .sector-content h3 {
                font-size: 1.15rem !important;
            }
            
            .sector-content p {
                font-size: 0.88rem !important;
                min-height: auto !important;
            }
            
            .sector-img {
                height: 180px !important;
            }

            .test-card {
                padding: 24px 16px !important;
                min-height: auto !important;
            }
            
            .test-text {
                font-size: 0.92rem !important;
            }
            
            .client-info h4 {
                font-size: 0.98rem !important;
            }

            .contact-info-panel h2 {
                font-size: 1.8rem !important;
            }
            
            .contact-info-panel p {
                font-size: 0.95rem !important;
            }
            
            .contact-card-box {
                padding: 14px !important;
            }
            
            .contact-box-text h4 {
                font-size: 0.95rem !important;
            }
            
            .contact-box-text p {
                font-size: 0.88rem !important;
            }
            
            .form-glass {
                padding: 20px 16px !important;
            }
            
            .form-title {
                font-size: 1.2rem !important;
            }

            .footer-cta-content h2 {
                font-size: 1.6rem !important;
            }
            
            .footer-cta-content p {
                font-size: 1rem !important;
                margin-bottom: 24px !important;
            }
        }

        /* Styles for Aman Pro Section */
        .aman-promo-banner {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 40px;
            align-items: center;
            padding: 45px;
            margin-top: 40px;
            margin-bottom: 60px;
            border-radius: 24px;
            background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
            border: 1px solid rgba(0, 147, 254, 0.15);
            box-shadow: 0 20px 40px rgba(0, 147, 254, 0.05);
            position: relative;
            overflow: hidden;
        }
        .aman-promo-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0, 147, 254, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .banner-content h3 {
            font-size: 2.2rem;
            margin-bottom: 24px;
            color: var(--secondary);
            font-weight: 800;
        }
        .banner-ticks {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        .banner-ticks li {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--slate-800);
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .banner-ticks li span {
            color: var(--emerald);
            font-size: 1.5rem;
            font-weight: 900;
            background: rgba(16, 185, 129, 0.1);
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }
        .banner-image {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        .banner-image img {
            max-width: 100%;
            max-height: 380px;
            object-fit: contain;
            filter: drop-shadow(0 20px 40px rgba(0,147,254,0.18));
            transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .banner-image img:hover {
            transform: scale(1.05) rotate(1deg);
        }
        
        .subsection-title {
            font-size: 2.2rem;
            text-align: center;
            margin-top: 60px;
            margin-bottom: 15px;
            color: var(--secondary);
            font-weight: 800;
        }
        .subsection-desc {
            text-align: center;
            color: var(--slate-500);
            font-size: 1.1rem;
            margin-bottom: 45px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Stages Slider Layout */
        .stages-slider-wrapper {
            position: relative;
            margin-bottom: 30px;
            padding: 0 45px;
        }
        .stages-track {
            display: flex;
            gap: 28px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory;
            padding: 20px 5px;
            /* Hide scrollbar for Chrome, Safari and Opera */
            -ms-overflow-style: none;  /* IE and Edge */
            scrollbar-width: none;  /* Firefox */
        }
        .stages-track::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Opera */
        }
        .stages-track .stage-card {
            flex: 0 0 calc(33.333% - 19px); /* 3 cards visible on desktop */
            scroll-snap-align: start;
        }
        
        /* Slider Buttons */
        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 46px;
            height: 46px;
            background: #ffffff;
            border: 1px solid rgba(0, 147, 254, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            z-index: 10;
            transition: all 0.3s ease;
            font-size: 1.3rem;
            color: var(--primary);
        }
        .slider-btn:hover {
            background: var(--primary);
            color: #ffffff;
            border-color: var(--primary);
            box-shadow: 0 6px 16px rgba(0, 147, 254, 0.25);
        }
        .slider-btn.prev-btn {
            right: -10px;
        }
        .slider-btn.next-btn {
            left: -10px;
        }
        
        /* Indicators */
        .slider-indicators {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 10px;
            margin-bottom: 50px;
        }
        .indicator-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(148, 163, 184, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .indicator-dot.active {
            background: var(--primary);
            width: 24px;
            border-radius: 10px;
        }
        .stage-card {
            background: #ffffff;
            border: 1px solid rgba(226, 232, 240, 0.8);
            border-radius: 20px;
            padding: 35px 28px 30px;
            position: relative;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            display: flex;
            flex-direction: column;
            gap: 14px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.006);
            overflow: hidden;
        }
        .stage-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 4px;
            height: 100%;
            background: transparent;
            transition: all 0.3s ease;
        }
        .stage-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 30px rgba(0, 147, 254, 0.08);
            border-color: rgba(0, 147, 254, 0.15);
        }
        .stage-card:hover::before {
            background: var(--primary);
        }
        
        /* Highlight RO Stage */
        .stage-card.highlight {
            border: 2px solid var(--primary);
            background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
            box-shadow: 0 10px 20px rgba(0, 147, 254, 0.05);
        }
        .stage-card.highlight::before {
            background: var(--primary);
            width: 6px;
        }
        .stage-card.highlight:hover {
            box-shadow: 0 25px 40px rgba(0, 147, 254, 0.12);
        }
        
        .stage-header-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 5px;
        }
        .stage-icon-box {
            font-size: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(0, 147, 254, 0.06);
            border-radius: 14px;
            transition: all 0.3s ease;
        }
        .stage-card:hover .stage-icon-box {
            background: var(--primary);
            transform: scale(1.1);
        }
        .stage-card:hover .stage-icon-box span {
            filter: brightness(0) invert(1);
        }
        .stage-card.highlight .stage-icon-box {
            background: rgba(0, 147, 254, 0.12);
        }
        .stage-num-badge {
            font-size: 1rem;
            font-weight: 800;
            color: var(--primary);
            background: rgba(0, 147, 254, 0.08);
            padding: 4px 12px;
            border-radius: 30px;
        }
        .stage-card.highlight .stage-num-badge {
            color: var(--white);
            background: var(--primary);
        }
        .stage-card h4 {
            font-size: 1.35rem;
            font-weight: 800;
            color: var(--secondary);
            margin: 0;
            line-height: 1.4;
        }
        .stage-badge-lvl {
            display: inline-block;
            align-self: flex-start;
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--slate-500);
            background: var(--slate-100);
            padding: 4px 10px;
            border-radius: 6px;
        }
        .stage-card.highlight .stage-badge-lvl {
            color: var(--primary-dark);
            background: rgba(0, 147, 254, 0.15);
        }
        .stage-card p {
            font-size: 0.98rem;
            color: var(--slate-600);
            line-height: 1.7;
            margin: 0;
        }
        
        /* Hardware Components Section */
        .hardware-section-title {
            font-size: 1.8rem;
            text-align: center;
            margin-top: 40px;
            margin-bottom: 30px;
            color: var(--secondary);
            font-weight: 800;
        }
        .hardware-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
            margin-bottom: 60px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        .component-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            border: 1px dashed rgba(148, 163, 184, 0.6);
            border-radius: 20px;
            padding: 35px 30px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            transition: all 0.3s ease;
            position: relative;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01);
        }
        .component-card:hover {
            border-style: solid;
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 147, 254, 0.05);
        }
        .comp-icon-box {
            font-size: 2.2rem;
            background: rgba(148, 163, 184, 0.1);
            width: 55px;
            height: 55px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 14px;
            transition: all 0.3s ease;
        }
        .component-card:hover .comp-icon-box {
            background: var(--secondary);
            color: var(--white);
        }
        .component-card h4 {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--secondary);
            margin: 0;
        }
        .comp-badge {
            display: inline-block;
            align-self: flex-start;
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--slate-700);
            background: rgba(148, 163, 184, 0.15);
            padding: 4px 10px;
            border-radius: 6px;
        }
        .component-card p {
            font-size: 1rem;
            color: var(--slate-600);
            line-height: 1.7;
            margin: 0;
        }

        /* Specs & Why Choose Container */
        .specs-why-container {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 40px;
            margin-top: 60px;
        }
        .why-choose-block, .specs-table-block {
            background: var(--white);
            padding: 45px;
            border-radius: 24px;
            border: 1px solid rgba(226, 232, 240, 0.8);
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
            transition: all 0.3s ease;
        }
        .why-choose-block:hover, .specs-table-block:hover {
            box-shadow: 0 20px 40px rgba(0,0,0,0.04);
        }
        .why-choose-block h3, .specs-table-block h3 {
            font-size: 1.7rem;
            margin-bottom: 12px;
            color: var(--secondary);
            font-weight: 800;
            border-right: 4px solid var(--primary);
            padding-right: 14px;
        }
        .why-choose-desc, .specs-desc {
            font-size: 1.05rem;
            color: var(--slate-500);
            margin-bottom: 30px;
        }
        .why-reasons-list {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .reason-item {
            display: flex;
            flex-direction: column;
            gap: 6px;
            position: relative;
            padding-right: 15px;
        }
        .reason-item::before {
            content: '';
            position: absolute;
            right: 0;
            top: 8px;
            width: 6px;
            height: 6px;
            background: var(--primary);
            border-radius: 50%;
        }
        .reason-item h5 {
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--secondary);
            margin: 0;
        }
        .reason-item p {
            font-size: 1rem;
            color: var(--slate-600);
            line-height: 1.6;
            margin: 0;
        }
        .specs-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }
        .specs-table tr {
            border-bottom: 1px solid rgba(226, 232, 240, 0.8);
        }
        .specs-table tr:last-child {
            border-bottom: none;
        }
        .specs-table th {
            text-align: right;
            font-weight: 800;
            color: var(--secondary);
            padding: 18px 12px;
            width: 40%;
            font-size: 1.05rem;
        }
        .specs-table td {
            color: var(--slate-600);
            padding: 18px 12px;
            font-size: 1.05rem;
        }

        /* Responsive styles for Aman Pro Section */
        @media (max-width: 1024px) {
            .aman-promo-banner {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 35px;
            }
            .banner-image img {
                max-height: 300px;
            }
            .stages-track .stage-card {
                flex: 0 0 calc(50% - 14px); /* 2 cards visible */
            }
            .specs-why-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        @media (max-width: 768px) {
            .subsection-title {
                font-size: 1.8rem;
            }
            .hardware-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .why-choose-block, .specs-table-block {
                padding: 30px 20px;
            }
            .stages-slider-wrapper {
                padding: 0;
            }
            .stages-track .stage-card {
                flex: 0 0 280px; /* fixed width on mobile */
            }
            .slider-btn {
                display: none;
            }
        }
        @media (max-width: 640px) {
            .specs-table th, .specs-table td {
                padding: 14px 8px;
                font-size: 0.95rem;
            }
        }


/* Premium Footer Styling */
.premium-footer {
    background-color: #0f141e !important;
    background-image: radial-gradient(circle at 100% 0%, rgba(9, 69, 168, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(10, 166, 242, 0.1) 0%, transparent 50%);
    color: #ffffff !important;
    font-family: 'Tajawal', sans-serif;
    padding: 4rem 2rem 1.5rem;
    width: 100%;
    box-sizing: border-box;
    direction: rtl;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 60px;
    position: relative;
    z-index: 10;
}
.premium-footer-container {
    max-width: 1200px;
    margin: 0 auto;
}
.premium-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand img {
    height: 50px;
    margin-bottom: 1.5rem;
}
.footer-brand p {
    color: #a8b2c1;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}
.footer-heading {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: #0AA6F2;
}
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links-list li {
    margin-bottom: 0.8rem;
}
.footer-link {
    color: #a8b2c1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}
.footer-link:hover {
    color: #0AA6F2;
    transform: translateX(-5px);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: #a8b2c1;
    font-size: 0.9rem;
}
.footer-bottom a {
    color: #a8b2c1;
    text-decoration: none;
}
.footer-bottom a:hover {
    color: #0AA6F2;
}
@media (max-width: 768px) {
    .premium-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Ensure Woodmart Header is always visible on Homepage */
.whb-header {
    position: relative !important;
    z-index: 9999 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}
.whb-main-header, .whb-general-header {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
.whb-general-header .container {
    background: #ffffff !important;
}


/* =========================================================
   FORCED HOMEPAGE HEADER VISIBILITY & POSITIONING FIX
   ========================================================= */
header.whb-header, div.whb-header {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 999999 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
    margin-bottom: 0 !important;
}
.whb-main-header, .whb-general-header, .whb-row {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background-color: #ffffff !important;
}
.whb-general-header .container {
    background: #ffffff !important;
    border-radius: 0 !important;
    width: 100% !important;
    max-width: 1200px !important;
    box-shadow: none !important;
    border: none !important;
}
.hero-section {
    position: relative !important;
    z-index: 1 !important;
    margin-top: 0 !important;
    padding-top: 80px !important;
}


/* =========================================================
   CLEAN HOMEPAGE HEADER DISPLAY FIX
   ========================================================= */
header.whb-header, div.whb-header {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 999999 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
    margin-bottom: 0 !important;
}
.whb-main-header, .whb-general-header, .whb-row {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background-color: #ffffff !important;
}
.whb-general-header .container {
    background: #ffffff !important;
    border-radius: 0 !important;
    width: 100% !important;
    max-width: 1200px !important;
    box-shadow: none !important;
    border: none !important;
}
.whb-general-header .woodmart-nav-link .nav-link-text {
    color: #123047 !important;
    font-weight: 700 !important;
}
.hero-section {
    position: relative !important;
    z-index: 1 !important;
    margin-top: 0 !important;
    padding-top: 60px !important;
}


/* =========================================================
   HOMEPAGE HEADER FORCE DISPLAY & RELATIVE POSITION
   ========================================================= */
body.page-id-6391 header.whb-header,
body.page-id-6391 div.whb-header,
header.whb-header {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 999999 !important;
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
    margin-bottom: 0 !important;
}

body.page-id-6391 .whb-general-header,
.whb-general-header {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background-color: #ffffff !important;
}

body.page-id-6391 .hero-section {
    margin-top: 0 !important;
    padding-top: 40px !important;
}


/* =========================================================
   FLOATING PILL HEADER ON HOMEPAGE
   ========================================================= */
body.page-id-6391 .whb-header,
.whb-header {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 999999 !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.page-id-6391 .whb-general-header,
.whb-general-header {
    background: transparent !important;
}

body.page-id-6391 .whb-general-header .container,
.whb-general-header .container {
    background: #ffffff !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12) !important;
    padding: 8px 28px !important;
    margin-top: 15px !important;
    max-width: 1200px !important;
    width: 92% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

body.page-id-6391 .hero-section {
    padding-top: 110px !important;
}

/* =========================================================
   BEST AQUA - HOMEPAGE FLOATING PILL NAVBAR
   ========================================================= */
.homepage-pill-navbar {
    position: fixed;
    top: 18px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.homepage-pill-navbar .pill-container {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 50px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 8px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 92%;
    direction: rtl;
    transition: all 0.3s ease;
}

.homepage-pill-navbar .pill-logo img {
    max-height: 44px;
    width: auto;
    display: block;
    object-fit: contain;
}

.homepage-pill-navbar .pill-nav-desktop {
    display: flex;
    gap: 22px;
    align-items: center;
}

.homepage-pill-navbar .pill-nav-desktop a {
    color: #123047;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.homepage-pill-navbar .pill-nav-desktop a:hover,
.homepage-pill-navbar .pill-nav-desktop a.active {
    color: #0093fe;
}

.homepage-pill-navbar .pill-nav-desktop a.contact-cta {
    background: #0093fe;
    color: #ffffff !important;
    padding: 7px 22px;
    border-radius: 25px;
    font-size: 14px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.homepage-pill-navbar .pill-nav-desktop a.contact-cta:hover {
    background: #007ecc;
    transform: translateY(-1px);
}

.homepage-pill-navbar .pill-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.homepage-pill-navbar .action-icon {
    color: #123047;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    transition: background 0.2s ease;
    text-decoration: none;
}

.homepage-pill-navbar .action-icon:hover {
    background: #f0f4f8;
    color: #0093fe;
}

.homepage-pill-navbar .action-cart-btn {
    background: #123047;
    color: #ffffff;
    padding: 7px 18px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.homepage-pill-navbar .action-cart-btn:hover {
    background: #0093fe;
    transform: translateY(-1px);
}

.homepage-pill-navbar .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #123047;
    cursor: pointer;
    padding: 6px;
}

.homepage-pill-navbar .pill-mobile-drawer {
    display: none;
    pointer-events: auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-top: 10px;
    padding: 16px;
    width: 92%;
    max-width: 1200px;
    flex-direction: column;
    gap: 12px;
    direction: rtl;
}

.homepage-pill-navbar .pill-mobile-drawer a {
    color: #123047;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
}

.homepage-pill-navbar.menu-open .pill-mobile-drawer {
    display: flex;
}

@media (max-width: 991px) {
    .homepage-pill-navbar .pill-nav-desktop {
        display: none;
    }
    .homepage-pill-navbar .mobile-menu-toggle {
        display: flex;
        align-items: center;
    }
}

@media (min-width: 992px) {
    .homepage-pill-navbar .pill-mobile-drawer,
    .homepage-pill-navbar.menu-open .pill-mobile-drawer {
        display: none !important;
    }
}

/* Hide duplicate default woodmart header ONLY on homepage since we use floating pill navbar */
body.home header.whb-header,
body.home .whb-header,
body.page-id-6391 header.whb-header,
body.page-id-6391 .whb-header {
    display: none !important;
}
