/* ===== AQUELIX.COM — Global Stylesheet ===== */
:root {
  --navy: #0a1628;
  --navy-mid: #132240;
  --blue: #1a3a6b;
  --accent: #2e7dff;
  --accent-light: #5b9eff;
  --chrome: #b8c8d8;
  --chrome-light: #e8eef5;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --gold: #c9a84c;
  --green: #16a34a;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(10,22,40,0.10);
  --shadow-lg: 0 12px 48px rgba(10,22,40,0.18);
  --transition: 0.22s ease;
  --font: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --max-w: 1200px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--gray-800); background: var(--white); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-light); }

/* ===== LAYOUT ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--gray { background: var(--gray-50); }
.section--dark { background: var(--navy); color: var(--white); }
.section--navy { background: var(--navy-mid); color: var(--white); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; font-weight: 600; line-height: 1.3; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { color: var(--gray-600); line-height: 1.75; }
.text-white p { color: rgba(255,255,255,0.78); }
.label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; display: block; }
.section-title { margin-bottom: 16px; }
.section-desc { font-size: 1.1rem; max-width: 640px; margin-bottom: 48px; }
.text-center { text-align: center; }
.text-center .section-desc { margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius); font-size: 0.95rem; font-weight: 600; cursor: pointer; border: 2px solid transparent; transition: all var(--transition); white-space: nowrap; }
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: #1a6de0; color: var(--white); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(46,125,255,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-ghost { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-ghost:hover { background: var(--accent); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: #b8933c; color: var(--white); }

/* ===== HEADER / NAV ===== */
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(10,22,40,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 10px; color: var(--white); font-size: 1.5rem; font-weight: 800; letter-spacing: -0.03em; }
.nav-logo-mark { width: 36px; height: 36px; background: var(--accent); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.nav-logo-mark svg { fill: white; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { color: rgba(255,255,255,0.78); font-size: 0.9rem; font-weight: 500; padding: 8px 14px; border-radius: 6px; transition: all var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 10px 20px; font-size: 0.88rem; }

/* ===== HERO ===== */
.hero { min-height: 88vh; background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, #1a4a8a 100%); display: flex; align-items: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(46,125,255,0.15); border: 1px solid rgba(46,125,255,0.3); border-radius: 100px; padding: 6px 16px; font-size: 0.82rem; color: var(--accent-light); font-weight: 600; margin-bottom: 24px; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { color: var(--accent-light); font-style: normal; }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.72); margin-bottom: 36px; line-height: 1.8; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat strong { display: block; font-size: 2rem; font-weight: 800; color: var(--white); }
.hero-stat span { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.hero-visual { position: relative; }
.hero-img-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.4); aspect-ratio: 4/3; }
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge-float { position: absolute; background: var(--white); border-radius: var(--radius); padding: 14px 18px; box-shadow: var(--shadow-lg); }
.hero-badge-float.top-left { top: -16px; left: -24px; }
.hero-badge-float.bottom-right { bottom: -16px; right: -24px; }
.hero-badge-float .badge-title { font-size: 0.75rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.08em; }
.hero-badge-float .badge-val { font-size: 1.1rem; font-weight: 700; color: var(--navy); }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--chrome-light); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); padding: 20px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--gray-600); font-size: 0.88rem; font-weight: 600; }
.trust-icon { width: 32px; height: 32px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon svg { fill: white; }

/* ===== PRODUCT CARDS ===== */
.product-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: all var(--transition); border: 1px solid var(--gray-200); }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.product-card-img { aspect-ratio: 1; overflow: hidden; background: var(--gray-100); }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-body { padding: 20px; }
.product-card-cat { font-size: 0.75rem; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.product-card-body h3 { font-size: 1rem; margin-bottom: 8px; color: var(--navy); }
.product-card-body p { font-size: 0.88rem; color: var(--gray-600); margin-bottom: 14px; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; }
.product-card-specs { display: flex; gap: 8px; flex-wrap: wrap; }
.spec-tag { background: var(--gray-100); border-radius: 4px; padding: 3px 8px; font-size: 0.75rem; color: var(--gray-600); font-weight: 500; }
.product-card-link { color: var(--accent); font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 4px; }

/* ===== CATEGORY CARDS ===== */
.cat-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.cat-card:hover img { transform: scale(1.06); }
.cat-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.2) 60%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; }
.cat-card-overlay h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 6px; }
.cat-card-overlay p { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin-bottom: 12px; }
.cat-card-overlay .btn { padding: 8px 16px; font-size: 0.82rem; }

