/* Fonts loaded via <link> in base.html for performance */

:root {
  --primary: #0D9488;
  --primary-dark: #0F766E;
  --accent: #0E7490;
  --accent-dark: #155E75;
  --dark: #0F766E;
  --dark2: #1e293b;
  --gray: #64748b;
  --light: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  --success: #10b981;
  --danger: #ef4444;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
  --nav-bg: rgba(255, 255, 255, 0.9);
}



*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand .logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.navbar-brand .logo-text span {
  color: var(--accent);
}

.navbar-logo {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--dark2);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Animated hamburger → X when menu is open */
.nav-links.open~.nav-toggle span:nth-child(1),
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-links.open~.nav-toggle span:nth-child(2),
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-links.open~.nav-toggle span:nth-child(3),
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.35);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
}

.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-lg {
  padding: 15px 36px;
  font-size: 1.05rem;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: #fff;
}

/* ── Hero ── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background: linear-gradient(-45deg, #0f172a, #1e3a6b, #0D9488, #0f172a);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  display: flex;
  align-items: center;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/static/images/hero_bg.webp') center/cover no-repeat;
  opacity: 0.25;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 0 5%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 116, 144, 0.15);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.6s ease;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  color: rgba(255, 255, 255, 0.80);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-image {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  animation: bounce 2s infinite;
}

.hero-scroll span {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.4);
}

/* ── Section ── */
.section {
  padding: 90px 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  background: rgba(13, 148, 136, 0.1);
  color: var(--primary);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.8rem;
}

.section-subtitle {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Category strip ── */
.cat-strip {
  background: var(--white);
  padding: 50px 5%;
  border-bottom: 1px solid var(--border);
}

.cat-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.cat-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.cat-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.cat-card .cat-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), #14B8A6);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.8rem;
  color: var(--white);
}

.cat-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.cat-card p {
  font-size: 0.82rem;
  color: var(--gray);
}

/* ── Why Choose Us ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.why-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.2rem;
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.why-card p {
  color: var(--gray);
  font-size: 0.92rem;
}

/* ── Products Grid ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.product-card-img {
  /* Use aspect-ratio + contain so full product images always show */
  aspect-ratio: 4 / 3;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* never crop — show full product */
  padding: 12px;
  /* breathing room inside the frame */
  transition: transform 0.35s ease;
  display: block;
}

.product-card:hover .product-card-img img {
  transform: scale(1.06);
  /* subtle zoom on hover — image only */
}

.product-card-img .no-img {
  font-size: 4rem;
}

.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}

.product-card-body {
  padding: 1.5rem;
}

.product-card-cat {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}

.product-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-card p {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 1.2rem;
}

.product-card .btn {
  width: 100%;
  justify-content: center;
}

/* ── Stats Bar ── */
.stats-bar {
  background: linear-gradient(-45deg, #0D9488, #0F766E, #0E7490, #0D9488);
  background-size: 400% 400%;
  animation: gradientBG 18s ease infinite;
  padding: 60px 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
}

.stat-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-top: 4px;
}

/* ── Gallery ── */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 3rem;
}

.filter-btn {
  background: var(--light);
  color: var(--gray);
  border: 1px solid var(--border);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.1);
}

.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.25);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
}

/* ── Contact Form ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--dark2);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
  opacity: 1;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}


/* Contact info card */
.contact-info-card {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  border-radius: var(--radius);
  padding: 2.5rem;
  color: var(--white);
  height: fit-content;
}

.contact-info-card.fade-in-right.visible {
  background: linear-gradient(-45deg, #0f172a, #1e3a6b, #0F766E, #0f172a);
  background-size: 400% 400%;
  animation: gradientBG 20s ease infinite;
  color: var(--white);
}


.contact-info-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-info-card>p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-item .info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.info-item h5 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}

.info-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

/* ── Product Detail ── */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.product-image-box {
  /* No background box — image only, no border/shadow/padding */
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  min-height: auto;
  box-shadow: none;
}

.product-image-box img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}

.product-image-box:hover img {
  transform: scale(1.04);
}

.product-image-box .no-img {
  font-size: 6rem;
}

.product-info .cat-tag {
  display: inline-block;
  background: rgba(13, 148, 136, 0.1);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.product-info h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.product-info .short-desc {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.features-list {
  margin: 1rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.95rem;
}

.features-list li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  margin-top: 1px;
}

.product-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}

.tabs {
  margin-top: 3rem;
}

.tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 1.5rem;
}

.tab-btn {
  padding: 12px 24px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray);
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}

.tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}

.app-chip {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-chip::before {
  content: '📍';
}

.tech-table {
  width: 100%;
  border-collapse: collapse;
}

.tech-table tr:nth-child(even) td {
  background: var(--light);
}

.tech-table td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
}

.tech-table td:first-child {
  font-weight: 600;
  width: 40%;
}

/* ── Dealer Banner ── */
.dealer-banner {
  background: linear-gradient(-45deg, #0f172a, #1e3a6b, #0F766E, #0f172a);
  background-size: 400% 400%;
  animation: gradientBG 20s ease infinite;
  padding: 80px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.dealer-banner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.dealer-banner p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
}

.dealer-form-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.dealer-form-box h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

/* ── Alerts/Flash ── */
.flash-messages {
  padding: 0 5%;
  padding-top: 1rem;
}

.alert {
  padding: 14px 20px;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-size: 0.95rem;
}

.alert-success {
  background: #ecfdf5;
  color: #065f46;
  border-left: 4px solid var(--success);
}

.alert-danger {
  background: #fef2f2;
  color: #991b1b;
  border-left: 4px solid var(--danger);
}

.alert-info {
  background: #eff6ff;
  color: #1e40af;
  border-left: 4px solid var(--primary);
}

.alert-warning {
  background: #fffbeb;
  color: #92400e;
  border-left: 4px solid var(--accent);
}

.alert-close {
  cursor: pointer;
  font-size: 1.1rem;
  background: none;
  border: none;
  color: inherit;
}

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 5% 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}

.footer-brand .logo-text span {
  color: var(--accent);
}

.footer-brand p {
  margin: 1rem 0 1.5rem;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.footer-col ul li {
  margin-bottom: 0.7rem;
}

.footer-col ul li a {
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: #FFFFFF;
}

/* ── Page Hero ── */
.page-hero {
  background: linear-gradient(-45deg, #0f172a, #0F766E, #0E7490, #0f172a);
  background-size: 400% 400%;
  animation: gradientBG 16s ease infinite;
  padding: 80px 5%;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-top: 0.8rem;
}

.breadcrumb a {
  color: var(--accent);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}

/* ── CTA Strip ── */
.cta-strip {
  background: linear-gradient(-45deg, #0E7490, #155E75, #0D9488, #0E7490);
  background-size: 400% 400%;
  animation: gradientBG 18s ease infinite;
  padding: 70px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-strip h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.4rem;
}

.btn-white {
  background: var(--white);
  color: var(--accent);
  font-weight: 700;
}

.btn-white:hover {
  background: var(--dark);
  color: var(--white);
}

/* ── Inline-Style Replacement Classes ── */
.page-hero--centered {
  text-align: center;
}

.page-hero--left {
  text-align: left;
}

.page-hero__subtitle {
  margin-top: 15px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-badge--glass {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 6px 16px;
}

.hero-content__text {
  max-width: 550px;
}

.hero-btns--spaced {
  margin-top: 2rem;
}

.stat-item--flex {
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat-item__number {
  font-size: 1.5rem;
  margin-bottom: 0;
}

.stat-item__label {
  margin: 0;
  font-size: 0.9rem;
}

.section--light {
  background: var(--light);
}

.section-tag--transparent {
  background: transparent;
  letter-spacing: 2px;
}

.section-title--primary {
  color: var(--primary);
}

.section-header--left {
  text-align: left;
  margin-bottom: 2rem;
}

.section-title--sm {
  font-size: 1.8rem;
}

.why-card--flex {
  padding: 1.5rem;
  text-align: left;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.why-icon--compact {
  width: 40px;
  height: 40px;
  margin: 0;
  background: none;
}

.why-card__title {
  font-size: 1.05rem;
}

.why-card__text {
  font-size: 0.85rem;
}

.cta-strip__btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-strip__btn--white {
  background: white;
  color: var(--primary);
  font-weight: 600;
}

.cta-strip__btn--white:hover {
  background: var(--dark);
  color: var(--white);
}

.cta-strip__title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  margin-bottom: 10px;
}

.cta-strip__subtitle {
  opacity: 0.9;
  margin: 0;
}

.cat-card--img {
  padding: 0;
  overflow: hidden;
}

.cat-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.cat-card--img:hover .cat-card__img {
  transform: scale(1.05);
}

.cat-card__body {
  padding: 1.5rem;
}

.product-info__features-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark2);
}

.breadcrumb a {
  color: white;
  text-decoration: underline;
}

.breadcrumb__sep {
  margin: 0 8px;
}

.about-grid__text {
  color: var(--gray);
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.about-grid__title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 20px;
}

.about-grid__check {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-grid__check-icon {
  color: var(--success);
  font-weight: bold;
}

.about-grid__mission {
  background: var(--light);
  padding: 40px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border);
}

.about-grid__mission-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.about-grid__mission-text {
  color: var(--gray);
  font-size: 0.95rem;
}

.footer-brand__logo {
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
  /* filter: invert(1) brightness(2); */
}

.related-section {
  background: var(--light);
  padding-top: 2rem;
}

.tab-desc {
  color: var(--gray);
  line-height: 1.8;
}

.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2.5rem;
}

.feature-icons {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  gap: 1.5rem;
}

/* ── Stat Icon Wrap ── */
.stat-icon-wrap {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

/* ── Form Validation ── */
.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-group--error input,
.form-group--error textarea {
  border-color: #ef4444 !important;
  background-color: #fef2f2;
}

.form-error {
  color: #ef4444;
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

.about-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

/* ── Animations ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Product Filter Row ── */
.product-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 2.5rem;
}

/* ── Product Category Section ── */
.cat-section {
  margin-bottom: 4rem;
}

.cat-section-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--primary);
  flex-wrap: wrap;
}

.cat-section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark2);
  margin: 0;
}

