/* ═══════════════════════════════════════════════════
   PHENOM V4 — style.css
   Primary: #F6721D  |  Font: Poppins
═══════════════════════════════════════════════════ */

/* ── Fonts ── */
@font-face { font-family:'Poppins'; src:url('../fonts/Poppins/Poppins-Regular.ttf');   font-weight:400; }
@font-face { font-family:'Poppins'; src:url('../fonts/Poppins/Poppins-Medium.ttf');    font-weight:500; }
@font-face { font-family:'Poppins'; src:url('../fonts/Poppins/Poppins-SemiBold.ttf');  font-weight:600; }
@font-face { font-family:'Poppins'; src:url('../fonts/Poppins/Poppins-Bold.ttf');      font-weight:700; }
@font-face { font-family:'Poppins'; src:url('../fonts/Poppins/Poppins-ExtraBold.ttf'); font-weight:800; }

/* ── Variables ── */
:root {
    --brand:       #F6721D;
    --brand-dark:  #d45c0e;
    --brand-light: #fff4ed;
    --dark:        #111;
    --mid:         #333;
    --soft:        #666;
    --muted:       #999;
    --border:      #e5e5e5;
    --bg:          #f7f7f7;
    --white:       #fff;
    --success:     #1a9e5c;
    --danger:      #d63939;
    --radius:      10px;
    --shadow:      0 2px 16px rgba(0,0,0,0.07);
    --shadow-md:   0 4px 28px rgba(0,0,0,0.10);
    --transition:  all 0.28s cubic-bezier(0.4,0,0.2,1);
    --nav-h:       62px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; }
body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--mid);
    background: var(--white);
    margin: 0;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; }
section { position: relative; }

/* ── Utilities ── */
.text-brand { color: var(--brand) !important; }
.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--brand);
    display: block;
    margin-bottom: 8px;
}
.section-heading {
    font-size: clamp(20px, 2.8vw, 30px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 12px;
}
.section-sub {
    font-size: 14px;
    color: var(--soft);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}
.section-text {
    font-size: 14px;
    color: var(--soft);
    line-height: 1.75;
}

/* ── Buttons ── */
.btn-brand {
    background: var(--brand);
    color: var(--white) !important;
    border: 2px solid var(--brand);
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 13.5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}
.btn-brand:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(246,114,29,0.3);
}
.btn-outline-brand {
    background: transparent;
    color: var(--brand) !important;
    border: 1.5px solid var(--brand);
    border-radius: 50px;
    padding: 9px 22px;
    font-weight: 600;
    font-size: 13.5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}
