.logo-block:hover .nav-logo-img {
  transform: scale(1.05);
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: -1px;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.3px;
  line-height: 1.1;
  text-transform: uppercase;
}

.logo-subtitle {
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 600;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: var(--text-body);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  text-decoration: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: left 0.3s ease, right 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  left: 16px;
  right: 16px;
}

.nav-link.active {
  color: var(--primary);
  font-weight: 700;
}

.nav-link.active::after {
  left: 16px;
  right: 16px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px 3px 0 0;
}

/* Search */
.search-wrapper {
  position: relative;
}

.search-input {
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px 8px 36px;
  font-size: 0.82rem;
  font-family: var(--font-body);
  background: var(--bg-section);
  transition: all 0.3s ease;
  width: 170px;
  color: var(--text-dark);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  width: 200px;
  box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.1);
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85rem;
  opacity: 0.5;
  pointer-events: none;
}

/* CTA Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 0.92rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #00bcd4);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), #0097a7);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 188, 212, 0.4);
  transform: translateY(-2px) scale(1.02);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}

.btn-outline:hover {
  background: var(--text-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 26, 46, 0.2);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

.btn-white:hover {
  background: var(--primary-bg);
  border-color: var(--primary-bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.82rem;
}

.nav-cta .btn {
  padding: 10px 22px;
  font-size: 0.8rem;
  border-radius: 50px;
  letter-spacing: 0.8px;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--primary);
  cursor: pointer;
  padding: 4px;
}

/* ====== HERO BANNER ====== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: #fff;
  padding: 80px 0 120px 0;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}


.hero-overlay-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
}

@keyframes floatBadge {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero h1 {
  font-size: 3rem;
  color: #fff;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.hero h1 span {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  letter-spacing: 0;
}

.hero-line {
  width: 60px;
  height: 4px;
  background: #ffd54f;
  border-radius: 4px;
  margin: 20px 0;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust-pills {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  padding: 6px 12px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-pill:hover {
  color: #fff;
  transform: translateY(-3px) scale(1.02);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.trust-pill .pill-icon {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #00bcd4, var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.trust-pill:hover .pill-icon {
  background: rgba(255, 255, 255, 0.25);
}

/* Hero Image Side */
.hero-image-side {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.hero-img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  animation: floatBadge 6s ease-in-out infinite;
}

.hero-years-badge {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(135deg, #ffffff, #f0f7ff);
  color: var(--primary);
  border-radius: 16px;
  padding: 18px 24px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: floatBadge 4s ease-in-out infinite;
  z-index: 11;
  backdrop-filter: blur(8px);
}

.hero-years-badge .badge-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  display: inline-block;
  animation: pulseScale 2.5s ease-in-out infinite;
}

.hero-years-badge .badge-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

/* ====== STATS BAR ====== */
.stats-bar {
  background: var(--bg-section);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 32px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-bg);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.stat-text h4 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
}

.stat-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ====== SECTION STYLING ====== */
.section {
  padding: var(--section-padding);
}

.section-alt {
  background: var(--bg-section);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.section-header .overline::before,
.section-header .overline::after {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-header h2 em {
  font-style: italic;
  color: var(--primary);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ====== PRODUCT CARDS GRID ====== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

/* Tab Filters */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: #fff;
  border: 2px solid var(--border);
  color: var(--text-body);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(13, 71, 161, 0.2);
}

/* Product Card */
.product-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 40px rgba(13, 71, 161, 0.12);
}

.product-card-top {
  background: var(--bg-section);
  padding: 28px 28px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-bottom: 1px solid var(--border-light);
}

.product-card-icon {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  flex-shrink: 0;
}

.product-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--text-dark);
}

.product-card-category {
  font-size: 0.72rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-card-body {
  padding: 22px 28px;
  flex-grow: 1;
}

.product-card-desc {
  color: var(--text-body);
  font-size: 0.9rem;
  margin-bottom: 18px;
  line-height: 1.65;
}

.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}

.spec-row {
  font-size: 0.78rem;
}

.spec-label {
  color: var(--text-muted);
  font-weight: 500;
  display: block;
}

.spec-value {
  color: var(--text-dark);
  font-weight: 700;
}

.product-card-footer {
  padding: 16px 28px;
  background: var(--bg-section);
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color var(--transition);
}

.card-link:hover {
  color: var(--primary-dark);
}

.card-inquire-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: all var(--transition);
}

.card-inquire-btn:hover {
  background: var(--primary-dark);
  box-shadow: 0 3px 10px rgba(13, 71, 161, 0.25);
}

