/*
===========================================
  MONARCH GATES — STYLESHEET (CLEAN)
  Palette:
    --royal:      #1A3FC4  (primary royal blue)
    --royal-dark: #1230A0  (hover / dark)
    --royal-mid:  #3358D4  (mid tone)
    --deep-navy:  #0a1438
    --light-tint: #E8EDFA
    --accent:     #5B80E0, #8AA4E8
    --grey:       #6b7280  (secondary text)
    --grey-light: #f4f5f7  (bg sections)
    --grey-mid:   #e5e7eb  (borders)
    --white:      #ffffff
    --black:      #111827  (body text)
===========================================
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', sans-serif;
    color: #111827;
    line-height: 1.7;
    background: #fff;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section { padding: 80px 0; }

.hidden { display: none !important; }

/* ===== TOP BAR ===== */
.top-bar {
    background: linear-gradient(90deg, #0a1438 0%, #1A3FC4 60%, #1230A0 100%);
    color: #c8d5f0;
    font-size: 0.78rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: max-height 0.3s ease, opacity 0.3s ease;
    max-height: 44px;
    overflow: hidden;
    opacity: 1;
    position: relative;
}
/* Subtle moving shimmer line */
.top-bar::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
    animation: tb-shimmer 4s ease-in-out infinite;
    pointer-events: none;
}
@keyframes tb-shimmer {
    0%   { left: -60%; }
    100% { left: 110%; }
}
.top-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 44px;
    position: relative;
    z-index: 1;
}
.top-bar-left {
    display: flex;
    align-items: center;
    gap: 0;
}
.tb-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.82);
    font-size: 0.76rem;
    font-weight: 500;
    padding: 0 16px 0 0;
    white-space: nowrap;
}
.tb-item i {
    font-size: 0.7rem;
    color: #93c5fd;
    flex-shrink: 0;
}
.tb-item a {
    color: rgba(255,255,255,0.82);
    transition: color 0.2s;
    font-weight: 600;
}
.tb-item a:hover { color: #fff; }
.tb-divider {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
    margin: 0 14px 0 0;
}

/* "Open Now" pill */
.tb-open-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(74,222,128,0.15);
    border: 1px solid rgba(74,222,128,0.35);
    color: #4ade80;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
    letter-spacing: 0.4px;
    margin-left: 8px;
    text-transform: uppercase;
}
.tb-open-dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: tb-pulse 1.8s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes tb-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.7); }
}