.cat-section-header p {
  font-size: 0.88rem;
  color: var(--gray);
  margin: 0;
}

/* ── Gallery Filter Row ── */
.gallery-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 2rem;
}

/* ── Feature Icon Items ── */
.feature-icon-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ── Dealer Benefits Section ── */
.dealer-benefits-section {
  background: var(--light);
  padding: 50px 5%;
}

.dealer-benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}

.dealer-benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1rem;
  text-align: center;
  transition: var(--transition);
}

.dealer-benefit-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.dealer-benefit-card .benefit-icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.dealer-benefit-card h4 {
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--dark2);
  font-size: 0.95rem;
}

.dealer-benefit-card p {
  font-size: 0.82rem;
  color: var(--gray);
  margin: 0;
}

/* ── Dealer Benefit List ── */
.dealer-benefit-list {
  list-style: none;
  margin-top: 1rem;
  padding: 0;
}

.dealer-benefit-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dealer-benefit-list li .check {
  color: #5eead4;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── Dealer Submit Button ── */
.dealer-submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ── Button SM ── */
.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

/* ── WhatsApp Floating Button ── */
.whatsapp-float {
  position: fixed;
  width: 64px;
  height: 64px;
  bottom: 30px;
  right: 30px;
  background-color: #f8f9fa;
  color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #ffffff;
  color: #1eb955;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.whatsapp-float svg {
  width: 38px;
  height: 38px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 32px;
    height: 32px;
  }
}

/* ── Scroll Progress Bar ── */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 9999;
  background: transparent;
}

.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  width: 0%;
  transition: width 0.1s ease-out;
}

/* ── Micro-interactions ── */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.btn:hover::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 1;
  }

  20% {
    transform: scale(25, 25);
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(40, 40);
  }
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ── Client Logos Slider ── */
.client-logos-section {
  padding: 40px 5%;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.client-logos-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  opacity: 0.6;
  filter: grayscale(1);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.client-logos-grid:hover {
  opacity: 1;
  filter: grayscale(0);
}

.client-logo-item {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dark2);
  display: flex;
  align-items: center;
  gap: 8px;
  user-select: none;
}

.client-logo-item svg {
  color: var(--primary);
  opacity: 0.8;
}