.btn-outline-brand:hover {
    background: var(--brand);
    color: var(--white) !important;
    transform: translateY(-1px);
}
.btn-nav-cta {
    background: var(--brand);
    color: var(--white) !important;
    border: none;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-nav-cta:hover { background: var(--brand-dark); color: var(--white) !important; }

/* ── Scroll animations ── */
.fade-up, .fade-left, .fade-right {
    opacity: 0;
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up   { transform: translateY(32px); }
.fade-left { transform: translateX(-40px); }
.fade-right{ transform: translateX(40px); }
.fade-up.visible, .fade-left.visible, .fade-right.visible {
    opacity: 1; transform: none;
}

/* ═══════════════════════════════════════════════
   PRELOADER
═══════════════════════════════════════════════ */
#preloader {
    position: fixed; inset: 0;
    background: var(--white);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
#preloader.done { opacity: 0; visibility: hidden; }
.preloader-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.preloader-logo  { max-width: 200px; object-fit: contain; }
.preloader-bar   { width: 160px; height: 3px; background: var(--border); border-radius: 3px; overflow: hidden; }
.preloader-fill  {
    height: 100%;
    background: var(--brand);
    border-radius: 3px;
    animation: preload 1.4s ease forwards;
}
@keyframes preload { 0%{width:0} 70%{width:90%} 100%{width:100%} }

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
.phenom-nav {
    background: transparent;
    padding: 16px 0;
    transition: var(--transition);
    z-index: 1000;
}
.phenom-nav.scrolled {
    background: var(--white);
    padding: 10px 0;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
/* Logo — dark version shown when scrolled, light version on transparent bg */
.nav-logo {
    width: 120px;
    object-fit: contain;
    transition: filter 0.28s ease;
    /* White logo on dark/transparent navbar */
    filter: brightness(0) invert(1);
}
/* Revert to original colour once navbar scrolled to white bg */
.phenom-nav.scrolled .nav-logo {
    filter: none;
}
.phenom-nav-link {
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255,255,255,0.88) !important;
    padding: 8px 12px !important;
    border-radius: 6px;
    transition: var(--transition);
}
.phenom-nav.scrolled .phenom-nav-link { color: var(--mid) !important; }
.phenom-nav-link:hover,
.phenom-nav-link.active { color: var(--brand) !important; }

/* Dropdown */
.phenom-dropdown {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 8px;
    min-width: 220px;
}
.phenom-dropdown-item {
    font-size: 13px;
    padding: 9px 14px;
    border-radius: 6px;
    color: var(--mid) !important;
    transition: var(--transition);
}
.phenom-dropdown-item:hover { background: var(--brand-light); color: var(--brand) !important; }
.phenom-dropdown-viewall { color: var(--brand) !important; font-weight: 600; }

.phenom-toggler { border: none; background: none; display: flex; flex-direction: column; gap: 5px; padding: 4px; cursor: pointer; }
.toggler-icon { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.9); border-radius: 2px; transition: var(--transition); }
.phenom-nav.scrolled .toggler-icon { background: var(--dark); }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero-section {
    min-height: 90vh;
    background: linear-gradient(135deg, #0d2035 0%, #0f2f1a 50%, #1a1000 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-overlay {
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse at 70% 40%, rgba(246,114,29,0.16) 0%, transparent 60%),
        radial-gradient(ellipse at 15% 80%, rgba(16,90,42,0.18) 0%, transparent 55%);
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-container { padding-top: 86px; padding-bottom: 48px; }
.hero-label {
    display: inline-flex; align-items: center;
    background: rgba(246,114,29,0.15);
    border: 1px solid rgba(246,114,29,0.3);
    color: var(--brand);
    border-radius: 50px;
    padding: 5px 16px;
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    margin-bottom: 20px;
}
.hero-title {
    font-size: clamp(26px, 4vw, 48px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 14px;
}
.hero-accent { color: var(--brand); }
.hero-tagline {
    font-size: clamp(13px, 1.5vw, 15px);
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 28px;
}
.hero-tagline strong { color: var(--white); }
.hero-actions {
    display: flex; flex-wrap: wrap; gap: 12px;
    margin-bottom: 36px;
}
.btn-hero        { padding: 12px 26px; font-size: 14px; }
.btn-hero-outline {
    padding: 11px 24px; font-size: 14px;
    border: 1.5px solid rgba(255,255,255,0.4);
    color: var(--white) !important;
    border-radius: 50px;
    display: inline-flex; align-items: center; gap: 6px;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    background: transparent;
}
.btn-hero-outline:hover { border-color: var(--brand); color: var(--brand) !important; }
.btn-hero-calc {
    padding: 11px 24px; font-size: 14px;
    border: 1.5px solid rgba(246,114,29,0.5);
    background: rgba(246,114,29,0.12);
    color: var(--white) !important;
    border-radius: 50px;
    display: inline-flex; align-items: center; gap: 6px;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    backdrop-filter: blur(4px);
}
.btn-hero-calc:hover { background: var(--brand); border-color: var(--brand); transform: translateY(-1px); }
.hero-stats {
    display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
}
.hero-stat { text-align: center; }
.stat-val { font-size: 26px; font-weight: 800; color: var(--brand); line-height: 1; display: inline-block; }
.stat-unit { font-size: 14px; color: var(--brand); font-weight: 700; }
.stat-label { display: block; font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 3px; }
.hero-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.12); }
.hero-scroll-hint {
    position: absolute; bottom: 24px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    color: rgba(255,255,255,0.35); font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
}
.scroll-dot { width: 5px; height: 5px; background: var(--brand); border-radius: 50%; animation: bounce 1.6s infinite; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(7px)} }
.hero-particle {
    position: absolute; border-radius: 50%;
    background: rgba(246,114,29,0.5);
    animation: floatUp linear infinite;
}
@keyframes floatUp { 0%{transform:translateY(100vh);opacity:0} 10%{opacity:.8} 90%{opacity:.3} 100%{transform:translateY(-10vh);opacity:0} }

