/* ============ Reset & Base ============ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1a237e;
  --accent: #cc0000;
  --accent-dark: #a80000;
  --light: #ffffff;
  --white: #ffffff;
  --gray: #6b7280;
  --dark-gray: #374151;
  --section-bg: #ffffff;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 240px;
}

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

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
}

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

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

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

/* ============ ADA Bar ============ */
.ada-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1003;
  background: #ffffff;
  border-bottom: none;
  text-align: right;
  padding: 5px 24px;
}

.ada-link {
  color: #333;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.3s;
}

.ada-link:hover {
  color: #cc0000;
}

/* ============ Top Logo Bar ============ */
.top-logo-bar {
  position: fixed;
  top: 28px;
  left: 0;
  width: 100%;
  z-index: 1002;
  background: #ffffff;
  text-align: center;
  padding: 0;
  box-shadow: none;
}

.top-logo-img {
  width: auto;
  max-width: 350px;
  height: auto;
  display: block;
  margin: 0 auto;
  padding: 4px 0 0 0;
  clip-path: inset(0 0 3px 0);
}

.top-contact-bar {
  background: #ffffff;
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 4px 24px;
  margin-top: 0;
  border-top: none;
  letter-spacing: 0.3px;
}

.top-contact-bar span {
  white-space: nowrap;
}

.top-contact-bar span:nth-child(2),
.top-contact-bar span:nth-child(4),
.top-contact-bar span:nth-child(6) {
  opacity: 0.4;
  font-size: 0.65rem;
}

.header-socials {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.header-socials a {
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s;
}

.header-socials a:hover {
  opacity: 0.7;
}

/* ============ Clearance Banner ============ */
.clearance-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1004;
  background: #cc0000;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  overflow: hidden;
  height: 52px;
  display: flex;
  align-items: center;
}

.clearance-track {
  display: flex;
  white-space: nowrap;
  animation: scrollBanner 18s linear infinite;
}

.clearance-track span {
  display: inline-block;
  padding: 0 20px;
}

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

/* ============ Clearance Strips ============ */
.clearance-strip {
  background: #ffffff;
  color: #cc0000;
  text-align: center;
  padding: 20px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 2px;
  overflow: visible;
}

.clearance-strip p {
  margin: 0;
}


.clearance-strip.alt {
  background: #ffffff;
  color: #cc0000;
  font-size: 1rem;
  letter-spacing: 1px;
}

.clearance-strip strong {
  color: #cc0000;
  font-size: 5rem;
  font-weight: 900;
  display: block;
  margin-top: 8px;
  line-height: 1;
}

.clearance-strip.alt strong {
  color: #cc0000;
}

/* ============ Navigation Row 1 ============ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--accent);
  box-shadow: none;
}

#navbar.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.nav-container {
  max-width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 38px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.nav-links li {
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.nav-links li:last-child {
  border-right: none;
}

.nav-links a {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 9px 18px;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.2);
}

.nav-admin {
  font-size: 0.72rem !important;
  opacity: 0.6;
}

.nav-admin:hover {
  opacity: 1;
}

/* Dropdown (3-line menu on right) */
.nav-dropdown-right {
  position: relative;
  margin-left: auto;
}

.nav-dropdown-right > a {
  font-size: 1.2rem !important;
  letter-spacing: 0 !important;
  padding: 9px 16px !important;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--accent);
  min-width: 240px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  list-style: none;
  padding: 8px 0;
  z-index: 100;
}

.dropdown-right {
  left: auto;
  right: 0;
}

.nav-dropdown-right:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s;
  text-transform: none;
}

.dropdown-menu li a:hover {
  background: rgba(0, 0, 0, 0.2);
}

/* ============ Navigation Row 2: Categories ============ */
.nav-row2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #ffffff;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ccc;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.nav-links2 {
  display: flex;
  list-style: none;
  gap: 0;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.nav-links2 li {
  border-right: 1px solid #ccc;
}

.nav-links2 li:last-child {
  border-right: none;
}

.nav-links2 a {
  color: #444;
  font-weight: 600;
  font-size: 0.78rem;
  padding: 7px 16px;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  display: block;
}

