@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600;700&display=swap');

:root {
  --primary-red: #E4002B;
  --primary-red-hover: #c40024;
  --dark: #202124;
  --light-grey: #f5f5f5;
  --white: #ffffff;
  --text-dark: #333333;
  --text-light: #666666;
}

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

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Kanit', sans-serif;
  color: var(--text-dark);
  background-color: var(--light-grey);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* Utilities */
.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

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

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

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

.btn-dark:hover {
  background-color: #000;
}

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

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

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

.text-red {
  color: var(--primary-red);
}

/* Header */
.header {
  background-color: var(--white);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-red);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 80px;
  width: 80px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  color: var(--dark);
  transition: color 0.3s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mobile-menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Sub Header Banner */
.sub-header {
  background-color: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.sub-header p {
  font-size: 16px;
  margin: 0;
}

.sub-header .btn {
  padding: 5px 20px;
  font-size: 14px;
}

.hero {
  background-color: #000;
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 60px 0;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
  margin-bottom: 28px;
  max-width: 540px;
  list-style: none;
  padding: 0;
}

.hero-desc li {
  padding: 5px 0;
  position: relative;
}

.hero .btn {
  font-size: 18px;
  padding: 12px 40px;
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
  cursor: pointer;
}

.dot.active {
  background-color: var(--white);
}

/* Why Choose Us Section */
.why-section {
  background-color: var(--primary-red);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.why-header {
  margin-bottom: 56px;
}

.why-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.why-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
}

.why-title span {
  color: rgba(255,255,255,0.85);
}

.why-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1250px;
  margin: 0 auto 48px;
}

.why-card {
  background: #ffffff;
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

.why-card--highlight {
  background: #fff;
  border-color: #fff;
  color: var(--dark);
}

.why-card--highlight .why-card-title {
  color: var(--dark);
}

.why-card--highlight .why-card-desc {
  color: #555;
}

.why-card--highlight .why-card-tag {
  background: rgba(228,0,43,0.1);
  color: var(--primary-red);
  border-color: rgba(228,0,43,0.2);
}

.why-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(228, 0, 43, 0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(228, 0, 43, 0.30);
  box-shadow: 0 4px 20px rgba(228, 0, 43, 0.15), inset 0 1px 0 rgba(255,255,255,0.5);
  flex-shrink: 0;
}

.why-icon svg {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 1px 3px rgba(228,0,43,0.20));
}

.why-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.why-card-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 20px;
}

.why-card-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(228,0,43,0.1);
  border: 1px solid rgba(228,0,43,0.2);
  color: var(--primary-red);
}

.why-cta {
  margin-top: 10px;
}

.why-cta .btn-primary {
  background: #fff;
  color: var(--primary-red);
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.why-cta .btn-primary:hover {
  background: #f0f0f0;
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .why-title {
    font-size: 32px;
  }
  .why-card {
    padding: 24px 20px;
  }
  .why-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    margin-bottom: 16px;
  }
  .why-icon svg {
    width: 24px;
    height: 24px;
  }
  .why-card-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .why-card-desc {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .features-list-grid {
    gap: 15px;
  }
  .feature-text-item {
    padding: 16px 20px;
  }
  .feature-text-title {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .feature-text-desc {
    font-size: 13.5px;
  }
}

/* Features Section */
.features-section {
  background-color: var(--light-grey);
  padding: 60px 0;
  text-align: center;
}

.features-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--dark);
}

.features-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
  text-align: left;
}

.feature-text-item {
  background-color: var(--white);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border-left: 4px solid var(--primary-red);
  transition: transform 0.3s ease;
}

.feature-text-item:hover {
  transform: translateY(-5px);
}

.feature-text-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.feature-text-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Promo Section */
.promo-section {
  display: flex;
  background-color: var(--white);
}

.promo-content {
  flex: 1;
  padding: 80px 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.promo-label {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-light);
}

.promo-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 30px;
}

.promo-image {
  flex: 1;
  background-image: url('../images/promo_forklift.png');
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

@media (max-width: 768px) {
  .promo-image {
    background-image: url('../images/pomo1.webp');
  }
}

/* App Download Section */
.app-section {
  background-color: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 60px 5%;
}

.app-content {
  flex: 1;
}

.app-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

.app-buttons {
  display: flex;
  gap: 15px;
}

.store-btn {
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s;
}

.store-btn:hover {
  background-color: rgba(255,255,255,0.1);
}

.app-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.app-image img {
  max-height: 400px;
}

/* Product Grid */
.products-section {
  padding: 80px 0;
  background-color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  text-align: center;
  padding-bottom: 20px;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.product-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
}

.product-subtitle {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 14px;
}

.product-card .btn {
  background-color: #435b71;
  color: white;
  padding: 8px 24px;
  font-size: 14px;
}

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

/* Keywords Section */
.keywords-section {
  padding: 60px 0;
  text-align: center;
  background-color: var(--white);
}

.keywords-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.keywords-divider {
  width: 50px;
  height: 3px;
  background-color: var(--primary-red);
  margin: 0 auto 40px;
}

.keywords-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
}

.keyword-tag {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--primary-red);
  border-radius: 30px;
  color: var(--primary-red);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: var(--white);
}

.keyword-tag:hover {
  background-color: var(--primary-red);
  color: var(--white);
}

/* Home Reviews Section */
.home-reviews-section {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  overflow: hidden;
}

.home-reviews-header {
  text-align: center;
  margin-bottom: 50px;
}

.home-reviews-title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.home-reviews-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
}

.home-reviews-btn {
  display: inline-block;
  padding: 11px 32px;
  border-radius: 30px;
  border: 2px solid rgba(255,255,255,0.6);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.home-reviews-btn:hover {
  background: #ffffff;
  color: #1a1a2e;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.reviews-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* fade edges */
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.reviews-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}

.reviews-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.home-review-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 24px;
  width: 300px;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.home-review-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.1);
}

