/* ==========================================================
   Al Nooh Interiors - Noor Interiors style theme
   Navy + Gold redesign (inspired by noorinteriors.in)
   Loaded AFTER style.css - overrides the default theme
   ========================================================== */

:root {
    --primary: #f7bc41;
    --primary-dark: #d99e1f;
    --primary-light: #fcd37a;
    --secondary: #11204d;
    --secondary-light: #1b2f66;
    --secondary-dark: #0c1736;
    --accent: #e63946;
    --dark: #0c1736;
    --dark-soft: #16224a;
    --text: #343a46;
    --text-light: #5c6470;
    --text-muted: #8a92a0;
    --light: #f5f6f9;
    --light-soft: #eef1f6;
    --white: #ffffff;
    --border: #e3e6ee;
    --shadow: 0 6px 24px rgba(17,32,77,0.08);
    --shadow-lg: 0 16px 48px rgba(17,32,77,0.14);
    --radius: 10px;
    --radius-sm: 6px;
    --radius-lg: 18px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Montserrat', 'Poppins', sans-serif;
    --font-body: 'Roboto', 'Poppins', sans-serif;
}

[data-theme="dark"] {
    --secondary: #0c1736;
    --secondary-light: #16224a;
    --light: #16224a;
    --light-soft: #0c1736;
    --text: #e6e9f0;
    --text-light: #b6bdcc;
    --text-muted: #828ba0;
    --border: #243357;
    --white: #0f1b3d;
}

/* ===========================
   Base
=========================== */
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    padding-top: 102px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

/* ===========================
   Buttons
=========================== */
.btn { border-radius: 4px; letter-spacing: 1.2px; font-weight: 600; }

.btn-primary {
    background: var(--primary);
    color: #1a1a1a;
    box-shadow: 0 6px 18px rgba(247,188,65,0.35);
}
.btn-primary:hover {
    background: var(--primary-dark);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(247,188,65,0.45);
}

.btn-dark {
    background: var(--secondary);
    color: var(--white);
}
.btn-dark:hover { background: var(--secondary-light); color: var(--white); }

.btn-outline-primary {
    color: var(--secondary);
    border-color: var(--secondary);
}
.btn-outline-primary:hover { background: var(--secondary); border-color: var(--secondary); color: var(--white); }

.btn-outline { border-color: rgba(255,255,255,0.8); }
.btn-outline:hover { background: var(--white); color: var(--secondary); border-color: var(--white); }

/* ===========================
   Top Bar
=========================== */
.top-bar {
    background: var(--secondary);
    color: var(--white);
    border-bottom: 2px solid var(--primary);
}
.top-bar-left span i { color: var(--primary); }
.top-bar-right a:hover { color: var(--primary); transform: translateY(-2px); }

/* ===========================
   Header
=========================== */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
}
.header.header-scrolled { box-shadow: 0 4px 30px rgba(17,32,77,0.12); }

.header-inner { height: 66px; }

.logo { font-family: var(--font-heading); font-weight: 800; letter-spacing: 0.5px; }
.logo-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #1a1a1a;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(247,188,65,0.4);
}
.logo-text { color: var(--secondary); }
.logo-highlight { color: var(--primary); }
.logo:hover .logo-highlight { color: var(--primary-dark); }