/* ====== INDUSTRIES WE SERVE ====== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.industry-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 200px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.industry-card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.1) 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.industry-card-overlay .ind-icon {
  font-size: 1.2rem;
}

.industry-card-overlay span {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
}

/* ====== WHY CHOOSE US ====== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 28px;
}

.feature-item {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.feature-item:hover {
  background: #fff;
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: var(--primary-bg);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
}

.feature-item h4 {
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ====== CERTIFICATIONS BAR ====== */
.certs-section {
  background: var(--primary-bg-light);
  border: 2px solid var(--primary-bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 40px;
}

.certs-section h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 24px;
  text-align: center;
}

.certs-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.cert-icon {
  width: 60px;
  height: 60px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.cert-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

/* ====== ELASTOMERS SECTION ====== */
.elastomers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

.elastomer-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.elastomer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--accent);
}

.elastomer-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.elastomer-abbrev {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.elastomer-name {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

.elastomer-trade {
  font-size: 0.75rem;
  color: var(--text-light);
  display: block;
  margin-top: 2px;
  border-radius: 12px;
  white-space: nowrap;
}

.elastomer-desc {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 14px;
}

.elastomer-footer {
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
  text-align: right;
  margin-top: auto;
}

.elastomer-link {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ====== COMPARISON TABLE ====== */
.comparison-controls {
  margin-bottom: 24px;
}

.comparison-controls h4 {
  font-size: 0.92rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.toggle-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.toggle-label {
  background: #fff;
  border: 2px solid var(--border);
  color: var(--text-body);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  user-select: none;
  transition: all var(--transition);
}

.toggle-label input {
  display: none;
}

.toggle-label:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.toggle-label.checked {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  text-align: center;
}

.comparison-table th {
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--text-dark);
  position: sticky;
  left: 0;
  background: #fff;
  z-index: 5;
  min-width: 200px;
  border-right: 2px solid var(--border);
}

.comparison-table th:first-child {
  background: var(--primary-dark);
}

.comparison-table tbody tr:nth-child(even) {
  background: var(--bg-section);
}

.comparison-table tbody tr:nth-child(even) td:first-child {
  background: var(--bg-section);
}

.comparison-table tbody tr:hover {
  background: var(--primary-bg-light);
}

.comparison-table tbody tr:hover td:first-child {
  background: var(--primary-bg-light);
}

/* Rating Dots */
.rating-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.72rem;
  color: #fff;
}

.rating-badge.rating-e {
  background: #2e7d32;
}

.rating-badge.rating-g {
  background: #1565c0;
}

.rating-badge.rating-f {
  background: #f9a825;
  color: #333;
}

.rating-badge.rating-p {
  background: #c62828;
}

.rating-legend {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  font-size: 0.78rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.rating-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ====== ABOUT SECTION ====== */
.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: flex-start;
}

.about-tabs-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-tab-btn {
  background: #fff;
  border: 1px solid var(--border-light);
  color: var(--text-body);
  text-align: left;
  padding: 14px 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}

.about-tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.about-tab-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(13, 71, 161, 0.2);
}

.about-panel {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.about-tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.about-tab-content.active {
  display: block;
}

.about-tab-content h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-tab-content .about-text {
  color: var(--text-body);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}

.about-checklist li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* Infra showcase inside about tab */
.infra-showcase {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  margin-top: 24px;
  box-shadow: var(--shadow-md);
}

.infra-showcase img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.infra-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.9), transparent);
  color: #fff;
}

.infra-caption h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.infra-caption p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ====== CONTACT ====== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-block {
  display: flex;
  gap: 18px;
  align-items: center;
  transition: all 0.3s ease;
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.03);
}

.contact-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(13, 71, 161, 0.08);
  border-color: rgba(13, 71, 161, 0.15);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-bg);
  border: 2px solid var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-block:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(13, 71, 161, 0.12);
}

.contact-content {
  flex: 1;
}

.contact-content h4 {
  font-size: 1.05rem;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.contact-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Map Widget */
.map-widget {
  height: 240px;
  position: relative;
  overflow: hidden;
  display: block;
}

.map-wrapper {
  margin-top: 10px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.3s ease;
}

.map-wrapper:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.map-header {
  padding: 12px 18px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* Form Improvements */
.inquiry-card {
  background: #fff; 
  padding: 40px; 
  border-radius: 16px; 
  box-shadow: 0 10px 40px rgba(13, 71, 161, 0.08); 
  border: 1px solid rgba(13, 71, 161, 0.1);
  border-top: 5px solid var(--primary);
  position: relative;
}

.form-floating {
  position: relative;
  margin-bottom: 20px;
}
.form-floating .wa-input {
  padding: 1.5rem 1rem 0.5rem;
}
.form-floating .wa-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  transition: all 0.2s ease-in-out;
  pointer-events: none;
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: transparent;
  margin-bottom: 0;
}
.form-floating .wa-input:focus ~ .wa-label,
.form-floating .wa-input:not(:placeholder-shown) ~ .wa-label {
  top: 0.35rem;
  font-size: 0.65rem;
  color: var(--primary);
}

.wa-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-dark);
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.wa-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.95rem;
  background: #f8fafc;
  color: var(--text-dark);
  transition: all 0.3s ease;
  font-family: inherit;
}