/* ===== FEATURE / HIGHLIGHT ===== */
.feature-item { display: flex; gap: 18px; align-items: flex-start; }
.feature-icon { width: 48px; height: 48px; background: rgba(46,125,255,0.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-icon svg { fill: var(--accent); }
.feature-text h4 { color: var(--navy); margin-bottom: 6px; }
.feature-text p { font-size: 0.92rem; }

/* ===== TESTIMONIALS / QUOTES ===== */
.quote-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); border-left: 4px solid var(--accent); }
.quote-text { font-size: 1rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.quote-author { display: flex; align-items: center; gap: 12px; }
.quote-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gray-200); overflow: hidden; }
.quote-name { font-weight: 700; color: var(--navy); font-size: 0.92rem; }
.quote-role { font-size: 0.8rem; color: var(--gray-400); }

/* ===== CERTIFICATIONS ===== */
.cert-badge { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 24px 16px; background: var(--white); border-radius: var(--radius-lg); border: 2px solid var(--gray-200); transition: all var(--transition); }
.cert-badge:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.cert-badge-icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--accent) 0%, #1a6de0 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.cert-badge-icon svg { fill: white; width: 32px; height: 32px; }
.cert-badge h4 { font-size: 1rem; color: var(--navy); margin-bottom: 4px; }
.cert-badge p { font-size: 0.8rem; color: var(--gray-400); }

/* ===== BLOG CARD ===== */
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: all var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--gray-100); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-tag { display: inline-block; background: rgba(46,125,255,0.1); color: var(--accent); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; padding: 3px 10px; border-radius: 4px; margin-bottom: 10px; }
.blog-card-body h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.blog-card-body p { font-size: 0.88rem; margin-bottom: 16px; }
.blog-meta { display: flex; align-items: center; gap: 12px; font-size: 0.8rem; color: var(--gray-400); }

/* ===== CASE CARD ===== */
.case-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: all var(--transition); }
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.case-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--gray-100); }
.case-card-img img { width: 100%; height: 100%; object-fit: cover; }
.case-card-body { padding: 24px; }
.case-tag { display: inline-block; background: rgba(201,168,76,0.12); color: var(--gold); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; padding: 3px 10px; border-radius: 4px; margin-bottom: 10px; }