.home-review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.home-review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-review-name {
  font-weight: 600;
  color: #ffffff;
  font-size: 15px;
}

.home-review-date {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

.home-review-google {
  margin-left: auto;
  flex-shrink: 0;
}

.home-review-stars {
  color: #fbbf24;
  font-size: 16px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.home-review-text {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* Reviews Section */
.reviews-section {
  padding: 80px 0;
  background-color: var(--light-grey);
}

.review-card {
  background: var(--white);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
}

.review-stars {
  color: #ffc107;
  margin-bottom: 15px;
}

/* Contact Section */
.contact-hero {
  position: relative;
  background-image: url('../images/contact_bg.png');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: var(--white);
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32, 33, 36, 0.8);
}

.contact-container {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
}

.contact-info, .contact-form-container {
  flex: 1;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Kanit', sans-serif;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-red);
}

textarea.form-control {
  height: 120px;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
  border-radius: 4px;
  padding: 15px;
  font-size: 16px;
  background-color: #435b71;
}

/* Footer */
.footer {
  background-color: #000;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-img {
  height: 100px;
  width: 100px;
  object-fit: contain;
  border-radius: 50%;
  clip-path: circle(50%);
}

.footer-logo span {
  color: var(--primary-red);
}

.footer-address {
  color: #aaa;
  margin-bottom: 20px;
  max-width: 300px;
}

.footer-contact {
  color: #aaa;
}

.footer-heading {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #aaa;
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #777;
  font-size: 14px;
}
/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s ease;
}
.lightbox.active {
  display: flex;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lightbox-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 92vw;
  max-height: 92vh;
}
.lightbox-image {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
  display: block;
  transition: opacity 0.15s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 10000;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: background 0.2s;
}
.lightbox-prev {
  left: 15px;
}
.lightbox-next {
  right: 15px;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(0,0,0,0.8);
}

/* Portfolio Section */

.portfolio-section {
  background-color: #f8f8f8;
  padding: 70px 0;
}
.portfolio-header {
  text-align: center;
  margin-bottom: 48px;
}
.portfolio-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}
.portfolio-subtitle {
  font-size: 16px;
  color: #777;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 400px);
  gap: 16px;
  justify-content: center;
}
.portfolio-item {
  position: relative;
  width: 400px;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
  background-color: #ddd;
  cursor: pointer;
}
.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.portfolio-item:hover .portfolio-img {
  transform: scale(1.07);
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}
.portfolio-overlay span {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
}
@media (max-width: 1700px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .portfolio-item {
    width: 100%;
    height: 320px;
  }
}
@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-item {
    height: 260px;
  }
}
@media (max-width: 560px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* Services Intro Section */

.services-intro {
  padding: 60px 20px 20px;
  background-color: #fff;
}
.services-intro-title {
  font-size: 32px;
  font-weight: 700;
  color: #0b2e13;
  margin-bottom: 24px;
}
.services-intro-text {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 40px;
}
.contact-pill-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.contact-pill {
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid #e1efe3;
  border-radius: 50px;
  padding: 6px 24px 6px 6px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.contact-pill-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  color: #fff;
}
.contact-pill-info {
  text-align: left;
}
.contact-pill-label {
  font-size: 13px;
  color: #333;
  font-weight: 700;
  margin-bottom: 2px;
}
.contact-pill-value {
  font-size: 15px;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .header-actions {
    display: none;
  }
  
  .hero-title {
    font-size: 42px;
  }
  
  .promo-section, .app-section, .contact-container {
    flex-direction: column;
  }
  
  .app-image {
    justify-content: center;
    width: 100%;
    margin-top: 20px;
  }
  
  .app-image img {
    width: 100%;
    max-height: none;
  }
  
  .promo-image {
    min-height: 250px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Floating Action Button (FAB) */
.fab-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}
.fab-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}
.fab-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.fab-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #d30000;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
  text-decoration: none;
  position: relative;
}
.fab-btn:hover {
  transform: scale(1.05);
  background-color: #b30000;
}
.fab-btn svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}
.fab-main-btn {
  z-index: 2;
}
.fab-label {
  position: absolute;
  right: 75px;
  background-color: #1a1a1a;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  transform: translateX(10px);
}
.fab-main-btn:hover .fab-label {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.fab-label::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #1a1a1a;
}

.fab-item-label {
  position: absolute;
  right: 70px;
  background-color: rgba(0,0,0,0.7);
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.2s ease;
}
.fab-menu.active .fab-item-label {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.fab-btn:hover .fab-item-label {
  background-color: #d30000;
}

@media (max-width: 768px) {
  .fab-container {
    bottom: 40px;
    right: 20px;
    gap: 10px;
  }
  .fab-menu {
    gap: 10px;
  }
  .fab-btn {
    width: 45px;
    height: 45px;
  }
  .fab-btn svg {
    width: 22px;
    height: 22px;
  }
  .fab-item-label, .fab-label {
    display: none !important;
  }
}

.reviews-marquee-track .review-card {
  width: 350px;
  flex-shrink: 0;
  margin-bottom: 0;
  white-space: normal;
}
@media (max-width: 768px) {
  .reviews-marquee-track .review-card {
    width: 300px;
  }
}



/* Image Modal */
.image-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}
.image-modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 900px;
  animation-name: zoom;
  animation-duration: 0.4s;
  border-radius: 8px;
}
@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}
.image-modal-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}
.image-modal-close:hover,
.image-modal-close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}
.product-img {
  cursor: pointer;
}
@media only screen and (max-width: 700px){
  .image-modal-content {
    width: 95%;
  }
}