.main-nav > ul > li > a {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text);
    padding: 10px 13px;
}
.main-nav > ul > li > a::after {
    background: var(--primary);
    width: 24px;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active { color: var(--secondary); }
.main-nav > ul > li > a:hover::after,
.main-nav > ul > li > a.active::after { transform: translateX(-50%) scaleX(1); }

.dropdown {
    border-top: 3px solid var(--primary);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 20px 50px rgba(17,32,77,0.18);
}
.dropdown li a { font-size: 0.88rem; }
.dropdown li a:hover {
    background: rgba(247,188,65,0.12);
    color: var(--secondary);
}

.header-actions .cta-btn { background: var(--secondary); color: var(--white); }
.header-actions .cta-btn:hover { background: var(--primary); color: #1a1a1a; }

/* Navbar overflow fix: let nav flex so actions never spill out */
.header-inner { gap: 8px; min-width: 0; }
.header-inner .logo { flex-shrink: 0; }
.main-nav { flex: 1 1 auto; min-width: 0; display: flex; justify-content: center; }
.main-nav > ul { flex-wrap: nowrap; overflow: hidden; min-width: 0; gap: 0; }
.main-nav > ul > li { flex-shrink: 0; white-space: nowrap; }
.main-nav > ul > li > a { padding: 10px 11px; letter-spacing: 0.7px; }
.header-actions { flex-shrink: 0; gap: 8px; }
.header-actions .cta-btn { white-space: nowrap; padding: 8px 14px; }

.header-search-toggle { color: var(--secondary); }

/* Transparent header over homepage hero */
.header-transparent {
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    box-shadow: none;
}
.header-transparent .logo-text { color: #fff; }
.header-transparent .logo-highlight { color: var(--primary); }
.header-transparent .main-nav > ul > li > a { color: rgba(255,255,255,0.92); }
.header-transparent .main-nav > ul > li > a:hover,
.header-transparent .main-nav > ul > li > a.active { color: var(--primary); }
.header-transparent .header-search-toggle,
.header-transparent .user-menu-toggle,
.header-transparent .cart-toggle { color: #fff; }
.header-transparent.header-scrolled {
    background: rgba(17,32,77,0.97);
    backdrop-filter: blur(14px);
    border-bottom-color: rgba(255,255,255,0.12);
}

/* ===========================
   Hero Slider
=========================== */
.hero { height: 100vh; min-height: 620px; }

.hero-slide::after {
    background: linear-gradient(90deg, rgba(12,23,54,0.92) 0%, rgba(17,32,77,0.72) 45%, rgba(12,23,54,0.35) 100%);
}

.hero-badge {
    background: rgba(247,188,65,0.16);
    border: 1px solid rgba(247,188,65,0.45);
    color: var(--primary);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.78rem;
}
.hero-badge i { color: var(--primary); }

.hero h1 {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 3.4rem;
    line-height: 1.15;
}
.hero h1 span { color: var(--primary); }

.hero p { color: rgba(255,255,255,0.85); }

.hero-stat h3 { color: var(--primary); font-weight: 800; }
.hero-stat p { color: rgba(255,255,255,0.75); }

/* ===========================
   Section + Headings
=========================== */
.section { padding: 90px 0; }

.section-header { max-width: 720px; margin: 0 auto 55px; }

.section-header .section-badge {
    background: rgba(247,188,65,0.14);
    color: #b98600;
    font-family: var(--font-heading);
    letter-spacing: 2.5px;
    font-weight: 700;
    padding: 7px 18px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 2.3rem;
    color: var(--secondary);
}
.section-header h2 span { color: var(--primary); }

.section-header p { color: var(--text-light); }

/* Title divider (triangle + line like noorinteriors) */
.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 18px auto 0;
}
.title-divider .td-line {
    height: 2px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--primary));
}
.title-divider .td-line:last-child {
    background: linear-gradient(90deg, var(--primary), transparent);
}
.title-divider .td-diamond {
    width: 12px;
    height: 12px;
    background: var(--primary);
    transform: rotate(45deg);
}
.title-divider.td-light .td-line { background: linear-gradient(90deg, transparent, var(--primary)); }
.title-divider.td-light .td-line:last-child { background: linear-gradient(90deg, var(--primary), transparent); }

.bg-light { background: var(--light); }
.bg-dark { background: var(--secondary); color: #fff; }
.bg-dark .section-header h2 { color: #fff; }
.bg-dark .section-header .section-badge { background: rgba(247,188,65,0.18); color: var(--primary); }

/* ===========================
   What We Provide - Image tiles
=========================== */
.wwd-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.wwd-card {
    position: relative;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    display: block;
    background: var(--secondary-dark);
    box-shadow: var(--shadow);
}
.wwd-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}
.wwd-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12,23,54,0.25) 0%, rgba(12,23,54,0.9) 100%);
    transition: var(--transition);
}
.wwd-card:hover .wwd-card-bg { transform: scale(1.08); }
.wwd-card:hover::after { background: linear-gradient(180deg, rgba(12,23,54,0.1) 0%, rgba(247,188,65,0.55) 130%); }