/* ===== FAQ ===== */
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; margin-bottom: 12px; }
.faq-question { padding: 18px 24px; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: var(--white); transition: background var(--transition); }
.faq-question:hover { background: var(--gray-50); }
.faq-answer { padding: 0 24px 18px; color: var(--gray-600); font-size: 0.95rem; line-height: 1.75; display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question { background: var(--gray-50); color: var(--accent); }
.faq-chevron { transition: transform var(--transition); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }

/* ===== FORM ===== */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-200); border-radius: var(--radius); font-size: 0.95rem; font-family: var(--font); color: var(--gray-800); background: var(--white); transition: border-color var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(46,125,255,0.12); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== BREADCRUMB ===== */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--gray-400); padding: 12px 0; }
.breadcrumb a { color: var(--gray-400); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--gray-800); font-weight: 500; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); padding: 60px 0; color: var(--white); }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.72); font-size: 1.05rem; max-width: 600px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy); color: var(--white); padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin: 12px 0 20px; }
.footer-col h5 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-certs { display: flex; gap: 12px; }
.footer-cert { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; padding: 4px 10px; font-size: 0.75rem; color: rgba(255,255,255,0.55); font-weight: 600; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.social-link { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: all var(--transition); font-size: 0.85rem; }
.social-link:hover { background: var(--accent); color: var(--white); }

/* ===== STATS STRIP ===== */
.stats-strip { background: var(--accent); color: var(--white); padding: 40px 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat-num { font-size: 2.4rem; font-weight: 800; line-height: 1; }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* ===== BANNER / CTA ===== */
.cta-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); border-radius: var(--radius-lg); padding: 60px 48px; text-align: center; color: var(--white); }
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.72); margin-bottom: 28px; }
.cta-banner .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== TABS ===== */
.tab-list { display: flex; border-bottom: 2px solid var(--gray-200); gap: 4px; margin-bottom: 32px; }
.tab-btn { padding: 12px 20px; font-size: 0.9rem; font-weight: 600; color: var(--gray-400); cursor: pointer; border: none; background: none; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all var(--transition); }
.tab-btn.active, .tab-btn:hover { color: var(--accent); border-bottom-color: var(--accent); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ===== BADGE / TAG ===== */
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; border-radius: 100px; font-size: 0.78rem; font-weight: 700; }
.badge-green { background: rgba(22,163,74,0.1); color: var(--green); }
.badge-blue { background: rgba(46,125,255,0.1); color: var(--accent); }
.badge-gold { background: rgba(201,168,76,0.12); color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .hero { min-height: auto; padding: 80px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .cta-banner { padding: 40px 24px; }
}


/* ===== AQUELIX FACTORY SHOWCASE ===== */
.factory-showcase { background: linear-gradient(180deg, #ffffff 0%, var(--gray-50) 100%); }
.factory-intro { max-width: 760px; margin-bottom: 34px; }
.factory-intro h2 { color: var(--navy); margin-bottom: 14px; }
.factory-hero-panel { display: grid; grid-template-columns: 1.35fr .65fr; gap: 32px; align-items: stretch; margin-bottom: 28px; }
.factory-hero-panel img, .factory-grid img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.factory-hero-panel > div { background: var(--navy); color: var(--white); border-radius: var(--radius-lg); padding: 34px; display: flex; flex-direction: column; justify-content: center; }
.factory-hero-panel h3 { font-size: 1.6rem; color: var(--white); margin-bottom: 12px; }
.factory-hero-panel p { color: rgba(255,255,255,.72); }
.factory-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.factory-grid figure { margin: 0; }
.factory-grid figcaption { margin-top: 10px; color: var(--navy); font-weight: 700; font-size: .9rem; }
@media (max-width: 900px) {
  .factory-hero-panel, .factory-grid { grid-template-columns: 1fr; }
}


/* ===== FLOATING WHATSAPP CTA ===== */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2000;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 12px 22px 12px 12px;
  border-radius: 999px;
  background: #18b77b;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 18px 42px rgba(24,183,123,.36), 0 4px 18px rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.35);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.whatsapp-float:hover {
  color: #fff;
  background: #12a56e;
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(24,183,123,.42), 0 8px 24px rgba(0,0,0,.2);
}
.whatsapp-float-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.whatsapp-float-icon svg {
  width: 31px;
  height: 31px;
  fill: #fff;
}
.whatsapp-float-text {
  letter-spacing: .01em;
}
@media (max-width: 640px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    min-height: 62px;
    padding: 10px 16px 10px 10px;
  }
  .whatsapp-float-icon {
    width: 42px;
    height: 42px;
  }
  .whatsapp-float-text {
    font-size: .92rem;
  }
}


/* ===== AQUELIX HERO BANNER REFINEMENT ===== */
.hero-img-wrap {
  background: linear-gradient(135deg, #f8fbfc, #dceff4);
  aspect-ratio: 16 / 9;
}
.hero-img-wrap img {
  object-position: center;
}
.hero-slider {
  position: relative;
}
.hero-slider .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 1s ease, transform 6s ease;
}
.hero-slider .hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-slider-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.45);
  box-shadow: 0 0 0 1px rgba(11,45,58,.18);
  transition: width .3s ease, background .3s ease;
}
.hero-slider-dots span.active {
  width: 28px;
  background: #fff;
}
@media (prefers-reduced-motion: reduce) {
  .hero-slider .hero-slide {
    animation: none;
  }
}
.nav-logo {
  letter-spacing: -0.02em;
}


/* Complete product image display */
.product-card-img { background: #fff; }
.product-card-img img { object-fit: contain; padding: 10px; }
.product-card:hover .product-card-img img { transform: scale(1.015); }
.cat-card { background: #fff; }
.cat-card img { object-fit: contain; padding: 14px; background: #fff; }
.cat-card:hover img { transform: scale(1.015); }

/* ===== PRODUCT DETAIL PAGES ===== */
.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 54px;
  align-items: start;
}
.product-detail-image {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
}
.product-detail-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
.product-detail-copy h2 {
  margin-bottom: 16px;
  color: var(--navy);
}
.product-detail-copy h3 {
  margin: 28px 0 10px;
  color: var(--navy);
}
.product-detail-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0;
}
.product-detail-specs div {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 14px;
  background: var(--gray-50);
}
.product-detail-specs strong {
  display: block;
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.product-detail-specs span {
  display: block;
  margin-top: 3px;
  color: var(--navy);
  font-weight: 800;
}
.clean-list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--gray-600);
}
.clean-list li {
  padding-left: 22px;
  position: relative;
}
.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.sticky-rfq {
  position: sticky;
  bottom: 18px;
  z-index: 10;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding: 14px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}
.btn-whatsapp {
  background: #18b77b;
  color: #fff;
  border-color: #18b77b;
}
.btn-whatsapp:hover {
  background: #12a56e;
  color: #fff;
  border-color: #12a56e;
}
.product-card-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
}
@media (max-width: 900px) {
  .product-detail-layout { grid-template-columns: 1fr; gap: 32px; }
  .product-detail-specs { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .product-detail-specs { grid-template-columns: 1fr; }
  .sticky-rfq .btn { width: 100%; justify-content: center; }
}
