/* ============================================================
   TICK TICK — Brand-Aligned CSS
   Colors from logo: Teal #0D4A4A, Lime #C8E63C, White #FFFFFF
   Fonts: Barlow (headings) + Inter (body)
   ============================================================ */

/* ── TOKENS ── */
:root {
  --teal: #0d4a4a;
  --teal-dark: #082e2e;
  --teal-mid: #0f5a5a;
  --teal-light: #1a7a7a;
  --lime: #c8e63c;
  --lime-dark: #a8c430;
  --lime-glow: rgba(200, 230, 60, 0.18);
  --white: #ffffff;
  --off-white: #f7f8f2;
  --surface: #ffffff;
  --surface-raised: #f4f6f0;
  --text: #0d1a1a;
  --text-muted: #5a6e6e;
  --text-faint: #9ab0b0;
  --border: #dde8e8;
  --border-strong: #b0c8c8;
  --shadow-sm: 0 2px 8px rgba(13, 74, 74, 0.07);
  --shadow: 0 6px 24px rgba(13, 74, 74, 0.1);
  --shadow-lg: 0 16px 56px rgba(13, 74, 74, 0.14);
  --shadow-lime: 0 8px 32px rgba(200, 230, 60, 0.25);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --font-head: "Barlow", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.3s;
  --header-h: 72px;
}

/* ── DARK MODE ── */
[data-theme="dark"] {
  --surface: #0d1e1e;
  --surface-raised: #112828;
  --text: #e8f0f0;
  --text-muted: #7aadad;
  --text-faint: #4a7070;
  --border: #1e3a3a;
  --border-strong: #2a5050;
  --off-white: #0d1e1e;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 56px rgba(0, 0, 0, 0.5);
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  background: var(--surface);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font-family: inherit;
  cursor: pointer;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--surface);
}
::-webkit-scrollbar-thumb {
  background: var(--teal-light);
  border-radius: 3px;
}

/* ════════════════════════════════════════
   HEADER
════════════════════════════════════════ */
.tt-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease), backdrop-filter var(--dur);
}
.tt-header.scrolled {
  background: rgba(var(--teal-raw, 13, 74, 74), 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
}
[data-theme="light"] .tt-header {
  background: transparent;
}
[data-theme="light"] .tt-header.scrolled {
  background: rgba(13, 74, 74, 0.97);
}
[data-theme="dark"] .tt-header {
  background: rgba(13, 30, 30, 0);
}
[data-theme="dark"] .tt-header.scrolled {
  background: rgba(13, 30, 30, 0.97);
  backdrop-filter: blur(20px);
}

.tt-header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
}

/* Brand / Logo */
.tt-brand {
  display: flex;
  align-items: center;
}
.tt-logo-img {
  height: auto;
  width: 225px;
  object-fit: contain;
}
.tt-logo-fallback {
  display: none;
  align-items: center;
}
.tt-logo-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--white);
}
.tt-logo-accent {
  color: var(--lime);
}

/* Nav */
.tt-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.tt-nav-link {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  transition: all var(--dur) var(--ease);
  position: relative;
}
.tt-nav-link:hover {
  color: var(--lime);
  background: rgba(200, 230, 60, 0.08);
}
.tt-nav-link.active {
  color: var(--lime);
}
.tt-nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--lime);
  border-radius: 1px;
}

