:root {
  --navy: #1b1a54;
  --navy-dark: #171341;
  --teal: #0e3f42;
  --rust: #bf7a44;
  --rust-dark: #a8683a;
  --cream: #f2ede3;
  --cream-line: #e3ddcf;
  --text-gray: #767676;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

* { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  color: #4a4a4a;
  line-height: 1.7;
}

a { text-decoration: none; }

/* ===== Top contact bar ===== */
.top-bar {
  background: #f4f2ec;
  border-bottom: 1px solid #e7e2d5;
  font-size: 0.85rem;
  color: #6b6b6b;
}

.top-bar-contact span {
  margin-right: 1.5rem;
}

.top-bar-contact i {
  color: var(--rust);
  margin-right: 0.35rem;
}

.top-bar-social a {
  color: #6b6b6b;
  margin-left: 0.9rem;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.top-bar-social a:hover {
  color: var(--rust);
}

/* ===== Header ===== */
.site-header {
  background: #ffffff;
  padding: 1.5rem 0 0;
  border-bottom: 1px solid #eee;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  text-align: center;
}

.logo img {
  height: 72px;
  width: auto;
}

.brand h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--navy);
  margin: 0;
  letter-spacing: 0.3px;
}

.nav-toggle {
  display: none;
  position: absolute;
  right: 0.5rem;
  top: 0;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--navy);
}

.main-nav {
  margin-top: 1.4rem;
}

.main-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  display: inline-block;
  padding: 0.9rem 0 0.8rem;
  color: #3a3a3a;
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 3px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.main-nav li.active a,
.main-nav a:hover {
  color: var(--rust);
  border-bottom-color: var(--rust);
}

/* ===== Image panels ===== */
.hero-img,
.slider-track,
.slider-slide,
.product-card-img {
  border-radius: 6px;
  overflow: hidden;
}

.hero-img img,
.slider-slide img,
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== Hero ===== */
.hero {
  background: var(--cream);
  padding: 3.5rem 0 4rem;
}

.hero-gallery-wrap {
  background: #ffffff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(27, 26, 84, 0.08);
  margin-bottom: 2.75rem;
}

.hero-img-large { height: 100%; min-height: 300px; }

.hero-img-small { height: 130px; }
.hero-img-wide { height: 130px; }

.hero-text h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  font-size: 2.1rem;
  margin-bottom: 1.4rem;
}

.hero-text p {
  color: var(--text-gray);
  max-width: 800px;
  margin: 0 auto 0.6rem;
  font-size: 0.98rem;
}

/* ===== Section heading (pill + lines) ===== */
.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.section-heading.text-start {
  justify-content: flex-start;
}

.section-heading h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  background: var(--teal);
  padding: 0.7rem 2.2rem;
  border-radius: 30px;
  font-size: 1.3rem;
  margin: 0;
  white-space: nowrap;
  position: relative;
}

.section-heading:not(.text-start)::before,
.section-heading:not(.text-start)::after {
  content: "";
  flex: 1;
  height: 2px;
  background: var(--teal);
  max-width: 220px;
}

.badge-pill {
  display: inline-block;
  border: 1px solid var(--teal);
  color: var(--teal);
  padding: 0.35rem 1.4rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ===== Services ===== */
.services {
  background: #ffffff;
  padding: 4.5rem 0;
}

.services-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.slider-track {
  position: relative;
  flex: 1;
  height: 280px;
  border-radius: 8px;
  overflow: hidden;
}

.slider-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
}

.slider-slide.active {
  opacity: 1;
  visibility: visible;
}

.slider-arrow {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.slider-arrow:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.slider-dots {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.2s ease;
}

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

.services-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.services-list li {
  color: var(--navy);
  font-weight: 500;
  padding: 0.5rem 0;
  font-size: 1.02rem;
}

/* ===== About page ===== */
.about-page {
  background: #fff;
  padding: 4.5rem 0;
}

.about-content {
  max-width: 900px;
  margin: 2.5rem auto 0;
}

.about-content p {
  color: var(--text-gray);
  font-size: 0.98rem;
  margin-bottom: 1.4rem;
  text-align: justify;
}

/* ===== Location page ===== */
.location-page {
  background: #fff;
  padding: 4.5rem 0;
}

.map-embed {
  max-width: 960px;
  margin: 2.5rem auto 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(27, 26, 84, 0.1);
  line-height: 0;
}

/* ===== Products ===== */
.products {
  background: var(--cream);
  background-image: repeating-linear-gradient(90deg, var(--cream-line) 0 1px, transparent 1px 80px);
  padding: 4.5rem 0;
}

.product-card {
  background: #fff;
  border-radius: 6px;
  padding: 1.2rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(27, 26, 84, 0.06);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(27, 26, 84, 0.12);
}

.product-card-img {
  height: 150px;
  margin-bottom: 1rem;
}

.product-card.tall .product-card-img {
  height: 190px;
}

.product-card h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}

/* ===== Catalog page ===== */
.catalog-intro {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.catalog-card .product-card-img {
  height: 150px;
}

.catalog-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.catalog-card p {
  color: var(--text-gray);
  font-size: 0.82rem;
  margin: 0;
  line-height: 1.5;
}

.btn-navy {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 0.8rem 2.6rem;
  border-radius: 30px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: background 0.2s ease;
}

.btn-navy:hover { color: #fff; }

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

/* ===== Brands ===== */
.brands {
  background: #fff;
  padding: 4.5rem 0;
}

.brands-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.brand-chip {
  width: 170px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.3rem;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  background: #fff;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.brand-chip:hover {
  box-shadow: 0 10px 22px rgba(27, 26, 84, 0.1);
  transform: translateY(-3px);
}

.brand-chip img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ===== Feedback band ===== */
.feedback-band {
  background: var(--rust);
  padding: 2.2rem 0;
}

.feedback-band h4 {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0;
  font-size: 1.4rem;
}

.btn-feedback {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 0.7rem 2.4rem;
  border-radius: 30px;
  font-weight: 500;
  transition: background 0.2s ease;
}

.btn-feedback:hover { background: var(--navy-dark); }

/* ===== Footer ===== */
.site-footer {
  background: var(--navy);
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 60px);
  color: #cfcfe6;
  padding: 3.5rem 0 1.5rem;
}

.site-footer h5 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.1rem;
  margin-top: 1.1rem;
  margin-bottom: 0.5rem;
}

.site-footer h5:first-child { margin-top: 0; }

.site-footer p {
  margin: 0 0 0.2rem;
  font-size: 0.92rem;
}

.site-footer a {
  color: #cfcfe6;
}

.site-footer a:hover {
  color: var(--rust);
}

.highlight-link {
  color: #e0a15d !important;
  font-weight: 500;
}

.site-footer hr {
  border-color: rgba(255,255,255,0.15);
  margin: 2rem 0 1.2rem;
}

.footer-bottom {
  font-size: 0.82rem;
  color: #9d9dc0;
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
  .top-bar-contact span { display: block; margin: 0.1rem 0; }
  .top-bar { text-align: center; }
  .top-bar .d-flex { justify-content: center !important; flex-direction: column; align-items: center; gap: 0.3rem; }

  .nav-toggle { display: block; }

  .main-nav {
    display: none;
    margin-top: 1rem;
  }

  .main-nav.open { display: block; }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    text-align: center;
  }

  .brand h1 { font-size: 1.3rem; }

  .section-heading:not(.text-start)::before,
  .section-heading:not(.text-start)::after {
    display: none;
  }

  .feedback-band .d-flex { justify-content: center !important; text-align: center; flex-direction: column; }

  .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }
}