.wa-input:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(13, 71, 161, 0.1);
}

.wa-btn {
  width: 100%; 
  font-size: 1rem; 
  padding: 18px; 
  background: var(--primary); 
  border: none;
  border-radius: 8px; 
  letter-spacing: 1.5px;
  font-weight: 700;
  color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(13, 71, 161, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.wa-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 71, 161, 0.3);
}

.wa-btn:active {
  transform: translateY(0);
}

.map-dots {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.map-pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.pin-dot {
  width: 18px;
  height: 18px;
  background: var(--primary);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--primary), 0 0 20px rgba(13, 71, 161, 0.3);
  animation: pulse 2s infinite;
}

.pin-text {
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: 4px;
}

/* Inquiry Form */
.inquiry-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.inquiry-card h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: var(--primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input,
.form-select,
.form-textarea {
  background: var(--bg-section);
  border: 2px solid var(--border);
  color: var(--text-dark);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 0.92rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  color: #c62828;
  font-size: 0.72rem;
  font-weight: 600;
  display: none;
}

/* ====== FOOTER ====== */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.footer-about p {
  font-size: 0.85rem;
  margin-bottom: 16px;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--footer-text);
  font-size: 0.85rem;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.85rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ====== MODAL ====== */
.modal-dialog {
  border: none;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--primary);
  width: 90%;
  max-width: 750px;
  padding: 0;
  z-index: 2000;
  outline: none;
  max-height: 85vh;
}

.modal-dialog[open] {
  display: flex;
  flex-direction: column;
}

.modal-dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal-head {
  padding: 24px 32px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-size: 1.3rem;
  color: var(--primary);
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition);
}

.modal-close:hover {
  color: var(--text-dark);
}

.modal-body {
  padding: 32px;
  overflow-y: auto;
  flex-grow: 1;
}

.modal-section-title {
  font-size: 1rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  border-bottom: 2px solid var(--primary-bg);
  padding-bottom: 6px;
}

.modal-text-content {
  color: var(--text-body);
  font-size: 0.92rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Modal spec tables */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.spec-table th,
.spec-table td {
  border: 1px solid var(--border);
  padding: 10px 14px;
  text-align: left;
}

.spec-table th {
  background: var(--primary-bg);
  color: var(--primary);
  font-weight: 700;
}

.spec-table tbody tr:nth-child(even) {
  background: var(--bg-section);
}

/* ====== SUCCESS TOAST ====== */
.success-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #fff;
  border: 2px solid #2e7d32;
  border-left: 6px solid #2e7d32;
  color: var(--text-dark);
  border-radius: var(--radius);
  padding: 16px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.success-toast.active {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  color: #2e7d32;
  font-size: 1.4rem;
}

/* Search */
.search-wrapper {
  position: relative;
}

.search-input {
  background: var(--bg-section);
  border: 2px solid var(--border);
  color: var(--text-dark);
  border-radius: 50px;
  padding: 8px 16px 8px 38px;
  width: 200px;
  font-size: 0.85rem;
  outline: none;
  transition: all var(--transition);
}

.search-input:focus {
  width: 280px;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.1);
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  font-size: 0.85rem;
}

.search-results {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 340px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-height: 380px;
  overflow-y: auto;
  z-index: 100;
  display: none;
}

.search-results.active {
  display: block;
}

.search-result-item {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
  transition: background var(--transition);
}

.search-result-item:hover {
  background: var(--primary-bg-light);
}

.search-result-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary);
}

.search-result-category {
  font-size: 0.68rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.search-no-results {
  padding: 16px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* About checklist also used in modals */
.about-bullet-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}

.about-bullet-item::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* ====== ANIMATIONS ====== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(13, 71, 161, 0.4);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(13, 71, 161, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(13, 71, 161, 0);
  }
}

/* ====== RESPONSIVE ====== */
/* --- PREMIUM UPGRADES CSS --- */
/* Typing Effect */
.typing-container { display: inline-block; }
.typing-text {
  color: #38bdf8;
}

