/* ============================================================
SHANGHAI POLARIS — Design System (Blue & Gold)
============================================================ */
:root {
--navy: #0A2463;
--navy-dark: #061538;
--royal: #1E40AF;
--gold: #D4AF37;
--gold-light: #F0D77B;
--gold-dark: #A8842A;
--offwhite: #F8F9FC;
--ink: #1A1A2E;
--muted: #6B7394;
--shadow-sm: 0 4px 16px rgba(10, 36, 99, 0.08);
--shadow-md: 0 12px 40px rgba(10, 36, 99, 0.12);
--shadow-lg: 0 24px 60px rgba(10, 36, 99, 0.18);
--gold-gradient: linear-gradient(135deg, #F0D77B 0%, #D4AF37 50%, #A8842A 100%);
--navy-gradient: linear-gradient(135deg, #0A2463 0%, #1E40AF 100%);
--radius: 16px;
--radius-sm: 10px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
img, iframe { max-width: 100%; }
body {
font-family: 'Inter', -apple-system, sans-serif;
color: var(--ink);
background: #fff;
line-height: 1.7;
overflow-x: hidden;
}
h1, h2, h3, h4, h5, .font-display {
font-family: 'Playfair Display', Georgia, serif;
font-weight: 700;
letter-spacing: -0.02em;
color: var(--navy);
}
a { color: var(--royal); text-decoration: none; transition: all .25s ease; }
a:hover { color: var(--gold-dark); }
/* ---------- GOOGLE TRANSLATE (hide default ugly UI) ---------- */
#google_translate_element { position: absolute; left: -9999px; top: -9999px; }
.goog-te-banner-frame, .skiptranslate iframe { display: none !important; }
body { top: 0 !important; }
.goog-tooltip, .goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }
/* ---------- TOP BAR ---------- */
.top-bar {
background: var(--navy-dark);
color: rgba(255,255,255,0.85);
font-size: 13px;
padding: 8px 0;
border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--gold); }
.top-bar .gold-text { color: var(--gold); }
/* ---------- NAVBAR ---------- */
.navbar-custom {
background: rgba(255,255,255,0.98);
backdrop-filter: blur(12px);
padding: 14px 0;
transition: all .35s ease;
border-bottom: 1px solid rgba(10,36,99,0.06);
}
.navbar-custom.scrolled {
padding: 8px 0;
box-shadow: var(--shadow-sm);
}
.navbar-brand {
display: flex; align-items: center; gap: 10px;
font-family: 'Playfair Display', serif;
font-weight: 800; font-size: 22px;
color: var(--navy) !important;
}
.brand-mark {
width: 42px; height: 42px;
background: var(--navy-gradient);
border-radius: 12px;
display: grid; place-items: center;
color: var(--gold);
font-size: 20px;
box-shadow: 0 6px 18px rgba(10,36,99,0.25);
position: relative;
}
.brand-mark::after {
content: '';
position: absolute; inset: -2px;
border-radius: 12px;
background: var(--gold-gradient);
z-index: -1;
opacity: 0.5;
}
.brand-text small {
display: block;
font-family: 'Inter', sans-serif;
font-size: 10px;
letter-spacing: 2px;
color: var(--gold-dark);
font-weight: 600;
text-transform: uppercase;
}
.navbar-custom .nav-link {
color: var(--ink) !important;
font-weight: 500;
font-size: 15px;
padding: 8px 18px !important;
position: relative;
}
.navbar-custom .nav-link::after {
content: '';
position: absolute;
bottom: 2px; left: 50%;
width: 0; height: 2px;
background: var(--gold-gradient);
transition: all .3s ease;
transform: translateX(-50%);
}
.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after { width: 60%; }
.navbar-custom .nav-link.active { color: var(--navy) !important; font-weight: 600; }
/* Language switcher */
.lang-switcher {
border: 1.5px solid rgba(10,36,99,0.15);
border-radius: 50px;
padding: 6px 14px;
font-size: 13px;
color: var(--navy);
background: #fff;
display: inline-flex; align-items: center; gap: 6px;
font-weight: 500;
}
.lang-switcher:hover { border-color: var(--gold); color: var(--navy); }
.lang-switcher i { color: var(--gold-dark); }
/* ---------- HERO ---------- */
.hero {
position: relative;
background: var(--navy-gradient);
color: #fff;
padding: 130px 0 140px;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute; inset: 0;
background-image:
radial-gradient(circle at 20% 20%, rgba(212,175,55,0.15) 0%, transparent 45%),
radial-gradient(circle at 80% 60%, rgba(30,64,175,0.4) 0%, transparent 50%),
url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 0v60M0 30h60' stroke='rgba(212,175,55,0.06)' stroke-width='1'/%3E%3C/svg%3E");
opacity: 1;
}
.hero::after {
content: '';
position: absolute;
bottom: -2px; left: 0; right: 0;
height: 60px;
background: #fff;
clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
display: inline-flex; align-items: center; gap: 10px;
background: rgba(212,175,55,0.12);
border: 1px solid rgba(212,175,55,0.35);
color: var(--gold-light);
padding: 8px 20px;
border-radius: 50px;
font-size: 13px;
letter-spacing: 1.5px;
text-transform: uppercase;
font-weight: 600;
margin-bottom: 24px;
}
.hero h1 {
font-size: clamp(2.4rem, 5.2vw, 4.4rem);
line-height: 1.08;
color: #fff;
margin-bottom: 22px;
}
.hero h1 .gold-text {
background: var(--gold-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
font-style: italic;
}
.hero p.lead-text {
font-size: 1.15rem;
color: rgba(255,255,255,0.78);
max-width: 620px;
margin-bottom: 36px;
}
.btn-gold {
background: var(--gold-gradient);
color: var(--navy-dark);
border: none;
padding: 15px 34px;
border-radius: 50px;
font-weight: 700;
font-size: 15px;
letter-spacing: 0.5px;
box-shadow: 0 10px 30px rgba(212,175,55,0.35);
transition: all .3s ease;
display: inline-flex; align-items: center; gap: 10px;
}
.btn-gold:hover {
transform: translateY(-3px);
box-shadow: 0 18px 40px rgba(212,175,55,0.5);
color: var(--navy-dark);
}
.btn-ghost {
background: transparent;
border: 1.5px solid rgba(255,255,255,0.3);
color: #fff;
padding: 15px 34px;
border-radius: 50px;
font-weight: 600;
font-size: 15px;
transition: all .3s ease;
}
.btn-ghost:hover {
background: rgba(255,255,255,0.08);
border-color: var(--gold);
color: var(--gold);
}
/* Hero trust strip */
.hero-trust {
margin-top: 70px;
display: flex; flex-wrap: wrap; gap: 40px;
align-items: center;
}
.trust-item {
display: flex; align-items: center; gap: 12px;
color: rgba(255,255,255,0.85);
font-size: 14px;
}
.trust-item i {
color: var(--gold);
font-size: 22px;
}
.hero-grid {
display: grid;
grid-template-columns: minmax(0, .95fr) minmax(360px, .75fr);
gap: 72px;
align-items: center;
}
.hero-copy { max-width: 680px; }
.hero-visual { position: relative; }
.hero-visual::before {
content: '';
position: absolute;
inset: -18px 18px 18px -18px;
border: 1px solid rgba(212,175,55,.42);
border-radius: 24px;
}
.hero-visual img {
position: relative;
width: 100%;
height: 470px;
object-fit: cover;
border-radius: 20px;
box-shadow: 0 28px 70px rgba(3,12,40,.35);
}
.hero-visual-note {
position: absolute;
right: -24px;
bottom: 26px;
z-index: 2;
display: flex;
align-items: baseline;
gap: 10px;
padding: 14px 18px;
border-radius: 10px;
background: var(--gold-gradient);
color: var(--navy-dark);
box-shadow: 0 12px 30px rgba(212,175,55,.28);
}
.hero-visual-note strong { font-family: 'Playfair Display', Georgia, serif; font-size: 2rem; line-height: 1; }
.hero-visual-note span { font-size: 12px; font-weight: 700; max-width: 110px; line-height: 1.3; }
/* ---------- SECTIONS ---------- */
.section { padding: 100px 0; }
.section-title {
text-align: center;
margin-bottom: 60px;
}
.section-title .eyebrow {
display: inline-block;
color: var(--gold-dark);
font-size: 13px;
letter-spacing: 3px;
text-transform: uppercase;
font-weight: 700;
margin-bottom: 14px;
position: relative;
padding: 0 30px;
}
.section-title .eyebrow::before,
.section-title .eyebrow::after {
content: '';
position: absolute; top: 50%;
width: 20px; height: 1px;
background: var(--gold);
}
.section-title .eyebrow::before { left: 0; }
.section-title .eyebrow::after { right: 0; }
.section-title h2 {
font-size: clamp(1.8rem, 3.2vw, 2.8rem);
margin-bottom: 12px;
}
.section-title p {
color: var(--muted);
max-width: 640px;
margin: 0 auto;
font-size: 1.02rem;
}
/* ---------- PRODUCT CARDS ---------- */
.product-card {
background: #fff;
border-radius: var(--radius);
overflow: hidden;
box-shadow: var(--shadow-sm);
transition: all .4s cubic-bezier(.4,0,.2,1);
position: relative;
/*height: 100%;*/
border: 1px solid rgba(10,36,99,0.05);
}
.product-card:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-lg);
border-color: rgba(212,175,55,0.4);
}
.product-card .img-wrap {
position: relative;
overflow: hidden;
height: 240px;
background: linear-gradient(135deg, #EEF2FF, #F8F9FC);
}
.product-card .img-wrap img {
width: 100%; height: 100%;
object-fit: cover;
transition: transform .6s ease;
}
.product-card:hover .img-wrap img { transform: scale(1.08); }
.product-card .badge-cat {
position: absolute; top: 16px; left: 16px;
background: var(--gold-gradient);
color: var(--navy-dark);
padding: 5px 14px;
border-radius: 50px;
font-size: 11px;
font-weight: 700;
letter-spacing: 1px;
text-transform: uppercase;
z-index: 2;
}
.product-card .card-body {
padding: 26px;
}
.product-card h5 {
font-size: 1.15rem;
margin-bottom: 10px;
}
.product-card p {
color: var(--muted);
font-size: 0.92rem;
margin-bottom: 20px;
}
.product-card .card-link {
color: var(--navy);
font-weight: 600;
font-size: 14px;
display: inline-flex; align-items: center; gap: 8px;
}
.product-card .card-link i { transition: transform .3s; color: var(--gold-dark); }
.product-card:hover .card-link i { transform: translateX(5px); }
 .home-category-card {
height: 100%;
overflow: hidden;
background: #fff;
border: 1px solid rgba(10,36,99,.07);
border-radius: var(--radius);
box-shadow: var(--shadow-sm);
transition: transform .35s ease, box-shadow .35s ease;
}
.home-category-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.home-category-card .img-wrap { height: 230px; position: relative; overflow: hidden; background: var(--offwhite); }
.home-category-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.home-category-card:hover .img-wrap img { transform: scale(1.06); }
.home-category-card .card-body { padding: 26px; }
.home-category-card h5 { font-size: 1.25rem; }
.home-category-card p { color: var(--muted); font-size: .92rem; }
.home-advantage-section { background: var(--offwhite); }
.split-heading {
display: flex;
justify-content: space-between;
align-items: end;
gap: 40px;
margin-bottom: 48px;
}
.split-heading h2 { max-width: 600px; margin: 12px 0 0; font-size: clamp(2rem, 3.4vw, 2.8rem); }
.split-heading > p { color: var(--muted); max-width: 420px; margin: 0; }
.text-link { color: var(--navy); font-weight: 700; white-space: nowrap; }
.text-link i { color: var(--gold-dark); margin-left: 7px; }
.advantage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(10,36,99,.1); border: 1px solid rgba(10,36,99,.1); }
.advantage-item { position: relative; min-height: 260px; padding: 30px 26px; background: var(--offwhite); }
.advantage-item > span { color: var(--gold-dark); font-size: 12px; font-weight: 700; letter-spacing: 1px; }
.advantage-item > i { display: block; color: var(--navy); font-size: 28px; margin: 30px 0 18px; }
.advantage-item h5 { font-size: 1.12rem; margin-bottom: 10px; }
.advantage-item p { color: var(--muted); font-size: .9rem; margin: 0; }
.recommended-section { background: #fff; }
.mini-product-card { position: relative; display: block; height: 100%; overflow: hidden; border-radius: var(--radius); background: var(--navy-dark); color: #fff; }
.mini-product-card img { display: block; width: 100%; height: 235px; object-fit: cover; opacity: .72; transition: transform .5s ease, opacity .5s ease; }
.mini-product-card::after { content: ''; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(6,21,56,.95)); }
.mini-product-card:hover img { transform: scale(1.06); opacity: .9; }
.mini-product-card span, .mini-product-card h5, .mini-product-card > i { position: absolute; z-index: 2; left: 20px; }
.mini-product-card span { bottom: 65px; color: var(--gold-light); font-size: 11px; letter-spacing: 1.3px; text-transform: uppercase; }
.mini-product-card h5 { bottom: 25px; margin: 0; color: #fff; font-size: 1.05rem; }
.mini-product-card > i { right: 20px; left: auto; bottom: 25px; color: var(--gold); }
/* ---------- PRODUCT DETAIL ---------- */
.product-detail-hero { padding: 92px 0 68px; }
.product-detail-hero h1 { margin-top: 10px; }
.product-overview-grid {
display: grid;
grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
gap: 64px;
align-items: center;
}
.product-main-image {
position: relative;
height: 510px;
overflow: hidden;
border-radius: var(--radius);
background: var(--offwhite);
box-shadow: var(--shadow-lg);
}
.product-main-image img { width: 100%; height: 100%; object-fit: cover; }
.product-image-label {
position: absolute;
left: 22px;
bottom: 22px;
display: inline-flex;
align-items: center;
gap: 9px;
padding: 11px 15px;
border-radius: 10px;
background: rgba(6,21,56,.9);
color: #fff;
font-size: 13px;
}
.product-image-label i { color: var(--gold); font-size: 18px; }
.product-image-note {
display: flex;
gap: 10px;
align-items: flex-start;
margin-top: 16px;
color: var(--muted);
font-size: 13px;
}
.product-image-note i { color: var(--gold-dark); font-size: 18px; }
.product-meta {
display: flex;
gap: 18px;
flex-wrap: wrap;
color: var(--muted);
font-size: 13px;
margin-bottom: 18px;
}
.product-meta i { color: var(--gold-dark); margin-right: 5px; }
.product-summary h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); margin-bottom: 16px; }
.product-lead { color: var(--muted); font-size: 1.05rem; line-height: 1.8; }
.quote-panel {
display: flex;
flex-direction: column;
gap: 5px;
margin-top: 25px;
padding: 18px 20px;
border-left: 3px solid var(--gold);
border-radius: 0 10px 10px 0;
background: var(--offwhite);
}
.quote-panel strong { color: var(--navy); }
.quote-panel span { color: var(--muted); font-size: 13px; }
.product-back-link { border-radius: 50px; padding: 15px 25px; }
.share-row {
display: flex;
align-items: center;
gap: 12px;
margin-top: 28px;
padding-top: 20px;
border-top: 1px solid rgba(10,36,99,.1);
color: var(--muted);
font-size: 13px;
}
.share-row a { color: var(--navy); font-size: 16px; }
.share-row a:hover { color: var(--gold-dark); }
.product-content-section { background: var(--offwhite); }
.product-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-feature-grid .feature-card { padding: 32px 24px; }
.technical-section { background: #fff; }
.technical-intro { color: var(--muted); line-height: 1.8; }
.quick-spec-list {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1px;
margin-top: 30px;
border: 1px solid rgba(10,36,99,.1);
background: rgba(10,36,99,.1);
}
.quick-spec-list div { padding: 18px; background: var(--offwhite); }
.quick-spec-list strong { display: block; color: var(--gold-dark); font-family: 'Playfair Display', Georgia, serif; font-size: 1.7rem; }
.quick-spec-list span { display: block; color: var(--muted); font-size: 12px; margin-top: 4px; }
.table-wrap { overflow-x: auto; border: 1px solid rgba(10,36,99,.1); border-radius: 12px; }
.technical-table { width: 100%; min-width: 640px; border-collapse: collapse; font-size: 13px; }
.technical-table th { background: var(--navy); color: #fff; font-weight: 600; text-align: left; }
.technical-table th,
.technical-table td { padding: 15px 14px; vertical-align: top; border-bottom: 1px solid rgba(10,36,99,.08); }
.technical-table tbody tr:last-child td { border-bottom: 0; }
.technical-table tbody tr:nth-child(even) td { background: var(--offwhite); }
.technical-table td:first-child { color: var(--navy); font-weight: 700; }
.table-footnote { color: var(--muted); font-size: 12px; margin: 12px 0 0; }
.product-tables-section { background: var(--offwhite); }
.configuration-table { min-width: 760px; }
.configuration-table td:nth-child(2), .configuration-table td:nth-child(3) { color: var(--muted); line-height: 1.6; }
.application-section { background: #fff; }
.application-table { min-width: 680px; }
.selection-section { background: var(--offwhite); }
.selection-panel {
display: grid;
grid-template-columns: 1.05fr 1.5fr auto;
align-items: center;
gap: 34px;
padding: 42px;
border-radius: var(--radius);
background: var(--navy-gradient);
box-shadow: var(--shadow-lg);
}
.selection-panel h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.5rem); margin: 12px 0; }
.selection-panel p { color: rgba(255,255,255,.72); margin: 0; }
.selection-panel .eyebrow { color: var(--gold-light); }
.selection-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.selection-grid div { display: grid; grid-template-columns: 28px 1fr; column-gap: 10px; color: #fff; font-size: 13px; }
.selection-grid i { grid-row: span 2; color: var(--gold); font-size: 20px; }
.selection-grid strong { font-size: 14px; }
.selection-grid span { color: rgba(255,255,255,.65); margin-top: 3px; }
.related-section { background: #fff; }
.related-card .img-wrap { height: 170px; }
.related-card .card-body { padding: 20px; }
.related-card h5 { font-size: 1rem; }
/* ---------- FEATURES ---------- */
.feature-card {
text-align: center;
padding: 40px 26px;
border-radius: var(--radius);
background: #fff;
border: 1px solid rgba(10,36,99,0.06);
transition: all .35s ease;
height: 100%;
}
.feature-card:hover {
border-color: var(--gold);
box-shadow: var(--shadow-md);
transform: translateY(-6px);
}
.feature-icon {
width: 70px; height: 70px;
margin: 0 auto 22px;
background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(30,64,175,0.08));
border-radius: 20px;
display: grid; place-items: center;
color: var(--gold-dark);
font-size: 30px;
position: relative;
transition: all .4s ease;
}
.feature-card:hover .feature-icon {
background: var(--navy-gradient);
color: var(--gold);
transform: rotate(-6deg) scale(1.05);
}
.feature-card h5 { font-size: 1.1rem; margin-bottom: 12px; }
.feature-card p { color: var(--muted); font-size: 0.92rem; margin: 0; }
/* ---------- STATS STRIP ---------- */
.stats-strip {
background: var(--navy-gradient);
color: #fff;
padding: 70px 0;
position: relative;
overflow: hidden;
}
.stats-strip::before {
content: '';
position: absolute; inset: 0;
background: radial-gradient(circle at 10% 50%, rgba(212,175,55,0.15), transparent 40%);
}
.stat-item { text-align: center; position: relative; z-index: 2; }
.stat-item h3 {
font-size: 3rem;
color: var(--gold);
margin: 0;
font-family: 'Playfair Display', serif;
}
.stat-item p {
margin: 6px 0 0;
color: rgba(255,255,255,0.7);
font-size: 13px;
letter-spacing: 2px;
text-transform: uppercase;
}
/* ---------- TESTIMONIALS ---------- */
.testimonial-card {
background: #fff;
border-radius: var(--radius);
padding: 34px;
box-shadow: var(--shadow-sm);
border: 1px solid rgba(10,36,99,0.05);
height: 100%;
position: relative;
}
.testimonial-card::before {
content: '"';
position: absolute; top: 10px; right: 30px;
font-family: 'Playfair Display', serif;
font-size: 100px;
color: var(--gold);
opacity: 0.15;
line-height: 1;
}
.testimonial-card p {
font-size: 1rem;
color: var(--ink);
font-style: italic;
margin-bottom: 22px;
position: relative; z-index: 2;
}
.testimonial-author {
display: flex; align-items: center; gap: 14px;
}
.testimonial-author .avatar {
width: 52px; height: 52px;
border-radius: 50%;
background: var(--navy-gradient);
color: var(--gold);
display: grid; place-items: center;
font-weight: 700; font-size: 18px;
font-family: 'Playfair Display', serif;
}
.testimonial-author h6 { margin: 0; font-size: 15px; color: var(--navy); }
.testimonial-author small { color: var(--muted); font-size: 12px; }
.stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; }
/* ---------- CLIENT LOGOS ---------- */
.clients-section { background: var(--offwhite); }
.customer-logos {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 18px;
overflow: hidden;
}
.customer-logos .slide {
margin: 0;
height: 90px;
display: flex !important;
align-items: center;
justify-content: center;
}
.client-logo {
max-height: 55px;
max-width: 140px;
filter: grayscale(100%);
opacity: 0.55;
transition: all .3s ease;
}
.client-logo:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.05); }
.customer-logos.slick-initialized { display: block; }
.customer-logos .slick-list,
.testimonials-slider .slick-list { overflow: hidden; }
.customer-logos .slick-track { display: flex; align-items: center; }
.customer-logos .slick-slide { height: auto; }
.client-wordmark {
display: inline-flex;
align-items: center;
gap: 9px;
color: var(--navy);
font-size: 12px;
font-weight: 800;
letter-spacing: 1px;
opacity: .62;
white-space: nowrap;
}
.client-wordmark i { color: var(--gold-dark); font-size: 20px; }
.testimonials-slider { margin: 0 -12px; }
.testimonials-slider .slick-slide { height: auto; }
.testimonials-slider .slick-slide > div { height: 100%; padding: 0 12px 12px; }
.testimonials-slider .testimonial-card { min-height: 265px; }
.testimonials-slider .slick-prev,
.testimonials-slider .slick-next {
top: -64px;
width: 38px;
height: 38px;
border: 1px solid rgba(10,36,99,.15);
border-radius: 50%;
background: #fff;
z-index: 2;
}
.testimonials-slider .slick-prev { left: auto; right: 58px; }
.testimonials-slider .slick-next { right: 12px; }
.testimonials-slider .slick-prev::before,
.testimonials-slider .slick-next::before { display: none; }
.testimonials-slider .slick-prev i,
.testimonials-slider .slick-next i { color: var(--navy); font-size: 15px; }
.testimonials-slider .slick-dots { bottom: -34px; }
.testimonials-slider .slick-dots li button::before { color: var(--gold-dark); font-size: 8px; }
/* ---------- CTA BANNER ---------- */
.cta-banner {
background: var(--navy-gradient);
border-radius: var(--radius);
padding: 60px 50px;
color: #fff;
position: relative;
overflow: hidden;
display: flex; align-items: center; justify-content: space-between;
flex-wrap: wrap; gap: 30px;
}
.cta-banner::before {
content: '';
position: absolute; top: -50%; right: -10%;
width: 400px; height: 400px;
background: radial-gradient(circle, rgba(212,175,55,0.25), transparent 70%);
border-radius: 50%;
}
.cta-banner h3 { color: #fff; font-size: 1.9rem; margin: 0 0 6px; position: relative; z-index: 2; }
.cta-banner p { color: rgba(255,255,255,0.75); margin: 0; position: relative; z-index: 2; }
/* ---------- FOOTER ---------- */
.footer {
background: var(--navy-dark);
color: rgba(255,255,255,0.72);
padding: 80px 0 0;
position: relative;
}
.footer::before {
content: '';
position: absolute; top: 0; left: 0; right: 0;
height: 3px;
background: var(--gold-gradient);
}
.footer h5 {
color: #fff;
font-size: 1rem;
letter-spacing: 1px;
margin-bottom: 22px;
text-transform: uppercase;
font-family: 'Inter', sans-serif;
font-weight: 700;
}
.footer h5::after {
content: '';
display: block;
width: 32px; height: 2px;
background: var(--gold);
margin-top: 10px;
}
.footer a {
color: rgba(255,255,255,0.72);
font-size: 14px;
display: block;
padding: 6px 0;
}
.footer a:hover { color: var(--gold); padding-left: 5px; }
.footer .brand-mark { margin-bottom: 16px; }
.footer-desc {
font-size: 14px;
line-height: 1.8;
margin: 16px 0 24px;
}
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-links a {
width: 40px; height: 40px;
border-radius: 10px;
background: rgba(255,255,255,0.06);
display: grid; place-items: center;
color: #fff; padding: 0;
transition: all .3s;
}
.social-links a:hover {
background: var(--gold-gradient);
color: var(--navy-dark);
transform: translateY(-3px);
}
.contact-line {
display: flex; gap: 12px; margin-bottom: 16px;
font-size: 14px; line-height: 1.5;
}
.contact-line i {
color: var(--gold); font-size: 16px;
margin-top: 3px; flex-shrink: 0;
}
.footer-bottom {
margin-top: 60px;
padding: 26px 0;
border-top: 1px solid rgba(255,255,255,0.08);
font-size: 13px;
}
.footer-bottom a { display: inline; padding: 0 4px; }
/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
background: var(--navy-gradient);
color: #fff;
padding: 140px 0 90px;
text-align: center;
position: relative;
overflow: hidden;
}
.page-hero::before {
content: '';
position: absolute; inset: 0;
background: radial-gradient(circle at 70% 40%, rgba(212,175,55,0.15), transparent 50%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 620px; margin: 0 auto; }
.breadcrumb-modern {
display: inline-flex; gap: 10px; align-items: center;
color: rgba(255,255,255,0.6);
font-size: 13px;
margin-top: 20px;
padding: 8px 20px;
background: rgba(255,255,255,0.06);
border-radius: 50px;
border: 1px solid rgba(255,255,255,0.1);
}
.breadcrumb-modern a { color: var(--gold); }
.breadcrumb-modern a:hover { color: var(--gold-light); }
/* ---------- ABOUT PAGE ---------- */
.page-hero-eyebrow {
color: var(--gold-light);
margin-bottom: 16px;
}
.about-intro h2,
.factory-section h2,
.promise-section h2,
.office-panel h2 {
font-size: clamp(2rem, 3.2vw, 2.8rem);
line-height: 1.15;
margin: 12px 0 22px;
}
.about-intro p,
.factory-section p,
.promise-section p,
.office-panel p {
color: var(--muted);
}
.about-stat-row {
display: flex;
gap: 34px;
margin-top: 30px;
padding-top: 24px;
border-top: 1px solid rgba(10,36,99,0.1);
}
.about-stat-row strong {
display: block;
font-family: 'Playfair Display', Georgia, serif;
font-size: 2rem;
line-height: 1;
color: var(--gold-dark);
}
.about-stat-row span {
display: block;
color: var(--muted);
font-size: 12px;
margin-top: 8px;
}
.about-image-frame { position: relative; }
.about-image-frame img,
.promise-image {
width: 100%;
height: 500px;
object-fit: cover;
border-radius: var(--radius);
box-shadow: var(--shadow-lg);
}
.image-caption {
position: absolute;
left: 22px;
bottom: 22px;
display: inline-flex;
align-items: center;
gap: 10px;
padding: 12px 16px;
border-radius: 10px;
background: rgba(6,21,56,0.88);
color: #fff;
font-size: 13px;
}
.image-caption i { color: var(--gold); font-size: 18px; }
.factory-section { background: var(--offwhite); }
.capability-panel {
background: #fff;
padding: 34px;
border: 1px solid rgba(10,36,99,0.07);
border-radius: var(--radius);
box-shadow: var(--shadow-md);
}
.capability-heading {
display: flex;
justify-content: space-between;
align-items: center;
padding-bottom: 20px;
margin-bottom: 6px;
border-bottom: 1px solid rgba(10,36,99,0.1);
color: var(--navy);
font-family: 'Playfair Display', Georgia, serif;
font-size: 1.45rem;
}
.capability-heading i { color: var(--gold-dark); font-size: 25px; }
.capability-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 0;
}
.capability-grid div {
display: flex;
align-items: center;
gap: 12px;
min-height: 74px;
padding: 14px 8px;
border-bottom: 1px solid rgba(10,36,99,0.08);
color: var(--ink);
font-size: 14px;
}
.capability-grid i,
.promise-list i { color: var(--gold-dark); font-size: 20px; flex-shrink: 0; }
.promise-section { background: #fff; }
.promise-list { margin-top: 24px; }
.promise-list div {
display: inline-flex;
align-items: center;
gap: 10px;
width: 49%;
padding: 10px 0;
color: var(--navy);
font-weight: 600;
font-size: 14px;
}
.journey-section { background: var(--offwhite); }
.timeline {
position: relative;
max-width: 920px;
margin: 0 auto;
}
.timeline::before {
content: '';
position: absolute;
top: 0;
bottom: 0;
left: 124px;
width: 1px;
background: rgba(212,175,55,0.65);
}
.timeline-item {
position: relative;
display: grid;
grid-template-columns: 100px 1fr;
gap: 48px;
padding: 0 0 42px;
}
.timeline-item::before {
content: '';
position: absolute;
left: 119px;
top: 4px;
width: 11px;
height: 11px;
border-radius: 50%;
background: var(--gold);
border: 3px solid var(--offwhite);
box-shadow: 0 0 0 1px var(--gold);
}
.timeline-year {
color: var(--gold-dark);
font-family: 'Playfair Display', Georgia, serif;
font-size: 1.5rem;
font-weight: 700;
text-align: right;
}
.timeline-item h3 { color: var(--navy); font-size: 1.25rem; margin: 0 0 8px; }
.timeline-item p { color: var(--muted); margin: 0; max-width: 650px; }
.office-panel {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 48px;
align-items: center;
padding: 52px;
background: var(--navy-gradient);
border-radius: var(--radius);
overflow: hidden;
}
.office-panel h2 { color: #fff; }
.office-panel p { color: rgba(255,255,255,0.72); }
.office-panel .eyebrow { color: var(--gold-light); }
.office-panel img {
width: 100%;
height: 300px;
object-fit: cover;
border-radius: 12px;
}
.office-address {
display: flex;
gap: 12px;
align-items: flex-start;
margin-top: 26px;
color: #fff;
font-size: 14px;
line-height: 1.7;
}
.office-address i { color: var(--gold); font-size: 20px; margin-top: 2px; }
/* ---------- PRODUCT FILTERS ---------- */
.product-category-nav {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 10px;
margin-bottom: 50px;
}
.product-category-nav a {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 11px 20px;
border: 1.5px solid rgba(10,36,99,0.12);
border-radius: 50px;
background: #fff;
color: var(--navy);
font-size: 14px;
font-weight: 600;
}
.product-category-nav a:hover,
.product-category-nav a.active {
background: var(--navy-gradient);
border-color: transparent;
color: #fff;
box-shadow: 0 8px 20px rgba(10,36,99,0.16);
}
.product-category-nav a i { font-size: 12px; opacity: .7; }
.product-item .product-card { height: 100%; display: flex; flex-direction: column; }
.product-item .card-body { flex: 1; display: flex; flex-direction: column; }
.product-item .card-link { margin-top: auto; padding-top: 18px; }
.filter-pills {
display: flex; justify-content: center;
flex-wrap: wrap; gap: 10px;
margin-bottom: 50px;
}
.filter-btn {
background: #fff;
border: 1.5px solid rgba(10,36,99,0.12);
color: var(--navy);
padding: 10px 24px;
border-radius: 50px;
font-size: 14px;
font-weight: 500;
transition: all .3s;
}
.filter-btn:hover { border-color: var(--gold); }
.filter-btn.active {
background: var(--navy-gradient);
color: #fff;
border-color: transparent;
box-shadow: 0 8px 20px rgba(10,36,99,0.2);
}
/* ---------- CONTACT ---------- */
.contact-info-card {
background: #fff;
border-radius: var(--radius);
padding: 34px;
border: 1px solid rgba(10,36,99,0.06);
box-shadow: var(--shadow-sm);
transition: all .3s;
height: 100%;
}
.contact-info-card:hover {
border-color: var(--gold);
transform: translateY(-5px);
box-shadow: var(--shadow-md);
}
.contact-info-card .ico {
width: 56px; height: 56px;
background: var(--navy-gradient);
color: var(--gold);
border-radius: 14px;
display: grid; place-items: center;
font-size: 22px;
margin-bottom: 20px;
}
.contact-info-card h6 { color: var(--navy); font-weight: 700; margin-bottom: 8px; }
.contact-info-card p { color: var(--muted); margin: 0; font-size: 14px; }
.form-control-modern {
border: 1.5px solid rgba(10,36,99,0.1);
border-radius: 12px;
padding: 14px 18px;
font-size: 15px;
transition: all .3s;
background: #fff;
}
.form-control-modern:focus {
border-color: var(--gold);
box-shadow: 0 0 0 4px rgba(212,175,55,0.12);
outline: none;
}
/* ---------- ANIMATIONS ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: all .8s cubic-bezier(.4,0,.2,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
/* ---------- FLOATING WHATSAPP ---------- */
.float-wa {
position: fixed;
bottom: 26px; right: 26px;
width: 56px; height: 56px;
background: #25D366;
color: #fff;
border-radius: 50%;
display: grid; place-items: center;
font-size: 26px;
box-shadow: 0 10px 30px rgba(37,211,102,0.4);
z-index: 999;
transition: all .3s;
}
.float-wa:hover { transform: scale(1.1); color: #fff; }
/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
.hero { padding: 90px 0 100px; }
.section { padding: 70px 0; }
.navbar-custom { position: relative; }
.navbar-collapse {
background: #fff;
margin: 12px 0 -14px;
padding: 8px 0 14px;
border-top: 1px solid rgba(10,36,99,.08);
border-bottom: 3px solid var(--gold);
border-radius: 0;
box-shadow: var(--shadow-md);
}
.navbar-collapse .navbar-nav { width: 100%; }
.navbar-collapse .nav-item { width: 100%; }
.navbar-collapse .nav-link { padding: 12px 4px !important; border-bottom: 1px solid rgba(10,36,99,.07); }
.navbar-collapse .nav-item:last-child .nav-link { border-bottom: 0; }
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(212,175,55,.2); }
.navbar-collapse .dropdown { padding-top: 8px; }
.cta-banner { text-align: center; }
.cta-banner > * { flex: 1 1 100%; }
.top-bar .d-none-mobile { display: none !important; }
.hero-grid { grid-template-columns: 1fr; gap: 42px; }
.hero-copy { max-width: 760px; }
.hero-visual { max-width: 680px; }
.advantage-grid { grid-template-columns: repeat(2, 1fr); }
.split-heading { align-items: start; }
.product-overview-grid { grid-template-columns: 1fr; gap: 38px; }
.product-main-image { height: 430px; }
.selection-panel { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 576px) {
.container { --bs-gutter-x: 1.25rem; }
.hero-trust { gap: 20px; }
.stat-item h3 { font-size: 2.2rem; }
.customer-logos { gap: 10px; }
.hero { padding: 72px 0 94px; }
.hero h1 { font-size: 2.65rem; }
.hero-visual img { height: 290px; }
.hero-visual-note { right: 12px; bottom: 16px; }
.advantage-grid { grid-template-columns: 1fr; }
.advantage-item { min-height: auto; }
.split-heading { display: block; margin-bottom: 30px; }
.split-heading > p { margin-top: 18px; }
.text-link { display: inline-block; margin-top: 18px; }
.testimonials-slider .slick-prev,
.testimonials-slider .slick-next { top: -52px; }
.testimonials-slider .slick-prev { right: 52px; }
.testimonials-slider .slick-next { right: 6px; }
.product-detail-hero { padding: 78px 0 54px; }
.product-main-image { height: 300px; }
.product-image-label { left: 14px; right: 14px; bottom: 14px; }
.product-summary h2 { font-size: 2.2rem; }
.product-feature-grid { grid-template-columns: 1fr; }
.selection-panel { padding: 28px 22px; }
.selection-panel .btn-gold { justify-self: start; }
}
/* RTL support */
[dir="rtl"] .hero h1, [dir="rtl"] .section-title { text-align: center; }
[dir="rtl"] .float-wa { right: auto; left: 26px; }
/* ---------- ANIMATION FIXES ---------- */
.reveal {
opacity: 0;
transform: translateY(30px);
transition: opacity .7s ease, transform .7s cubic-bezier(.22,.9,.32,1.2);
will-change: opacity, transform;
}
.reveal.in-view {
opacity: 1;
transform: translateY(0);
}
/* Respect user's motion preference */
@media (prefers-reduced-motion: reduce) {
.reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
/* Counter pulse */
[data-count] {
display: inline-block;
font-variant-numeric: tabular-nums;
}
/* ---------- LATEST PRODUCT TAG ---------- */
.badge-cat.new { background: linear-gradient(135deg,#1E40AF,#0A2463); color:#F0D77B; }
/* ---------- IMAGE PERFORMANCE ---------- */
img { content-visibility: auto; }
.product-card .img-wrap img {
background: linear-gradient(135deg,#EEF2FF,#F8F9FC);
min-height: 240px;
}
nav.navbar.navbar-expand-lg.navbar-custom.sticky-top::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
}