/* Actions */
.tt-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 200px;
  justify-content: flex-end;
}
.tt-search-trigger {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--dur) var(--ease);
}
.tt-search-trigger:hover {
  background: rgba(200, 230, 60, 0.15);
  border-color: var(--lime);
  color: var(--lime);
}
.tt-menu-btn {
  background: none;
  border: none;
  width: 38px;
  height: 38px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 4px;
}
.tt-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: all var(--dur) var(--ease);
}
.tt-menu-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.tt-menu-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.tt-menu-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Search Overlay */
.tt-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 20, 20, 0.96);
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  backdrop-filter: blur(12px);
}
.tt-search-overlay.open {
  opacity: 1;
  pointer-events: all;
  height: 100vh;
}
.tt-search-inner {
  width: 100%;
  max-width: 680px;
  padding: 0 1.5rem;
}
.tt-search-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 2px solid var(--lime);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}
.tt-search-icon {
  color: var(--lime);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.tt-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  placeholder-color: rgba(255, 255, 255, 0.3);
}
.tt-search-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.tt-search-close {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur);
}
.tt-search-close:hover {
  border-color: var(--lime);
  color: var(--lime);
}
.tt-search-results {
  display: none;
}
.tt-search-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  color: var(--white);
}
.tt-search-result-item:hover {
  background: rgba(200, 230, 60, 0.1);
  transform: translateX(4px);
}
.tt-search-result-img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}
.tt-search-result-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  display: block;
  color: var(--white);
}
.tt-search-result-meta {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
  display: block;
}
.tt-search-no-result {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  padding: 2rem;
  font-size: 0.9rem;
}
.tt-search-hint {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  margin-top: 1.5rem;
}

/* Mobile nav */
.tt-mobile-nav {
  position: fixed;
  top: 4.45rem; /* Change from var(--header-h) to 0 */
  right: 0;
  height: 100vh; /* Ensure it always covers the full screen height */
  width: 100%;
  background: var(--teal-dark);
  z-index: 1000; /* Increase this to stay above everything else */
  padding: 2rem 1.5rem 2rem; /* Added top padding so links aren't hidden by the header */
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.tt-mobile-nav.open {
  transform: translateX(0);
}
.tt-mobile-link {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  transition: all var(--dur);
}
.tt-mobile-link:hover {
  color: var(--lime);
  background: rgba(200, 230, 60, 0.08);
}
.tt-mobile-wa {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366 !important;
  margin-top: auto;
}
.tt-mobile-wa:hover {
  background: rgba(37, 211, 102, 0.2) !important;
}
.tt-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 880;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.tt-nav-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.tt-hero {
  position: relative;
  min-height: 100svh;
  background: var(--teal-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: var(--header-h) 0 4rem;
}
.tt-hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.tt-hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse 70% 70% at 80% 50%,
      rgba(200, 230, 60, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 80% at 10% 80%,
      rgba(26, 122, 122, 0.3) 0%,
      transparent 50%
    ),
    linear-gradient(160deg, var(--teal-dark) 0%, #071c1c 100%);
}
.tt-hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(200, 230, 60, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(200, 230, 60, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 0%,
    transparent 75%
  );
}
.tt-hero-body {
  position: relative;
  z-index: 2;
  padding: 5rem 3rem;
  margin: 0 auto;
}
.tt-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 2rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(200, 230, 60, 0.3);
  border-radius: var(--radius-pill);
  background: rgba(200, 230, 60, 0.06);
}
.tt-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}
.tt-hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroUp 0.9s 0.15s var(--ease) forwards;
}
.tt-hero-em {
  color: var(--lime);
  font-style: normal;
  display: block;
}
.tt-hero-sub-word {
  font-size: 0.65em;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  letter-spacing: 0.04em;
}
.tt-hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: heroUp 0.9s 0.3s var(--ease) forwards;
}
.tt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  opacity: 0;
  animation: heroUp 0.9s 0.45s var(--ease) forwards;
}
.tt-hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  animation: heroUp 0.9s 0.6s var(--ease) forwards;
}
.tt-hero-stat {
  display: flex;
  flex-direction: column;
}
.tt-hero-stat strong {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--lime);
  line-height: 1;
}
.tt-hero-stat span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}
.tt-hero-stat-div {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
}
.tt-hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s 1s forwards;
}
.tt-hero-scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}
.tt-scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.tt-scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--lime);
  border-radius: 2px;
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}
@keyframes heroUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.tt-hero-img-wrap {
  padding: 5rem 3rem;
}

/* Hide all slides by default */
.tt-hero-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

/* Only show the active one */
.tt-hero-slide.active {
  display: block;
  opacity: 1;
}

img.img-fluid.tt-floating-img.tt-hero-slide {
  border-bottom: 4px solid #c8e63c;
}