.wwd-card-icon {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #1a1a1a;
    border-radius: 6px;
    font-size: 1.05rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.wwd-card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 16px;
    z-index: 2;
    color: #fff;
}
.wwd-card-content h3 {
    font-size: 1.02rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    line-height: 1.35;
    margin-bottom: 4px;
}
.wwd-card-content span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    opacity: 0;
    transform: translateY(6px);
    transition: var(--transition);
}
.wwd-card:hover .wwd-card-content span { opacity: 1; transform: translateY(0); }

/* ===========================
   Service Cards (services page)
=========================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 38px 30px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(247,188,65,0.5); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon {
    width: 72px; height: 72px;
    background: rgba(247,188,65,0.15);
    color: var(--secondary);
    border: 1px solid rgba(247,188,65,0.35);
    border-radius: 50%;
    font-size: 1.6rem;
    margin-bottom: 20px;
}
.service-card:hover .service-card-icon { background: var(--primary); color: #1a1a1a; border-color: var(--primary); }
.service-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--secondary); margin-bottom: 10px; }
.service-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }
.service-card ul.feature-list { margin: 16px 0; text-align: left; }
.service-card ul.feature-list li {
    display: flex; align-items: flex-start; gap: 8px;
    margin-bottom: 7px; font-size: 0.88rem; color: var(--text-light);
}
.service-card ul.feature-list li i { color: var(--primary); margin-top: 3px; font-size: 0.8rem; }
.service-card .service-price {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
    background: rgba(247,188,65,0.14);
    padding: 6px 14px;
    border-radius: 30px;
    border: 1px solid rgba(247,188,65,0.4);
}

/* ===========================
   Process Steps
=========================== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.process-step {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 26px 34px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.process-num {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 800;
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: var(--shadow);
    font-size: 0.95rem;
}
.process-icon {
    width: 72px; height: 72px;
    margin: 0 auto 18px;
    background: rgba(247,188,65,0.15);
    color: var(--secondary);
    border: 1px dashed rgba(247,188,65,0.6);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
}
.process-step h3 { font-size: 1.1rem; font-weight: 700; color: var(--secondary); margin-bottom: 8px; }
.process-step p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* ===========================
   Service Detail (single service page)
=========================== */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}
.service-detail-main {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.service-detail-image img { width: 100%; height: 340px; object-fit: cover; display: block; }
.service-detail-content { padding: 30px 34px 36px; position: relative; }
.service-detail-icon {
    position: absolute;
    top: -30px;
    left: 34px;
    width: 62px; height: 62px;
    background: var(--primary);
    color: #1a1a1a;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 8px 20px rgba(247,188,65,0.4);
}
.service-detail-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--secondary);
    margin: 18px 0 14px;
}
.service-detail-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--secondary); margin: 26px 0 12px; }
.service-detail-content p { font-size: 0.98rem; line-height: 1.85; color: var(--text-light); }
.service-detail-price { font-size: 1.15rem; margin-top: 20px; padding-top: 16px; border-top: 1px dashed var(--border); }
.service-detail-side { display: flex; flex-direction: column; gap: 24px; }
.service-quote-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px 26px;
    border-top: 4px solid var(--primary);
}
.service-quote-card h3 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; text-transform: uppercase; color: var(--secondary); margin-bottom: 8px; }
.service-quote-card p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 18px; }
.service-quote-card .form-group { margin-bottom: 14px; }
.service-quick-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.service-quick-contact .btn { justify-content: center; }

/* ===========================
   Portfolio / Projects
=========================== */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}
.filter-tab {
    padding: 10px 24px;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    transition: var(--transition);
    cursor: pointer;
    background: var(--white);
}
.filter-tab:hover { border-color: var(--primary); color: var(--secondary); }
.filter-tab.active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary);
}