/* Right: follow label + icons */
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}
.tb-follow {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.45);
    white-space: nowrap;
}
.tb-socials {
    display: flex;
    align-items: center;
    gap: 4px;
}
.tb-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
}
.tb-social-link:hover { transform: translateY(-2px); color: #fff; border-color: rgba(255,255,255,0.3); }
.tb-fb:hover  { background: #1877f2; border-color: #1877f2; }
.tb-ig:hover  { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: transparent; }
.tb-yt:hover  { background: #ff0000; border-color: #ff0000; }
.tb-wa:hover  { background: #25d366; border-color: #25d366; }

/* ===== MAIN HEADER & NAV ===== */
.main-header {
    background: #fff;
    box-shadow: 0 2px 16px rgba(30,58,95,0.10);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s;
}
.main-header.scrolled { box-shadow: 0 4px 24px rgba(30,58,95,0.16); }
.main-header.scrolled ~ * .top-bar,
body.scrolled .top-bar { max-height: 0; opacity: 0; }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 20px;
    height: 90px;
}
.header-logo a { display: flex; align-items: center; }
.header-logo img { height: 70px; width: auto; object-fit: contain; display: block; }

.main-nav { display: flex; align-items: center; flex: 1; justify-content: center; }
.nav-list {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0; padding: 0;
}
.nav-item > a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.825rem;
    font-weight: 500;
    color: #2d3748;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 24px 14px;
    white-space: nowrap;
    position: relative;
    transition: color 0.2s;
}
.nav-item > a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 14px; right: 14px;
    height: 2px;
    background: #1A3FC4;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
    border-radius: 2px 2px 0 0;
}
.nav-item > a:hover { color: #1A3FC4; }
.nav-item > a:hover::after { transform: scaleX(1); }
.nav-item.active > a { color: #1A3FC4; font-weight: 600; }
.nav-item.active > a::after { transform: scaleX(1); }
.nav-arrow { font-size: 0.62rem; opacity: 0.7; transition: transform 0.2s; }
.nav-item.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    background: #fff;
    min-width: 240px;
    box-shadow: 0 12px 40px rgba(30,58,95,0.14), 0 2px 8px rgba(0,0,0,0.06);
    border-top: 2px solid #1A3FC4;
    border-radius: 0 0 6px 6px;
    z-index: 999;
    padding: 8px 0;
    animation: dropIn 0.18s ease;
}
@keyframes dropIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px;
    font-size: 0.82rem;
    font-weight: 400;
    color: #374151;
    text-transform: none;
    letter-spacing: 0;
    white-space: nowrap;
    transition: background 0.18s, color 0.18s, padding-left 0.18s;
}
.dropdown li a::after { display: none !important; }
.dropdown li a:hover { background: #E8EDFA; color: #1A3FC4; padding-left: 22px; }
.drop-icon { font-size: 0.72rem; color: #5B80E0; width: 14px; flex-shrink: 0; }
.dropdown li.has-subdropdown + li:not(.has-subdropdown) { border-top: 1px solid #e5e7eb; margin-top: 4px; padding-top: 4px; }

/* Sub-dropdown */
.has-subdropdown { position: relative; }
.has-subdropdown > a { display: flex; align-items: center; justify-content: space-between; }
.subdrop-arrow { margin-left: auto; font-size: 0.6rem; color: #9ca3af; flex-shrink: 0; }
.subdropdown {
    display: none;
    position: absolute;
    top: 0; left: 100%;
    background: #fff;
    min-width: 210px;
    box-shadow: 0 12px 40px rgba(30,58,95,0.14);
    border-top: 2px solid #1A3FC4;
    border-radius: 0 6px 6px 0;
    z-index: 1000;
    padding: 8px 0;
    animation: dropIn 0.18s ease;
}
.has-subdropdown:hover .subdropdown { display: block; }
.subdropdown li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    font-size: 0.82rem;
    color: #374151;
    white-space: nowrap;
    transition: background 0.18s, color 0.18s, padding-left 0.18s;
}
.subdropdown li a::after { display: none !important; }
.subdropdown li a:hover { background: #E8EDFA; color: #1A3FC4; padding-left: 22px; }
.has-subdropdown:hover > a { background: #E8EDFA; color: #1A3FC4; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

.enquiry-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #1A3FC4;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    position: relative;
}
.enquiry-btn:hover { background: #1230A0; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(30,58,95,0.3); }
.enquiry-btn i { font-size: 0.9rem; flex-shrink: 0; }
.enquiry-btn .cart-nav-badge {
    background: #e53e3e;
    color: #fff;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px; height: 18px;
    padding: 0 3px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-left: 2px;
}
@keyframes badgePop {
    0%   { transform: scale(0.5); opacity: 0; }
    70%  { transform: scale(1.2); }
    100% { transform: scale(1);   opacity: 1; }
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    transition: background 0.2s;
}
.hamburger:hover { background: #E8EDFA; }
.hamburger span { display: block; width: 22px; height: 2px; background: #1A3FC4; border-radius: 2px; transition: 0.28s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
    position: fixed;
    top: 0; left: -320px;
    width: 300px;
    height: 100vh;
    background: #0a1438;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transition: left 0.3s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 4px 0 32px rgba(0,0,0,0.35);
}
.mobile-nav.open { left: 0; }
.mobile-nav-header {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}
.mobile-nav-header img { height: 44px; width: auto; object-fit: contain; }
.nav-close { background: none; border: none; color: #8AA4E8; font-size: 1.8rem; cursor: pointer; line-height: 1; padding: 0 4px; transition: color 0.2s; }
.nav-close:hover { color: #fff; }

.mobile-nav-list { list-style: none; padding: 12px 0; margin: 0; flex: 1; }
.mobile-nav-list > li > a,
.mob-drop-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 22px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #c8d5e8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
    width: 100%;
    text-align: left;
    background: none;
    border-left: none; border-right: none; border-top: none;
    font-family: inherit;
}
.mobile-nav-list > li > a:hover,
.mob-drop-toggle:hover { color: #fff; background: rgba(255,255,255,0.05); }
.mobile-nav-list > li.active > a { color: #fff; font-weight: 600; }
.mob-arrow { font-size: 0.65rem; opacity: 0.6; transition: transform 0.25s; flex-shrink: 0; }
.mob-has-dropdown.open > .mob-drop-toggle .mob-arrow { transform: rotate(180deg); }
.mob-has-subdropdown.open > .mob-subdrop-toggle .mob-arrow { transform: rotate(180deg); }

.mob-dropdown { display: none; list-style: none; margin: 0; padding: 0; background: rgba(0,0,0,0.2); }
.mob-has-dropdown.open > .mob-dropdown { display: block; }
.mob-dropdown > li > a,
.mob-subdrop-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 22px 11px 34px;
    font-size: 0.82rem;
    font-weight: 400;
    color: #8AA4E8;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    transition: color 0.2s, background 0.2s;
    cursor: pointer;
    width: 100%; text-align: left;
    background: none;
    border-left: none; border-right: none; border-top: none;
    font-family: inherit;
    text-transform: none; letter-spacing: 0;
}
.mob-dropdown > li > a:hover,
.mob-subdrop-toggle:hover { color: #fff; background: rgba(255,255,255,0.05); }

.mob-subdropdown { display: none; list-style: none; margin: 0; padding: 0; background: rgba(0,0,0,0.15); }
.mob-has-subdropdown.open > .mob-subdropdown { display: block; }
.mob-subdropdown li a {
    display: block;
    padding: 10px 22px 10px 48px;
    font-size: 0.8rem;
    color: #7a9ab8;
    border-bottom: 1px solid rgba(255,255,255,0.02);
    transition: color 0.2s, background 0.2s;
}
.mob-subdropdown li a:hover { color: #fff; background: rgba(255,255,255,0.04); }

.mob-enquiry-link {
    display: flex !important;
    align-items: center;
    gap: 8px;
    padding: 13px 22px !important;
    background: rgba(30,58,95,0.4) !important;
    color: #c8d5e8 !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-top: 1px solid rgba(255,255,255,0.06) !important;
}
.mob-enquiry-link .cart-nav-badge {
    background: #e53e3e; color: #fff; border-radius: 50%;
    font-size: 0.68rem; font-weight: 700;
    width: 18px; height: 18px;
    display: inline-flex !important; align-items: center; justify-content: center;
}
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1050; backdrop-filter: blur(2px); }
.nav-overlay.active { display: block; }

/* ===== HERO ===== */
.hero-video-section {
    position: relative;
    height: calc(100vh - 177px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-video-wrapper {
    position: absolute;
    inset: 0;
    background: #0a1438;
}
.hero-video-wrapper video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.08);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,0.78) 0%, rgba(18,37,64,0.55) 60%, rgba(10,22,40,0.4) 100%);
    z-index: 1;
}
.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 60px;
    max-width: 1200px;
    margin: 0 auto;
    left: 0; right: 0;
}
.hero-content-inner {
    max-width: 680px;
    animation: heroFadeUp 1s ease both;
}
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: #c8d5e8;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 22px;
    backdrop-filter: blur(4px);
}
.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.hero-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.78);
    margin-bottom: 36px;
    line-height: 1.75;
    max-width: 560px;
}
.hero-highlight {
    background: linear-gradient(90deg, #60a5fa, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1A3FC4;
    color: #fff;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #1A3FC4;
    transition: background 0.3s, transform 0.2s, border-color 0.3s;
}
.btn-hero-primary:hover { background: #3358D4; border-color: #3358D4; transform: translateY(-2px); }
.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255,255,255,0.55);
    transition: background 0.3s, border-color 0.3s, transform 0.2s;
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }

.hero-scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 3; }
.hero-scroll-hint span {
    display: block;
    width: 26px; height: 26px;
    border-right: 2px solid rgba(255,255,255,0.6);
    border-bottom: 2px solid rgba(255,255,255,0.6);
    transform: rotate(45deg);
    animation: scrollBounce 1.4s infinite;
    margin: 0 auto;
}
@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.7; }
    50%       { transform: rotate(45deg) translateY(8px); opacity: 1; }
}

.hero-badges {
    position: absolute;
    bottom: 80px; left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 3;
    flex-wrap: wrap;
    padding: 0 20px;
}
.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.28);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    letter-spacing: 0.4px;
}
.hero-badge-pill i { color: #93c5fd; font-size: 0.85rem; }

/* ===== TICKER BAR ===== */
.ticker-bar {
    background: #1A3FC4;
    display: flex;
    align-items: center;
    height: 46px;
    overflow: hidden;
    position: relative;
    z-index: 10;
}
.ticker-label {
    background: #1230A0;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0 22px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
    z-index: 2;
}
.ticker-label i { color: #93c5fd; }
.ticker-track { flex: 1; overflow: hidden; position: relative; }
.ticker-inner {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: ticker-scroll 40s linear infinite;
}
.ticker-inner span { font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.88); padding: 0 24px; white-space: nowrap; }
.ticker-dot { color: #93c5fd !important; padding: 0 4px !important; font-size: 0.5rem !important; }
@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== HOMEPAGE — ABOUT SPLIT ===== */
.about-split-section {
    background: #fff;
    padding: 110px 0 100px;
    position: relative;
    overflow: hidden;
}
.about-split-bg-shape {
    position: absolute;
    top: -120px; right: -120px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, #E8EDFA 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.about-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-split-visual { position: relative; }
.about-img-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(10,20,56,0.18);
}
.about-img-frame img { width: 100%; height: 480px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.about-img-frame:hover img { transform: scale(1.03); }
.about-img-overlay-card {
    position: absolute;
    bottom: 24px; right: -20px;
    background: #fff;
    border-radius: 12px;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 12px 40px rgba(10,20,56,0.18);
    border-left: 4px solid #1A3FC4;
    min-width: 220px;
}
.about-img-overlay-card i { font-size: 1.8rem; color: #1A3FC4; flex-shrink: 0; }
.about-img-overlay-card strong { display: block; font-size: 1rem; color: #0a1438; font-weight: 700; line-height: 1.4; }
.about-exp-block { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.about-exp-num {
    display: flex;
    align-items: baseline;
    gap: 1px;
    font-size: 2.4rem;
    font-weight: 800;
    color: #1A3FC4;
    line-height: 1;
    letter-spacing: -0.5px;
}
.about-exp-num .counter {
    font-size: 2.4rem !important;
    font-weight: 800 !important;
    color: #1A3FC4 !important;
    line-height: 1 !important;
}
.about-exp-plus {
    font-size: 2rem;
    font-weight: 800;
    color: #1A3FC4;
    line-height: 1;
}
.about-exp-badge {
    position: absolute;
    top: -24px; left: -24px;
    background: linear-gradient(135deg, #1A3FC4, #3358D4);
    color: #fff;
    border-radius: 16px;
    padding: 24px 28px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(26,63,196,0.35);
    min-width: 140px;
}
.about-exp-num { display: block; font-size: 2.4rem; font-weight: 800; line-height: 1; margin-bottom: 4px; letter-spacing: -0.5px; }
/* .about-exp-num .counter { font-size: 2.4rem !important; font-weight: 800 !important; color: #fff !important; } */
.about-exp-label { font-size: 0.76rem; opacity: 0.9; line-height: 1.4; letter-spacing: 0.5px; font-weight: 500; }
/* .about-split-text {} */
.about-mini-stats {
    display: flex;
    flex-wrap:wrap;
    align-items: stretch;
    gap: 0;
    margin: 32px 0 36px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 24px rgba(26,63,196,0.08);
}
.mini-stat { flex: 1; padding: 22px 16px; text-align: center; }
.mini-stat strong {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #1A3FC4;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}
.mini-stat strong .counter,
.mini-stat strong span.counter {
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    color: #1A3FC4 !important;
    line-height: 1 !important;
}
.mini-stat > span {
    display: block;
    font-size: 0.72rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.mini-stat-divider { width: 1px; height: 50px; background: #e5e7eb; flex-shrink: 0; align-self: center; }
.btn-filled {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1A3FC4;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 20px rgba(26,63,196,0.3);
}
.btn-filled:hover { background: #1230A0; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(26,63,196,0.4); }
.btn-filled i { transition: transform 0.2s; }
.btn-filled:hover i { transform: translateX(4px); }

/* ===== HOMEPAGE — SERVICES ===== */
.services-section {
    background: linear-gradient(145deg, #0a1438 0%, #1A3FC4 100%);
    padding: 110px 0 120px;
    position: relative;
    overflow: hidden;
}
.services-bg-shape {
    position: absolute;
    bottom: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 36px 28px 30px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    cursor: pointer;
    display: block;
    color: inherit;
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 16px;
}
.service-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.service-card:hover::before { opacity: 1; }
.service-card-icon {
    width: 56px; height: 56px;
    background: rgba(255,255,255,0.12);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    transition: background 0.3s;
}
.service-card:hover .service-card-icon { background: rgba(255,255,255,0.2); }
.service-card-icon i { font-size: 1.3rem; color: #fff; }
.service-card-num {
    position: absolute;
    top: 20px; right: 22px;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255,255,255,0.06);
    line-height: 1;
    letter-spacing: -2px;
    transition: color 0.3s;
}
.service-card:hover .service-card-num { color: rgba(255,255,255,0.1); }
.service-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.3; }
.service-card p { font-size: 0.83rem; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 20px; }
.service-card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    transition: background 0.25s, transform 0.25s, color 0.25s;
}
.service-card:hover .service-card-arrow { background: #fff; color: #1A3FC4; transform: translateX(4px); }

/* ===== HOMEPAGE — STATS IMPACT ===== */
.stats-impact-section { position: relative; }
.stats-impact-inner {
    background: linear-gradient(135deg, #1230A0 0%, #3358D4 100%);
    clip-path: polygon(0 8%, 100% 0%, 100% 92%, 0% 100%);
    padding: 90px 0;
}
.stats-impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stats-impact-item {
    text-align: center;
    padding: 24px 20px;
    border-right: 1px solid rgba(255,255,255,0.12);
    transition: transform 0.3s;
}
.stats-impact-item:last-child { border-right: none; }
.stats-impact-item:hover { transform: translateY(-4px); }
.stats-impact-item > i { font-size: 1.6rem; color: rgba(255,255,255,0.4); margin-bottom: 14px; display: block; }
.stats-impact-num {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
}
.stats-impact-num sup { font-size: 1.5rem; font-weight: 700; color: #93c5fd; margin-top: 4px; }
.stats-impact-item > span { font-size: 0.75rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 2px; font-weight: 500; }

/* ===== HOMEPAGE — WHY CHOOSE US ===== */
.why-section { background: #f4f5f7; padding: 110px 0; }
.why-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-feature-card {
    background: #fff;
    border-radius: 14px;
    padding: 36px 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 2px 20px rgba(10,20,56,0.06);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}
.why-feature-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1A3FC4, #3358D4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.why-feature-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(10,20,56,0.12); border-color: #B0BEF0; }
.why-feature-card:hover::after { transform: scaleX(1); }
.why-feature-icon-wrap { display: flex; flex-direction: column; align-items: center; gap: 8px; flex-shrink: 0; }
.why-feature-icon {
    width: 52px; height: 52px;
    background: #E8EDFA;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s;
}
.why-feature-icon i { font-size: 1.1rem; color: #1A3FC4; transition: color 0.3s; }
.why-feature-card:hover .why-feature-icon { background: #1A3FC4; }
.why-feature-card:hover .why-feature-icon i { color: #fff; }
.why-feature-line { width: 2px; flex: 1; min-height: 24px; background: #e5e7eb; }
.why-feature-body h3 { font-size: 0.95rem; font-weight: 700; color: #0a1438; margin-bottom: 8px; }
.why-feature-body p { font-size: 0.83rem; color: #6b7280; line-height: 1.75; }

/* ===== HOMEPAGE — CLIENTS LOGO STRIP ===== */
.clients-new-section { background: #fff; padding: 90px 0 80px; overflow: hidden; }
.clients-logo-strip {
    margin-top: 40px;
    overflow: hidden;
    position: relative;
}
.clients-logo-strip::before,
.clients-logo-strip::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.clients-logo-strip::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.clients-logo-strip::after  { right: 0; background: linear-gradient(to left, #fff, transparent); }
.clients-logo-track {
    display: flex;
    align-items: center;
    gap: 0;
    animation: logo-scroll 35s linear infinite;
    width: max-content;
}
.clients-logo-track:hover { animation-play-state: paused; }
.client-logo-item {
    padding: 12px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #e5e7eb;
}
.client-logo-item img { max-height: 72px; max-width: 140px; object-fit: contain;  }
.client-logo-item:hover img { filter: grayscale(0%) opacity(1); }
@keyframes logo-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== HOMEPAGE — INFRASTRUCTURE ===== */
.infra-section {
    background: linear-gradient(145deg, #0a1438 0%, #1A3FC4 100%);
    padding: 110px 0 100px;
    position: relative;
    overflow: hidden;
}
/* Grid overlay */
.infra-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
}
/* Fade the grid out at bottom so it blends into the mosaic */
.infra-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(10,20,56,0.55) 100%);
    pointer-events: none;
    z-index: 0;
}
.infra-section .container {
    position: relative;
    z-index: 1;
}
.infra-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 10px;
    margin-top: 10px;
}
.infra-tile { position: relative; overflow: hidden; border-radius: 10px; cursor: pointer; background: #0a1438; }
.infra-tile img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.4s ease, filter 0.4s ease; filter: brightness(0.85); }
.infra-tile-wide { grid-column: span 2; }
.infra-tile-wide img { height: 200px; }
.infra-tile:hover img { transform: scale(1.06); filter: brightness(1); }
.infra-tile-overlay {
    position: absolute; inset: 0;
    background: rgba(10,20,56,0.5);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s;
}
.infra-tile-overlay i { font-size: 1.8rem; color: #fff; }
.infra-tile:hover .infra-tile-overlay { opacity: 1; }

/* Infra Lightbox */
.infra-lightbox { display: none; position: fixed; inset: 0; background: rgba(5,10,25,0.95); z-index: 9999; align-items: center; justify-content: center; backdrop-filter: blur(4px); }
.infra-lightbox.active { display: flex; }
.infra-lightbox img { max-width: 88vw; max-height: 82vh; object-fit: contain; border-radius: 8px; box-shadow: 0 0 80px rgba(0,0,0,0.6); }
.infra-lb-close {
    position: absolute; top: 22px; right: 28px;
    background: rgba(255,255,255,0.1); border: none;
    color: #fff; font-size: 1.4rem; cursor: pointer;
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.infra-lb-close:hover { background: rgba(255,255,255,0.2); }
.infra-lb-prev, .infra-lb-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.1); border: none;
    color: #fff; font-size: 1.2rem; cursor: pointer;
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.infra-lb-prev:hover, .infra-lb-next:hover { background: #1A3FC4; }
.infra-lb-prev { left: 20px; }
.infra-lb-next { right: 20px; }

/* ===== HOMEPAGE — VIDEO OVERVIEW ===== */
.video-overview-section {
    background: #f4f5f7;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}
.video-overview-section::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, #E8EDFA 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.video-overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.video-checklist { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.video-checklist li { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: #374151; font-weight: 500; }
.video-checklist li i { color: #1A3FC4; font-size: 1rem; flex-shrink: 0; }
.video-embed-frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(10,20,56,0.15);
    border: 2px solid #e5e7eb;
}
.video-embed-frame iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* ===== CTA BAND & FOOTER ===== */
.cta-band {
    background: linear-gradient(135deg, #0a1438 0%, #1A3FC4 60%, #3358D4 100%);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; text-align: left; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 8px; }
.cta-band p { color: #8AA4E8; font-size: 1rem; margin: 0; }
.cta-band-actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }
.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #1A3FC4;
    padding: 14px 30px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #fff;
    transition: background 0.3s, color 0.3s, transform 0.2s;
    white-space: nowrap;
}
.btn-cta-primary:hover { background: transparent; color: #fff; transform: translateY(-2px); }
.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    padding: 14px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255,255,255,0.4);
    transition: border-color 0.3s, background 0.3s, transform 0.2s;
    white-space: nowrap;
}
.btn-cta-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); transform: translateY(-2px); }

/* Footer */
.main-footer { background: #0a1438; color: #c8d5e8; padding-top: 52px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; padding-bottom: 40px; }
.footer-col h4 {
    font-size: 0.875rem; color: #fff; margin-bottom: 16px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px;
    padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col p { font-size: 0.85rem; line-height: 1.85; color: #8AA4E8; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #8AA4E8; font-size: 0.85rem;
    transition: background 0.3s, color 0.3s;
}
.footer-social a:hover { background: #1A3FC4; color: #fff; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; font-size: 0.85rem; color: #8AA4E8; }
.footer-contact li i { color: #8099e8; margin-top: 4px; min-width: 14px; }
.footer-contact li a { color: #8AA4E8; transition: color 0.2s; }
.footer-contact li a:hover { color: #fff; }

.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links li a { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: #8AA4E8; transition: color 0.2s, gap 0.2s; }
.footer-links li a i { font-size: 0.6rem; color: #5B80E0; transition: transform 0.2s; flex-shrink: 0; }
.footer-links li a:hover { color: #fff; gap: 12px; }
.footer-links li a:hover i { transform: translateX(3px); }

/* Quote Form */
.quote-form input,
.quote-form textarea {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: #C8D4F5;
    padding: 9px 12px; border-radius: 3px; font-size: 0.85rem; margin-bottom: 8px;
    outline: none; font-family: inherit; transition: border-color 0.2s;
}
.quote-form input::placeholder, .quote-form textarea::placeholder { color: #4A60C0; }
.quote-form input:focus, .quote-form textarea:focus { border-color: #5B80E0; }
.quote-form button {
    background: #1A3FC4; color: #fff; border: none; padding: 10px 0;
    border-radius: 3px; font-size: 0.875rem; font-weight: 600; cursor: pointer;
    width: 100%; transition: background 0.3s; text-transform: uppercase; letter-spacing: 0.5px;
}
.quote-form button:hover { background: #3358D4; }
.form-success { color: #90caf9; font-weight: 500; font-size: 0.875rem; }
.form-error   { color: #ef9a9a; font-size: 0.85rem; }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 18px 20px;
}
.footer-bottom p { font-size: 0.8rem; color: #3A4F8A; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-bottom-links { display: flex; align-items: center; gap: 10px; }
.footer-bottom-links a { font-size: 0.8rem; color: #3A4F8A; text-transform: uppercase; letter-spacing: 0.5px; transition: color 0.2s; }
.footer-bottom-links a:hover { color: #8AA4E8; }
.footer-bottom-links span { color: #162258; font-size: 0.72rem; }

/* ===== SHARED UTILITIES ===== */

/* Section chip */
.section-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #E8EDFA;
    color: #1A3FC4;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.section-chip i { font-size: 0.55rem; }
.section-chip.light { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.2); }

/* Section eyebrow (older style) */
.section-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #5B80E0;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}
.section-eyebrow::before, .section-eyebrow::after { content: ''; display: block; width: 22px; height: 2px; background: #5B80E0; flex-shrink: 0; }

/* Section header */
.section-header-center { text-align: center; margin-bottom: 52px; }
.section-heading {
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #0a1438;
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}
.section-heading span { color: #1A3FC4; }
.section-heading.white { color: #fff; }
.section-sub { color: #6b7280; max-width: 640px; margin: 0 auto; font-size: 0.95rem; line-height: 1.8; }
.section-sub.white { color: rgba(255,255,255,0.7); }

/* Generic section subtext */
h2 { font-size: 2rem; font-weight: 700; color: #1A3FC4; margin-bottom: 16px; text-align: center; }
.section-subtext { text-align: center; color: #6b7280; max-width: 700px; margin: 0 auto 50px; line-height: 1.8; }

/* Buttons */
.btn-readmore {
    display: inline-block;
    background: #1A3FC4; color: #fff;
    padding: 12px 32px; border-radius: 3px;
    font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: 0.875rem;
    transition: background 0.3s, transform 0.2s;
    border: 2px solid #1A3FC4;
}
.btn-readmore:hover { background: #1230A0; border-color: #1230A0; transform: translateY(-2px); }
.btn-page {
    display: inline-block;
    background: #1A3FC4; color: #fff;
    padding: 11px 30px; border-radius: 3px;
    font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: 0.875rem;
    transition: background 0.3s, transform 0.2s;
    margin-top: 10px; border: 2px solid #1A3FC4;
}
.btn-page:hover { background: #1230A0; border-color: #1230A0; transform: translateY(-2px); }

/* Fade-up animation */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Simple list */
.simple-list { list-style: disc; padding-left: 24px; margin: 12px 0 20px; }
.simple-list li { color: #374151; font-size: 0.95rem; margin-bottom: 6px; line-height: 1.7; }

/* Floating enquiry button */
.enq-float {
    position: fixed;
    bottom: 98px; right: 28px;
    z-index: 9999;
    background: #1A3FC4; color: #fff;
    width: 58px; height: 58px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 16px rgba(30,58,95,0.4);
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.enq-float:hover { background: #1230A0; transform: scale(1.1); box-shadow: 0 6px 24px rgba(30,58,95,0.55); color: #fff; }
.enq-float-badge {
    position: absolute; top: -4px; right: -4px;
    background: #ef4444; color: #fff;
    font-size: 0.65rem; font-weight: 700;
    min-width: 20px; height: 20px;
    border-radius: 50px;
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0 4px; border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.18);
}

/* ===== INNER PAGES ===== */
.page-banner {
    background: linear-gradient(rgba(10,20,56,0.68), rgba(10,20,56,0.68)),
                url('../images/breadcrumbbanner.jpg') center/cover no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.page-banner h1 { color: #fff; font-size: 2.4rem; margin-bottom: 10px; font-weight: 700; letter-spacing: 0.5px; }
.breadcrumb { color: rgba(255,255,255,0.65); font-size: 0.875rem; }
.breadcrumb a { color: #7A99EE; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }

.inner-page-section { background: #fff; padding: 50px 0 70px; }
.inner-content-grid { display: block; max-width: 900px; }
.inner-text h2 { text-align: left; font-size: 1.75rem; margin-bottom: 20px; color: #1A3FC4; }
.inner-text p { color: #374151; line-height: 1.85; margin-bottom: 16px; font-size: 0.95rem; }
.inner-text strong { color: #1A3FC4; }

.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 36px; }
.photo-grid a { display: block; overflow: hidden; border-radius: 3px; }
.photo-grid a img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.35s, filter 0.3s; display: block; filter: brightness(0.95); }
.photo-grid a:hover img { transform: scale(1.06); filter: brightness(1); }

.lightbox-overlay { display: none; position: fixed; inset: 0; background: rgba(10,20,35,0.93); z-index: 9999; align-items: center; justify-content: center; padding: 24px; box-sizing: border-box; }
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 8px; box-shadow: 0 0 60px rgba(0,0,0,0.6); }
.lightbox-close { position: absolute; top: 20px; right: 28px; font-size: 2rem; color: #c8d5e8; cursor: pointer; background: none; border: none; line-height: 1; transition: color 0.2s; }
.lightbox-close:hover { color: #fff; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(30,58,95,0.55); color: #fff; border: none; font-size: 1.6rem; padding: 12px 18px; cursor: pointer; border-radius: 3px; transition: background 0.2s; }
.lightbox-prev:hover, .lightbox-next:hover { background: #1A3FC4; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.features-list { margin: 28px 0; }
.features-list h3 { font-size: 1.05rem; color: #1A3FC4; margin-bottom: 14px; font-weight: 600; }
.features-list ul { display: flex; flex-direction: column; gap: 8px; }
.features-list ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: #374151; line-height: 1.7; }
.features-list ul li i { color: #1A3FC4; margin-top: 4px; min-width: 14px; }
.features-list ul li strong { color: #1A3FC4; }

.inner-highlights { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin: 28px 0; }
.inner-highlight-card { background: #f4f5f7; border-radius: 6px; padding: 22px 18px; text-align: center; border-bottom: 3px solid #1A3FC4; transition: transform 0.3s, box-shadow 0.3s; }
.inner-highlight-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(30,58,95,0.1); }
.inner-highlight-card i { font-size: 1.4rem; color: #1A3FC4; margin-bottom: 10px; display: block; }
.inner-highlight-card h4 { font-size: 0.875rem; color: #1A3FC4; margin-bottom: 6px; font-weight: 600; }
.inner-highlight-card p { font-size: 0.78rem; color: #6b7280; line-height: 1.6; }

.brand-badge { display: flex; align-items: center; gap: 16px; background: #1A3FC4; color: #fff; padding: 18px 24px; border-radius: 6px; margin: 24px 0; }
.brand-badge-icon { width: 48px; height: 48px; background: rgba(255,255,255,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; min-width: 48px; }
.brand-badge-icon i { font-size: 1.2rem; color: #fff; }
.brand-badge strong { display: block; font-size: 0.95rem; color: #fff; margin-bottom: 2px; }
.brand-badge span { font-size: 0.78rem; color: #8AA4E8; }

/* Inner page product layout */
.product-page-section { background: #fff; padding: 80px 0 100px; }
.product-page-grid { display: grid; grid-template-columns: 1fr 340px; gap: 50px; align-items: flex-start; }
.product-main h2 { font-size: 2rem; color: #1A3FC4; font-weight: 700; margin-bottom: 20px; text-align: left; line-height: 1.3; }
.product-main p { color: #374151; font-size: 0.95rem; line-height: 1.85;  }

.product-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.product-tags span { display: inline-flex; align-items: center; gap: 7px; background: #E8EDFA; color: #1A3FC4; font-size: 0.8rem; font-weight: 600; padding: 7px 14px; border-radius: 30px; border: 1px solid #B0BEF0; }
.product-tags span i { color: #3358D4; font-size: 0.7rem; }

.product-features { display: flex; flex-direction: column; gap: 14px; margin: 8px 0 28px; }
.product-feature-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px 20px; background: #f4f5f7; border-radius: 8px; border-left: 3px solid #1A3FC4; }
.product-feature-item > i { font-size: 1.2rem; color: #1A3FC4; margin-top: 2px; flex-shrink: 0; width: 20px; text-align: center; }
.product-feature-item strong { display: block; font-size: 0.9rem; color: #1A3FC4; font-weight: 600; margin-bottom: 3px; }
.product-feature-item span { font-size: 0.83rem; color: #6b7280; line-height: 1.6; }

.product-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 90px; }
.sidebar-card { background: #f4f5f7; border-radius: 8px; padding: 24px; border: 1px solid #e5e7eb; }
.sidebar-card h4 { font-size: 0.85rem; font-weight: 700; color: #1A3FC4; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.sidebar-card h4 i { color: #5B80E0; }
.sidebar-nav { display: flex; flex-direction: column; gap: 2px; }
.sidebar-nav li a { display: flex; align-items: center; padding: 9px 12px; border-radius: 5px; font-size: 0.875rem; color: #374151; font-weight: 500; transition: background 0.2s, color 0.2s; }
.sidebar-nav li a:hover { background: #C8D4F5; color: #1A3FC4; }
.sidebar-nav li.active a { background: #1A3FC4; color: #fff; font-weight: 600; }
.sidebar-cta { background: linear-gradient(135deg, #1A3FC4, #3358D4); border-color: transparent; text-align: center; }
.sidebar-cta > i { font-size: 2rem; color: rgba(255,255,255,0.35); display: block; margin-bottom: 10px; }
.sidebar-cta h4 { color: #fff !important; justify-content: center; }
.sidebar-cta p { font-size: 0.83rem; color: #8AA4E8; margin-bottom: 12px; line-height: 1.6; }
.sidebar-cta > a:not(.btn-readmore) { display: block; font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 4px; letter-spacing: 0.5px; }
.sidebar-cta .btn-readmore { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); font-size: 0.8rem; padding: 10px 20px; display: block; }
.sidebar-cta .btn-readmore:hover { background: rgba(255,255,255,0.28); border-color: #fff; transform: none; }

/* ===== ABOUT PAGE ===== */
.about-intro-section { background: #fff; padding: 90px 0; }
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-intro-text h2 { font-size: 2rem; color: #1A3FC4; margin-bottom: 20px; line-height: 1.3; text-align: left; }
.about-intro-text p { color: #374151; font-size: 0.95rem; line-height: 1.85; margin-bottom: 16px; }
.about-intro-highlights { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.about-intro-highlight { display: flex; align-items: flex-start; gap: 14px; padding: 14px 18px; background: #f4f5f7; border-radius: 6px; border-left: 3px solid #1A3FC4; }
.about-intro-highlight i { color: #1A3FC4; font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.about-intro-highlight strong { display: block; font-size: 0.9rem; color: #1A3FC4; font-weight: 600; margin-bottom: 2px; }
.about-intro-highlight span { font-size: 0.82rem; color: #6b7280; }
.about-intro-image { position: relative; }
.about-intro-image img { width: 100%; height: auto; object-fit: cover; border-radius: 8px; box-shadow: 0 20px 50px rgba(30,58,95,0.18); display: block; }
.about-intro-badge { position: absolute; bottom: -20px; left: -20px; background: #1A3FC4; border-radius: 8px; padding: 20px 28px; display: flex; align-items: center; gap: 20px; box-shadow: 0 8px 28px rgba(30,58,95,0.3); }
.about-badge-stat { text-align: center; }
.about-badge-stat strong { display: block; font-size: 1.8rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 4px; }
.about-badge-stat span { font-size: 0.72rem; color: #8AA4E8; text-transform: uppercase; letter-spacing: 1px; }
.about-badge-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

.about-stats-strip { background: linear-gradient(135deg, #0a1438, #1A3FC4); padding: 60px 0; }
.about-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; text-align: center; }
.about-stat-item { padding: 10px 20px; border-right: 1px solid rgba(255,255,255,0.1); }
.about-stat-item:last-child { border-right: none; }
.about-stat-item i { font-size: 1.6rem; color: #5B80E0; margin-bottom: 12px; display: block; }
.about-stat-item strong { display: block; font-size: 2.4rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 6px; }
.about-stat-item span { font-size: 0.75rem; color: #8AA4E8; text-transform: uppercase; letter-spacing: 1.5px; }

.about-offer-section { background: #f4f5f7; padding: 90px 0; }
.about-offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-offer-text h2 { font-size: 2rem; color: #1A3FC4; margin-bottom: 20px; text-align: left; }
.about-offer-text p { color: #374151; font-size: 0.95rem; line-height: 1.85; margin-bottom: 16px; }
.offer-items-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.offer-item { display: flex; align-items: center; gap: 10px; background: #fff; padding: 12px 16px; border-radius: 6px; border-left: 3px solid #1A3FC4; font-size: 0.85rem; color: #374151; font-weight: 500; box-shadow: 0 2px 8px rgba(30,58,95,0.06); transition: transform 0.2s, box-shadow 0.2s; }
.offer-item:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(30,58,95,0.12); }
.offer-item i { color: #1A3FC4; font-size: 1rem; flex-shrink: 0; }
.about-offer-image img { width: 100%; height: auto; object-fit: contain; border-radius: 8px; box-shadow: 0 16px 40px rgba(30,58,95,0.16); }

.about-values-section { background: #fff; padding: 90px 0; }
.about-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.about-value-card { background: #f4f5f7; border-radius: 10px; padding: 40px 30px; text-align: center; border-bottom: 3px solid #1A3FC4; transition: transform 0.3s, box-shadow 0.3s; }
.about-value-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(30,58,95,0.12); }
.about-value-icon { width: 68px; height: 68px; background: linear-gradient(135deg, #1A3FC4, #3358D4); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; box-shadow: 0 6px 18px rgba(30,58,95,0.25); }
.about-value-icon i { font-size: 1.5rem; color: #fff; }
.about-value-card h4 { font-size: 1rem; color: #1A3FC4; font-weight: 700; margin-bottom: 12px; }
.about-value-card p { font-size: 0.875rem; color: #6b7280; line-height: 1.8; }

/* Legacy about styles */
.about-section { background: #fff; }
.about-section h2 { text-align: left; }
.about-section p { color: #374151; line-height: 1.9; margin-bottom: 24px; }
.about-highlights { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.highlight-item { display: flex; align-items: center; gap: 16px; background: #f4f5f7; padding: 16px 22px; border-radius: 5px; border-left: 4px solid #1A3FC4; }
.highlight-item i { font-size: 1.4rem; color: #1A3FC4; }
.highlight-item strong { display: block; color: #1A3FC4; font-size: 0.95rem; }
.highlight-item span { font-size: 0.85rem; color: #6b7280; }
.offer-section { background: #f4f5f7; }
.offer-section h2 { text-align: left; margin-bottom: 20px; }
.offer-content p { color: #374151; line-height: 1.9; margin-bottom: 16px; }
.offer-list { list-style: disc; padding-left: 28px; margin-bottom: 20px; }
.offer-list li { color: #374151; margin-bottom: 8px; }
.values-section { background: #fff; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 20px; }
.value-card { text-align: center; padding: 40px 28px; border: 1px solid #e5e7eb; border-radius: 8px; transition: box-shadow 0.3s, transform 0.3s; }
.value-card:hover { box-shadow: 0 10px 30px rgba(30,58,95,0.1); transform: translateY(-4px); }
.value-icon { width: 64px; height: 64px; background: #1A3FC4; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.value-icon i { font-size: 1.5rem; color: #fff; }
.value-card h4 { font-size: 1rem; color: #1A3FC4; margin-bottom: 12px; }
.value-card p { font-size: 0.875rem; color: #6b7280; line-height: 1.8; }

/* ===== CONTACT PAGE ===== */
.contact-info-section { background: #f4f5f7; padding: 60px 0; }
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.contact-card { background: #fff; border-radius: 10px; padding: 36px 24px; text-align: center; box-shadow: 0 2px 12px rgba(30,58,95,0.07); border-top: 3px solid #1A3FC4; transition: transform 0.3s, box-shadow 0.3s; }
.contact-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(30,58,95,0.12); }
.contact-card-icon { width: 58px; height: 58px; background: linear-gradient(135deg, #1A3FC4, #3358D4); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; box-shadow: 0 4px 14px rgba(30,58,95,0.22); }
.contact-card-icon i { font-size: 1.3rem; color: #fff; }
.contact-card h4 { font-size: 0.875rem; color: #1A3FC4; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.contact-card p { font-size: 0.875rem; color: #6b7280; line-height: 1.8; margin-bottom: 2px; }
.contact-card p a { color: #6b7280; transition: color 0.2s; }
.contact-card p a:hover { color: #1A3FC4; }

.contact-main-section { background: #fff; padding: 80px 0 100px; }
.contact-main-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-start; }
.contact-form-col h2, .contact-map-col h2 { font-size: 1.8rem; color: #1A3FC4; text-align: left; margin-bottom: 8px; }
.contact-form-sub { color: #6b7280; font-size: 0.9rem; margin-bottom: 28px; line-height: 1.7; }

.contact-form-new { display: flex; flex-direction: column; gap: 16px; }
.cfn-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cfn-group { display: flex; flex-direction: column; gap: 6px; }
.cfn-group label { font-size: 0.82rem; font-weight: 600; color: #374151; text-transform: uppercase; letter-spacing: 0.5px; }
.cfn-group label span { color: #e53e3e; }
.cfn-group input, .cfn-group textarea {
    border: 1.5px solid #e5e7eb; border-radius: 6px; padding: 12px 16px;
    font-size: 0.9rem; font-family: inherit; color: #111827; outline: none;
    background: #fafafa; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s; width: 100%;
}
.cfn-group input:focus, .cfn-group textarea:focus { border-color: #1A3FC4; background: #fff; box-shadow: 0 0 0 3px rgba(30,58,95,0.1); }
.cfn-group textarea { resize: vertical; min-height: 130px; }
.cfn-consent { flex-direction: row !important; }
.cfn-consent label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 0.85rem; color: #6b7280; text-transform: none !important; letter-spacing: 0 !important; font-weight: 400; line-height: 1.6; }
.cfn-consent input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: #1A3FC4; width: 16px; height: 16px; }
.cfn-consent a { color: #1A3FC4; text-decoration: underline; }

.btn-submit {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, #1A3FC4, #3358D4);
    color: #fff; border: none; padding: 14px 36px; border-radius: 6px;
    font-size: 0.9rem; font-weight: 700; cursor: pointer;
    text-transform: uppercase; letter-spacing: 1px;
    transition: opacity 0.3s, transform 0.2s; align-self: flex-start;
}
.btn-submit:hover { opacity: 0.88; transform: translateY(-2px); }

.contact-map-wrap { border-radius: 10px; overflow: hidden; box-shadow: 0 8px 32px rgba(30,58,95,0.14); margin-bottom: 24px; height: 340px; }
.contact-map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.contact-social { display: flex; align-items: center; gap: 16px; }
.contact-social p { font-size: 0.8rem; font-weight: 600; color: #9ca3af; text-transform: uppercase; letter-spacing: 1px; margin: 0; }
.contact-social-links { display: flex; gap: 10px; }
.contact-social-links a { width: 38px; height: 38px; background: #f4f5f7; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #1A3FC4; font-size: 0.9rem; border: 1px solid #e5e7eb; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.contact-social-links a:hover { background: #1A3FC4; color: #fff; border-color: #1A3FC4; }

.form-success-box { display: flex; align-items: flex-start; gap: 16px; background: #f0fdf4; border: 1px solid #bbf7d0; padding: 20px 24px; border-radius: 8px; color: #166534; margin-bottom: 20px; }
.form-success-box i { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.form-success-box strong { display: block; font-size: 0.95rem; margin-bottom: 4px; }
.form-success-box p { margin: 0; font-size: 0.875rem; }
.form-error-box { background: #fef2f2; border: 1px solid #fecaca; padding: 16px 24px; border-radius: 8px; color: #991b1b; margin-bottom: 20px; }
.form-error-box ul { padding-left: 18px; list-style: disc; }
.form-error-box li { margin-bottom: 4px; font-size: 0.875rem; }

/* Clients page */
.clients-intro { background: #fff; padding: 60px 0 30px; }
.clients-intro h2 { margin-bottom: 0; }
.clients-grid-section { background: #f4f5f7; padding: 60px 0; }
.clients-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.client-grid-card { background: #fff; border-radius: 8px; padding: 36px 24px; text-align: center; box-shadow: 0 2px 10px rgba(30,58,95,0.07); border-bottom: 2px solid #e5e7eb; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; }
.client-grid-card:hover { transform: translateY(-5px); box-shadow: 0 12px 28px rgba(30,58,95,0.13); border-color: #1A3FC4; }
.client-grid-card img { max-height: 70px; max-width: 160px; object-fit: contain; filter: grayscale(60%); opacity: 0.75; transition: filter 0.3s, opacity 0.3s; }
.client-grid-card:hover img { filter: grayscale(0%); opacity: 1; }
.client-grid-card p { font-size: 0.85rem; color: #6b7280; font-weight: 500; margin: 0; }
.client-text-only .client-initials { width: 68px; height: 68px; background: #1A3FC4; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 700; color: #fff; letter-spacing: 1px; }
.stats-section { background: #1A3FC4; padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 30px; text-align: center; }
.stat-item h3 { font-size: 3rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.stat-item p { font-size: 0.85rem; color: #8AA4E8; text-transform: uppercase; letter-spacing: 1px; }
.testimonials-section { background: #f4f5f7; padding: 80px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 48px; }
.testimonial-card { background: #fff; border-radius: 8px; padding: 32px; box-shadow: 0 2px 12px rgba(30,58,95,0.08); transition: transform 0.3s, box-shadow 0.3s; position: relative; border-top: 3px solid #1A3FC4; }
.testimonial-card::before { content: '\201C'; font-size: 5rem; color: #1A3FC4; opacity: 0.08; position: absolute; top: 8px; left: 18px; line-height: 1; font-family: Georgia, serif; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(30,58,95,0.12); }
.testimonial-stars { color: #f59e0b; margin-bottom: 14px; font-size: 0.9rem; }
.testimonial-card > p { color: #374151; font-size: 0.9rem; line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 44px; height: 44px; background: #1A3FC4; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700; color: #fff; min-width: 44px; }
.testimonial-author strong { display: block; font-size: 0.9rem; color: #1A3FC4; }
.testimonial-author span { font-size: 0.78rem; color: #9ca3af; }
.cta-section { background: #1A3FC4; padding: 70px 0; text-align: center; }
.cta-section h2 { color: #fff; margin-bottom: 12px; }
.cta-section p { color: #8AA4E8; margin-bottom: 30px; font-size: 1rem; }
.cta-section .btn-readmore { background: #fff; color: #1A3FC4; border: 2px solid #fff; }
.cta-section .btn-readmore:hover { background: transparent; color: #fff; }

/* ===== PRODUCTS PAGE ===== */
.prod-pill { display: inline-block; padding: 8px 18px; background: #fff; color: #1A3FC4; border: 1.5px solid #d1d5db; border-radius: 50px; font-size: 0.8rem; font-weight: 500; transition: background 0.2s, color 0.2s, border-color 0.2s; white-space: nowrap; }
.prod-pill:hover { background: #1A3FC4; color: #fff; border-color: #1A3FC4; }
.prod-section { padding: 70px 0; background: #fff; }
.prod-section-alt { background: #f4f5f7; }
.prod-section-header { text-align: center; margin-bottom: 44px; }
.prod-section-title { font-size: 1.7rem; color: #1A3FC4; margin-bottom: 10px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.prod-section-title i { font-size: 1.4rem; color: #3358D4; }
.prod-section-sub { color: #6b7280; font-size: 0.9rem; max-width: 680px; margin: 0 auto; line-height: 1.8; }

.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.prod-grid-2 { grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); }
.prod-grid-3 { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

.prod-card { background: #fff; border-radius: 8px; padding: 26px 22px 22px; box-shadow: 0 2px 14px rgba(30,58,95,0.09); border-top: 3px solid #1A3FC4; position: relative; transition: transform 0.25s, box-shadow 0.25s; }
.prod-section-alt .prod-card { background: #fff; }
.prod-card:hover { transform: translateY(-5px); box-shadow: 0 10px 32px rgba(30,58,95,0.15); }
.prod-card-badge { position: absolute; top: -1px; right: 18px; background: #1A3FC4; color: #fff; font-size: 0.7rem; font-weight: 700; padding: 4px 12px; border-radius: 0 0 6px 6px; letter-spacing: 0.5px; text-transform: uppercase; }
.prod-badge-dark { background: #0a1438; }
.prod-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.prod-card-icon { width: 46px; height: 46px; min-width: 46px; background: #E8EDFA; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.prod-card-icon i { font-size: 1.1rem; color: #1A3FC4; }
.prod-card-head h3 { font-size: 1rem; color: #1A3FC4; font-weight: 600; margin-bottom: 3px; }
.prod-model-tag { font-size: 0.72rem; color: #9ca3af; font-weight: 400; }
.prod-spec-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.prod-spec-table tr { border-bottom: 1px solid #f0f0f0; }
.prod-spec-table tr:last-child { border-bottom: none; }
.prod-spec-table td { padding: 6px 4px; color: #374151; }
.prod-spec-table td:first-child { color: #6b7280; width: 48%; font-weight: 500; }
.prod-spec-table td strong { color: #1A3FC4; font-weight: 600; }
.prod-highlight-note { margin-top: 16px; background: #E8EDFA; color: #1A3FC4; font-size: 0.78rem; font-weight: 600; padding: 8px 14px; border-radius: 4px; display: flex; align-items: center; gap: 8px; }
.prod-features-banner { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; margin-top: 10px; }
.prod-feature-item { display: flex; align-items: center; gap: 10px; background: #fff; border-radius: 6px; padding: 14px 18px; box-shadow: 0 1px 6px rgba(30,58,95,0.07); font-size: 0.88rem; color: #374151; font-weight: 500; }
.prod-feature-item i { color: #1A3FC4; font-size: 1rem; min-width: 16px; }

.acc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 20px; }
.acc-card { background: #f4f5f7; border-radius: 8px; padding: 28px 18px; text-align: center; border-bottom: 3px solid #1A3FC4; transition: transform 0.25s, box-shadow 0.25s; }
.acc-card:hover { transform: translateY(-4px); box-shadow: 0 8px 22px rgba(30,58,95,0.1); }
.acc-icon { width: 52px; height: 52px; background: #1A3FC4; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.acc-icon i { font-size: 1.2rem; color: #fff; }
.acc-card h4 { font-size: 0.88rem; color: #1A3FC4; font-weight: 600; margin-bottom: 6px; }
.acc-card p { font-size: 0.78rem; color: #6b7280; line-height: 1.6; }

/* Intro section legacy */
.intro-section { background: #fff; padding: 90px 0; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.intro-label { display: inline-block; font-size: 0.75rem; font-weight: 600; color: #1A3FC4; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 14px; padding-left: 36px; position: relative; }
.intro-label::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 26px; height: 2px; background: #1A3FC4; }
.intro-text h2 { text-align: left; font-size: 2rem; margin-bottom: 20px; color: #1A3FC4; line-height: 1.3; }
.intro-text p { color: #374151; line-height: 1.85; margin-bottom: 16px; font-size: 0.95rem; }
.intro-stats { display: flex; gap: 30px; margin: 30px 0 32px; padding: 24px 0; border-top: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb; }
.intro-stat strong { font-size: 1.9rem; font-weight: 700; color: #1A3FC4; line-height: 1; display: block; margin-bottom: 4px; }
.intro-stat strong .counter { font-size: inherit; font-weight: inherit; color: inherit; }
.intro-stat span { font-size: 0.75rem; color: #6b7280; text-transform: uppercase; letter-spacing: 0.5px; }
.intro-image { position: relative; }
.intro-image img { width: 100%; height: 460px; object-fit: cover; border-radius: 6px; box-shadow: 0 20px 50px rgba(30,58,95,0.18); display: block; }
.intro-image-badge { position: absolute; bottom: -20px; left: -20px; background: #1A3FC4; color: #fff; padding: 18px 22px; border-radius: 6px; display: flex; align-items: center; gap: 12px; box-shadow: 0 8px 24px rgba(30,58,95,0.3); }
.intro-image-badge i { font-size: 1.6rem; color: #8AA4E8; }
.intro-image-badge span { font-size: 0.8rem; line-height: 1.5; color: #C8D4F5; font-weight: 500; }

/* Specializations */
.specializations { background: #f4f5f7; }
.spec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; margin-top: 48px; }
.spec-card {
    background: #fff; border-radius: 6px; padding: 36px 28px; text-align: center;
    box-shadow: 0 2px 12px rgba(30,58,95,0.08); border-top: 3px solid #1A3FC4;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative; overflow: hidden;
}
.spec-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, #1A3FC4 0%, #3358D4 100%); opacity: 0; transition: opacity 0.35s; border-radius: 6px; }
.spec-card:hover { transform: translateY(-6px); box-shadow: 0 10px 30px rgba(30,58,95,0.14); }
.spec-card:hover::before { opacity: 1; }
.spec-card:hover .spec-icon { background: rgba(255,255,255,0.15); }
.spec-card:hover h4 { color: #fff; }
.spec-card:hover p { color: rgba(255,255,255,0.75); }
.spec-card > * { position: relative; z-index: 1; }
.spec-icon { width: 64px; height: 64px; background: #1A3FC4; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.spec-icon i { font-size: 1.5rem; color: #fff; }
.spec-card h4 { font-size: 1rem; color: #1A3FC4; margin-bottom: 10px; font-weight: 600; }
.spec-card p { font-size: 0.875rem; color: #6b7280; }
.spec-arrow { display: block; margin-top: 16px; color: #1A3FC4; font-size: 0.85rem; opacity: 0; transform: translateX(-8px); transition: opacity 0.3s, transform 0.3s; }
.spec-card:hover .spec-arrow { opacity: 1; transform: translateX(0); color: rgba(255,255,255,0.8); }

/* ===== ECOMMERCE / ENQUIRY SYSTEM ===== */
.cart-nav-link { position: relative; display: flex !important; align-items: center; gap: 6px; }
.cart-nav-badge { display: none; align-items: center; justify-content: center; background: #ef4444; color: #fff; font-size: 0.65rem; font-weight: 700; min-width: 18px; height: 18px; border-radius: 50px; padding: 0 5px; line-height: 1; margin-left: 2px; }
.cart-nav-badge.visible { display: inline-flex; }

.cart-toast-bar { background: #1A3FC4; color: #fff; padding: 12px 20px; display: flex; align-items: center; gap: 10px; font-size: 0.88rem; flex-wrap: wrap; }
.cart-toast-bar i { color: #4ade80; font-size: 1.1rem; }
.cart-toast-bar a { color: #7A99EE; font-weight: 600; margin-left: auto; white-space: nowrap; }
.cart-toast-bar button { background: none; border: none; color: rgba(255,255,255,0.6); font-size: 1.2rem; cursor: pointer; line-height: 1; padding: 0 4px; }

.btn-add-enquiry { display: inline-flex; align-items: center; gap: 7px; background: #1A3FC4; color: #fff; border: none; border-radius: 4px; padding: 9px 16px; font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: background 0.2s, transform 0.15s; white-space: nowrap; flex: 1; justify-content: center; font-family: inherit; }
.btn-add-enquiry:hover { background: #1230A0; transform: translateY(-1px); }
.btn-add-enquiry.btn-added { background: #16a34a; }
.btn-add-enquiry-sm { padding: 7px 14px; font-size: 0.78rem; width: 100%; margin-top: 10px; flex: none; border-radius: 4px; }

.prod-enquiry-row { display: flex; align-items: center; gap: 10px; margin-top: 16px; padding-top: 14px; border-top: 1px solid #f0f0f0; }
.prod-qty-wrap { display: flex; align-items: center; gap: 7px; background: #f4f5f7; border-radius: 4px; padding: 6px 10px; min-width: 80px; }
.prod-qty-wrap label { font-size: 0.72rem; color: #6b7280; font-weight: 600; text-transform: uppercase; }
.prod-qty-input { width: 44px; border: none; background: transparent; font-size: 0.9rem; font-weight: 600; color: #1A3FC4; text-align: center; outline: none; font-family: inherit; -moz-appearance: textfield; }
.prod-qty-input::-webkit-outer-spin-button, .prod-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

.acc-card-ec { background: #f4f5f7; border-radius: 8px; padding: 24px 16px; text-align: center; border-bottom: 3px solid #1A3FC4; transition: transform 0.25s, box-shadow 0.25s; display: flex; flex-direction: column; align-items: center; }
.acc-card-ec:hover { transform: translateY(-4px); box-shadow: 0 8px 22px rgba(30,58,95,0.1); }
.acc-icon-ec { width: 52px; height: 52px; background: #1A3FC4; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.acc-icon-ec i { font-size: 1.2rem; color: #fff; }
.acc-card-ec h4 { font-size: 0.88rem; color: #1A3FC4; font-weight: 600; margin-bottom: 6px; }
.acc-card-ec p { font-size: 0.76rem; color: #6b7280; line-height: 1.5; margin-bottom: 12px; flex: 1; }

/* Enquiry cart page */
.enq-layout { display: grid; grid-template-columns: 1fr 420px; gap: 32px; align-items: start; }
.enq-cart-col { min-width: 0; }
.enq-cart-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid #e5e7eb; gap: 12px; flex-wrap: wrap; }
.enq-item-count { display: inline-block; background: #1A3FC4; color: #fff; font-size: 0.7rem; padding: 2px 10px; border-radius: 50px; font-weight: 600; margin-left: 8px; vertical-align: middle; }
.enq-clear-btn { background: none; border: 1px solid #d1d5db; color: #6b7280; border-radius: 4px; padding: 6px 14px; font-size: 0.8rem; cursor: pointer; transition: all 0.2s; font-family: inherit; display: flex; align-items: center; gap: 6px; }
.enq-clear-btn:hover { border-color: #ef4444; color: #ef4444; }
.enq-items { display: flex; flex-direction: column; gap: 12px; }
.enq-item { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid #e5e7eb; border-radius: 8px; padding: 16px 18px; transition: box-shadow 0.2s; }
.enq-item:hover { box-shadow: 0 2px 12px rgba(30,58,95,0.09); }
.enq-item-icon { width: 44px; height: 44px; min-width: 44px; background: #E8EDFA; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.enq-item-icon i { font-size: 1.1rem; color: #1A3FC4; }
.enq-item-info { flex: 1; min-width: 0; }
.enq-item-info h4 { font-size: 0.92rem; font-weight: 600; color: #1A3FC4; margin-bottom: 3px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.enq-item-meta { font-size: 0.75rem; color: #9ca3af; }
.enq-item-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.enq-qty-ctrl { display: flex; align-items: center; border: 1px solid #e5e7eb; border-radius: 4px; overflow: hidden; }
.enq-qty-btn { width: 30px; height: 30px; background: #f4f5f7; border: none; font-size: 1rem; color: #374151; cursor: pointer; transition: background 0.15s; display: flex; align-items: center; justify-content: center; line-height: 1; }
.enq-qty-btn:hover { background: #e5e7eb; }
.enq-qty-input { width: 38px; height: 30px; border: none; border-left: 1px solid #e5e7eb; border-right: 1px solid #e5e7eb; text-align: center; font-size: 0.88rem; font-weight: 600; color: #1A3FC4; background: #fff; outline: none; font-family: inherit; -moz-appearance: textfield; }
.enq-qty-input::-webkit-outer-spin-button, .enq-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.enq-remove-btn { width: 30px; height: 30px; background: none; border: 1px solid #fecaca; border-radius: 4px; color: #ef4444; cursor: pointer; font-size: 0.85rem; transition: background 0.2s; display: flex; align-items: center; justify-content: center; }
.enq-remove-btn:hover { background: #fef2f2; }
.enq-cart-footer { margin-top: 18px; padding-top: 14px; border-top: 1px solid #e5e7eb; }
.enq-continue-link { font-size: 0.85rem; color: #1A3FC4; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.enq-continue-link:hover { gap: 10px; }
.enq-empty { text-align: center; padding: 60px 20px; color: #9ca3af; }
.enq-empty i { font-size: 3.5rem; margin-bottom: 16px; color: #d1d5db; display: block; }
.enq-empty h3 { font-size: 1.1rem; color: #374151; margin-bottom: 8px; }
.enq-empty p { font-size: 0.875rem; margin-bottom: 20px; }
.enq-form-box { background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; padding: 28px 26px; box-shadow: 0 2px 16px rgba(30,58,95,0.08); position: sticky; top: 100px; }
.enq-form-title { font-size: 1.1rem; color: #1A3FC4; font-weight: 700; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.enq-form .form-group { margin-bottom: 12px; }
.enq-form input, .enq-form textarea { width: 100%; border: 1px solid #d1d5db; border-radius: 4px; padding: 10px 14px; font-size: 0.88rem; font-family: inherit; color: #111827; outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.enq-form input:focus, .enq-form textarea:focus { border-color: #1A3FC4; box-shadow: 0 0 0 3px rgba(30,58,95,0.08); }
.enq-alt-contact { margin-top: 18px; padding-top: 16px; border-top: 1px solid #f0f0f0; text-align: center; }
.enq-alt-contact p { font-size: 0.78rem; color: #9ca3af; margin-bottom: 10px; }
.enq-alt-wa, .enq-alt-call { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 4px; font-size: 0.8rem; font-weight: 600; margin: 0 4px; transition: opacity 0.2s; }
.enq-alt-wa { background: #25d366; color: #fff; }
.enq-alt-call { background: #1A3FC4; color: #fff; }
.enq-alt-wa:hover, .enq-alt-call:hover { opacity: 0.88; }
.enq-success-box { display: flex; gap: 24px; align-items: flex-start; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 10px; padding: 32px; max-width: 640px; margin: 0 auto; }
.enq-success-icon { font-size: 3rem; color: #16a34a; min-width: 48px; }

/* ===== PRODUCT TABS & PANELS ===== */
.prod-tabs-wrap { background: #fff; }
.prod-tab-bar { display: none; }
.prod-tab-list { display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; padding: 0; }
.prod-tab-list::-webkit-scrollbar { display: none; }
.prod-tab { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 12px 18px; background: none; border: none; border-bottom: 3px solid transparent; cursor: pointer; font-family: inherit; font-size: 0.76rem; font-weight: 500; color: #6b7280; white-space: nowrap; transition: color 0.2s, border-color 0.2s, background 0.2s; flex-shrink: 0; margin-bottom: -2px; }
.prod-tab i { font-size: 1rem; color: #9ca3af; transition: color 0.2s; }
.prod-tab:hover { color: #1A3FC4; background: #f4f5f7; }
.prod-tab:hover i { color: #1A3FC4; }
.prod-tab.active { color: #1A3FC4; border-bottom-color: #1A3FC4; font-weight: 600; }
.prod-tab.active i { color: #1A3FC4; }
.prod-panels { padding: 0; background: none; }
.prod-panel { display: none; }
.prod-panel.active { display: block; }
.prod-panel-head { text-align: center; margin-bottom: 36px; max-width: 700px; margin-left: auto; margin-right: auto; }
.prod-panel-head h2 { font-size: 1.6rem; color: #1A3FC4; margin-bottom: 8px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.prod-panel-head h2 i { font-size: 1.3rem; }
.prod-panel-head p { color: #6b7280; font-size: 0.88rem; line-height: 1.8; }
.prod-panel > * { max-width: 1200px; margin-left: auto; margin-right: auto; padding-left: 20px; padding-right: 20px; }
.prod-panel .prod-grid, .prod-panel .acc-grid { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.prod-enquiry-cta { background: #1A3FC4; padding: 18px 0; }
.prod-enquiry-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.prod-enquiry-cta p { color: #8AA4E8; font-size: 0.9rem; margin: 0; display: flex; align-items: center; gap: 8px; }
.prod-enquiry-cta p strong { color: #fff; }
.prod-enquiry-cta p i { color: #60a5fa; }
.prod-enquiry-cta .btn-readmore { background: #fff; color: #1A3FC4; border-color: #fff; padding: 10px 24px; white-space: nowrap; display: flex; align-items: center; gap: 8px; }
.prod-enquiry-cta .btn-readmore:hover { background: #E8EDFA; border-color: #E8EDFA; transform: none; }

/* ===== PRODUCT CARD (pcard) ===== */
.prod-intro-strip { background: #fff; border-bottom: 1px solid #e5e7eb; padding: 18px 0; }
.prod-intro-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.prod-intro-badge { display: inline-flex; align-items: center; justify-content: center; background: #ef4444; color: #fff; font-size: 0.7rem; font-weight: 700; min-width: 20px; height: 20px; border-radius: 50px; padding: 0 5px; margin-left: 6px; vertical-align: middle; }

.pcard-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.pcard { background: #fff; border-radius: 10px; box-shadow: 0 2px 12px rgba(30,58,95,0.08); border: 1px solid #e8ecf2; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: transform 0.22s, box-shadow 0.22s; }
.pcard:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(30,58,95,0.14); }
.pcard-badge { position: absolute; top: 12px; left: 12px; background: #1A3FC4; color: #fff; font-size: 0.68rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; letter-spacing: 0.4px; z-index: 2; text-transform: uppercase; }
.pcard-img-wrap { background: #f8fafc; border-bottom: 1px solid #e8ecf2; display: flex; align-items: center; justify-content: center; height: 260px; overflow: hidden; cursor: pointer; position: relative; }
.pcard-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.pcard:hover .pcard-img { transform: scale(1.04); }
.pcard-img-overlay { position: absolute; inset: 0; background: rgba(30,58,95,0.55); color: #fff; font-size: 0.82rem; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 7px; opacity: 0; transition: opacity 0.22s; pointer-events: none; }
.pcard-img-wrap:hover .pcard-img-overlay, .pcard-img-wrap:focus .pcard-img-overlay { opacity: 1; }
.pcard-body { padding: 16px 18px 12px; flex: 1; display: flex; flex-direction: column; gap: 0; }
.pcard-name { font-size: 0.97rem; font-weight: 700; color: #1A3FC4; margin-bottom: 3px; line-height: 1.3; }
.pcard-desc { font-size: 0.82rem; color: #6b7280; line-height: 1.5; margin-bottom: 4px; }
.pcard-model { font-size: 0.72rem; color: #9ca3af; display: block; margin-bottom: 10px; }
.pcard-features { list-style: none; padding: 0; margin: 8px 0 10px; display: flex; flex-direction: column; gap: 5px; }
.pcard-features li { font-size: 0.8rem; color: #374151; display: flex; align-items: flex-start; gap: 7px; line-height: 1.5; }
.pcard-features li i { color: #1A3FC4; margin-top: 2px; min-width: 12px; }
.pcard-spec-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; background: #f4f7fb; border: 1px solid #e0e8f0; border-radius: 5px; padding: 8px 12px; font-size: 0.78rem; font-weight: 600; color: #1A3FC4; cursor: pointer; font-family: inherit; margin-top: 8px; transition: background 0.2s; }
.pcard-spec-toggle:hover { background: #e6edf7; }
.pcard-spec-toggle i { font-size: 0.72rem; transition: transform 0.25s; }
.pcard-spec-panel { margin-top: 8px; }
.pcard-spec-table { width: 100%; border-collapse: collapse; font-size: 0.78rem; }
.pcard-spec-table tr { border-bottom: 1px solid #f0f0f0; }
.pcard-spec-table tr:last-child { border-bottom: none; }
.pcard-spec-table td { padding: 5px 3px; color: #374151; vertical-align: top; }
.pcard-spec-table td:first-child { color: #6b7280; width: 46%; font-weight: 500; }
.pcard-spec-table td strong { color: #1A3FC4; }
.pcard-note { margin-top: 10px; background: #E8EDFA; color: #1A3FC4; font-size: 0.76rem; font-weight: 600; padding: 7px 12px; border-radius: 4px; display: flex; align-items: flex-start; gap: 7px; line-height: 1.5; }
.pcard-note i { margin-top: 2px; }
.pcard-footer { padding: 12px 18px 16px; border-top: 1px solid #f0f0f0; margin-top: auto; }
.pcard-enquiry-row { display: flex; align-items: center; gap: 10px; }
.pcard-enquiry-row .prod-qty-wrap { flex-shrink: 0; }
.pcard-enquiry-row .btn-add-enquiry { flex: 1; }

/* View Specs button */
.btn-view-specs { display: flex; align-items: center; justify-content: center; gap: 7px; width: 100%; background: #f4f7fb; border: 1.5px solid #d0daea; border-radius: 5px; color: #1A3FC4; font-size: 0.8rem; font-weight: 600; padding: 9px 14px; cursor: pointer; font-family: inherit; margin-bottom: 10px; transition: background 0.2s, border-color 0.2s; }
.btn-view-specs:hover { background: #e6edf7; border-color: #1A3FC4; }

/* ===== PRODUCT MODAL ===== */
.pmodal-overlay { position: fixed; inset: 0; background: rgba(10,20,35,0.72); z-index: 90009; display: flex; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(3px); animation: pmodalFadeIn 0.18s ease; }
.pmodal-overlay[hidden] { display: none; }
@keyframes pmodalFadeIn { from { opacity: 0; } to { opacity: 1; } }
.pmodal { background: #fff; border-radius: 12px; width: 100%; max-width: 860px; max-height: 90vh; display: grid; grid-template-columns: 280px 1fr; overflow: hidden; position: relative; box-shadow: 0 24px 80px rgba(10,20,35,0.35); animation: pmodalSlideUp 0.22s ease; }
@keyframes pmodalSlideUp { from { transform: translateY(20px); opacity: 0.6; } to { transform: translateY(0); opacity: 1; } }
.pmodal-close { position: absolute; top: 14px; right: 16px; z-index: 10; width: 34px; height: 34px; border-radius: 50%; border: none; background: rgba(0,0,0,0.08); color: #374151; font-size: 0.95rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s, color 0.2s; }
.pmodal-close:hover { background: #1A3FC4; color: #fff; }
.pmodal-img-col { background: #E8EDFA; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 28px 20px; border-right: 1px solid #e8ecf2; position: relative; }
.pmodal-img-wrap { width: 100%; flex: 1; display: flex; align-items: center; justify-content: center; }
.pmodal-img { max-width: 100%; max-height: 220px; object-fit: contain; display: block; }
.pmodal-badge { display: inline-block; margin-top: 14px; background: #1A3FC4; color: #fff; font-size: 0.7rem; font-weight: 700; padding: 4px 14px; border-radius: 50px; letter-spacing: 0.5px; text-transform: uppercase; }
.pmodal-detail-col { padding: 28px 28px 24px; overflow-y: auto; display: flex; flex-direction: column; gap: 0; }
.pmodal-category { font-size: 0.72rem; color: #9ca3af; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; font-weight: 600; }
.pmodal-title { font-size: 1.35rem; font-weight: 700; color: #1A3FC4; margin-bottom: 4px; line-height: 1.25; text-align: left; }
.pmodal-model { font-size: 0.78rem; color: #9ca3af; margin-bottom: 14px; }
.pmodal-features { list-style: none; padding: 0; margin: 0 0 14px; display: flex; flex-direction: column; gap: 5px; }
.pmodal-features li { font-size: 0.82rem; color: #374151; display: flex; align-items: flex-start; gap: 8px; }
.pmodal-features li i { color: #1A3FC4; margin-top: 2px; min-width: 13px; }
.pmodal-note { background: #E8EDFA; color: #1A3FC4; font-size: 0.78rem; font-weight: 600; padding: 9px 13px; border-radius: 5px; margin-bottom: 14px; display: flex; align-items: flex-start; gap: 8px; line-height: 1.6; }
.pmodal-specs-wrap { margin-bottom: 18px; }
.pmodal-specs-heading { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: #9ca3af; font-weight: 700; margin-bottom: 8px; }
.pmodal-specs-scroll { max-height: 230px; overflow-y: auto; border: 1px solid #e8ecf2; border-radius: 6px; scrollbar-width: thin; scrollbar-color: #c8d5e8 transparent; }
.pmodal-spec-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.pmodal-spec-table tr { border-bottom: 1px solid #f0f0f0; }
.pmodal-spec-table tr:last-child { border-bottom: none; }
.pmodal-spec-table td { padding: 8px 12px; color: #374151; vertical-align: top; }
.pmodal-spec-table tr:nth-child(even) td { background: #f9fbff; }
.pmodal-spec-table td:first-child { color: #6b7280; width: 44%; font-weight: 600; font-size: 0.78rem; }
.pmodal-spec-table td strong { color: #1A3FC4; }
.pmodal-enq-form { margin-top: auto; padding-top: 16px; border-top: 1px solid #e8ecf2; }
.pmodal-enq-row { display: flex; align-items: center; gap: 10px; }
.pmodal-enq-row .btn-add-enquiry { flex: 1; padding: 11px 16px; font-size: 0.88rem; }

/* ===== PRODUCTS PAGE SIDEBAR LAYOUT ===== */
.prod-page-section { background: #f4f5f7; padding: 40px 0 60px; }
.prod-page-grid { display: grid; grid-template-columns: 280px 1fr; gap: 28px; align-items: start; }

.prod-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 80px; }
.prod-sidebar .sidebar-card { background: #fff; border-radius: 10px; padding: 20px; box-shadow: 0 2px 12px rgba(30,58,95,0.08); border: 1px solid #e8ecf2; }
.prod-sidebar .sidebar-card h4 { font-size: 0.78rem; font-weight: 700; color: #1A3FC4; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; padding-bottom: 10px; border-bottom: 1px solid #e8ecf2; }
.prod-sidebar .sidebar-card h4 i { color: #3358D4; }

.sidebar-cat-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.sidebar-cat-btn { display: flex; align-items: center; gap: 9px; width: 100%; background: none; border: none; border-radius: 6px; padding: 9px 10px; font-size: 0.84rem; font-weight: 500; color: #374151; cursor: pointer; font-family: inherit; text-align: left; transition: background 0.18s, color 0.18s; }
.sidebar-cat-btn i { font-size: 0.88rem; color: #9ca3af; min-width: 16px; transition: color 0.18s; }
.sidebar-cat-btn:hover { background: #E8EDFA; color: #1A3FC4; }
.sidebar-cat-btn:hover i { color: #1A3FC4; }
.sidebar-cat-btn.active { background: #1A3FC4; color: #fff; font-weight: 600; }
.sidebar-cat-btn.active i { color: #8AA4E8; }
.sidebar-cat-count { margin-left: auto; background: #e8ecf2; color: #6b7280; font-size: 0.68rem; font-weight: 700; padding: 1px 7px; border-radius: 50px; min-width: 22px; text-align: center; }
.sidebar-cat-btn.active .sidebar-cat-count { background: rgba(255,255,255,0.2); color: #fff; }

.sidebar-enquiry-card { padding-bottom: 16px; }
.sidebar-enq-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid #e8ecf2; }
.sidebar-enq-header h4 { margin: 0; border: none; padding: 0; }
.sidebar-enq-badge { display: inline-flex; align-items: center; justify-content: center; background: #ef4444; color: #fff; font-size: 0.68rem; font-weight: 700; min-width: 20px; height: 20px; border-radius: 50px; padding: 0 5px; }
.sidebar-enq-empty { text-align: center; padding: 18px 0 10px; color: #9ca3af; }
.sidebar-enq-empty i { font-size: 1.8rem; display: block; margin-bottom: 8px; color: #d1d5db; }
.sidebar-enq-empty p { font-size: 0.78rem; line-height: 1.6; margin: 0; }
.sidebar-enq-list { list-style: none; padding: 0; margin: 0 0 12px; display: flex; flex-direction: column; gap: 8px; max-height: 260px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: #c8d5e8 transparent; }
.sidebar-enq-item { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; padding: 8px 10px; background: #f4f7fb; border-radius: 6px; border-left: 3px solid #1A3FC4; }
.sidebar-enq-item-info { flex: 1; min-width: 0; }
.sidebar-enq-item-name { display: block; font-size: 0.8rem; font-weight: 600; color: #1A3FC4; line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sidebar-enq-item-meta { font-size: 0.7rem; color: #9ca3af; display: block; margin-top: 2px; }
.sidebar-enq-remove { width: 22px; height: 22px; min-width: 22px; background: none; border: 1px solid #fca5a5; border-radius: 4px; color: #ef4444; font-size: 0.7rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.15s; margin-top: 2px; }
.sidebar-enq-remove:hover { background: #fef2f2; }
.sidebar-enq-goto { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; background: #1A3FC4; color: #fff; border-radius: 6px; padding: 11px 16px; font-size: 0.84rem; font-weight: 700; text-decoration: none; margin-top: 4px; transition: background 0.2s; letter-spacing: 0.3px; }
.sidebar-enq-goto:hover { background: #1230A0; color: #fff; }
.sidebar-enq-goto-count { font-weight: 400; opacity: 0.8; }
.sidebar-enq-browse { display: block; text-align: center; font-size: 0.78rem; color: #1A3FC4; font-weight: 500; margin-top: 10px; text-decoration: underline; opacity: 0.7; }
.sidebar-cta { text-align: center; }
.sidebar-cta > i { font-size: 1.8rem; color: #1A3FC4; margin-bottom: 10px; display: block; }
.sidebar-cta h4 { justify-content: center; border: none; padding: 0; margin-bottom: 8px; }
.sidebar-cta p { font-size: 0.82rem; color: #6b7280; line-height: 1.6; margin-bottom: 12px; }
.sidebar-cta-phone { display: inline-flex; align-items: center; gap: 7px; background: #E8EDFA; color: #1A3FC4; border-radius: 6px; padding: 9px 18px; font-size: 0.88rem; font-weight: 700; transition: background 0.2s; }
.sidebar-cta-phone:hover { background: #e0e8f4; }

.prod-main-col { min-width: 0; }
.prod-main-col .prod-panel { display: none; }
.prod-main-col .prod-panel.active { display: block; }
.prod-main-col .prod-panel-head { background: #fff; border-radius: 10px; padding: 22px 24px; margin-bottom: 20px; border: 1px solid #e8ecf2; box-shadow: 0 1px 6px rgba(30,58,95,0.05); }
.prod-main-col .prod-panel-head h2 { font-size: 1.4rem; color: #1A3FC4; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; text-align: left; justify-content: flex-start; }
.prod-main-col .prod-panel-head p { font-size: 0.88rem; color: #6b7280; margin: 0; line-height: 1.7; }
.prod-main-col .pcard-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

.prod-mobile-bar { display: none; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 16px; }
.prod-sidebar-toggle { display: flex; align-items: center; gap: 8px; background: #1A3FC4; color: #fff; border: none; border-radius: 6px; padding: 10px 16px; font-size: 0.84rem; font-weight: 600; cursor: pointer; font-family: inherit; }
.prod-mobile-enq { display: flex; align-items: center; gap: 6px; background: #fff; color: #1A3FC4; border: 1.5px solid #d0daea; border-radius: 6px; padding: 9px 14px; font-size: 0.84rem; font-weight: 600; white-space: nowrap; }
.prod-sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(10,20,35,0.5); z-index: 1500; }
.prod-sidebar-overlay.active { display: block; }

/* ===== LEGAL PAGES ===== */
.legal-page-section { background: #fff; padding: 70px 0 90px; }
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-updated { display: inline-block; background: #E8EDFA; color: #5B80E0; font-size: 0.8rem; font-weight: 600; padding: 5px 14px; border-radius: 30px; margin-bottom: 24px; letter-spacing: 0.5px; }
.legal-content > p { color: #374151; font-size: 0.95rem; line-height: 1.85; margin-bottom: 16px; }
.legal-section { margin-top: 36px; padding-top: 28px; border-top: 1px solid #e5e7eb; }
.legal-section h3 { font-size: 1rem; font-weight: 700; color: #1A3FC4; margin-bottom: 14px; text-align: left; }
.legal-section p { color: #374151; font-size: 0.9rem; line-height: 1.8; margin-bottom: 10px; }
.legal-section ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.legal-section ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: #374151; line-height: 1.75; padding-left: 4px; }
.legal-section ul li::before { content: '›'; color: #1A3FC4; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.legal-contact { background: #f4f5f7; border-radius: 8px; padding: 20px 24px; border-left: 3px solid #1A3FC4; margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.legal-contact p { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: #374151; margin: 0; }
.legal-contact p i { color: #1A3FC4; width: 16px; flex-shrink: 0; }
.legal-contact p a { color: #1A3FC4; transition: color 0.2s; }
.legal-contact p a:hover { color: #3358D4; text-decoration: underline; }

/* ===== UNDER CONSTRUCTION ===== */
.under-construction-section { background: #f4f5f7; min-height: calc(100vh - 180px); display: flex; align-items: center; padding: 80px 0; }
.under-construction-inner { text-align: center; max-width: 520px; margin: 0 auto; }
.uc-icon { width: 90px; height: 90px; background: linear-gradient(135deg, #1A3FC4, #3358D4); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; box-shadow: 0 8px 28px rgba(30,58,95,0.25); }
.uc-icon i { font-size: 2.2rem; color: #fff; }
.under-construction-inner h1 { font-size: 2rem; color: #1A3FC4; font-weight: 700; margin-bottom: 14px; }
.under-construction-inner p { color: #6b7280; font-size: 1rem; line-height: 1.75; margin-bottom: 32px; }

/* Misc legacy sections */
.gallery-slider { position: relative; max-width: 900px; margin: 0 auto; border-radius: 8px; overflow: hidden; box-shadow: 0 8px 32px rgba(30,58,95,0.18); }
.slides-wrapper { position: relative; }
.slide { display: none; }
.slide img { width: 100%; height: 480px; object-fit: cover; }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(30,58,95,0.65); color: #fff; border: none; padding: 14px 18px; font-size: 1.2rem; cursor: pointer; z-index: 10; border-radius: 3px; transition: background 0.3s; }
.slider-btn:hover { background: rgba(30,58,95,0.95); }
.slider-btn.prev { left: 12px; }
.slider-btn.next { right: 12px; }
.slider-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.dot { width: 10px; height: 10px; background: rgba(255,255,255,0.45); border-radius: 50%; cursor: pointer; transition: background 0.3s; }
.dot.active { background: #fff; }
.overview-section { background: linear-gradient(135deg, #0a1438 0%, #1A3FC4 100%); padding: 80px 0; }
.overview-section h2 { color: #fff; }
.overview-section .section-subtext { color: #8AA4E8; }
.video-embed-wrap { position: relative; height: 340px; overflow: hidden; border-radius: 10px; box-shadow: 0 20px 60px rgba(30,58,95,0.22); margin-top: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.video-embed-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.clients-section { background: #fff; padding: 80px 0; }
.clients-section h2 { margin-bottom: 8px; }
.clients-swiper-wrap { margin-top: 40px; padding: 0 50px; position: relative; }
.client-slide { display: flex !important; align-items: center; justify-content: center; padding: 10px 20px; }
.client-slide img { max-height: 80px; max-width: 160px; width: auto; object-fit: contain; display: block; margin: 0 auto; }
.clients-swiper-wrap .swiper-button-prev, .clients-swiper-wrap .swiper-button-next { color: #1A3FC4; width: 36px; height: 36px; }
.clients-swiper-wrap .swiper-button-prev::after, .clients-swiper-wrap .swiper-button-next::after { font-size: 1.1rem; font-weight: 700; }

/* ===== RESPONSIVE / MEDIA QUERIES ===== */

/* Stats banner */
@media (max-width: 768px) {
    .stats-banner-grid { gap: 0; display: grid; grid-template-columns: repeat(2, 1fr); }
    .stats-banner-item { padding: 14px 24px; }
    .stats-banner-divider { display: none; }
    .stats-banner-item strong, .stats-banner-item .counter { font-size: 2.2rem; }
    .stats-impact-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-impact-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .stats-impact-inner { clip-path: polygon(0 4%, 100% 0%, 100% 96%, 0% 100%); }
    .infra-mosaic { grid-template-columns: repeat(2, 1fr); }
    .infra-tile-wide { grid-column: span 2; }
}

/* Services & Why */
@media (max-width: 900px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-feature-grid { grid-template-columns: repeat(2, 1fr); }
    .about-split-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-img-frame img { height: 320px; }
    .about-img-overlay-card { right: 0; bottom: 16px; }
    .about-exp-badge { top: -16px; left: 0; }
    .about-split-section { padding: 80px 0; }
    .video-overview-grid { grid-template-columns: 1fr; gap: 44px; }
    .video-overview-section { padding: 80px 0; }
    .product-page-grid{grid-template-columns: 1fr !important; }
}
@media (max-width: 560px) {
    .services-grid { grid-template-columns: 1fr; }
    .why-feature-grid { grid-template-columns: 1fr; }
}

/* Main breakpoint: hamburger, hide nav */
@media (max-width: 900px) {
    .hamburger { display: flex; }
    .main-nav { display: none; }
    .top-bar { display: none; }
    .enquiry-btn { display: none; }
    .hero-video-section { height: calc(100vh - 110px); min-height: 500px; }
    .hero-content { padding: 0 24px; }
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 0.95rem; }
    .slide img { height: 260px; }
    .photo-grid { grid-template-columns: repeat(2, 1fr); }
    .intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .intro-image img { height: 320px; }
    .intro-image-badge { left: 0; bottom: -16px; }
    .intro-image { padding-bottom: 20px; }
    .intro-stats { gap: 20px; }
    h2 { font-size: 1.6rem; }
    .about-intro-grid, .about-offer-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-intro-image { padding-bottom: 20px; }
    .about-intro-badge { left: 0; bottom: -16px; }
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 20px; }
    .about-values-grid { grid-template-columns: 1fr; }
    .product-page-grid { grid-template-columns: 1fr; }
    .product-sidebar { position: static; }
    .product-main h2 { font-size: 1.6rem; }
    .contact-main-grid { grid-template-columns: 1fr; gap: 48px; }
    .cfn-row { grid-template-columns: 1fr; }
    .contact-map-wrap { height: 260px; }
    .btn-submit { align-self: stretch; justify-content: center; }
    .enq-layout { grid-template-columns: 1fr; }
    .enq-form-box { position: static; }
    .cta-band-inner { flex-direction: column; align-items: flex-start; }
    .cta-band h2 { font-size: 1.4rem; }
    .prod-tab { padding: 10px 14px; font-size: 0.72rem; }
    .prod-tab span { display: none; }
    .prod-tab i { font-size: 1.15rem; }
    .prod-tab-bar { top: 0; }
    .prod-enquiry-cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    .prod-section-title { font-size: 1.35rem; }
    .prod-grid, .prod-grid-2, .prod-grid-3 { grid-template-columns: 1fr; }
    .acc-grid { grid-template-columns: repeat(2, 1fr); }
    .prod-features-banner { grid-template-columns: 1fr; }
    .pcard-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
    .pcard-img-wrap { height: 200px; }
    .pcard-body { padding: 12px 14px 8px; }
    .pcard-footer { padding: 10px 14px 12px; }
    .pcard-name { font-size: 0.88rem; }
    .prod-intro-inner { flex-direction: column; align-items: flex-start; }
    .pmodal { grid-template-columns: 1fr; max-height: 94vh; }
    .pmodal-img-col { border-right: none; border-bottom: 1px solid #e8ecf2; padding: 20px; max-height: 200px; flex-direction: row; gap: 16px; justify-content: flex-start; }
    .pmodal-img { max-height: 120px; }
    .pmodal-badge { margin-top: 0; }
    .pmodal-detail-col { padding: 20px 18px 18px; }
    .pmodal-title { font-size: 1.1rem; }
    .pmodal-specs-scroll { max-height: 160px; }
}

@media (max-width: 1024px) {
    .product-page-grid { grid-template-columns: 1fr 280px; gap: 36px; }
    .prod-page-grid { grid-template-columns: 1fr; }
    .prod-sidebar {
        position: fixed;
        top: 0; left: 0;
        width: 300px;
        height: 100vh;
        z-index: 1600;
        overflow-y: auto;
        background: #f4f5f7;
        padding: 20px 16px;
        transform: translateX(-110%);
        transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
        box-shadow: 4px 0 24px rgba(10,20,35,0.18);
        border-radius: 0;
        gap: 16px;
    }
    .prod-sidebar.open { transform: translateX(0); }
    .prod-mobile-bar { display: flex; }
    .prod-page-section { padding: 20px 0 40px; }
}

@media (max-width: 480px) {
    .hero-video-section {
        height: auto;
        aspect-ratio: 16 / 9;
        min-height: unset;
    }
    .hero-video-wrapper video { object-position: center center; }
    .hero-content {
        padding: 0 14px;
        justify-content: center;
        padding-bottom: 0;
    }
    .hero-content h1 { font-size: 1.4rem; }
    .hero-content p { display: none; }
    .hero-btns { gap: 10px; }
    .hero-badges { display: none; }
    .hero-scroll-hint { display: none; }
    .btn-hero-primary, .btn-hero-outline { padding: 12px 22px; font-size: 0.82rem; }
    .hero-badges { bottom: 68px; }
    .hero-badge-pill { font-size: 0.7rem; padding: 7px 14px; }
    .spec-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .photo-grid { grid-template-columns: repeat(2, 1fr); }
    .photo-grid a img { height: 140px; }
    .stat-item h3 { font-size: 2.2rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .clients-grid { grid-template-columns: repeat(2, 1fr); }
    .intro-stats { flex-wrap: wrap; gap: 16px; }
    .intro-stat strong { font-size: 1.5rem; }
    .offer-items-grid { grid-template-columns: 1fr; }
    .about-stats-grid { grid-template-columns: 1fr 1fr; }
    .pcard-grid { grid-template-columns: 1fr; }
    .pcard-enquiry-row { flex-direction: column; align-items: stretch; }
    .pcard-enquiry-row .prod-qty-wrap { justify-content: center; }
    .pmodal-overlay { padding: 0; align-items: flex-end; }
    .pmodal { border-radius: 14px 14px 0 0; max-height: 96vh; }
    .infra-mosaic { grid-template-columns: 1fr 1fr; }
    .infra-tile img, .infra-tile-wide img { height: 150px; }
    .prod-panel-head h2 { font-size: 1.3rem; }
    .prod-panels { padding: 30px 0 40px; }
    .prod-main-col .pcard-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
    .prod-main-col .prod-panel-head { padding: 16px; }
    .prod-main-col .prod-panel-head h2 { font-size: 1.2rem; }
}

@media (max-width: 600px) {
    .hero-badges { bottom: 68px; }
    .enq-item { flex-wrap: wrap; gap: 10px; }
    .enq-item-actions { width: 100%; justify-content: flex-end; }
    .enq-success-box { flex-direction: column; align-items: center; text-align: center; }
    .cart-toast-bar a { margin-left: 0; }
}

/* ============================================================
   CONTACT PAGE — PREMIUM REDESIGN
   ============================================================ */

/* ── Hero Strip ── */
.ct-hero {
    background: linear-gradient(145deg, #0a1438 0%, #1A3FC4 100%);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
}
.ct-hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}
.ct-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(26,63,196,0.3) 0%, transparent 65%);
    pointer-events: none;
}
.ct-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.ct-hero-text h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 14px 0 16px;
    letter-spacing: -0.5px;
}
.ct-hero-text p {
    color: rgba(255,255,255,0.72);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 480px;
}
.ct-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.ct-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.ct-hero-btn:hover { transform: translateY(-2px); }
.ct-btn-call {
    background: #fff;
    color: #1A3FC4;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.ct-btn-call:hover { box-shadow: 0 10px 28px rgba(0,0,0,0.2); color: #1A3FC4; }
.ct-btn-wa {
    background: #25d366;
    color: #fff;
    box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}
.ct-btn-wa:hover { opacity: 0.9; box-shadow: 0 10px 28px rgba(37,211,102,0.45); color: #fff; }

/* Quick cards on the right */
.ct-hero-cards { display: flex; flex-direction: column; gap: 14px; }
.ct-quick-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 12px;
    padding: 18px 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    backdrop-filter: blur(6px);
    transition: background 0.2s;
}
.ct-quick-card:hover { background: rgba(255,255,255,0.13); }
.ct-qc-icon {
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.12);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    color: #93c5fd;
    flex-shrink: 0;
}
.ct-quick-card strong { display: block; font-size: 0.88rem; color: #fff; font-weight: 700; margin-bottom: 3px; }
.ct-quick-card span { font-size: 0.78rem; color: rgba(255,255,255,0.62); line-height: 1.6; }

/* ── Info Strip ── */
.ct-info-strip {
    background: #fff;
    padding: 0;
    border-bottom: 1px solid #e5e7eb;
}
.ct-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.ct-info-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 22px;
    border-right: 1px solid #e5e7eb;
    transition: background 0.2s;
    text-decoration: none;
    color: inherit;
}
.ct-info-card:last-child { border-right: none; }
.ct-info-card:hover { background: #f4f5f7; }
.ct-info-icon {
    width: 46px; height: 46px;
    min-width: 46px;
    background: #E8EDFA;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    color: #1A3FC4;
    transition: background 0.2s, color 0.2s;
}
.ct-info-card:hover .ct-info-icon { background: #1A3FC4; color: #fff; }
.ct-info-body { flex: 1; min-width: 0; }
.ct-info-label { display: block; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #9ca3af; margin-bottom: 2px; }
.ct-info-body strong { display: block; font-size: 0.88rem; color: #0a1438; font-weight: 700; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ct-info-sub { font-size: 0.75rem; color: #6b7280; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.ct-info-arrow { font-size: 0.7rem; color: #d1d5db; flex-shrink: 0; transition: color 0.2s, transform 0.2s; }
.ct-info-card:hover .ct-info-arrow { color: #1A3FC4; transform: translateX(3px); }
.ct-info-wa .ct-info-icon { background: rgba(37,211,102,0.12); color: #25d366; }
.ct-info-wa:hover .ct-info-icon { background: #25d366; color: #fff; }

/* ── Main Section ── */
.ct-main-section {
    background: #f4f5f7;
    padding: 80px 0 90px;
}
.ct-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: flex-start;
}

/* Form column */
.ct-form-col {
    background: #fff;
    border-radius: 16px;
    padding: 40px 40px 36px;
    box-shadow: 0 4px 32px rgba(10,20,56,0.08);
    border: 1px solid #e5e7eb;
}
.ct-form-header { margin-bottom: 28px; }
.ct-form-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0a1438;
    margin: 10px 0 10px;
    line-height: 1.25;
    letter-spacing: -0.4px;
    text-align: left;
}
.ct-form-header p { font-size: 0.88rem; color: #6b7280; line-height: 1.75; margin: 0; }

.ct-form { display: flex; flex-direction: column; gap: 16px; }
.ct-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ct-field { display: flex; flex-direction: column; gap: 6px; }
.ct-field label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.ct-field label span { color: #ef4444; }
.ct-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.ct-input-wrap > i {
    position: absolute;
    left: 14px;
    font-size: 0.8rem;
    color: #9ca3af;
    pointer-events: none;
    z-index: 1;
}
.ct-input-wrap input,
.ct-input-wrap select,
.ct-input-wrap textarea {
    width: 100%;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 14px 12px 38px;
    font-size: 0.88rem;
    font-family: inherit;
    color: #111827;
    outline: none;
    background: #fafafa;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
}
.ct-input-wrap input:focus,
.ct-input-wrap select:focus,
.ct-input-wrap textarea:focus {
    border-color: #1A3FC4;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(26,63,196,0.1);
}
.ct-input-wrap input:focus ~ i,
.ct-input-wrap select:focus ~ i { color: #1A3FC4; }
.ct-textarea-wrap { align-items: flex-start; }
.ct-textarea-wrap > i { top: 14px; }
.ct-textarea-wrap textarea { resize: vertical; min-height: 130px; padding-top: 12px; }
.ct-consent label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.8rem;
    color: #6b7280;
    cursor: pointer;
    line-height: 1.6;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
}
.ct-consent input[type="checkbox"] {
    width: 16px; height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: #1A3FC4;
    padding: 0; border: none; background: none; box-shadow: none;
}
.ct-consent a { color: #1A3FC4; text-decoration: underline; }

.ct-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #1A3FC4, #3358D4);
    color: #fff;
    border: none;
    padding: 15px 32px;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 20px rgba(26,63,196,0.3);
    width: 100%;
    margin-top: 4px;
}
.ct-submit-btn:hover { opacity: 0.92; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(26,63,196,0.4); }

/* Success */
.ct-success-box {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #f0fdf4;
    border: 1.5px solid #86efac;
    border-radius: 12px;
    padding: 24px 26px;
}
.ct-success-icon { font-size: 2rem; color: #16a34a; flex-shrink: 0; }
.ct-success-box strong { display: block; font-size: 1rem; color: #166534; margin-bottom: 4px; }
.ct-success-box p { font-size: 0.88rem; color: #166534; margin: 0; }

/* Map column */
.ct-map-col { display: flex; flex-direction: column; gap: 20px; }
.ct-map-frame {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(10,20,56,0.14);
    border: 2px solid #e5e7eb;
    height: 340px;
    flex-shrink: 0;
}
.ct-map-frame iframe { width: 100%; height: 100%; border: none; display: block; }

/* Aside cards */
.ct-aside-cards { display: flex; flex-direction: column; gap: 16px; }
.ct-aside-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 12px rgba(10,20,56,0.06);
}
.ct-aside-card > i {
    font-size: 1.1rem;
    color: #1A3FC4;
    margin-top: 3px;
    flex-shrink: 0;
    width: 20px;
}
.ct-aside-card strong { display: block; font-size: 0.88rem; color: #0a1438; font-weight: 700; margin-bottom: 10px; }

/* Stacked info cards (below map) */
.ct-info-card-stacked {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(10,20,56,0.06);
    cursor: default;
}
.ct-info-card-stacked:hover { background: #f4f5f7; }
.ct-info-link {
    display: block;
    color: #0a1438;
    font-size: 0.88rem;
    font-weight: 600;
    transition: color 0.2s;
    text-decoration: none;
    line-height: 1.5;
}
.ct-info-link:hover { color: #1A3FC4; text-decoration: underline; }
.ct-info-link strong { font-weight: 700; }

/* Social row */
.ct-social-row { display: flex; gap: 8px; flex-wrap: wrap; }
.ct-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    transition: opacity 0.2s, transform 0.2s;
}
.ct-social-btn:hover { opacity: 0.88; transform: translateY(-2px); }
.ct-fb { background: #1877f2; color: #fff; }
.ct-ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#bc1888); color: #fff; }
.ct-yt { background: #ff0000; color: #fff; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .ct-info-grid { grid-template-columns: repeat(2, 1fr); }
    .ct-info-card { border-bottom: 1px solid #e5e7eb; }
    .ct-info-card:nth-child(2) { border-right: none; }
}
@media (max-width: 900px) {
    .ct-hero-inner { grid-template-columns: 1fr; gap: 36px; }
    .ct-main-grid { grid-template-columns: 1fr; }
    .ct-form-col { padding: 28px 24px; }
    .ct-form-header h2 { font-size: 1.5rem; }
}
@media (max-width: 600px) {
    .ct-hero { padding: 60px 0 50px; }
    .ct-info-grid { grid-template-columns: 1fr; }
    .ct-info-card { border-right: none; }
    .ct-form-row { grid-template-columns: 1fr; }
    .ct-hero-actions { flex-direction: column; }
    .ct-hero-btn { justify-content: center; }
    .ct-map-frame { height: 240px; }
}

/* ============================================================
   ENQUIRY CART PAGE — PREMIUM REDESIGN
   ============================================================ */

.eqc-section {
    background: #f4f5f7;
    padding: 60px 0 90px;
    min-height: calc(100vh - 300px);
}

/* ── Layout ── */
.eqc-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
    align-items: flex-start;
}

/* ── Error box ── */
.eqc-errors { max-width: 100%; margin-bottom: 28px; }

/* ── Success ── */
.eqc-success {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    background: #fff;
    border: 1.5px solid #86efac;
    border-radius: 16px;
    padding: 40px 44px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 4px 32px rgba(10,20,56,0.08);
}
.eqc-success-icon { font-size: 3rem; color: #16a34a; flex-shrink: 0; }
.eqc-success-body h2 { font-size: 1.5rem; color: #0a1438; margin-bottom: 10px; text-align: left; }
.eqc-success-body p { font-size: 0.9rem; color: #374151; line-height: 1.75; margin-bottom: 24px; }
.eqc-success-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.eqc-btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: #1A3FC4; color: #fff;
    padding: 12px 26px; border-radius: 8px;
    font-size: 0.88rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.8px;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(26,63,196,0.25);
}
.eqc-btn-primary:hover { background: #1230A0; transform: translateY(-2px); color: #fff; }
.eqc-btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: #1A3FC4;
    padding: 12px 26px; border-radius: 8px;
    font-size: 0.88rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.8px;
    border: 2px solid #1A3FC4;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.eqc-btn-outline:hover { background: #1A3FC4; color: #fff; transform: translateY(-2px); }

/* ── Cart column ── */
.eqc-cart-col {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 24px rgba(10,20,56,0.07);
    overflow: hidden;
}

/* Cart header */
.eqc-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    border-bottom: 1px solid #f0f0f0;
    background: linear-gradient(135deg, #0a1438, #1A3FC4);
}
.eqc-cart-title { display: flex; align-items: center; gap: 14px; }
.eqc-cart-title-icon {
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: #fff;
}
.eqc-cart-title h2 {
    font-size: 1.1rem; font-weight: 700; color: #fff;
    margin: 0; text-align: left;
}
.eqc-count {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 50px;
    margin-top: 3px;
    letter-spacing: 0.4px;
}
.eqc-clear-btn {
    display: flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    border-radius: 6px; padding: 7px 14px;
    font-size: 0.78rem; font-weight: 600; cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}
.eqc-clear-btn:hover { background: rgba(239,68,68,0.3); border-color: rgba(239,68,68,0.6); }

/* Empty state */
.eqc-empty {
    text-align: center;
    padding: 64px 32px;
    color: #9ca3af;
}
.eqc-empty-icon {
    width: 80px; height: 80px;
    background: #f4f5f7;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem; color: #d1d5db;
}
.eqc-empty h3 { font-size: 1.1rem; color: #374151; margin-bottom: 8px; }
.eqc-empty p { font-size: 0.875rem; margin-bottom: 24px; line-height: 1.7; }

/* Items list */
.eqc-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Single item row */
.eqc-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 28px;
    border-bottom: 1px solid #f4f5f7;
    transition: background 0.15s;
}
.eqc-item:last-child { border-bottom: none; }
.eqc-item:hover { background: #fafbff; }
.eqc-item-icon {
    width: 46px; height: 46px;
    background: #E8EDFA;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: #1A3FC4;
    flex-shrink: 0;
}
.eqc-item-info { flex: 1; min-width: 0; }
.eqc-item-info h4 {
    font-size: 0.92rem; font-weight: 700;
    color: #0a1438; margin-bottom: 4px;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.eqc-item-meta {
    font-size: 0.75rem; color: #9ca3af;
    display: flex; align-items: center; gap: 6px;
}
.eqc-item-meta i { color: #c5d0f5; font-size: 0.65rem; }

/* Qty controls */
.eqc-item-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.eqc-qty {
    display: flex;
    align-items: center;
    background: #f4f5f7;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}
.eqc-qty button {
    width: 32px; height: 32px;
    background: none; border: none;
    font-size: 1rem; color: #374151;
    cursor: pointer; transition: background 0.15s;
    display: flex; align-items: center; justify-content: center;
    font-weight: 600;
}
.eqc-qty button:hover { background: #e5e7eb; }
.eqc-qty input {
    width: 40px; height: 32px;
    border: none;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    text-align: center;
    font-size: 0.88rem; font-weight: 700; color: #1A3FC4;
    background: #fff; outline: none; font-family: inherit;
    -moz-appearance: textfield;
}
.eqc-qty input::-webkit-outer-spin-button,
.eqc-qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.eqc-remove {
    width: 32px; height: 32px;
    background: none;
    border: 1.5px solid #fca5a5;
    border-radius: 8px; color: #ef4444;
    cursor: pointer; font-size: 0.8rem;
    transition: background 0.2s, border-color 0.2s;
    display: flex; align-items: center; justify-content: center;
}
.eqc-remove:hover { background: #fef2f2; border-color: #ef4444; }

/* Cart footer */
.eqc-cart-footer {
    padding: 18px 28px;
    border-top: 1px solid #f0f0f0;
    background: #fafbff;
}
.eqc-add-more {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.85rem; font-weight: 600; color: #1A3FC4;
    transition: gap 0.2s;
}
.eqc-add-more:hover { gap: 12px; }

/* ── Form column ── */
.eqc-form-col { position: sticky; top: 100px; }
.eqc-form-box {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 24px rgba(10,20,56,0.07);
    padding: 32px 30px;
}
.eqc-form-header { margin-bottom: 24px; }
.eqc-form-header h3 {
    font-size: 1.4rem; font-weight: 800; color: #0a1438;
    margin: 10px 0 8px; line-height: 1.2;
}
.eqc-form-header p { font-size: 0.83rem; color: #6b7280; line-height: 1.7; margin: 0; }

.eqc-form { display: flex; flex-direction: column; gap: 14px; }
.eqc-field { display: flex; flex-direction: column; gap: 5px; }
.eqc-field label {
    font-size: 0.72rem; font-weight: 700; color: #374151;
    text-transform: uppercase; letter-spacing: 0.8px;
}
.eqc-field label span { color: #ef4444; }
.eqc-input-wrap { position: relative; display: flex; align-items: center; }
.eqc-input-wrap > i {
    position: absolute; left: 13px;
    font-size: 0.78rem; color: #9ca3af; pointer-events: none; z-index: 1;
}
.eqc-input-wrap input,
.eqc-input-wrap textarea {
    width: 100%;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    padding: 11px 13px 11px 36px;
    font-size: 0.87rem; font-family: inherit;
    color: #111827; outline: none; background: #fafafa;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.eqc-input-wrap input:focus,
.eqc-input-wrap textarea:focus {
    border-color: #1A3FC4; background: #fff;
    box-shadow: 0 0 0 3px rgba(26,63,196,0.1);
}
.eqc-textarea-wrap { align-items: flex-start; }
.eqc-textarea-wrap > i { top: 13px; }
.eqc-textarea-wrap textarea { resize: vertical; min-height: 100px; }

.eqc-submit-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: linear-gradient(135deg, #1A3FC4, #3358D4);
    color: #fff; border: none;
    padding: 14px; border-radius: 8px;
    font-size: 0.92rem; font-weight: 700; cursor: pointer;
    text-transform: uppercase; letter-spacing: 1px;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 20px rgba(26,63,196,0.28);
    width: 100%; margin-top: 4px;
}
.eqc-submit-btn:not(:disabled):hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(26,63,196,0.38); }
.eqc-submit-btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }

.eqc-submit-hint {
    text-align: center; font-size: 0.78rem; color: #9ca3af;
    margin-top: 8px; display: flex; align-items: center; justify-content: center; gap: 5px;
}

/* Alt contact */
.eqc-alt-contact {
    margin-top: 22px; padding-top: 18px;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}
.eqc-alt-contact > p { font-size: 0.75rem; color: #9ca3af; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; font-weight: 600; }
.eqc-alt-row { display: flex; gap: 10px; justify-content: center; }
.eqc-alt-btn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 9px 20px; border-radius: 8px;
    font-size: 0.82rem; font-weight: 700;
    transition: opacity 0.2s, transform 0.2s;
}
.eqc-alt-btn:hover { opacity: 0.88; transform: translateY(-2px); }
.eqc-wa { background: #25d366; color: #fff; }
.eqc-call { background: #E8EDFA; color: #1A3FC4; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .eqc-layout { grid-template-columns: 1fr 360px; }
}
@media (max-width: 900px) {
    .eqc-layout { grid-template-columns: 1fr; }
    .eqc-form-col { position: static; }
}
@media (max-width: 600px) {
    .eqc-item { padding: 14px 18px; flex-wrap: wrap; gap: 10px; }
    .eqc-item-actions { width: 100%; justify-content: flex-end; }
    .eqc-cart-header { padding: 18px 20px; }
    .eqc-cart-footer { padding: 14px 20px; }
    .eqc-form-box { padding: 24px 20px; }
    .eqc-success { flex-direction: column; align-items: center; text-align: center; padding: 32px 24px; }
    .eqc-success-actions { justify-content: center; }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.gallery-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    cursor: zoom-in;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: block;
}

.gallery-grid img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.gallery-grid img:focus-visible {
    outline: 3px solid #1A3FC4;
    outline-offset: 3px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
}

.lightbox .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid img {
        height: 220px;
    }
}