/* ════════════════════════════════════════
   MARQUEE
════════════════════════════════════════ */
.tt-marquee-wrap {
  background: var(--teal);
  overflow: hidden;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(200, 230, 60, 0.2);
  border-bottom: 1px solid rgba(200, 230, 60, 0.2);
}
.tt-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.tt-marquee-track:hover {
  animation-play-state: paused;
}
.tt-marquee-item {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  padding: 0 1.5rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.tt-marquee-item i {
  color: var(--lime);
  font-size: 1rem;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.tt-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.75rem;
  background: var(--lime);
  color: var(--teal-dark);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-pill);
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.tt-btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.2s;
}
.tt-btn-primary:hover {
  background: var(--lime-dark);
  color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lime);
}
.tt-btn-primary:active {
  transform: translateY(0);
}
.tt-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.75rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill);
  transition: all 0.25s var(--ease);
}
.tt-btn-outline:hover {
  border-color: var(--lime);
  color: var(--lime);
  background: rgba(200, 230, 60, 0.06);
}
.tt-btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.5rem;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.25s var(--ease);
}
.tt-btn-outline-dark:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(13, 74, 74, 0.05);
}
.tt-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  background: #25d366;
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all 0.25s var(--ease);
}
.tt-btn-wa:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}
.tt-btn-wa-lg {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 2.25rem;
  background: var(--lime);
  color: var(--teal-dark);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: all 0.25s var(--ease);
  border: none;
}
.tt-btn-wa-lg:hover {
  background: var(--lime-dark);
  color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lime);
}
.tt-btn-wa-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  width: 100%;
  padding: 1.1rem 2rem;
  background: #25d366;
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  transition: all 0.25s var(--ease);
}
.tt-btn-wa-full:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}