/* ═══════════════════════════════════════════════
   PAGE BANNER
═══════════════════════════════════════════════ */
.page-banner {
    padding: 120px 0 52px;
    background: linear-gradient(135deg, #0d2035 0%, #1a1000 100%);
    position: relative; overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 60% 50%, rgba(246,114,29,0.13) 0%, transparent 65%);
}
.page-banner-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.15); }
.page-banner-title {
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 800; color: var(--white);
    margin-bottom: 10px; position: relative;
}
.breadcrumb { position: relative; }
.breadcrumb-item, .breadcrumb-item a { color: rgba(255,255,255,0.55); font-size: 13px; }
.breadcrumb-item.active { color: var(--brand); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.25); }

/* ═══════════════════════════════════════════════
   BRIEF ABOUT (home)
═══════════════════════════════════════════════ */
.section-brief { background: var(--white); }
.brief-img-wrap { position: relative; max-width: 500px; }
.brief-main-img { width: 100%; border-radius: 12px; box-shadow: var(--shadow-md); min-height: 320px; object-fit: cover; }
.brief-badge {
    position: absolute; bottom: -16px; right: -16px;
    background: var(--brand); color: var(--white);
    border-radius: 12px; padding: 14px 18px; text-align: center;
    box-shadow: 0 6px 20px rgba(246,114,29,0.35);
}
.brief-badge-num { display: block; font-size: 28px; font-weight: 800; line-height: 1; }
.brief-badge-txt { font-size: 11px; font-weight: 600; opacity: 0.88; line-height: 1.3; }
.brief-stat-val   { font-size: 22px; font-weight: 800; color: var(--brand); }
.brief-stat-label { font-size: 11px; color: var(--soft); text-transform: uppercase; letter-spacing: 1px; }