/* Floating Particles */
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: float 10s infinite linear;
  pointer-events: none;
  z-index: 0;
}
@keyframes float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* Scroll Reveal */
.reveal-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal-card.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ---------------------------- */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image-side {
    display: none;
  }

  .hero-desc {
    margin: 0 auto 32px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust-pills {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-tabs-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar .container {
    justify-content: center;
  }

  .top-bar-left {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 2px solid var(--border);
    flex-direction: column;
    padding: 20px;
    gap: 8px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: var(--shadow-md);
    z-index: 999;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link.active::after {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .search-wrapper {
    display: none;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-checklist {
    grid-template-columns: 1fr;
  }
}
/* ====== PRELOADER ====== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s cubic-bezier(0.65, 0, 0.35, 1), visibility 0.6s ease;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preloader-logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 32px;
  mix-blend-mode: multiply; /* Removes white background from JPEG beautifully */
  animation: logoEntrance 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards, pulseLogo 2s infinite ease-in-out 1s;
  opacity: 0;
  transform: translateY(20px);
}

.preloader-bar-track {
  width: 180px;
  height: 3px;
  background: rgba(13, 71, 161, 0.08);
  border-radius: 4px;
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
  opacity: 0;
  animation: fadeIn 0.5s ease-out 0.8s forwards;
}

.preloader-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--accent), var(--primary-light), var(--primary));
  border-radius: 4px;
  animation: loadingBar 1.5s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

.preloader-text {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--primary-darker);
  font-weight: 700;
  opacity: 0;
  animation: trackingIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.8s forwards;
}

@keyframes logoEntrance {
  0% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes trackingIn {
  0% { letter-spacing: -2px; opacity: 0; }
  100% { letter-spacing: 5px; opacity: 0.85; }
}

@keyframes pulseLogo {
  0% { transform: scale(0.98); opacity: 0.9; filter: drop-shadow(0 4px 6px rgba(0,0,0,0.05)); }
  50% { transform: scale(1.02); opacity: 1; filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1)); }
  100% { transform: scale(0.98); opacity: 0.9; filter: drop-shadow(0 4px 6px rgba(0,0,0,0.05)); }
}

@keyframes loadingBar {
  0% { left: -40%; width: 40%; }
  50% { left: 30%; width: 60%; }
  100% { left: 100%; width: 40%; }
}

/* Premium 3D Animation & Luxury Glass Aesthetics */
.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Below content, above background */
  pointer-events: none; /* Let clicks pass through to background */
}

/* Ensure the hero container sits above the canvas */
.hero .container {
  position: relative;
  z-index: 2;
}

/* Glassmorphism */
.luxury-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}

.luxury-glass:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-text-side.luxury-glass, .hero-image-side.luxury-glass {
  padding: 3rem;
  /* Ensure padding doesn't break grid */
  box-sizing: border-box;
}

/* Adjust typography for premium feel */


/* Magnetic Button Wrapper */
.magnetic-wrap {
  display: inline-block;
  position: relative;
}

/* Accessibility: Focus States for Lists */
.product-card:focus-visible,
.industry-card:focus-visible,
.cert-badge:focus-visible,
.feature-item:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Accessibility & Utility Additions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-btn {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.whatsapp-btn:hover {
  border-color: #fff !important;
}

.hero-badge-placeholder {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1/1;
}

.hero-years-badge-bottom {
  bottom: -20px !important;
  right: -20px !important;
}

.preloader.hidden {
  display: none !important;
}

/* Mobile Sticky WhatsApp Button */
.mobile-sticky-wa {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.mobile-sticky-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: white;
}

@media (max-width: 768px) {
  .mobile-sticky-wa {
    display: flex;
  }
}

/* Footer Premium Styles */
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 60px 20px 20px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.5;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 40px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.footer h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.footer-brand p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-badge {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  font-size: 0.8rem;
  color: white;
  background: rgba(255,255,255,0.05);
}

.footer-links ul, .footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li, .footer-contact li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary-light);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-contact .icon {
  margin-right: 8px;
  font-size: 1.1rem;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9em;
  padding-top: 20px;
}

.footer-disclaimer {
  opacity: 0.5;
  margin-top: 8px;
  font-size: 0.85em;
}

/* ==========================================================================
   AGENCY-GRADE UX: Scroll Progress & Marquee
   ========================================================================== */

/* Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e88e5, #0d47a1);
  width: 0%;
  z-index: 9998;
  transition: width 0.1s linear;
  box-shadow: 0 1px 3px rgba(13,71,161,0.2);
}

/* ==========================================================================
   AGENCY-GRADE UX: Infinite Marquee
   ========================================================================== */
.trusted-marquee-section {
  background: var(--surface);
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.marquee-title {
  text-align: center;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 600;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

/* Fading edges */
.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
}
.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--surface), transparent);
}
.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--surface), transparent);
}

.marquee-content {
  display: inline-flex;
  animation: scrollMarquee 25s linear infinite;
}

.marquee-item {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.4;
  margin: 0 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
}

.marquee-item:hover {
  opacity: 1;
  color: var(--primary);
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