/* ════════════════════════════════════════
   SECTIONS
════════════════════════════════════════ */
.tt-section {
  padding: 5rem 0;
}
.tt-section-dark {
  background: var(--teal-dark);
}
.tt-section-dark .tt-section-title,
.tt-section-dark .tt-overline {
  color: var(--white);
}
.tt-section-dark .tt-overline {
  color: rgba(200, 230, 60, 0.8);
}
.tt-section-dark .tt-product-card {
  background: var(--teal-mid);
  border-color: rgba(255, 255, 255, 0.08);
}
.tt-section-dark .tt-product-name {
  color: var(--white);
}
.tt-section-dark .tt-product-model {
  color: rgba(255, 255, 255, 0.5);
}
.tt-section-dark .tt-link-more {
  color: var(--lime);
}
.tt-section-dark .tt-link-more:hover {
  color: var(--lime-dark);
}
.tt-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 1rem;
}
.tt-overline {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  display: block;
  margin-bottom: 0.5rem;
}
.tt-section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
}
.tt-title-accent {
  color: var(--teal);
}
.tt-section-dark .tt-title-accent {
  color: var(--lime);
}
.tt-body-text {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.tt-link-more {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  transition: gap 0.2s var(--ease), color 0.2s;
}
.tt-link-more:hover {
  color: var(--teal-light);
  gap: 0.75rem;
}

/* ════════════════════════════════════════
   BRAND PILLS (Home)
════════════════════════════════════════ */
.tt-brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.tt-brand-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-raised);
  text-align: center;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.tt-brand-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 2px solid var(--lime);
  opacity: 0;
  transition: opacity 0.3s;
}
.tt-brand-pill:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: var(--surface);
}
.tt-brand-pill:hover::after {
  opacity: 1;
}
.tt-brand-pill-logo {
  height: auto;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(0.4);
  transition: filter 0.3s;
}
.tt-brand-pill:hover .tt-brand-pill-logo {
  filter: grayscale(0);
}
.tt-brand-pill-text {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.tt-brand-pill-name {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.tt-brand-pill-arrow {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.8rem;
  color: var(--lime);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: all 0.3s;
}
.tt-brand-pill:hover .tt-brand-pill-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

/* ════════════════════════════════════════
   STATEMENT BAND
════════════════════════════════════════ */
/* .tt-statement-band{background:var(--teal);padding:4rem 0;border-top:1px solid rgba(200,230,60,0.15);border-bottom:1px solid rgba(200,230,60,0.15)} */
.tt-statement-text {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 3vw, 1.8rem);
  font-weight: 800;
  color: rgb(255 255 255);
  text-align: center;
  /* font-style: italic; */
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.2;
}

.tt-statement-band {
  position: relative;
  padding: 6rem 0; /* Increased padding for better visual impact */
  border-top: 1px solid rgba(200, 230, 60, 0.15);
  border-bottom: 1px solid rgba(200, 230, 60, 0.15);

  /* Overlay + Image */
  background: linear-gradient(rgba(5, 18, 21, 0.85), rgba(5, 18, 21, 0.85)),
    url("../images/statement-bg-image.png");
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* Parallax effect for a luxury feel */
  overflow: hidden;
}

/* ════════════════════════════════════════
   PRODUCT CARDS
════════════════════════════════════════ */
.tt-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.tt-product-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s var(--ease);
  animation: none;
}
.tt-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-light);
}
.tt-product-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface-raised);
}
.tt-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.tt-product-card:hover .tt-product-img {
  transform: scale(1.06);
}
.tt-product-no-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--border-strong);
}
.tt-product-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 46, 46, 0.85) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.25rem;
}
.tt-product-card:hover .tt-product-media-overlay {
  opacity: 1;
}
.tt-product-cta {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(200, 230, 60, 0.4);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(200, 230, 60, 0.08);
  transform: translateY(8px);
  transition: transform 0.35s var(--ease);
}
.tt-product-card:hover .tt-product-cta {
  transform: translateY(0);
}
.tt-product-brand-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(13, 74, 74, 0.85);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
}
.tt-product-body {
  padding: 1.25rem 1.25rem 1.5rem;
}
.tt-product-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}
.tt-product-model {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0rem;
}
.tt-product-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-top: 1px solid var(--border);
  padding-top: 0.875rem;
}
.tt-product-inquire {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.tt-product-inquire i {
  color: #25d366;
  font-size: 1rem;
}

/* ════════════════════════════════════════
   WHY SECTION
════════════════════════════════════════ */
.tt-why-section {
  background: var(--off-white);
}
.tt-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.tt-why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.tt-why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--lime));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.tt-why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.tt-why-card:hover::before {
  transform: scaleX(1);
}
.tt-why-icon {
  width: 44px;
  height: 44px;
  background: rgba(13, 74, 74, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--teal);
  margin-bottom: 1rem;
}
.tt-why-card h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.tt-why-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════ */
.tt-cta-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  background: var(--teal-dark);
}
/* .tt-cta-bg{position:absolute;inset:0;background:radial-gradient(ellipse 60% 80% at 80% 50%,rgba(200,230,60,0.06) 0%,transparent 60%)} */
.tt-cta-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.tt-cta-sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.tt-cta-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  background-color: #051215; /* Dark fallback while image loads */
}

.tt-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 0.8 is 80% darkness. Increase to 0.9 if text is hard to read. */
  background: linear-gradient(rgba(5, 18, 21, 0.8), rgba(5, 18, 21, 0.8)),
    url("../images/cta-image.png");
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* Creates a high-end parallax effect */
  z-index: 0;
}

Ensures
  your
  text
  and
  button
  stay
  on
  top
  of
  the
  image
  .tt-cta-section
  .container-fluid {
  z-index: 2;
}

/* Typography styles for the headline */
.tt-cta-headline {
  color: #ffffff;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.tt-cta-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

/* ════════════════════════════════════════
   PAGE HERO
════════════════════════════════════════ */
.tt-page-hero {
  position: relative;
  padding: calc(var(--header-h) + 3.5rem) 0 2rem;
  background: var(--teal-dark);
  overflow: hidden;
}
.tt-page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse 60% 80% at 80% 30%,
      rgba(200, 230, 60, 0.05) 0%,
      transparent 60%
    ),
    linear-gradient(135deg, var(--teal-dark), #071c1c 100%);
}
.tt-page-headline {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin: 0.75rem 0 1rem;
}
.tt-page-hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}
.tt-page-hero-logo {
  margin-bottom: 1.5rem;
}
.tt-page-hero-logo img {
  max-height: 56px;
  filter: brightness(0) invert(1);
}