/* ═══════════════════════════════════════════════
   PRODUCT CARDS (home snippet)
═══════════════════════════════════════════════ */
.section-products-home { background: var(--bg); }
.prod-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex; flex-direction: column;
}
.prod-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(246,114,29,0.3); }
.prod-card-img {
    height: 140px;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.prod-card-img img { max-height: 140px; object-fit: contain; padding: 12px; }
.prod-icon-fallback {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: var(--brand-light);
    font-size: 40px; color: var(--brand);
}
.prod-card-body { padding: 14px 16px; flex: 1; }
.prod-model   { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.prod-name    { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.prod-price   { font-size: 17px; font-weight: 800; color: var(--brand); }
.prod-price-custom { font-size: 14px; font-weight: 600; color: var(--soft); }
.prod-instalment { font-size: 11.5px; color: var(--soft); margin-top: 3px; }
.prod-card-footer { padding: 0 16px 16px; }

/* ═══════════════════════════════════════════════
   PRODUCTS PAGE — full cards
═══════════════════════════════════════════════ */
.section-products { background: var(--bg); padding-top: 0; }
.prod-card-full {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex; flex-direction: column;
}
.prod-card-full:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(246,114,29,0.25); }
.prod-card-full .prod-card-body { padding: 16px 18px; flex: 1; }
.prod-desc-short { font-size: 12.5px; color: var(--soft); margin: 6px 0 10px; line-height: 1.6; }
.prod-feats-preview { display: flex; flex-direction: column; gap: 4px; }
.prod-feat-tag { font-size: 12px; color: var(--soft); }
.prod-feat-tag strong { color: var(--mid); }
.prod-price-row { display: flex; align-items: baseline; gap: 8px; }
.prod-inst-tag { font-size: 11.5px; color: var(--muted); }
.prod-card-full .prod-card-footer { padding: 0 18px 18px; }

/* Pagination */
.phenom-pagination .page-link {
    border-radius: 8px !important;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: var(--mid);
    border-color: var(--border);
    margin: 0 2px;
}
.phenom-pagination .page-item.active .page-link {
    background: var(--brand); border-color: var(--brand); color: var(--white);
}
.phenom-pagination .page-link:hover { color: var(--brand); background: var(--brand-light); }

/* ═══════════════════════════════════════════════
   PRODUCT DETAIL PAGE
═══════════════════════════════════════════════ */
.section-product-detail { padding-top: 0; }
.prod-detail-img-wrap {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 32px;
    display: flex; align-items: center; justify-content: center;
    min-height: 280px;
    border: 1px solid var(--border);
}
.prod-detail-img-wrap img { max-height: 260px; object-fit: contain; }
.prod-detail-icon { font-size: 72px; color: var(--brand); }
.prod-price-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 22px;
    box-shadow: var(--shadow);
}
.ppc-label  { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; }
.ppc-price  { font-size: 24px; font-weight: 800; color: var(--brand); }
.ppc-custom { font-size: 16px; color: var(--soft); }
.ppc-note   { font-size: 12px; color: var(--muted); margin-top: 4px; }
.ppc-inst   { font-size: 12.5px; color: var(--soft); margin-top: 6px; line-height: 1.5; }
.prod-detail-model { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px; }
.prod-detail-name  { font-size: clamp(20px, 2.5vw, 28px); font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.prod-detail-desc  { font-size: 14px; color: var(--soft); line-height: 1.75; }
.prod-detail-section-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--brand); }
.prod-specs-table { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.prod-spec-row {
    display: flex;
    border-bottom: 1px solid var(--border);
    font-size: 13.5px;
}
.prod-spec-row:last-child { border-bottom: none; }
.prod-spec-label { width: 40%; padding: 10px 14px; font-weight: 600; color: var(--mid); background: var(--bg); }
.prod-spec-val   { width: 60%; padding: 10px 14px; color: var(--mid); }
.prod-loads-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.prod-load-tag {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 12.5px;
    color: var(--mid);
}
.prod-meta-note { font-size: 13px; color: var(--muted); font-style: italic; }

/* ═══════════════════════════════════════════════
   FIND BEST FIT
═══════════════════════════════════════════════ */
.section-find-fit { background: var(--white); }
.find-fit-list { list-style: none; padding: 0; margin: 0; }
.find-fit-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--mid); padding: 6px 0; }
.find-fit-list li .bi { color: var(--brand); font-size: 16px; }
.find-fit-card {
    background: linear-gradient(135deg, #0d2035, #0f2f1a);
    border-radius: 16px;
    padding: 36px 32px;
    display: flex; align-items: center; justify-content: center;
    gap: 0; flex-wrap: wrap; gap: 8px;
    min-height: 200px;
}
.ffc-step { display: flex; align-items: center; gap: 10px; }
.ffc-num {
    width: 32px; height: 32px; border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700;
}
.ffc-step.active .ffc-num { border-color: var(--brand); color: var(--brand); background: rgba(246,114,29,0.12); }
.ffc-text { font-size: 13px; color: rgba(255,255,255,0.5); }
.ffc-step.active .ffc-text { color: rgba(255,255,255,0.85); }
.ffc-line { width: 24px; height: 1px; background: rgba(255,255,255,0.1); }
.find-fit-banner {
    background: var(--brand-light);
    border: 1px solid rgba(246,114,29,0.2);
    border-radius: 14px;
    padding: 28px 32px;
}
.ffb-title { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.ffb-sub   { font-size: 14px; color: var(--soft); margin: 0; }

/* ═══════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════ */
.section-services { background: var(--bg); }
.svc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 22px;
    transition: var(--transition);
}
.svc-card:hover { border-color: rgba(246,114,29,0.3); box-shadow: var(--shadow); transform: translateY(-3px); }
.svc-icon { font-size: 24px; color: var(--brand); margin-bottom: 14px; }
.svc-title { font-size: 14.5px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.svc-text  { font-size: 13px; color: var(--soft); line-height: 1.7; margin: 0; }

/* ═══════════════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════════════ */
.section-why { background: var(--white); }
.why-item {
    padding: 24px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    height: 100%;
}
.why-item:hover { border-color: rgba(246,114,29,0.25); box-shadow: var(--shadow); }
.why-icon  { font-size: 22px; color: var(--brand); margin-bottom: 12px; }
.why-title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 7px; }
.why-text  { font-size: 13px; color: var(--soft); line-height: 1.7; margin: 0; }

/* ═══════════════════════════════════════════════
   CONTACT BRIEF (home)
═══════════════════════════════════════════════ */
.section-contact-brief { background: var(--bg); }
.contact-brief-inner {
    background: linear-gradient(135deg, #0d2035, #0f2f1a);
    border-radius: 16px;
    padding: 36px 40px;
}
.cb-heading { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.cb-sub     { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.cb-contacts { display: flex; flex-wrap: wrap; gap: 16px; }
.cb-contact-item {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; color: rgba(255,255,255,0.8);
    font-weight: 500;
}
.cb-contact-item .bi { color: var(--brand); }
.cb-contact-item:hover { color: var(--brand); }

/* ═══════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════ */
.section-contact-page { padding-top: 0; }
.contact-info-block { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item  { display: flex; align-items: flex-start; gap: 14px; }
.ci-icon {
    width: 38px; height: 38px; flex-shrink: 0;
    background: var(--brand); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 16px;
    box-shadow: 0 3px 12px rgba(246,114,29,0.25);
}
.ci-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--brand); margin-bottom: 3px; }
.ci-val   { font-size: 13.5px; color: var(--mid); line-height: 1.55; }
.ci-val a { color: var(--mid); }
.ci-val a:hover { color: var(--brand); }
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}
.contact-form-wrap .form-control {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    transition: var(--transition);
}
.contact-form-wrap .form-control:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(246,114,29,0.1); outline: none; }

/* ═══════════════════════════════════════════════
   CALCULATOR MODAL
═══════════════════════════════════════════════ */
.calc-hint {
    background: rgba(246,114,29,0.06);
    border: 1px solid rgba(246,114,29,0.18);
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 13px; color: var(--soft); line-height: 1.6;
}
.calc-hint .bi { color: var(--brand); }
#calcLoadList { display: flex; flex-direction: column; gap: 4px; max-height: 360px; overflow-y: auto; }
#calcLoadList::-webkit-scrollbar { width: 3px; }
#calcLoadList::-webkit-scrollbar-thumb { background: rgba(246,114,29,0.3); border-radius: 3px; }
.calc-load-item {
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px; padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 8px; background: var(--white);
    transition: var(--transition); flex-wrap: wrap;
}
.calc-load-item:has(.calc-chk:checked) { border-color: var(--brand); background: var(--brand-light); }
.calc-load-check {
    display: flex; align-items: center; gap: 10px;
    cursor: pointer; flex: 1; min-width: 0;
}
.calc-load-check input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--brand); cursor: pointer; flex-shrink: 0; }
.calc-load-name { font-size: 13.5px; font-weight: 600; color: var(--dark); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.calc-load-avg  { font-size: 11px; color: var(--muted); flex-shrink: 0; }
.calc-load-input-wrap { display: flex; align-items: center; gap: 5px; flex-shrink: 0; }
.calc-va-input {
    width: 90px; border: 1px solid var(--border);
    border-radius: 7px; padding: 6px 10px;
    font-family: 'Poppins', sans-serif; font-size: 13px;
    text-align: right; transition: var(--transition); background: var(--white);
}
.calc-va-input:focus { border-color: var(--brand); outline: none; }
.calc-va-label { font-size: 12px; color: var(--muted); font-weight: 600; }
.calc-total-bar {
    display: flex; align-items: center; justify-content: space-between;
    background: #0d2035; color: var(--white);
    border-radius: 9px; padding: 12px 16px; margin-top: 14px;
}
.calc-total-bar span { font-size: 13px; color: rgba(255,255,255,0.6); }
.calc-total-val { font-size: 18px; font-weight: 800; color: var(--brand) !important; }
.calc-result-summary {
    background: #0d2035; color: rgba(255,255,255,0.7);
    border-radius: 9px; padding: 12px 16px; font-size: 13.5px; margin-bottom: 14px;
}
.calc-result-summary strong { color: var(--brand); }
.calc-result-list { display: flex; flex-direction: column; gap: 12px; }
.calc-result-card {
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: 16px; background: var(--white);
    position: relative; overflow: hidden; transition: var(--transition);
}
.calc-result-card:hover { border-color: rgba(246,114,29,0.3); box-shadow: var(--shadow); }
.calc-result-card-best { border-color: var(--brand); background: var(--brand-light); }
.calc-best-badge {
    position: absolute; top: 10px; right: 10px;
    background: var(--brand); color: var(--white);
    border-radius: 50px; padding: 2px 10px;
    font-size: 11px; font-weight: 700;
}
.calc-res-top { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.calc-res-icon {
    width: 40px; height: 40px;
    background: var(--brand-light); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--brand); flex-shrink: 0;
}
.calc-result-card-best .calc-res-icon { background: rgba(246,114,29,0.2); }
.calc-res-info { flex: 1; min-width: 0; }
.calc-res-title    { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.calc-res-capacity { font-size: 12.5px; color: var(--soft); }
.calc-res-capacity strong { color: var(--brand); }
.calc-res-price-block { text-align: right; flex-shrink: 0; }
.calc-res-price-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); }
.calc-res-price       { font-size: 18px; font-weight: 800; color: var(--brand); line-height: 1.1; }
.calc-res-inst        { font-size: 11.5px; color: var(--soft); margin-top: 2px; }
.calc-res-actions     { display: flex; gap: 8px; flex-wrap: wrap; }
.calc-no-result { text-align: center; padding: 28px 12px; color: var(--soft); }
.calc-no-result .bi { font-size: 2.2rem; color: var(--brand); display: block; margin-bottom: 10px; }
.calc-no-result p { font-size: 14px; }

