/* ============================================================
   ARMIND INDUSTRIES - Main Stylesheet
   ============================================================ */
:root {
    --primary: #0b2e4f;
    --primary-dark: #071e34;
    --accent: #ff6b1a;
    --accent-dark: #e85507;
    --text: #1a2430;
    --muted: #5c6b7a;
    --light: #f4f7fb;
    --border: #e3e9f1;
    --white: #ffffff;
    --shadow: 0 6px 24px rgba(11, 46, 79, .08);
    --shadow-lg: 0 14px 44px rgba(11, 46, 79, .14);
    --radius: 14px;
    --font: 'Inter', sans-serif;
    --font-head: 'Manrope', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); line-height: 1.65; background: var(--white); }
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--accent); }
ul { list-style: none; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.2; font-weight: 800; }
h1 { font-size: clamp(1.8rem, 3.4vw, 2.9rem); }
h2 { font-size: clamp(1.55rem, 2.6vw, 2.2rem); }
h3 { font-size: 1.15rem; }
p { color: var(--muted); }

.section { padding: 72px 0; }
.section-light { background: var(--light); }
.section-dark { background: var(--primary-dark); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.section-head .kicker { color: var(--accent); font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; font-size: .8rem; margin-bottom: 8px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p { font-size: 1.02rem; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 8px; font-weight: 700; font-size: .95rem; transition: all .25s; border: 2px solid transparent; cursor: pointer; font-family: var(--font); }
.btn-solid { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-solid:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255, 107, 26, .3); }
.btn-outline { border-color: var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: var(--light); }
.btn-block { width: 100%; justify-content: center; }

/* Top Bar */
.topbar { background: var(--primary-dark); color: #cfd9e6; font-size: .82rem; padding: 8px 0; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: #cfd9e6; margin-left: 14px; }
.topbar a:hover { color: var(--accent); }
.topbar i { color: var(--accent); margin-right: 5px; }

/* Header */
.site-header { background: #fff; box-shadow: 0 1px 0 var(--border); position: sticky; top: 0; z-index: 1000; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 20px; }
.logo img { height: 54px; width: auto; }
.main-nav ul { display: flex; gap: 4px; }
.main-nav a { padding: 10px 12px; font-weight: 600; font-size: .9rem; border-radius: 8px; color: var(--text); white-space: nowrap; }
.main-nav a:hover, .main-nav a.active { color: var(--accent); background: rgba(255, 107, 26, .08); }
.main-nav .has-dropdown { position: relative; }
.main-nav ul.dropdown { display: none; position: absolute; top: 100%; left: 0; min-width: 260px; max-height: 70vh; overflow-y: auto; background: #fff; box-shadow: var(--shadow); border: 1px solid var(--border); border-radius: 10px; padding: 8px; flex-direction: column; gap: 0; z-index: 1100; }
.main-nav .has-dropdown:hover > ul.dropdown, .main-nav .has-dropdown:focus-within > ul.dropdown { display: flex; }
.main-nav ul.dropdown a { display: block; padding: 9px 12px; text-align: left; white-space: normal; font-size: .85rem; }
.main-nav ul.dropdown a:hover { background: rgba(255, 107, 26, .08); color: var(--accent); }
.main-nav .has-dropdown > a .fa-chevron-down { font-size: .7rem; margin-left: 4px; }
.header-cta { display: flex; gap: 10px; }
.cta-btn { padding: 10px 18px; font-weight: 700; font-size: .88rem; border-radius: 8px; border: 2px solid var(--primary); color: var(--primary); white-space: nowrap; }
.cta-btn:hover { color: var(--accent); border-color: var(--accent); }
.cta-btn.btn-solid { background: var(--accent); color: #fff; border-color: var(--accent); }
.cta-btn.btn-solid:hover { background: var(--accent-dark); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.5rem; color: var(--primary); cursor: pointer; }

/* Page header */
.page-header { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; padding: 54px 0 48px; }
.page-header h1 { color: #fff; }
.breadcrumb { margin-top: 12px; font-size: .88rem; color: #b8c6d8; }
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { color: #fff; }

/* Hero */
.hero { position: relative; background: linear-gradient(135deg, var(--primary) 0%, #0d3a63 100%); color: #fff; overflow: hidden; }
.hero-wave { position: absolute; bottom: -2px; left: 0; width: 100%; line-height: 0; }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding: 72px 0 90px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); padding: 8px 16px; border-radius: 40px; font-size: .82rem; font-weight: 600; margin-bottom: 20px; color: #fff; }
.hero h1 { color: #fff; margin-bottom: 18px; font-size: clamp(2rem, 4vw, 3.2rem); }
.hero h1 span { color: var(--accent); }
.hero p { color: #c9d8ea; font-size: 1.05rem; max-width: 540px; margin-bottom: 20px; }
.hero-list { list-style: none; padding: 0; margin: 0 0 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; max-width: 560px; }
.hero-list li { display: flex; align-items: center; gap: 8px; color: #dce8f5; font-size: .92rem; }
.hero-list li i { color: var(--accent); font-size: 1rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 36px; }
.hero-stats .stat-g { text-align: center; }
.hero-stats .stat-n { font-size: 1.7rem; font-weight: 800; color: var(--accent); font-family: var(--font-head); }
.hero-stats .stat-l { font-size: .8rem; color: #c9d8ea; }
.hero-img { position: relative; display: flex; justify-content: center; }
.hero-img img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; max-width: 520px; height: auto; }
.hero-img .badge-card { position: absolute; background: #fff; border-radius: 12px; padding: 14px 20px; box-shadow: var(--shadow-lg); display: flex; gap: 12px; align-items: center; bottom: -22px; left: -22px; }
.hero-img .badge-card i { font-size: 1.6rem; color: var(--accent); }
.hero-img { position: relative; }

/* Strip */
.strip { background: var(--accent); color: #fff; padding: 0; }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip-item { display: flex; align-items: center; gap: 14px; padding: 20px; }
.strip-item + .strip-item { border-left: 1px solid rgba(255,255,255,.3); }
.strip-item i { font-size: 1.8rem; }
.strip-item strong { display: block; font-size: .98rem; }
.strip-item span { font-size: .82rem; opacity: .9; }

/* Category cards */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: all .25s; position: relative; overflow: hidden; }
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.cat-card .cat-ico { width: 56px; height: 56px; border-radius: 12px; background: rgba(255,107,26,.1); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 14px; }
.cat-card h3 { font-size: 1rem; margin-bottom: 6px; }
.cat-card p { font-size: .84rem; color: var(--accent); font-weight: 700; }
.cat-card .cat-n { font-size: .8rem; color: var(--muted); }

/* Product cards */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all .25s; display: flex; flex-direction: column; position: relative; }
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: var(--accent); }
.product-card .pc-img { aspect-ratio: 4/3; overflow: hidden; background: var(--light); position: relative; }
.product-card .pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .pc-img img { transform: scale(1.06); }
.product-card .pc-cat { position: absolute; top: 12px; left: 12px; background: var(--primary); color: #fff; font-size: .7rem; font-weight: 700; padding: 4px 10px; border-radius: 30px; z-index: 2; }
.product-card .pc-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-card .pc-body h3 { font-size: .98rem; }
.product-card .pc-body h3 a { color: var(--text); }
.product-card .pc-body h3 a:hover { color: var(--accent); }
.product-card .pc-desc { font-size: .82rem; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card .pc-price { font-size: 1.15rem; font-weight: 800; color: var(--accent); }
.product-card .pc-foot { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); padding: 12px 16px; background: var(--light); }
.product-card .pc-view { font-weight: 700; font-size: .85rem; color: var(--primary); }

/* Rating */
.stars { color: #f5a623; font-size: .85rem; }
.rating-tx { font-size: .8rem; color: var(--muted); }

/* About preview */
.about-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-preview .ap-imgs { position: relative; }
.about-preview .ap-imgs img { border-radius: var(--radius); }
.about-preview .ap-imgs img + img { position: absolute; width: 45%; bottom: -30px; right: -12px; border: 6px solid #fff; box-shadow: var(--shadow-lg); }
.about-preview .exp-badge { position: absolute; top: -18px; right: 24px; background: var(--accent); color: #fff; padding: 14px 22px; border-radius: 12px; text-align: center; box-shadow: var(--shadow-lg); }
.about-preview .exp-badge strong { font-size: 1.6rem; display: block; font-family: var(--font-head); }
.about-preview .exp-badge span { font-size: .75rem; }
.ap-content h2 { margin-bottom: 16px; }
.ap-content p { margin-bottom: 14px; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 28px 0; }
.stat-box { background: var(--light); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; text-align: center; }
.stat-box strong { display: block; font-size: 1.7rem; color: var(--primary); font-family: var(--font-head); }
.stat-box span { font-size: .82rem; color: var(--muted); }

/* Features / Why choose */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; transition: all .25s; }
.feature-card:hover { box-shadow: var(--shadow-lg); border-color: var(--accent); transform: translateY(-4px); }
.feature-card .fc-ico { width: 52px; height: 52px; background: var(--primary); color: #fff; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; margin-bottom: 14px; }
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { font-size: .9rem; }

/* How we work / process */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.process-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; position: relative; text-align: center; }
.process-card .step-n { position: absolute; top: -16px; left: 22px; background: var(--accent); color: #fff; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: var(--font-head); box-shadow: var(--shadow); }
.process-card .pc-ico { font-size: 1.8rem; color: var(--primary); margin-bottom: 12px; }
.process-card h3 { font-size: 1rem; margin-bottom: 8px; }
.process-card p { font-size: .86rem; }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.testi-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; position: relative; }
.testi-card .quote-ico { color: var(--accent); font-size: 1.6rem; opacity: .3; margin-bottom: 8px; }
.testi-card p { font-style: italic; font-size: .95rem; margin-bottom: 16px; }
.testi-card .t-user { display: flex; align-items: center; gap: 12px; }
.testi-card .t-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; }
.testi-card .t-name { font-weight: 700; font-size: .92rem; }
.testi-card .t-role { font-size: .8rem; color: var(--muted); }

/* Blog cards */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all .25s; display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card .bc-img { aspect-ratio: 16/10; overflow: hidden; background: var(--light); }
.blog-card .bc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .bc-img img { transform: scale(1.05); }
.blog-card .bc-body { padding: 18px; display: flex; flex-direction: column; flex: 1; gap: 10px; }
.blog-card .bc-meta { font-size: .78rem; color: var(--muted); display: flex; gap: 14px; align-items: center; }
.blog-card .bc-cat { background: rgba(255,107,26,.1); color: var(--accent); font-weight: 700; padding: 4px 10px; border-radius: 30px; font-size: .72rem; }
.blog-card h3 { font-size: 1rem; }
.blog-card h3 a { color: var(--text); line-height: 1.35; }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card .bc-excerpt { font-size: .86rem; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card .bc-more { color: var(--accent); font-weight: 700; font-size: .86rem; }

/* FAQ */
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 10px; margin-bottom: 12px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 18px 22px; font-weight: 700; font-size: .98rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--text); font-family: var(--font); }
.faq-q i { transition: transform .3s; color: var(--accent); }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a p { padding: 0 22px 18px; font-size: .92rem; }

/* CTA band */
.cta-band { background: linear-gradient(100deg, var(--accent), #ff8a3d); color: #fff; border-radius: var(--radius); padding: 44px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.92); }
.cta-band .btn-white { color: var(--accent); }
.cta-band .btn-white:hover { color: var(--accent-dark); }

/* Contact cards */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 44px; }
.contact-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; transition: all .25s; }
.contact-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.contact-card i { font-size: 1.8rem; color: var(--accent); margin-bottom: 12px; }
.contact-card h3 { font-size: 1rem; margin-bottom: 8px; }
.contact-card p { font-size: .88rem; }

/* Forms */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 6px; }
.form-control { width: 100%; padding: 13px 15px; border: 1.5px solid var(--border); border-radius: 8px; font-size: .95rem; font-family: var(--font); transition: border .25s; background: #fff; }
.form-control:focus { outline: none; border-color: var(--accent); }
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control { appearance: auto; }
.form-wrap { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.form-note { font-size: .8rem; color: var(--muted); text-align: center; margin-top: 10px; }

/* Location styles */
.state-select-wrap { max-width: 560px; margin: 0 auto 36px; }
.location-group { margin-bottom: 28px; }
.location-group h3 { background: var(--primary); color: #fff; padding: 12px 18px; border-radius: 8px; font-size: .95rem; margin-bottom: 12px; display: flex; justify-content: space-between; }
.location-group h3 span { color: var(--accent); }
.location-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.location-links a { font-size: .87rem; padding: 8px 12px; background: var(--light); border: 1px solid var(--border); border-radius: 8px; color: var(--text); }
.location-links a:hover { background: rgba(255,107,26,.1); color: var(--accent); border-color: var(--accent); }

/* Product detail */
.pd-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1200px; margin: 0 auto; }
.pd-gallery { position: sticky; top: 96px; }
.pd-main-img { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--light); }
.pd-info h1 { margin-bottom: 10px; }
.pd-info .pd-cat-link { color: var(--accent); font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: 1px; }
.pd-rating { display: flex; align-items: center; gap: 8px; margin: 10px 0 18px; }
.pd-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 14px; }
.pd-price .now { font-size: 2.2rem; font-weight: 800; color: var(--accent); font-family: var(--font-head); }
.pd-price .mrp { color: var(--muted); text-decoration: line-through; }
.pd-meta { font-size: .85rem; color: var(--muted); margin-bottom: 24px; }
.pd-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.pd-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
.pd-trust div { background: var(--light); border: 1px solid var(--border); border-radius: 10px; padding: 14px; text-align: center; }
.pd-trust i { color: var(--accent); font-size: 1.3rem; margin-bottom: 6px; }
.pd-trust span { font-size: .8rem; font-weight: 600; color: var(--primary); }

/* Specs table */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table th { text-align: left; padding: 12px 14px; width: 40%; background: var(--light); font-size: .88rem; }
.spec-table td { padding: 12px 14px; font-size: .9rem; font-weight: 600; color: var(--primary); }

/* Tabs/content blocks */
.content-block { max-width: 900px; }
.content-block h3 { margin: 26px 0 12px; }
.content-block p { margin-bottom: 12px; }
.content-block ul { margin-bottom: 14px; }
.content-block ul li { padding-left: 24px; position: relative; margin-bottom: 8px; color: var(--text); }
.content-block ul li:before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; color: var(--accent); font-size: .85rem; }

/* Blog detail */
.blog-single { max-width: 860px; margin: 0 auto; }
.blog-single .bs-meta { display: flex; gap: 16px; align-items: center; font-size: .85rem; color: var(--muted); margin-bottom: 20px; flex-wrap: wrap; }
.blog-single .bs-featured { border-radius: var(--radius); overflow: hidden; margin-bottom: 28px; }
.blog-single h2 { margin: 30px 0 14px; font-size: 1.45rem; }
.blog-single p { margin-bottom: 16px; font-size: 1rem; }
.blog-single ul { margin: 0 0 18px 20px; list-style: disc; }
.blog-single ul li { margin-bottom: 8px; }
.blog-single blockquote { border-left: 4px solid var(--accent); background: var(--light); padding: 16px 22px; border-radius: 0 10px 10px 0; margin-bottom: 18px; font-style: italic; }
.share-btns { display: flex; gap: 10px; margin: 30px 0; align-items: center; }
.share-btns a { width: 40px; height: 40px; border-radius: 50%; background: var(--light); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--primary); }
.share-btns a:hover { background: var(--primary); color: #fff; }

/* Sidebar */
.sidebar-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; margin-bottom: 22px; }
.sidebar-card h3 { font-size: 1rem; margin-bottom: 14px; }
.sidebar-card ul li { margin-bottom: 6px; }
.sidebar-card ul li a { font-size: .88rem; color: var(--text); }
.sidebar-card ul li a:hover { color: var(--accent); }
.sidebar-card .recent-post { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; }
.sidebar-card .recent-post img { width: 64px; height: 48px; border-radius: 6px; object-fit: cover; }
.sidebar-card .recent-post a { font-size: .82rem; font-weight: 600; line-height: 1.35; color: var(--text); }
.sidebar-card .recent-post a:hover { color: var(--accent); }

/* Pagination */
.pagination ul { display: flex; justify-content: center; gap: 6px; margin-top: 40px; flex-wrap: wrap; }
.pagination a { display: flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 8px; border: 1px solid var(--border); border-radius: 8px; font-weight: 600; color: var(--text); }
.pagination a:hover, .pagination li.active a { background: var(--accent); color: #fff; border-color: var(--accent); }
.pagination li.dots { color: var(--muted); padding: 8px; }

/* Footer */
.site-footer { background: var(--primary-dark); color: #c3d0e0; padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 44px; }
.footer-column h4, .footer-col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer-column h4:after, .footer-col h4:after { content: ''; position: absolute; bottom: 0; left: 0; width: 34px; height: 3px; background: var(--accent); border-radius: 3px; }
.footer-about p { color: #9fb2c9; font-size: .9rem; margin-top: 16px; }
.footer-logo img { height: 48px; margin-bottom: 8px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: #9fb2c9; font-size: .9rem; }
.footer-col ul a:hover { color: var(--accent); }
.footer-contact li { color: #9fb2c9; font-size: .88rem; display: flex; gap: 10px; margin-bottom: 10px; }
.footer-contact i { color: var(--accent); margin-top: 4px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: #fff; }
.footer-social a:hover { background: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; font-size: .85rem; color: #8ba0b8; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom a { color: #8ba0b8; margin-left: 18px; }
.footer-bottom a:hover { color: var(--accent); }

/* Floating buttons */
.float-btns { position: fixed; right: 20px; bottom: 20px; display: flex; flex-direction: column; gap: 12px; z-index: 900; }
.float-btns a { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.3rem; box-shadow: var(--shadow-lg); transition: transform .25s; }
.float-btns a:hover { transform: scale(1.1); color: #fff; }
.float-btns .call-btn { background: var(--primary); }
.float-btns .wa-btn { background: #25d366; }

/* Quote popup */
.quote-popup { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(7, 30, 52, .6); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; z-index: 1200; padding: 20px; }
.quote-popup.open { display: flex; }
.quote-popup-box { background: #fff; border-radius: var(--radius); max-width: 420px; width: 100%; padding: 32px; position: relative; box-shadow: var(--shadow-lg); max-height: calc(100vh - 40px); overflow-y: auto; animation: popIn .25s ease; }
@keyframes popIn { from { transform: translateY(16px) scale(.97); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } }
.quote-popup-box h3 { margin-bottom: 8px; font-size: 1.35rem; }
.quote-popup-box p { font-size: .9rem; margin-bottom: 18px; }
.quote-close { position: absolute; top: 12px; right: 16px; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--muted); line-height: 1; transition: color .2s; }
.quote-close:hover { color: var(--accent); }
.popup-form input { width: 100%; padding: 13px 15px; border: 1.5px solid var(--border); border-radius: 8px; font-size: .95rem; font-family: var(--font); background: #fff; margin-bottom: 12px; }
.popup-form input:focus { outline: none; border-color: var(--accent); }
.privacy-note { display: block; text-align: center; font-size: .75rem; color: var(--muted); margin-top: 10px; }

/* Cart & checkout */
.cart-link { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border: 2px solid var(--border); border-radius: 50%; color: var(--primary); font-size: 1.05rem; transition: all .25s; }
.cart-link:hover { border-color: var(--accent); color: var(--accent); }
.cart-badge { position: absolute; top: -6px; right: -6px; background: var(--accent); color: #fff; font-size: .68rem; font-weight: 700; min-width: 18px; height: 18px; padding: 0 4px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; line-height: 1; }
.cart-badge.d-none { display: none; }
.nav-cart-mobile { display: none; }
.nav-cart-mobile .cart-badge { position: static; margin-left: 8px; }
.nav-cart-mobile a { display: flex; align-items: center; justify-content: center; padding: 10px; border: 1.5px solid var(--border); border-radius: 8px; font-weight: 700; }

.quote-box-wide { max-width: 560px; }
.popup-form select, .popup-form textarea { width: 100%; padding: 13px 15px; border: 1.5px solid var(--border); border-radius: 8px; font-size: .95rem; font-family: var(--font); background: #fff; margin-bottom: 12px; }
.popup-form select:focus, .popup-form textarea:focus { outline: none; border-color: var(--accent); }
.popup-form textarea { min-height: 90px; resize: vertical; }

.cart-item { display: grid; grid-template-columns: 84px 1fr auto auto; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--border); }
.cart-item:last-child { border-bottom: 0; }
.ci-img { width: 84px; height: 64px; border-radius: 8px; overflow: hidden; background: var(--light); }
.ci-img img { width: 100%; height: 100%; object-fit: cover; }
.ci-name { font-weight: 700; color: var(--primary); display: block; margin-bottom: 4px; }
.ci-name:hover { color: var(--accent); }
.ci-price { color: var(--muted); font-size: .88rem; margin-bottom: 8px; }
.ci-qty { display: inline-flex; align-items: center; gap: 4px; border: 1.5px solid var(--border); border-radius: 8px; padding: 3px; }
.qty-btn { width: 28px; height: 28px; border: 0; background: var(--light); border-radius: 6px; cursor: pointer; font-weight: 700; color: var(--primary); }
.qty-btn:hover { background: var(--accent); color: #fff; }
.qty-val { min-width: 24px; text-align: center; font-weight: 700; }
.ci-total { font-weight: 800; color: var(--primary); white-space: nowrap; }
.ci-remove { border: 0; background: none; color: var(--muted); cursor: pointer; font-size: 1rem; padding: 6px; }
.ci-remove:hover { color: #c0392b; }
.cart-empty { text-align: center; padding: 48px 20px; color: var(--muted); }
.cart-empty i { font-size: 3rem; color: var(--border); margin-bottom: 14px; }
.cart-empty p { margin-bottom: 18px; }
.summary-note { font-size: .85rem; color: var(--muted); margin-top: 14px; }

.ck-item { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px dashed var(--border); font-size: .92rem; }
.ck-name em { color: var(--accent); font-style: normal; font-weight: 700; }
.ck-price { font-weight: 700; white-space: nowrap; }
.ck-total { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; margin-top: 8px; font-size: 1.05rem; }

/* Product card & search helpers */
.pc-actions { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-top: 10px; }
.add-cart-btn { padding: 9px 14px; font-size: .84rem; }
.pd-qty { display: inline-flex; align-items: center; gap: 4px; border: 1.5px solid var(--border); border-radius: 8px; padding: 3px; }
.pd-qty .qty-val { min-width: 28px; }
.search-box { display: inline-flex; align-items: center; gap: 6px; }
.search-box input { width: 220px; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: .9rem; font-family: var(--font); }
.search-box input:focus { outline: none; border-color: var(--accent); }
.search-box button { border: 0; background: var(--primary); color: #fff; width: 42px; height: 42px; border-radius: 8px; cursor: pointer; }
.search-box button:hover { background: var(--accent); }

@media (max-width: 768px) {
    .nav-cart-mobile { display: block; }
    .cart-item { grid-template-columns: 64px 1fr auto; }
    .ci-total { display: none; }
}

/* Utility */
.text-center { text-align: center; }
.mt-2 { margin-top: 12px; } .mt-3 { margin-top: 18px; } .mt-4 { margin-top: 26px; }
.mb-2 { margin-bottom: 12px; } .mb-3 { margin-bottom: 18px; } .mb-4 { margin-bottom: 26px; }
.show-all { text-align: center; margin-top: 36px; }
.alert { padding: 14px 20px; border-radius: 8px; margin-bottom: 18px; font-weight: 600; font-size: .92rem; }
.alert-success { background: #e6f7ec; color: #127a3a; border: 1px solid #b8e6c8; }
.alert-danger { background: #fdeaea; color: #c0392b; border: 1px solid #f5c6c6; }

/* Layout helpers */
.two-col { display: grid; grid-template-columns: 1fr 320px; gap: 36px; align-items: start; }

/* Responsive */
@media (max-width: 1200px) {
    .header-inner { gap: 12px; }
    .main-nav a { padding: 10px 9px; font-size: .86rem; }
    .header-cta a.cta-btn { display: none; }
}
@media (max-width: 1024px) {
    .cat-grid, .product-grid, .features-grid, .process-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-img { display: none; }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; box-shadow: var(--shadow); }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; padding: 12px; }
    .main-nav .has-dropdown { position: static; }
    .main-nav ul.dropdown { position: static; box-shadow: none; border: 0; padding: 0 0 0 16px; min-width: 0; max-height: none; overflow: visible; }
    .main-nav .has-dropdown:hover > ul.dropdown, .main-nav .has-dropdown.open > ul.dropdown { display: flex; }
    .cat-grid, .product-grid, .features-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-grid, .blog-grid { grid-template-columns: 1fr; }
    .about-preview, .pd-wrap { grid-template-columns: 1fr; }
    .hero-stats { gap: 18px; flex-wrap: wrap; }
    .strip-grid { grid-template-columns: repeat(2, 1fr); }
    .location-links { grid-template-columns: repeat(2, 1fr); }
    .two-col { grid-template-columns: 1fr; }
    .header-cta { display: none; }
    .topbar-inner { justify-content: center; }
}
@media (max-width: 520px) {
    .cat-grid, .product-grid, .features-grid, .process-grid, .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
}