.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.project-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    display: block;
    box-shadow: var(--shadow);
}
.project-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.project-card:hover img { transform: scale(1.07); }
.project-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(12,23,54,0.92) 100%);
    transition: var(--transition);
}
.project-card-content {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 26px;
    color: #fff;
    z-index: 2;
    transform: translateY(6px);
    transition: var(--transition);
}
.project-card:hover .project-card-content { transform: translateY(0); }
.project-card-content span {
    display: inline-block;
    background: var(--primary);
    color: #1a1a1a;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 30px;
    margin-bottom: 10px;
}
.project-card-content h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 6px; }
.project-card-content p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: var(--transition);
}
.project-card:hover .project-card-content p { max-height: 80px; opacity: 1; margin-top: 6px; }
.project-card-content i { color: var(--primary); margin-top: 10px; font-size: 0.9rem; }

/* ===========================
   Products
=========================== */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark), var(--primary));
    z-index: 2;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card-image { position: relative; overflow: hidden; }
.product-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17,32,77,0.35), transparent 55%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}
.product-card:hover .product-card-image::after { opacity: 1; }
.product-card-image img { height: 250px; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-card-image img { transform: scale(1.08); }
.product-badge {
    background: var(--primary);
    color: #1a1a1a;
    font-weight: 700;
    z-index: 3;
}
.product-badge-stock {
    background: var(--secondary);
    z-index: 3;
    bottom: auto;
    top: 12px;
    right: 12px;
    left: auto;
}
.product-card-body {
    padding: 18px 20px 14px;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}
.product-card-category {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
}
.product-card-body h3 { font-size: 1.05rem; font-weight: 700; }
.product-card-body h3 a { color: var(--secondary); }
.product-card-body h3 a:hover { color: var(--primary-dark); }
.product-card-body p { font-size: 0.85rem; color: var(--text-light); flex: 1 0 auto; }
.product-price {
    margin-top: auto;
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.product-price .current { color: var(--secondary); font-weight: 800; }
.product-price .original { color: var(--text-muted); }
.product-card-footer {
    --product-img-h: 250px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(100% - var(--product-img-h));
    padding: 12px 14px 14px;
    display: flex;
    gap: 10px;
    background: linear-gradient(transparent, rgba(12,23,54,0.75));
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    z-index: 2;
}
.product-card-footer .btn { flex: 1; margin: 0; }
.product-card-footer .btn-outline-primary {
    background: rgba(255,255,255,0.92);
    border: 1px solid transparent;
    color: var(--secondary);
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
    backdrop-filter: blur(4px);
}
.product-card-footer .btn-outline-primary:hover {
    background: var(--primary);
    color: #1a1a1a;
}
.product-card-footer .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #1a1a1a;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(247,188,65,0.4);
}
.product-card-footer .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(247,188,65,0.5);
}
.product-card-footer .btn-primary i { margin-right: 6px; }

/* Desktop: buttons hidden, slide up on card hover */
@media (hover: hover) and (pointer: fine) {
    .product-card-footer {
        transform: translateY(calc(100% - 4px));
        opacity: 0;
    }
    .product-card:hover .product-card-footer,
    .product-card:focus-within .product-card-footer {
        transform: translateY(0);
        opacity: 1;
    }
    .product-card:hover .product-card-image img { transform: scale(1.08); }
}
.product-wishlist {
    z-index: 3;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

/* Related products use the same hover footer, hide old duplicate overlay */
.product-card-actions { display: none !important; }

/* ===========================
   Product Slider (swipeable)
=========================== */
.product-slider { position: relative; }
.product-slider-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overscroll-behavior-x: contain;
    padding: 4px;
    scroll-padding: 4px;
}
.product-slider-track::-webkit-scrollbar { display: none; width: 0; height: 0; }
.product-slider-track::-webkit-scrollbar-track,
.product-slider-track::-webkit-scrollbar-thumb { background: transparent; }
.product-slider-track > .product-card {
    flex: 0 0 auto;
    width: calc((100% - 72px) / 4);
    scroll-snap-align: start;
    opacity: 1 !important;
    transform: none !important;
    transition: var(--transition);
}
.product-slider-controls {
    display: none !important;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
}
.slider-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--secondary);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.slider-btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(17,32,77,0.25);
}
.slider-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none; }
.slider-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}
.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(17,32,77,0.2);
    cursor: pointer;
    transition: var(--transition);
}
.slider-dot.active { background: var(--primary); transform: scale(1.3); }