/* ═══════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════ */
.section-about-full { padding-top: 0; background: var(--white); }
.about-stat-val   { font-size: 26px; font-weight: 800; color: var(--brand); }
.about-stat-label { font-size: 11px; color: var(--soft); text-transform: uppercase; letter-spacing: 1px; }
.vm-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; }
.vm-icon { font-size: 26px; color: var(--brand); margin-bottom: 14px; }
.vm-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.vm-text  { font-size: 14px; color: var(--soft); line-height: 1.75; margin: 0; }
.epc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.epc-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--mid); }
.epc-list li .bi { color: var(--brand); font-size: 16px; flex-shrink: 0; }
.compliance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.comp-item {
    background: var(--bg); border: 1px solid var(--border);
    border-radius: 8px; padding: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 800; color: var(--dark);
    letter-spacing: 1px; transition: var(--transition);
}
.comp-item:hover { border-color: var(--brand); color: var(--brand); }
.value-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 22px 20px;
    transition: var(--transition);
}
.value-card:hover { border-color: rgba(246,114,29,0.3); box-shadow: var(--shadow); }
.value-title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.value-text  { font-size: 13px; color: var(--soft); line-height: 1.7; margin: 0; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.phenom-footer { background: #111; }
.footer-top { padding: 56px 0 42px; }
.footer-logo { width: 100px; object-fit: contain; }
.footer-about { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.75; max-width: 280px; }
.footer-socials { display: flex; gap: 8px; }
.footer-social-btn {
    width: 34px; height: 34px; border-radius: 8px;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.5);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; transition: var(--transition);
}
.footer-social-btn:hover { background: var(--brand); color: var(--white); }
.footer-heading {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; color: var(--white); margin-bottom: 16px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer-links a:hover { color: var(--brand); padding-left: 3px; }
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li {
    display: flex; align-items: flex-start; gap: 9px;
    font-size: 13px; color: rgba(255,255,255,0.45);
    margin-bottom: 10px; line-height: 1.55;
}
.footer-contact-list li .bi { color: var(--brand); font-size: 13px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-list a { color: rgba(255,255,255,0.45); }
.footer-contact-list a:hover { color: var(--brand); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 18px 0;
}
.footer-bottom span { font-size: 12.5px; color: rgba(255,255,255,0.3); }
.footer-dev a { color: rgba(255,255,255,0.3); }

/* ═══════════════════════════════════════════════
   MODAL global overrides
═══════════════════════════════════════════════ */
.modal-content { border: none; border-radius: 14px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.modal-content .form-control {
    border: 1px solid var(--border); border-radius: 8px;
    padding: 10px 14px; font-family: 'Poppins', sans-serif;
    font-size: 13.5px; transition: var(--transition);
}
.modal-content .form-control:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(246,114,29,0.1); outline: none; }
.modal-content .form-label { font-size: 12.5px; font-weight: 600; color: var(--soft); margin-bottom: 5px; }

/* Toast */
.toast-container { z-index: 9999; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 991px) {
    #navbarMain {
        background: var(--white); border-radius: var(--radius);
        padding: 14px; margin-top: 8px;
        box-shadow: var(--shadow-md);
    }
    .phenom-nav-link { color: var(--mid) !important; }
    .hero-stat-divider { display: none; }
    .brief-img-wrap { margin-bottom: 36px; }
    .contact-brief-inner { padding: 24px; }
}
@media (max-width: 767px) {
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .btn-hero, .btn-hero-outline, .btn-hero-calc { width: 100%; justify-content: center; }
    .contact-form-wrap { padding: 22px; }
    .find-fit-card { padding: 24px 18px; }
    .calc-load-avg { display: none; }
    .calc-va-input { width: 76px; }
    .prod-spec-row { flex-direction: column; }
    .prod-spec-label, .prod-spec-val { width: 100%; }
}


/* ═══════════════════════════════════════════════
   SHOP — products page
═══════════════════════════════════════════════ */
.shop-layout { background: var(--bg); min-height: 60vh; }

/* Toolbar */
.shop-toolbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    position: sticky;
    top: var(--nav-h);
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.shop-toolbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.shop-search { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 200px; max-width: 440px; }
.shop-search-wrap {
    position: relative;
    flex: 1;
}
.shop-search-input {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 8px 36px 8px 36px;
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    color: var(--mid);
    transition: var(--transition);
    background: var(--white);
}
.shop-search-input:focus { border-color: var(--brand); outline: none; box-shadow: 0 0 0 3px rgba(246,114,29,0.1); }
.shop-search-icon {
    position: absolute; left: 13px; top: 50%;
    transform: translateY(-50%);
    color: var(--muted); font-size: 14px; pointer-events: none;
}
.shop-search-clear {
    position: absolute; right: 12px; top: 50%;
    transform: translateY(-50%);
    color: var(--muted); font-size: 13px;
    transition: var(--transition);
}
.shop-search-clear:hover { color: var(--danger); }
.shop-toolbar-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.shop-count { font-size: 13px; color: var(--soft); white-space: nowrap; }
.shop-view-toggle { display: flex; gap: 4px; }
.shop-view-btn {
    width: 34px; height: 34px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    color: var(--muted);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; cursor: pointer;
    transition: var(--transition);
}
.shop-view-btn:hover { border-color: var(--brand); color: var(--brand); }
.shop-view-btn.active { background: var(--brand); border-color: var(--brand); color: var(--white); }

/* Empty state */
.shop-empty { background: var(--white); border-radius: var(--radius); padding: 48px 24px; }

/* List view card */
.prod-list-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    gap: 0;
    overflow: hidden;
    transition: var(--transition);
}
.prod-list-card:hover { border-color: rgba(246,114,29,0.25); box-shadow: var(--shadow); }
.plc-img {
    width: 140px;
    flex-shrink: 0;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    padding: 16px;
}
.plc-img img { max-height: 110px; object-fit: contain; }
.prod-icon-fallback-sm {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px; color: var(--brand);
}
.plc-body {
    flex: 1;
    padding: 16px 18px;
    min-width: 0;
}
.plc-price {
    flex-shrink: 0;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    border-left: 1px solid var(--border);
    min-width: 140px;
}

/* ═══════════════════════════════════════════════
   BESPOKE / GET A QUOTE section
═══════════════════════════════════════════════ */
.section-bespoke { background: var(--white); }
.bespoke-banner {
    background: linear-gradient(135deg, #0d2035, #0f2f1a);
    border-radius: 16px;
    padding: 40px 44px;
}
.bespoke-icon { font-size: 28px; color: var(--brand); margin-bottom: 12px; }
.bespoke-title {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}
.bespoke-sub { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 0; }
.bespoke-steps { display: flex; flex-direction: column; gap: 14px; }
.bespoke-step {
    display: flex; align-items: center; gap: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 12px 16px;
}
.bs-num {
    width: 28px; height: 28px;
    background: var(--brand);
    border-radius: 50%;
    color: var(--white);
    font-size: 12px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.bs-txt { font-size: 13.5px; color: rgba(255,255,255,0.8); }

/* ═══════════════════════════════════════════════
   CUSTOM QUOTE MODAL
═══════════════════════════════════════════════ */
.quote-loads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 8px;
    max-height: 180px;
    overflow-y: auto;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg);
}
.quote-loads-grid::-webkit-scrollbar { width: 3px; }
.quote-loads-grid::-webkit-scrollbar-thumb { background: rgba(246,114,29,0.3); border-radius: 3px; }
.quote-load-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: var(--mid);
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 6px;
    transition: var(--transition);
}
.quote-load-item:hover { background: var(--brand-light); color: var(--brand); }
.quote-load-item input[type="checkbox"] { accent-color: var(--brand); width: 15px; height: 15px; cursor: pointer; flex-shrink: 0; }
.quote-whatsapp-note {
    background: rgba(37,211,102,0.08);
    border: 1px solid rgba(37,211,102,0.2);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 13px;
    color: #128c7e;
    display: flex;
    align-items: center;
    gap: 8px;
}
.quote-whatsapp-note .bi-whatsapp { font-size: 18px; color: #25d366; }
.quote-whatsapp-note a { color: #128c7e; font-weight: 600; text-decoration: underline; }

/* ═══════════════════════════════════════════════
   CONTACT PAGE — extra fields
═══════════════════════════════════════════════ */
.cf-form-title { font-size: 17px; font-weight: 700; color: var(--dark); }
.cf-form-sub   { font-size: 13px; color: var(--soft); }
.contact-quote-cta { border-top: 1px solid var(--border); padding-top: 20px; }
.cqc-label { font-size: 12px; font-weight: 600; color: var(--soft); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }

/* ═══════════════════════════════════════════════
   RESPONSIVE — shop
═══════════════════════════════════════════════ */
@media (max-width: 767px) {
    .shop-toolbar-inner { flex-direction: column; align-items: stretch; }
    .shop-search { max-width: 100%; }
    .plc-img { width: 100px; }
    .plc-price { min-width: 110px; }
    .bespoke-banner { padding: 28px 22px; }
    .quote-loads-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .prod-list-card { flex-direction: column; }
    .plc-img { width: 100%; height: 120px; }
    .plc-price { border-left: none; border-top: 1px solid var(--border); align-items: flex-start; }
}


/* ═══════════════════════════════════════════════
   POWER OPTION CARDS (Find My System + Bespoke)
═══════════════════════════════════════════════ */
.power-option-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition);
}
.power-option-card:hover {
    border-color: rgba(246,114,29,0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.power-option-dark {
    background: linear-gradient(135deg, #0d2035, #0f2f1a);
    border-color: transparent;
    color: var(--white);
}
.power-option-dark:hover {
    border-color: rgba(246,114,29,0.4);
    transform: translateY(-3px);
}
.poc-icon {
    font-size: 28px;
    color: var(--brand);
}
.poc-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
}
.power-option-dark .poc-title { color: var(--white); }
.poc-text {
    font-size: 14px;
    color: var(--soft);
    line-height: 1.75;
    margin: 0;
}
.power-option-dark .poc-text { color: rgba(255,255,255,0.65); }
.poc-steps {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.poc-steps li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    color: var(--mid);
}
.poc-steps-light li { color: rgba(255,255,255,0.75); }
.poc-step-num {
    width: 24px; height: 24px;
    background: var(--brand);
    color: var(--white);
    border-radius: 50%;
    font-size: 11px; font-weight: 800;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   ADMIN — Product image upload widget
═══════════════════════════════════════════════ */
.prod-img-upload-wrap {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.prod-img-preview {
    width: 160px;
    height: 140px;
    flex-shrink: 0;
    border: 1.5px dashed var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    overflow: hidden;
    transition: var(--transition);
}
.prod-img-preview:has(img[src]:not([src=""])) {
    border-style: solid;
    border-color: var(--brand);
}
.prod-img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 12px;
    text-align: center;
    padding: 16px;
}
.prod-img-placeholder .bi { font-size: 28px; color: var(--border); }
.prod-img-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}
.prod-img-current {
    font-size: 12px;
    color: var(--soft);
}
.prod-img-current code {
    background: var(--brand-light);
    color: var(--brand);
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 11px;
    word-break: break-all;
}