/* ════════════════════════════════════════
   BREADCRUMBS
════════════════════════════════════════ */
.tt-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--lime);
  flex-wrap: wrap;
}
.tt-breadcrumbs a {
  color: #ffffff;
  transition: color 0.2s;
}
.tt-breadcrumbs a:hover {
  color: var(--lime);
}
.tt-breadcrumbs i {
  font-size: 0.65rem;
}
[data-theme="light"] .tt-breadcrumbs:not(.tt-page-hero .tt-breadcrumbs) {
  color: var(--lime);
}
[data-theme="light"] .tt-breadcrumbs:not(.tt-page-hero .tt-breadcrumbs) a {
  color: #ffffff;
}

/* ════════════════════════════════════════
   BRANDS LIST (brands/index)
════════════════════════════════════════ */
.tt-brands-list {
  display: flex;
  flex-direction: column;
}
.tt-brand-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0rem;
  /* Use a transparent shadow or very thin border as the starting state */
  border-bottom: 1px solid var(--border);
  box-shadow: inset 0 -1px 0 0 var(--border);
  transition: all 0.25s var(--ease);
  margin-bottom: 0.25rem;
  color: var(--text);
}

.tt-brand-row:hover {
  transform: translateX(6px);
  /* Animate the shadow thickness instead of border-width */
  box-shadow: inset 0 -4px 0 0 var(--lime);
  border-bottom-color: transparent; /* Hide the original border */
}
.tt-brand-row:hover .tt-brand-row-arrow {
  color: var(--lime);
  transform: translate(0, 0);
}
.tt-brand-row-num {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-faint);
  min-width: 2rem;
}
.tt-brand-row-logo {
  width: 75px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--surface-raised);
  border-radius: 0;
  border: 1px solid var(--border);
}
.tt-brand-row-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.tt-brand-row-initial {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--teal);
}
.tt-brand-row-info {
  flex: 1;
  min-width: 0;
}
.tt-brand-row-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.tt-brand-row-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}
.tt-brand-row-count {
  text-align: right;
  flex-shrink: 0;
}
.tt-brand-row-count strong {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--teal);
  display: block;
  line-height: 1;
}
.tt-brand-row-count span {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tt-brand-row-arrow {
  color: var(--text-faint);
  font-size: 1.1rem;
  transform: translate(-4px, 0);
  transition: all 0.25s var(--ease);
}

/* ════════════════════════════════════════
   FILTER BAR
════════════════════════════════════════ */
.tt-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.tt-filter-chip {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text-muted);
  background: var(--surface);
  transition: all 0.2s var(--ease);
}
.tt-filter-chip:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.tt-filter-chip.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