/* ===========================
   Stats
=========================== */
.stats-section {
    background: linear-gradient(120deg, var(--secondary-dark) 0%, var(--secondary) 100%);
    position: relative;
}
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(247,188,65,0.14) 1px, transparent 1px);
    background-size: 26px 26px;
}
.stat-item { position: relative; z-index: 1; }
.stat-item-icon {
    background: rgba(247,188,65,0.15);
    color: var(--primary);
    border: 1px solid rgba(247,188,65,0.35);
}
.stat-item h3 { color: var(--primary); font-weight: 800; }
.stat-item p { color: rgba(255,255,255,0.75); }

/* ===========================
   Testimonials
=========================== */
.about-section { background: var(--light); }
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
}
.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 22px; right: 26px;
    font-size: 2.4rem;
    color: rgba(247,188,65,0.35);
}
.testimonial-stars { color: var(--primary); }
.testimonial-avatar {
    background: var(--secondary);
    color: var(--primary);
    border: 2px solid var(--primary);
}
.testimonial-author h4 { color: var(--secondary); }

/* ===========================
   Key clients strip
=========================== */
.clients-strip {
    background: var(--white);
    border-top: 1px solid var(--border);
}
.clients-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px;
}
.client-logo {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px 26px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}
.client-logo i { color: var(--primary); font-size: 1.2rem; }
.client-logo:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow); }

/* ===========================
   CTA Section
=========================== */
.cta-section {
    background: linear-gradient(120deg, var(--secondary-dark), var(--secondary));
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -120px; right: -80px;
    width: 420px; height: 420px;
    border: 2px solid rgba(247,188,65,0.2);
    border-radius: 50%;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -160px; left: -60px;
    width: 380px; height: 380px;
    border: 2px solid rgba(247,188,65,0.14);
    border-radius: 50%;
}
.cta-section h2 { font-weight: 800; text-transform: uppercase; }
.cta-section p { color: rgba(255,255,255,0.85); }

/* ===========================
   Page Banner (inner pages)
=========================== */
.page-banner {
    background: linear-gradient(120deg, var(--secondary-dark) 0%, var(--secondary) 100%);
    padding: 150px 0 70px;
    position: relative;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(247,188,65,0.12) 1px, transparent 1px);
    background-size: 22px 22px;
}
.page-banner h1 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}
.page-banner .breadcrumb { position: relative; z-index: 1; }
.page-banner .breadcrumb a { color: var(--primary); }
.page-banner .breadcrumb span { color: rgba(255,255,255,0.7); }