.nav-links2 a:hover {
  background: #ddd;
  color: var(--primary);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 60vh;
  padding-top: 240px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ffffff;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(204, 0, 0, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26, 35, 126, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.hero-logo {
  max-width: 420px;
  margin: 0 auto 24px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.15;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.hero-content p {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--dark-gray);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 40px;
  border-radius: 8px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(204, 0, 0, 0.2);
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(204, 0, 0, 0.35);
}

/* ============ 20% Off Promo Banner ============ */
.promo-banner {
  background: linear-gradient(135deg, rgba(232,234,246,0.85) 0%, rgba(197,202,233,0.85) 100%), url('images/promo-bg.jpg') center/cover no-repeat;
  padding: 16px 0;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(204, 0, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.promo-content {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.promo-badge {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: var(--accent);
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
  box-shadow: 0 4px 24px rgba(204, 0, 0, 0.4);
  animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.promo-text h3 {
  font-size: 1.1rem;
  color: #cc0000;
  margin-bottom: 4px;
}

.promo-text p {
  color: var(--dark-gray);
  font-size: 0.9rem;
  line-height: 1.4;
}

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

.btn-promo {
  flex-shrink: 0;
  background: #cc0000;
  color: var(--white);
  font-size: 0.85rem;
  padding: 10px 24px;
}

.btn-promo:hover {
  background: #a80000;
  box-shadow: 0 8px 24px rgba(204, 0, 0, 0.35);
}

/* ============ Sections ============ */
.section {
  padding: 40px 0;
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 56px;
}

/* ============ About ============ */
.about {
  background: var(--section-bg);
}

.about-text {
  max-width: 800px;
  margin: 0 auto;
}

.about-text > p {
  font-size: 1.05rem;
  color: var(--dark-gray);
  margin-bottom: 20px;
  text-align: center;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.value {
  text-align: center;
  padding: 32px 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.value:hover {
  transform: translateY(-4px);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--accent);
}

.value h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.value p {
  font-size: 0.95rem;
  color: var(--gray);
}

/* ============ Services ============ */
.services {
  background: #ffffff;
}

.services-grid {
  display: flex;
  gap: 28px;
  margin-bottom: 48px;
  overflow: hidden;
  width: 100%;
}

.services-track {
  display: flex;
  gap: 28px;
  animation: scrollCollections 30s linear infinite;
}

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

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

.service-card {
  background: var(--section-bg);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  overflow: hidden;
  min-width: 380px;
  flex-shrink: 0;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--accent);
}

.service-img {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #cc0000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

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

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

.service-body {
  padding: 24px 20px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
}

.services-cta {
  text-align: center;
  background: var(--primary);
  color: var(--white);
  padding: 20px 32px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 1rem;
}

/* ============ Static Collections Grid ============ */
.services-static-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.service-card-static {
  display: block;
  text-align: center;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.service-card-static:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  border-color: var(--accent);
}

.service-card-static {
  position: relative;
}

.service-card-static .sale-tag {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #cc0000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  z-index: 2;
}

.service-card-static img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.service-card-static h3 {
  padding: 12px 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}

/* ============ Clearance Slideshow ============ */
.clearance-slideshow {
  position: relative;
  overflow: hidden;
}

.clearance-slides {
  position: relative;
}

.clearance-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  display: none;
}

.clearance-row.active {
  display: grid;
}

.clearance-photo {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  position: relative;
}

.clearance-photo .sale-tag {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #cc0000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  z-index: 2;
}

.clearance-photo img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: scale-down;
  display: block;
  transition: transform 0.3s ease;
}

.clearance-photo:hover img {
  transform: scale(1.05);
}

.clearance-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
}

.clearance-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s;
}

.clearance-btn:hover {
  background: #cc0000;
}

.clearance-counter {
  font-weight: 600;
  color: var(--dark-gray);
  font-size: 0.95rem;
}

/* ============ Hero Spacer ============ */
.hero-spacer {
  display: block;
}

/* ============ Promo Banners (Finance & Protection) ============ */
.promo-banners {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}

.promo-banner-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-banner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.finance-banner {
  background: linear-gradient(135deg, #b71c1c 0%, #e53935 100%);
}

.finance-banner h3 {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.finance-banner .promo-icon {
  font-size: 3.5rem;
}

.protection-banner {
  background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
}

.promo-icon {
  font-size: 2.8rem;
  flex-shrink: 0;
}

.promo-banner-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.promo-banner-card p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.4;
}

.promo-arrow {
  font-size: 1.8rem;
  margin-left: auto;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.promo-banner-card:hover .promo-arrow {
  opacity: 1;
}

@media (max-width: 768px) {
  .promo-banners {
    flex-direction: column;
  }
  .promo-banner-card {
    padding: 22px 24px;
  }
  .promo-banner-card h3 {
    font-size: 1rem;
  }
}

/* ============ Lay-A-Way & Why Buy Cards ============ */
.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.info-card {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  text-align: center;
  padding: 28px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.info-card h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.info-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
}

.why-list {
  list-style: none;
  text-align: left;
  margin-bottom: 20px;
  padding: 0;
}

.why-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
  color: var(--dark-gray);
  padding-left: 20px;
  position: relative;
}

.why-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.why-list li:last-child {
  border-bottom: none;
}

.btn-info {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.3s ease;
}

.btn-info:hover {
  background: var(--accent-dark);
}

@media (max-width: 768px) {
  .info-cards {
    grid-template-columns: 1fr;
  }
}

/* ============ In-Store Gallery Slideshow ============ */
.gallery {
  background: #ffffff;
}

.slideshow {
  position: relative;
  margin-top: 48px;
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
}

.slideshow-track {
  display: flex;
  animation: scrollSlides 35s linear infinite;
}

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

a.slide {
  text-decoration: none;
  color: inherit;
  display: block;
}

.slide {
  min-width: calc(100% / 3);
  padding: 10px;
  box-sizing: border-box;
  position: relative;
}

.slide img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.slide-label {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 1.6rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-arrow:hover {
  background: rgba(0, 0, 0, 0.7);
}

.slide-prev { left: 12px; }
.slide-next { right: 12px; }

.slide-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px 0 20px;
}

.slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}

.slide-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

.slideshow-banner {
  background: linear-gradient(90deg, #cc0000, #e63232, #cc0000);
  color: #fff;
  text-align: center;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 16px 16px 0 0;
  position: relative;
  overflow: hidden;
}

.slideshow-banner .banner-pulse {
  display: inline-block;
  animation: pulseBannerText 1.5s ease-in-out infinite;
}

@keyframes pulseBannerText {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.slideshow-banner .banner-sub {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-top: 2px;
  opacity: 0.9;
}

/* ============ Reviews ============ */
.reviews {
  background: var(--section-bg);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.review-card {
  background: #ffffff;
  padding: 36px 28px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 4rem;
  font-family: 'Playfair Display', serif;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
}

.stars {
  color: var(--accent);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-card p {
  font-size: 1rem;
  color: var(--dark-gray);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}

.reviewer {
  font-weight: 600;
  color: var(--primary);
  font-style: normal;
}

/* ============ Need Help ============ */
.need-help-section {
  padding: 48px 0;
  background: #fff;
}

.need-help-box {
  text-align: center;
  background: var(--section-bg);
  border-radius: 16px;
  padding: 40px;
  max-width: 500px;
  margin: 0 auto;
}

.need-help-box h2 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.need-help-box p {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 16px;
}

.need-help-phone {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 1px;
}

.need-help-phone:hover {
  color: var(--accent-dark);
}

/* ============ Contact ============ */
.contact {
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  padding: 24px;
  background: var(--section-bg);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateX(4px);
  border-left: 4px solid var(--accent);
}

.contact-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

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

.contact-item a {
  color: var(--accent-dark);
  font-weight: 600;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: var(--accent);
}

.contact-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ============ Footer ============ */
footer {
  background: var(--primary);
  color: #ffffff;
  padding: 48px 0;
  text-align: center;
  border-top: none;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  display: block;
  margin: 0 auto 16px;
  border-radius: 8px;
  background: #fff;
  padding: 8px 20px;
}

.footer-content p {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 16px 0;
}

.footer-socials a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.footer-socials a:hover {
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.copyright {
  margin-top: 16px;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ============ Animations ============ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ Responsive ============ */
@media (max-width: 968px) {
  .about-values,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    min-width: 260px;
  }

  .slide {
    min-width: calc(100% / 2);
  }
  .slide img { height: 260px; }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-logo-bar {
    padding: 0;
  }
  .top-logo-img {
    max-width: 100%;
  }
  .top-contact-bar {
    font-size: 0.68rem;
    gap: 6px;
    flex-wrap: wrap;
    padding: 6px 12px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 198px;
    left: 0;
    width: 100%;
    background: rgba(204, 0, 0, 0.98);
    flex-direction: column;
    padding: 12px 24px;
    gap: 0;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links li {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 12px 16px;
    font-size: 1rem;
  }

  .nav-row2 {
    display: none;
  }

  .nav-row2.open {
    display: block;
    position: fixed;
    top: auto;
    z-index: 998;
  }

  .nav-links2 {
    flex-direction: column;
  }

  .nav-links2 li {
    border-right: none;
    border-bottom: 1px solid #bbb;
  }

  .nav-links2 a {
    padding: 10px 16px;
    font-size: 0.95rem;
  }

  .about-values,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-width: 240px;
  }

  .services-static-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .clearance-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .clearance-photo img {
    height: auto;
    max-height: 150px;
    object-fit: scale-down;
  }

  .section {
    padding: 72px 0;
  }

  .promo-content {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .promo-badge {
    width: 100px;
    height: 100px;
    font-size: 1.5rem;
  }

  .logo-img {
    height: 40px;
  }
}