/* ════════════════════════════════════════
   PRODUCT DETAIL
════════════════════════════════════════ */
.tt-product-detail {
  padding: 0 0 5rem;
}
.tt-gallery {
  background: var(--surface-raised);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.tt-gallery-stage {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: zoom-in;
}
.tt-gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.tt-gallery-stage:hover .tt-gallery-main-img {
  transform: scale(1.03);
}
.tt-gallery-zoom-hint {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s;
}
.tt-gallery-stage:hover .tt-gallery-zoom-hint {
  opacity: 1;
}
.tt-gallery-thumbs {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  overflow-x: auto;
  scrollbar-width: thin;
}
.tt-thumb {
  width: 76px;
  height: 60px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s var(--ease);
}
.tt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tt-thumb.active,
.tt-thumb:hover {
  border-color: var(--lime);
  transform: scale(1.05);
}
.tt-no-gallery {
  aspect-ratio: 4/3;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--border-strong);
}
.tt-detail-sticky {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}
.tt-detail-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin: 0.5rem 0 0.75rem;
}
.tt-detail-ref {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: var(--surface-raised);
  border: 1px solid var(--border);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.75rem;
}
.tt-detail-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
  padding: 1.25rem;
  background: var(--surface-raised);
  border-radius: var(--radius);
  border-left: 3px solid var(--lime);
  margin-bottom: 1.75rem;
}
.tt-detail-inquiry {
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.75rem;
}
.tt-inquiry-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.tt-inquiry-badge i {
  color: var(--lime);
}
.tt-inquiry-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.tt-detail-specs {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.tt-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.tt-spec-row:last-child {
  border-bottom: none;
}
.tt-spec-key {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.tt-spec-val {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

/* ════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════ */
.tt-about-visual {
    position: relative;
    background: var(--teal-dark); /* Fallback color */
    border-radius: var(--radius-lg);
    aspect-ratio: 4 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tt-about-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s var(--ease);
    z-index: 1;
}

/* Luxury Hover Effect */
.tt-about-visual:hover .tt-about-img {
    transform: scale(1.05);
}

.tt-about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(5, 18, 21, 0.8));
    z-index: 2;
}

.tt-about-badge {
    position: absolute;
    bottom: 2rem;
    z-index: 3;
    /* Your existing badge styles here */
}
/* .tt-about-visual {
  position: relative;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-mid));
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
} */
.tt-about-icon-wrap {
  width: 160px;
  height: 160px;
  background: rgba(200, 230, 60, 0.08);
  border: 2px solid rgba(200, 230, 60, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tt-about-icon {
  font-size: 5rem;
  color: rgba(200, 230, 60, 0.4);
}
.tt-about-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200, 230, 60, 0.12);
  border: 1px solid rgba(200, 230, 60, 0.3);
  border-radius: var(--radius-pill);
  padding: 0.4rem 1rem;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.1em;
}
.tt-about-stat-float {
  position: absolute;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.tt-about-stat-float strong {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal);
  display: block;
  line-height: 1;
}
.tt-about-stat-float span {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tt-about-stat-1 {
  bottom: 2rem;
  right: -1rem;
}
.tt-about-stat-2 {
  bottom: 6.5rem;
  right: -1rem;
}
.tt-metric-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
}
.tt-metric-icon {
  font-size: 1.8rem;
  color: var(--lime);
  margin-bottom: 1rem;
}
.tt-metric-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.25rem;
  line-height: 1;
}
.tt-metric-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

/* ════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════ */
.tt-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.tt-contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  transition: all 0.25s var(--ease);
  color: var(--text);
}
.tt-contact-card:hover {
  border-color: var(--teal);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
  color: var(--text);
}
.tt-contact-card-wa {
  border-color: rgba(37, 211, 102, 0.25);
  background: rgba(37, 211, 102, 0.04);
}
.tt-contact-card-wa:hover {
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.08);
}
.tt-contact-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(13, 74, 74, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--teal);
  flex-shrink: 0;
}
.tt-contact-card-wa .tt-contact-card-icon {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
}
.tt-contact-card-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 2px;
}
.tt-contact-card-val {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}
.tt-form-card {
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}
.tt-form-card-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.75rem;
}
.tt-form-group {
  margin-bottom: 1.25rem;
}
.tt-form-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.tt-form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: all 0.2s var(--ease);
  appearance: none;
}
.tt-form-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 74, 74, 0.1);
}
.tt-form-textarea {
  resize: vertical;
  min-height: 130px;
}

.tt-contact-methods {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 20px;
}

/* Top Grid Cards */
/* .tt-contact-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.3s var(--ease);
}

.tt-contact-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--lime);
    transform: translateY(-5px);
} */

/* Social Circular Icons */
.tt-social-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--teal);
  font-size: 1.25rem;
  transition: all 0.3s var(--ease);
  border: 2px solid var(--teal);
  text-decoration: none;
}

.tt-social-icon:hover {
  transform: scale(1);
  color: white;
}

/* Specific Social Brand Colors on Hover */
.tt-social-icon.wa:hover {
  background: var(--teal);
  border-color: var(--teal-light);
}
.tt-social-icon.ig:hover {
  background: var(--teal);
  border-color: var(--teal-light);
}
.tt-social-icon.fb:hover {
  background: var(--teal);
  border-color: var(--teal-light);
}
.tt-social-icon.tt:hover {
  background: var(--teal);
  border-color: var(--teal-light);
}