/* ===========================
   Filter bar (products)
=========================== */
.filter-bar {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.filter-search input,
.sort-select { border: 1px solid var(--border); }
.sort-select:focus { border-color: var(--primary); }

/* ===========================
   Contact
=========================== */
.contact-info-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.contact-info-card-icon {
    background: rgba(247,188,65,0.15);
    color: var(--secondary);
    border: 1px dashed rgba(247,188,65,0.55);
}
.contact-info-card:hover { border-color: rgba(247,188,65,0.5); transform: translateX(4px); }
.contact-form-wrapper {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.contact-form-wrapper h3 { color: var(--secondary); font-weight: 700; }
input, select, textarea { border-color: var(--border); border-radius: 6px; }
input:focus, select:focus, textarea:focus { border-color: var(--primary); outline: none; }

.map-section {
    background: linear-gradient(120deg, var(--secondary-dark), var(--secondary));
    color: #fff;
}

/* ===========================
   Maintenance
=========================== */
.maintenance-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.maintenance-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.maintenance-card-icon {
    background: rgba(247,188,65,0.15);
    color: var(--secondary);
    border: 1px dashed rgba(247,188,65,0.55);
}
.maintenance-card h3 { color: var(--secondary); }
.maintenance-card .meta span { color: var(--text-light); }
.maintenance-feature i { color: var(--primary); }

/* ===========================
   Cart sidebar / search / dropdown
=========================== */
.cart-sidebar { background: var(--white); }
.cart-sidebar-header { border-bottom: 1px solid var(--border); }
.cart-sidebar-header h3 { color: var(--secondary); }
.cart-total span:last-child { color: var(--secondary); }

.search-overlay { background: rgba(12,23,54,0.96); }
.search-overlay input {
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--primary);
    color: #fff;
    font-size: 1.6rem;
}
.search-overlay input::placeholder { color: rgba(255,255,255,0.5); }
.search-overlay input:focus { border-bottom-color: var(--primary); }

.user-dropdown { border-top: 3px solid var(--primary); }
.user-dropdown a:hover { color: var(--primary-dark); }

/* ===========================
   Mobile nav
=========================== */
.mobile-nav { background: var(--white); }
.mobile-nav ul li a:hover,
.mobile-nav ul li a.active {
    background: rgba(247,188,65,0.14);
    color: var(--secondary);
}
.mobile-nav-actions .btn-primary { background: var(--secondary); color: var(--white); }

/* ===========================
   WhatsApp float
=========================== */
.whatsapp-float {
    background: #25d366;
    box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}
.whatsapp-float:hover { background: #1ebe5b; transform: scale(1.1); }

/* ===========================
   Footer
=========================== */
.footer { background: var(--secondary-dark); color: rgba(255,255,255,0.8); }
.footer-top { padding: 70px 0 50px; }
.footer-grid { gap: 40px; }
.footer-logo .logo-text { color: #fff; }
.footer-logo .logo-highlight { color: var(--primary); }
.footer-about { color: rgba(255,255,255,0.7); font-size: 0.92rem; }
.footer-social a {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
}
.footer-social a:hover {
    background: var(--primary);
    color: #1a1a1a;
    transform: translateY(-3px);
}
.footer-col h3 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-col h3::after {
    background: var(--primary);
    width: 34px;
    height: 2px;
}
.footer-links li a { color: rgba(255,255,255,0.72); font-size: 0.92rem; }
.footer-links li a::before { color: var(--primary); }
.footer-links li a:hover { color: var(--primary); padding-left: 10px; }
.footer-contact li { color: rgba(255,255,255,0.78); font-size: 0.92rem; }
.footer-contact li i { color: var(--primary); }
.footer-newsletter h4 { color: #fff; }
.newsletter-form input { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: #fff; }
.newsletter-form button { background: var(--primary); color: #1a1a1a; }
.footer-bottom {
    background: rgba(0,0,0,0.25);
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom p { color: rgba(255,255,255,0.6); font-size: 0.88rem; }

/* ===========================
   Responsive
=========================== */
/* Switch to hamburger menu below 1200px so nav + actions never overflow */
@media (max-width: 1199px) {
    .main-nav { display: none !important; }
    .mobile-nav { display: block !important; }
    .mobile-menu-toggle { display: flex !important; }
    .header-actions .cta-btn { display: none !important; }
}

@media (max-width: 1200px) {
    .wwd-grid { grid-template-columns: repeat(4, 1fr); }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .product-slider-track > .product-card { width: calc((100% - 48px) / 3); }
}

@media (max-width: 992px) {
    body { padding-top: 62px; }
    .wwd-grid { grid-template-columns: repeat(3, 1fr); }
    .services-grid, .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 2.6rem; }
    .section-header h2 { font-size: 2rem; }
    .product-slider-track > .product-card { width: calc((100% - 24px) / 2); }
}

@media (max-width: 768px) {
    body { padding-top: 60px; }
    .section { padding: 64px 0; }
    .wwd-grid { grid-template-columns: repeat(2, 1fr); }
    .wwd-card { height: 200px; }
    .services-grid, .projects-grid, .products-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .hero { min-height: 560px; height: auto; padding-top: 110px; padding-bottom: 60px; }
    .hero h1 { font-size: 2.1rem; }
    .hero p { font-size: 1rem; }
    .hero-stats { gap: 28px; margin-top: 40px; padding-top: 28px; }
    .hero-stat h3 { font-size: 1.8rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .section-header h2 { font-size: 1.7rem; }
    .page-banner { padding: 120px 0 54px; }
    .page-banner h1 { font-size: 2.1rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .product-card-image img { height: 190px; }
    .product-card-footer { --product-img-h: 190px; }
    .product-card-body { padding: 14px 14px 10px; }
    .product-card-body h3 { font-size: 0.95rem; }
    .product-card-footer { padding: 10px 12px 12px; }
    .product-card-footer .btn { font-size: 0.75rem; padding: 8px 10px; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .wwd-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .wwd-card { height: 170px; }
    .wwd-card-content h3 { font-size: 0.85rem; }
    .process-grid { grid-template-columns: 1fr; }
    .product-slider-track { gap: 12px; }
    .product-card-image img { height: 170px; }
    .product-card-footer { --product-img-h: 170px; }
}

/* ===========================
   Auth / Account pages (gold accent instead of red)
=========================== */
.auth-card::before {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}
.auth-tab.active {
    background: var(--secondary);
    color: var(--primary);
}
.auth-btn {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: #fff;
    box-shadow: 0 8px 24px rgba(17,32,77,0.3);
}
.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(17,32,77,0.4);
}
.auth-logo h1 { color: var(--secondary); }

.profile-avatar {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
}
.profile-nav.active {
    background: var(--secondary);
    color: var(--primary) !important;
}
.profile-nav:hover {
    background: rgba(247,188,65,0.14);
    color: var(--secondary);
}
.payment-option.selected {
    border-color: var(--primary);
    background: rgba(247,188,65,0.08);
}

/* ===========================
   Cart / Checkout
=========================== */
.cart-page-grid { align-items: flex-start; }
.cart-page-header h3,
.cart-page-summary h3,
.cart-item-cat { color: var(--secondary); }
.cart-summary-total { border-top: 2px solid var(--border); }
.cart-summary-total span:last-child { color: var(--secondary); }

/* ===========================
   Product Detail
=========================== */
.product-detail-info .category {
    background: rgba(247,188,65,0.14);
    color: #b98600;
    border: 1px solid rgba(247,188,65,0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    font-size: 0.75rem;
}
.reviews-avg { color: var(--secondary); }
.review-card { border: 1px solid var(--border); box-shadow: var(--shadow); }
.review-form { border: 1px solid var(--border); box-shadow: var(--shadow); }
.review-form h3 { color: var(--secondary); }

/* ===========================
   Project Detail
=========================== */
.project-detail-header::after {
    background: linear-gradient(180deg, rgba(12,23,54,0.35) 0%, rgba(12,23,54,0.92) 100%);
}
.project-detail-header h1 {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
}

/* ===========================
   Profile / Orders
=========================== */
.dashboard-card,
.order-card { border: 1px solid var(--border); box-shadow: var(--shadow); }
.dashboard-card h3,
.order-card h3 { color: var(--secondary); }
.order-status { font-weight: 700; }

/* ===========================
   Tablet refinements (769-1024)
=========================== */
@media (min-width: 769px) and (max-width: 1024px) {
    .header-inner { height: 62px; }
    .header { top: 0; }
    body { padding-top: 62px; }
    .hero { min-height: 560px; }
    .wwd-grid { grid-template-columns: repeat(3, 1fr); }
    .wwd-card { height: 220px; }
    .section { padding: 72px 0; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===========================
   Mobile refinements
=========================== */
@media (max-width: 768px) {
    .header-transparent { background: var(--white) !important; }
    .header-transparent .logo-text { color: var(--secondary); }
    .header-transparent .header-search-toggle,
    .header-transparent .user-menu-toggle,
    .header-transparent .cart-toggle { color: var(--secondary); }
    .hero-content { padding-top: 30px; }
    .wwd-card-icon { width: 38px; height: 38px; font-size: 0.9rem; }
    .cart-page-grid { grid-template-columns: 1fr; }
    .checkout-grid { grid-template-columns: 1fr; }
    .product-detail-gallery img { height: 300px; }
    .filter-tabs { gap: 8px; }
    .filter-tab { padding: 8px 16px; font-size: 0.72rem; }
    .section-header h2 { font-size: 1.5rem; }
    .title-divider .td-line { width: 40px; }
    .about-image-accent { padding: 14px 20px; }
    .page-banner { padding: 110px 0 50px; }
    .header-inner { height: 56px; }
    .logo { font-size: 1.15rem; }
    .wwd-card { height: 190px; }
    .wwd-card-content h3 { font-size: 0.9rem; }
    .wwd-card-content span { opacity: 1; transform: none; }
    .product-slider-track { padding: 4px 0 8px; }
    .product-slider-track > .product-card { width: calc((100% - 20px) / 1.5); }
    .service-detail-grid { grid-template-columns: 1fr; }
    .service-detail-side { display: grid; grid-template-columns: 1fr 1fr; align-items: start; }
    .section-header { margin-bottom: 30px; }
    .clients-row { gap: 10px; }
    .client-logo { padding: 12px 16px; font-size: 0.82rem; }
    .cta-buttons { flex-direction: column; gap: 12px; }
    .cta-buttons .btn { width: 100%; text-align: center; }
    .hero-badge { white-space: normal; }
}

@media (max-width: 480px) {
    .header-inner { height: 54px; gap: 6px; }
    .logo { font-size: 1rem; }
    .logo-icon { width: 30px; height: 30px; font-size: 0.75rem; }
    .logo-text { font-size: 0.95rem; }
    .header-actions { gap: 2px; }
    .header-actions .header-search-toggle,
    .header-actions .user-menu-toggle,
    .header-actions .cart-toggle { width: 32px; height: 32px; font-size: 0.85rem; }
    .mobile-menu-toggle span { width: 24px; }
    .hero { min-height: 480px; padding-top: 80px; padding-bottom: 48px; }
    .hero h1 { font-size: 1.6rem; }
    .hero p { font-size: 0.88rem; }
    .hero-badge { font-size: 0.68rem; padding: 5px 10px; }
    .hero-buttons .btn { font-size: 0.85rem; }
    .hero-stats { gap: 12px; margin-top: 24px; }
    .hero-stat h3 { font-size: 1.4rem; }
    .hero-stat p { font-size: 0.75rem; }
    .section-header h2 { font-size: 1.35rem; }
    .section-header p { font-size: 0.88rem; }
    .wwd-grid { gap: 10px; }
    .wwd-card { height: 150px; }
    .wwd-card-content { padding: 12px; }
    .wwd-card-content h3 { font-size: 0.78rem; letter-spacing: 0.2px; }
    .wwd-card-icon { top: 10px; left: 10px; width: 32px; height: 32px; font-size: 0.8rem; }
    .product-slider-track { gap: 12px; }
    .product-slider-track > .product-card { width: calc((100% - 12px) / 1.5); }
    .product-card-image img { height: 170px; }
    .product-card-footer { --product-img-h: 170px; }
    .service-detail-side { grid-template-columns: 1fr; }
    .service-detail-content { padding: 22px 20px 26px; }
    .service-detail-content h2 { font-size: 1.4rem; }
    .service-detail-image img { height: 220px; }
    .service-detail-icon { top: -26px; left: 20px; width: 52px; height: 52px; font-size: 1.3rem; }
    .service-quote-card { padding: 22px 20px; }
    .service-quick-contact { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
    .hero h1 { font-size: 1.35rem; }
    .hero-badge { font-size: 0.62rem; padding: 5px 8px; }
    .section-header h2 { font-size: 1.2rem; }
    .wwd-card { height: 140px; }
    .wwd-card-content h3 { font-size: 0.72rem; }
    .logo { font-size: 0.9rem; }
    .logo-icon { width: 26px; height: 26px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-top { padding: 50px 0 36px; }
}