/* ── Skeleton Loading ── */
.skeleton {
  background: linear-gradient(90deg, var(--light) 25%, var(--border) 50%, var(--light) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 8px;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.skeleton-text {
  height: 1rem;
  margin-bottom: 0.5rem;
  width: 100%;
}

.skeleton-title {
  height: 1.5rem;
  margin-bottom: 1rem;
  width: 60%;
}

.skeleton-img {
  height: 200px;
  width: 100%;
}



/* ── Bento Grid ── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.bento-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.bento-item:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(13, 148, 136, 0.12);
}

.bento-icon {
  width: 48px;
  height: 48px;
  background: var(--light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.bento-item:hover .bento-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--primary);
  color: var(--white);
}

.bento-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark2);
}

.bento-item p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(200px, auto);
  }
}

@media (max-width: 640px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .bento-item--large,
  .bento-item--tall,
  .bento-item--wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ==========================================================================
   PRODUCT CATALOG SECTION
   ========================================================================== */
.section--catalog {
  padding: 100px 5%;
  background-color: #F8FBFC;
}

.section--catalog .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.catalog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

/* Left Side: Catalog Image */
.catalog-left {
  display: flex;
  justify-content: center;
  align-items: center;
}

.catalog-img-card {
  width: 100%;
  max-width: 380px;
  background: #ffffff;
  /* padding: 12px; */
  border-radius: 20px;
  /* Soft premium shadow */
  box-shadow: 0 15px 45px rgba(22, 59, 77, 0.08), 0 5px 15px rgba(22, 59, 77, 0.03);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.catalog-img-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.catalog-img-card:hover {
  transform: translateY(-10px);
  /* Slight lift up with smoother shadow */
  box-shadow: 0 25px 55px rgba(22, 59, 77, 0.15), 0 10px 25px rgba(22, 59, 77, 0.06);
}

/* Right Side: Content Details */
.catalog-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.catalog-main-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #163B4D;
  margin-bottom: 18px;
  line-height: 1.25;
}

.catalog-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #4A606A;
  margin-bottom: 30px;
}

/* Features List */
.catalog-features {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.catalog-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  color: #163B4D;
  font-weight: 600;
}

.catalog-features li .feature-icon {
  color: #0D8B8B;
  font-weight: 800;
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Buttons */
.catalog-action-btns {
  display: flex;
  gap: 20px;
  width: 100%;
}

.btn-catalog {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  box-sizing: border-box;
}

.btn-catalog--primary {
  background-color: #0D8B8B;
  color: #ffffff;
  border: 2px solid #0D8B8B;
  box-shadow: 0 4px 12px rgba(13, 139, 139, 0.2);
}

.btn-catalog--primary:hover {
  background-color: #0B7272;
  border-color: #0B7272;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(13, 139, 139, 0.3);
}

.btn-catalog--secondary {
  background-color: #ffffff;
  color: #0D8B8B;
  border: 2px solid #0D8B8B;
}

.btn-catalog--secondary:hover {
  background-color: #0D8B8B;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(13, 139, 139, 0.2);
}

/* Section overrides for Emlaticrete branding compatibility */
.section--catalog .section-tag {
  background: rgba(13, 139, 139, 0.1);
  color: #0D8B8B;
}

.section--catalog .section-title {
  color: #163B4D;
  margin-bottom: 1rem;
}

.section--catalog .section-subtitle {
  color: #4A606A;
  max-width: 720px;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (GRID/FLEXBOX ONLY, NO BOOTSTRAP/TAILWIND)
   ========================================================================== */

/* Laptop / Desktop standard (up to 1400px) */
@media (max-width: 1399px) {
  .catalog-grid {
    gap: 50px;
  }

  .catalog-main-title {
    font-size: 2rem;
  }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
  }

  .catalog-left {
    order: 1;
    /* Image first */
  }

  .catalog-right {
    order: 2;
    /* Content below */
    align-items: center;
    text-align: center;
  }

  .catalog-features {
    align-items: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .catalog-features li {
    justify-content: flex-start;
    width: 100%;
    max-width: 250px;
  }

  .catalog-action-btns {
    justify-content: center;
  }
}

/* Mobile (below 768px) */
@media (max-width: 767px) {
  .section--catalog {
    padding: 60px 5%;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }

  .catalog-left {
    order: 1;
  }

  .catalog-img-card {
    max-width: 260px;
    /* Mobile: image width about 260px */
    padding: 8px;
    border-radius: 18px;
  }

  .catalog-img-card img {
    border-radius: 12px;
  }

  .catalog-right {
    order: 2;
    align-items: center;
    text-align: center;
  }

  .catalog-main-title {
    font-size: 1.75rem;
    margin-bottom: 12px;
  }

  .catalog-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .catalog-features {
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
  }

  .catalog-features li {
    justify-content: flex-start;
    width: 100%;
    max-width: 240px;
    font-size: 1rem;
  }

  .catalog-action-btns {
    flex-direction: column;
    /* Mobile: buttons full width */
    width: 100%;
    gap: 12px;
  }

  .btn-catalog {
    width: 100%;
    /* Mobile: buttons full width */
  }
}