/* ════════════════════════════════════════
   EMPTY STATES / ALERTS
════════════════════════════════════════ */
.tt-empty {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text-muted);
}
.tt-empty i {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 1.25rem;
  color: var(--border-strong);
}
.tt-empty p {
  margin-bottom: 1.5rem;
}
.tt-alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
}
.tt-alert-success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.tt-alert-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ════════════════════════════════════════
   404
════════════════════════════════════════ */
.tt-404-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--teal-dark);
}
.tt-404-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    rgba(200, 230, 60, 0.04) 0%,
    transparent 70%
  );
}
.tt-404-code {
  font-family: var(--font-head);
  font-size: clamp(8rem, 20vw, 16rem);
  font-weight: 900;
  color: rgba(200, 230, 60, 0.07);
  line-height: 1;
  margin-bottom: -1rem;
  display: block;
}
.tt-404-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.tt-404-sub {
  color: rgba(255, 255, 255, 0.45);
  max-width: 400px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.tt-footer {
  background: var(--teal-dark);
  color: rgba(255, 255, 255, 0.6);
}
.tt-footer-top {
  padding: 5rem 0 4rem;
}
.tt-footer-tagline {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  max-width: 400px;
  margin: 0;
}
.tt-footer-socials {
  display: flex;
}
.tt-social-link {
  width: 38px;
  height: 38px;
  margin-right: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.95rem;
  transition: all 0.2s var(--ease);
}
.tt-social-link:hover {
  border-color: var(--lime);
  color: var(--lime);
  background: rgba(200, 230, 60, 0.08);
}
.tt-footer-heading {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 1.25rem;
}
.tt-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.tt-footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s var(--ease);
}
.tt-footer-links a:hover {
  color: var(--lime);
}
.tt-footer-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
  margin: 0;
}
.tt-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.2);
}
.tt-footer-admin-link a {
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.2s;
}
.tt-footer-admin-link a:hover {
  color: var(--lime);
}

.tt-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.tt-footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
}
.tt-footer-contact i {
  color: var(--lime);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.tt-footer-contact a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.tt-footer-contact a:hover {
  color: var(--lime);
}

/* ════════════════════════════════════════
   DARK MODE TOGGLE
════════════════════════════════════════ */
.tt-dm-toggle {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  z-index: 800;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  border: 2px solid rgba(200, 230, 60, 0.3);
  color: var(--lime);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: all 0.25s var(--ease);
}
.tt-dm-toggle:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
  border-color: var(--lime);
}
.tt-scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 800;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lime);
  border: none;
  color: var(--teal-dark);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lime);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all 0.3s var(--ease);
}
.tt-scroll-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.tt-scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(200, 230, 60, 0.4);
}

/* ════════════════════════════════════════
   REVEAL ANIMATIONS
════════════════════════════════════════ */
.tt-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  transition-delay: var(--delay, 0ms);
}
.tt-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 992px) {
  .tt-nav {
    display: none;
  }
  .tt-menu-btn {
    display: flex;
  }
  .tt-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
  .tt-brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .tt-why-grid {
    grid-template-columns: 1fr;
  }
  .tt-about-stat-float {
    display: none;
  }

  .tt-hero-img-wrap {
    padding: 0 1.5rem;
  }

  .tt-hero-actions {
    margin-bottom: 0;
  }

  .tt-hero-scroll-indicator {
    display: none;
  }

  .copy-text {
    text-align: center;
    width: 75%;
  }
}
@media (max-width: 576px) {
  .tt-hero-headline {
    font-size: 2.4rem;
  }
  .tt-section {
    padding: 3.5rem 0;
  }
  .tt-products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .tt-brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tt-hero-stats {
    gap: 1rem;
  }
  .tt-header-inner {
    padding: 0 1.5rem;
  }
  .tt-hero-body {
    padding: 1.5rem 1.5rem 0;
  }
  .tt-why-grid {
    grid-template-columns: 1fr;
  }
  .tt-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}
