:root {
  --navy: #062462;
  --navy-deep: #10102E;
  --navy-mid: #203B72;
  --red: #da242b;
  --red-hot: #ED1C24;
  --text: #616161;
  --heading: #062461;
  --white: #ffffff;
  --muted: #f5f5f5;
  --star: #FF8D06;
  --radius: 5px;
  --shadow: 0 10px 30px rgba(6, 36, 98, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  color: var(--text);
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--red); }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 {
  color: var(--heading);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
p { margin: 0 0 12px; }
.container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 15px; }

/* Buttons */
.btn-red, .btn-navy, .btn-quote, .hero-btn, .btn-round {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  border: 0;
  cursor: pointer;
  transition: 0.4s;
  text-decoration: none;
}
.btn-red {
  background: var(--red);
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-red:before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--navy);
  transform: scale(0);
  transition: 0.4s;
  z-index: -1;
  border-radius: 5px;
}
.btn-red:hover:before { transform: scale(1); }
.btn-navy {
  background: var(--navy);
  color: #fff !important;
  padding: 14px 22px 14px 36px;
  border-radius: 5px 35px 5px 5px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-navy:before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: scale(0);
  transition: 0.4s;
  z-index: -1;
  border-radius: 5px 35px 5px 5px;
}
.btn-navy:hover:before { transform: scale(1); }
.btn-navy i, .hero-btn i {
  width: 26px;
  height: 26px;
  line-height: 24px;
  text-align: center;
  background: #fff;
  color: var(--navy);
  border-radius: 50%;
  border: 2px solid var(--navy);
  font-size: 12px;
}
.hero-btn {
  background: var(--navy);
  color: #fff !important;
  padding: 15px 12px 15px 36px;
  border-radius: 5px 35px 5px 5px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero-btn:before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: scale(0);
  z-index: -1;
  transition: 0.4s;
  border-radius: 5px 35px 5px 5px;
}
.hero-btn:hover:before { transform: scale(1); }
.hero-btn:hover i { background: var(--red); border-color: #fff; color: #fff; }

/* Header top */
.header-top {
  background: var(--navy);
  color: #fff;
  font-size: 14px;
}
.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 50px;
}
.header-top-left {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.header-top-left span { color: #fff; }
.header-top-left i { margin-right: 8px; }
.header-top-right { display: flex; align-items: stretch; }
.social-bar { display: flex; }
.social-bar a {
  width: 42px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 14px;
}
.social-bar a:nth-child(1) { background: #1773ea; }
.social-bar a:nth-child(2) { background: #2ca5da; }
.social-bar a:nth-child(3) { background: #0073b1; }
.social-bar a:nth-child(4) { background: #E11A21; }
.top-cta {
  display: flex;
  align-items: center;
  padding: 0 18px;
  color: #fff;
  font-weight: 500;
}

/* Nav */
.nav-wrap {
  background: var(--navy);
  border-bottom: 3px solid var(--red);
  position: relative;
  z-index: 50;
}
.nav-wrap.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--navy-deep) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  animation: slideDown 0.4s ease;
}
@keyframes slideDown {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.nav-bar {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  border-radius: 5px 5px 0 0;
  margin-bottom: -3px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--navy);
}
.logo img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 50%;
}
.logo-text { line-height: 1.15; }
.logo-text strong {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
}
.logo-text span {
  font-size: 12px;
  color: var(--red);
  font-weight: 500;
  letter-spacing: 0.4px;
}
.menu { display: flex; align-items: center; gap: 2px; }
.menu > li { position: relative; }
.menu > li > a {
  display: block;
  padding: 30px 11px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
}
.menu > li > a:hover, .menu > li.active > a { color: var(--red); }
.menu > li > a i { font-size: 10px; margin-left: 4px; opacity: 0.55; }
.dropdown {
  position: absolute;
  left: 0;
  top: 120%;
  width: 220px;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,0.18);
  border-top: 2px solid var(--red);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 20;
}
.menu > li:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.dropdown a {
  display: block;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  font-family: "Inter", sans-serif;
}
.dropdown a:hover { background: var(--red); color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.search-btn, .cart-link {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 18px;
  cursor: pointer;
  position: relative;
}
.cart-count {
  position: absolute;
  top: 2px;
  right: 0;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  line-height: 16px;
  text-align: center;
}
.quote-btn {
  background: var(--red);
  color: #fff !important;
  padding: 11px 18px;
  border-radius: 5px;
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.quote-btn:before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--navy);
  transform: scale(0);
  z-index: -1;
  transition: 0.4s;
  border-radius: 5px;
}
.quote-btn:hover:before { transform: scale(1); }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--navy);
  color: #fff;
  font-size: 20px;
  border-radius: 4px;
  cursor: pointer;
}

/* Search popup */
.search-popup {
  position: fixed;
  inset: 0;
  background: rgba(6, 36, 98, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
}
.search-popup.open { display: flex; }
.search-popup form {
  width: min(640px, 100%);
  display: flex;
}
.search-popup input {
  flex: 1;
  height: 60px;
  border: 0;
  padding: 0 20px;
  font-size: 16px;
}
.search-popup button {
  width: 70px;
  border: 0;
  background: var(--red);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.search-close {
  position: absolute;
  top: 24px;
  right: 30px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

/* Hero */
.hero {
  background-color: #f7f9fc;
  background-image: radial-gradient(rgba(6, 36, 98, 0.08) 1.2px, transparent 1.2px);
  background-size: 22px 22px;
  min-height: 740px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 46%;
  height: 100%;
  background: linear-gradient(90deg, #f7f9fc 0%, #eef3f8 100%);
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: end;
  gap: 10px;
  padding: 40px 0 140px;
  position: relative;
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; padding-left: 30px; padding-bottom: 80px; }
.hero-content h4 {
  font-size: 16px;
  color: var(--red);
  font-weight: 500;
  padding-left: 70px;
  margin-bottom: 12px;
  position: relative;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}
.hero-content h4:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 54px;
  height: 2px;
  background: var(--red);
}
.hero-content h1 {
  font-size: 56px;
  line-height: 1.12;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
}
.hero-content h1 span { color: var(--red); }
.hero-photo {
  position: relative;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.hero-photo img {
  max-width: 560px;
  width: 100%;
  max-height: 640px;
  object-fit: contain;
  object-position: bottom right;
  margin-left: auto;
  filter: drop-shadow(0 18px 28px rgba(6,36,98,0.12));
}
.hero-badge {
  position: absolute;
  left: 8px;
  bottom: 90px;
  background: #fff;
  border-radius: 8px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 12px;
  align-items: center;
}
.hero-badge i {
  width: 48px;
  height: 48px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-badge strong { display: block; color: var(--navy); font-size: 18px; }
.section { padding: 100px 0; }
.section-sm { padding: 80px 0; }
.section-title { margin-bottom: 20px; }
.section-title h4 {
  font-size: 16px;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
}
.section-title h2 {
  font-size: 40px;
  line-height: 1.25;
  font-weight: 700;
}
.section-title h2 span { color: var(--red); }
.section-title.center { text-align: center; }
.section-title p { padding: 14px 0 0; }

/* Feature overlap cards */
.feature-overlap { margin-top: -120px; position: relative; z-index: 3; padding: 0 20px 20px; }
.feature-panel {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(206,206,206,0.45);
  padding: 50px 40px 30px;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 22px;
}
.feature-intro h4 {
  font-size: 14px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.feature-intro h3 { font-size: 28px; margin-bottom: 12px; }
.feature-card { position: relative; border-radius: 8px; overflow: hidden; }
.feature-card img { width: 100%; height: 230px; object-fit: cover; }
.feature-card-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, transparent, rgba(6,36,98,0.92));
  color: #fff;
  padding: 22px 18px 16px;
}
.feature-card-cap h3 { color: #fff; font-size: 18px; }
.feature-card-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 48px;
  height: 48px;
  background: var(--red);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* About */
.about-section {
  padding: 120px 0 90px;
  background: linear-gradient(0deg, #f5f5f5 0%, #ffffff 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-photos { position: relative; min-height: 460px; }
.about-photos .main {
  width: 72%;
  height: 430px;
  object-fit: cover;
  border-radius: 8px;
}
.about-photos .small {
  position: absolute;
  right: 0;
  top: 70px;
  width: 48%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  border: 8px solid #fff;
  box-shadow: var(--shadow);
}
.about-counter {
  position: absolute;
  left: 24px;
  bottom: 10px;
  background: var(--red);
  color: #fff;
  padding: 22px 28px;
  border-radius: 6px;
  text-align: center;
  min-width: 140px;
}
.about-counter strong { display: block; font-size: 32px; color: #fff; }
.about-counter span { color: #fff; font-size: 14px; }
.about-list { margin: 18px 0 24px; }
.about-list li {
  display: flex;
  gap: 10px;
  padding: 6px 0;
  color: var(--heading);
  font-weight: 500;
}
.about-list i { color: var(--red); margin-top: 6px; }
.smart-box {
  display: flex;
  gap: 14px;
  background: #fff;
  padding: 16px;
  border-radius: 8px;
  margin: 18px 0 22px;
  box-shadow: var(--shadow);
}
.smart-box i {
  width: 54px;
  height: 54px;
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

/* Services */
.service-section { background: var(--navy); padding: 100px 0; position: relative; overflow: hidden; }
.service-section .section-title h2, .service-section .section-title h4 { color: #fff; }
.service-section .section-title h2 span { color: var(--red); }
.service-grid, .card-grid-3, .blog-grid, .team-grid, .value-grid, .process-grid, .price-grid {
  display: grid;
  gap: 24px;
}
.service-grid, .card-grid-3, .blog-grid, .team-grid, .price-grid { grid-template-columns: repeat(3, 1fr); }
.value-grid, .process-grid { grid-template-columns: repeat(4, 1fr); }
.service-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: 0.3s;
}
.service-card img { width: 100%; height: 220px; object-fit: cover; }
.service-card-body { padding: 28px 24px 26px; position: relative; }
.service-card-body h3 { font-size: 20px; margin-bottom: 8px; }
.service-card-body p { font-size: 14px; }
.service-icon {
  width: 58px;
  height: 58px;
  background: var(--red);
  color: #fff;
  border-radius: 8px 8px 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-top: -48px;
  position: relative;
  z-index: 2;
}
.service-card a.more {
  color: var(--red);
  font-weight: 600;
  font-size: 14px;
}
.service-card a.more i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  font-size: 11px;
}

/* Why choose */
.why-section { padding: 110px 0; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.why-photo { position: relative; }
.why-photo img { width: 100%; border-radius: 8px; height: 480px; object-fit: cover; }
.why-photo:before {
  content: "";
  position: absolute;
  left: -12px;
  bottom: -12px;
  width: 70%;
  height: 70%;
  border: 8px solid var(--red);
  border-radius: 8px;
  z-index: -1;
}
.check-list li {
  display: flex;
  gap: 10px;
  padding: 7px 0;
  color: var(--heading);
}
.check-list i { color: var(--red); }

/* Team */
.team-section {
  background: var(--navy);
  padding: 100px 0;
}
.team-section .section-title h2 { color: #fff; }
.team-card { text-align: center; color: #fff; }
.team-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
  margin-bottom: 16px;
  background: #fff;
}
.team-card h3 { color: #fff; font-size: 20px; }
.team-card span { color: #cbd3e6; font-size: 14px; }

/* Contact / appointment form panel */
.booking-section { padding: 100px 0; background: #fff; }
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.booking-form-card {
  background: #fff;
  box-shadow: 0 10px 40px rgba(6,36,98,0.08);
  border-radius: 8px;
  padding: 36px 32px;
  border-top: 4px solid var(--red);
}
.booking-form-card h3 { margin-bottom: 18px; font-size: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  height: 52px;
  border: 1px solid #eceff3;
  background: #f7f8fb;
  padding: 0 16px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  color: var(--heading);
}
.form-group textarea { height: 140px; padding: 14px 16px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  background: #fff;
}
.field-error { color: var(--red); font-size: 12px; display: none; margin-top: 4px; }
.form-group.invalid input, .form-group.invalid select, .form-group.invalid textarea {
  border-color: var(--red);
}
.form-group.invalid .field-error { display: block; }
.form-success {
  display: none;
  background: #e9f7ef;
  color: #0d6b32;
  padding: 14px 16px;
  border-radius: 6px;
  margin-bottom: 14px;
  font-weight: 500;
}
.form-success.show { display: block; }

/* Process */
.process-section {
  background: var(--navy) url("../images/process-bg.jpg") center / cover no-repeat;
  padding: 100px 0;
  position: relative;
}
.process-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 36, 98, 0.88);
}
.process-section .container { position: relative; z-index: 1; }
.process-section .section-title h2, .process-section .section-title h4 { color: #fff; }
.process-item { text-align: center; color: #fff; }
.process-item .num {
  width: 90px;
  height: 90px;
  margin: 0 auto 18px;
  border: 2px dashed rgba(255,255,255,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--red);
  background: rgba(255,255,255,0.04);
}
.process-item h3 { color: #fff; font-size: 20px; margin-bottom: 8px; }
.process-item p { color: #d5dbeb; }

/* Blog cards */
.blog-section { padding: 100px 0; background: #fff; }
.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.blog-card img { width: 100%; height: 230px; object-fit: cover; }
.blog-card-body { padding: 22px 20px 24px; }
.blog-meta { font-size: 13px; color: var(--red); margin-bottom: 8px; }
.blog-card h3 { font-size: 18px; margin-bottom: 8px; }
.blog-card h3 a { color: var(--heading); }
.blog-card h3 a:hover { color: var(--red); }

/* Subscribe bar */
.subscribe-bar {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
}
.subscribe-help {
  background: var(--red);
  color: #fff;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.subscribe-help i {
  width: 64px;
  height: 64px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.subscribe-help h4 { color: #fff; font-size: 15px; font-weight: 400; }
.subscribe-help h3 { color: #fff; font-size: 22px; }
.subscribe-form-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 40px;
  color: #fff;
}
.subscribe-form-wrap h3 { color: #fff; font-size: 26px; }
.subscribe-form-wrap form { display: flex; }
.subscribe-form-wrap input {
  height: 52px;
  width: 260px;
  border: 0;
  padding: 0 16px;
  border-radius: 4px 0 0 4px;
}
.subscribe-form-wrap button {
  height: 52px;
  border: 0;
  background: var(--red);
  color: #fff;
  padding: 0 22px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-weight: 500;
}

/* Footer */
.footer {
  background: var(--navy-deep);
  color: #c9d2e4;
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 30px;
  padding-bottom: 40px;
}
.footer h4 { color: #fff; font-size: 20px; margin-bottom: 22px; }
.footer p { color: #c9d2e4; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; color: #fff; }
.footer-logo img { width: 54px; height: 54px; border-radius: 50%; }
.footer-logo strong { display: block; color: #fff; font-size: 18px; }
.footer-logo span { color: var(--red); font-size: 12px; }
.footer-social { display: flex; gap: 8px; margin-top: 16px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.footer-social a:hover { background: var(--red); border-color: var(--red); }
.footer-links li { padding: 5px 0; }
.footer-links a { color: #c9d2e4; }
.footer-links a:hover { color: var(--red); }
.footer-links a:before { content: "▸ "; color: var(--red); font-size: 12px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 8px 0;
}
.footer-mascot {
  position: absolute;
  right: 20px;
  bottom: 0;
  width: 210px;
  pointer-events: none;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}
.footer-bottom a { color: #c9d2e4; margin-left: 16px; }
.footer-bottom a:hover { color: var(--red); }

/* Breadcrumb */
.page-banner {
  background: linear-gradient(rgba(16, 24, 48, 0.62), rgba(16, 24, 48, 0.62)), url("../images/breadcrumb-tools.png") center / cover no-repeat;
  min-height: 280px;
  display: flex;
  align-items: center;
  color: #fff;
}
.page-banner h1 { color: #fff; font-size: 48px; font-weight: 700; }
.breadcrumb { color: #fff; margin-top: 10px; font-size: 15px; }
.breadcrumb a { color: #fff; }
.breadcrumb span { color: var(--red); margin: 0 8px; }

/* Counters */
.counter-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 10px;
}
.counter-box {
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 28px 20px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.counter-box i {
  width: 60px;
  height: 60px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.counter-box h3 { font-size: 28px; }
.counter-box p { margin: 0; }

/* Values */
.values-section { padding: 90px 0; background: #fff8f6; text-align: center; }
.value-item i {
  font-size: 38px;
  color: var(--red);
  margin-bottom: 14px;
}
.value-item h3 { font-size: 20px; margin-bottom: 8px; }

/* Progress */
.progress-item { margin: 18px 0; }
.progress-item span { display: flex; justify-content: space-between; color: var(--heading); font-weight: 600; margin-bottom: 6px; }
.progress-bar { height: 8px; background: #eee; border-radius: 10px; overflow: hidden; }
.progress-bar b { display: block; height: 100%; background: var(--red); border-radius: 10px; }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  background: #f7f8fb;
  padding: 28px 24px;
  border-radius: 8px;
  position: relative;
}
.testi-card.navy { background: var(--navy); color: #fff; }
.testi-card.navy h4, .testi-card.navy p { color: #fff; }
.testi-card .quote { color: var(--red); font-size: 28px; }
.stars { color: var(--star); letter-spacing: 2px; margin-top: 10px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid #eceff3;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}
.faq-item.active { border-color: transparent; box-shadow: var(--shadow); }
.faq-item.active .faq-q { border-left: 3px solid var(--red); }
.faq-q {
  width: 100%;
  text-align: left;
  background: #fff;
  border: 0;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-family: "Inter", sans-serif;
}
.faq-a { display: none; padding: 0 20px 16px; color: var(--text); }
.faq-item.active .faq-a { display: block; }

/* Pricing */
.price-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 36px 28px;
  position: relative;
  transition: 0.3s;
}
.price-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--red);
}
.price-icon {
  width: 64px;
  height: 64px;
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}
.price-card .amount { color: var(--red); font-size: 36px; font-weight: 800; }
.price-card .amount small { font-size: 13px; color: var(--text); font-weight: 500; }
.price-card ul { margin: 16px 0 22px; }
.price-card ul li { padding: 6px 0; }
.price-card ul i { color: var(--red); margin-right: 6px; }

/* Shop */
.shop-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
}
.widget {
  background: #fff;
  box-shadow: 0 10px 40px rgba(231,231,231,0.7);
  border-radius: 6px;
  padding: 28px 24px 16px;
  margin-bottom: 24px;
}
.widget h4 {
  font-size: 20px;
  border-bottom: 2px solid rgba(6,36,97,0.1);
  padding-bottom: 16px;
  margin-bottom: 18px;
  position: relative;
}
.widget h4:before {
  content: "";
  position: absolute;
  left: -24px;
  top: 0;
  width: 3px;
  height: 24px;
  background: var(--red);
}
.cat-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  color: var(--heading);
  cursor: pointer;
}
.cat-item.active, .cat-item:hover { color: var(--red); }
.product-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  gap: 12px;
  flex-wrap: wrap;
}
.product-toolbar select, .product-toolbar input {
  height: 46px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0 12px;
}
.shop-search { display: flex; width: 100%; max-width: 280px; }
.shop-search input { flex: 1; min-width: 0; width: auto; border-radius: 4px 0 0 4px; }
.shop-search button {
  width: 50px;
  border: 0;
  background: var(--red);
  color: #fff;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card { text-align: center; }
.product-thumb {
  position: relative;
  background: #f6f7fb;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-thumb img { max-height: 180px; width: auto; }
.sale-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  padding: 3px 12px;
  border-radius: 4px;
}
.product-actions {
  position: absolute;
  inset: 0;
  background: rgba(6,36,98,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: 0.3s;
}
.product-card:hover .product-actions { opacity: 1; }
.product-actions button, .product-actions a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
}
.product-actions button:hover, .product-actions a:hover { background: var(--red); color: #fff; }
.product-info {
  border: 1px solid rgba(6,36,98,0.1);
  border-top: 0;
  border-radius: 0 0 6px 6px;
  padding: 16px 10px 18px;
}
.product-info h3 { font-size: 16px; }
.product-info .price { color: var(--red); margin-top: 8px; font-weight: 600; }
.product-info .price s { color: var(--text); margin-left: 6px; font-weight: 400; }
.popular-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: center;
}
.popular-item img { width: 64px; height: 64px; object-fit: contain; background: #f6f7fb; border-radius: 4px; }
.popular-item h5 { font-size: 14px; }
.range-values { display: flex; justify-content: space-between; color: var(--red); font-weight: 600; margin-top: 8px; }

/* Product details */
.product-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.qty-box {
  display: inline-flex;
  border: 1px dashed var(--red);
  border-radius: 6px;
  overflow: hidden;
  height: 50px;
}
.qty-box button {
  width: 44px;
  border: 0;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
}
.qty-box input {
  width: 70px;
  border: 0;
  text-align: center;
  font-weight: 700;
  color: var(--navy);
}
.tabs { display: flex; gap: 8px; margin: 30px 0 0; border: 1px solid #eee; padding: 10px; border-radius: 8px; }
.tabs button {
  border: 0;
  background: transparent;
  padding: 8px 16px;
  font-weight: 600;
  color: var(--heading);
  cursor: pointer;
  border-radius: 4px;
}
.tabs button.active { border: 1px solid var(--red); color: var(--red); }
.tab-panel { display: none; padding: 22px 0; }
.tab-panel.active { display: block; }

/* Cart */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th, .cart-table td {
  padding: 16px 12px;
  border-bottom: 1px solid #eee;
  text-align: left;
  vertical-align: middle;
}
.cart-table img { width: 70px; height: 70px; object-fit: contain; }
.cart-summary {
  background: #f7f8fb;
  padding: 24px;
  border-radius: 8px;
}
.cart-summary h3 { margin-bottom: 16px; }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; }
.checkout-msg {
  display: none;
  background: #e9f7ef;
  border-left: 4px solid #0d6b32;
  padding: 18px 20px;
  margin: 20px 0;
  color: #0d6b32;
  font-weight: 600;
}

/* Blog list */
.blog-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 36px; align-items: start; }
.sidebar-layout { display: grid; grid-template-columns: 340px minmax(0, 1fr); gap: 40px; align-items: start; }
.sidebar-layout .shop-search { width: 100%; max-width: none; }
.sidebar-layout .shop-search input { width: 100%; flex: 1; height: 52px; background: #fff; }
.service-main { min-width: 0; }
.service-main > img,
.service-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.dtls-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}
.dtls-pair img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}
.dtls-issue {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: start;
  margin: 10px 0 30px;
}
.brochure-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  border-radius: 4px;
  color: #fff !important;
  font-weight: 600;
  margin-bottom: 12px;
}
.brochure-btn.navy { background: var(--navy); }
.brochure-btn.red { background: var(--red); }
.blog-post { margin-bottom: 36px; background: #fff; }
.blog-post img { width: 100%; height: 340px; object-fit: cover; border-radius: 8px; }
.blog-post h2 { font-size: 26px; margin: 14px 0 8px; }
.comment-item { display: flex; gap: 14px; margin: 18px 0; }
.comment-item img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }

/* Sidebar widgets extra */
.help-widget {
  background: linear-gradient(160deg, var(--navy), #12306e);
  color: #fff;
  text-align: center;
  padding: 40px 24px;
  border-radius: 8px;
}
.help-widget h3, .help-widget p { color: #fff; }
.service-side a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  color: var(--heading);
}
.service-side a i { color: var(--red); }
.service-side a:hover, .service-side a.active { color: var(--red); }

/* Legal */
.legal-content h2 { font-size: 26px; margin: 28px 0 12px; }
.legal-content h3 { font-size: 20px; margin: 20px 0 8px; }
.legal-content p, .legal-content li { margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; list-style: disc; }
.legal-content ul li { list-style: disc; }

/* Appointment split */
.cta-band {
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 280px 1fr auto;
  align-items: center;
  overflow: hidden;
  margin: 20px 0 50px;
}
.cta-band img { height: 180px; width: 100%; object-fit: cover; }
.cta-band h3 { color: #fff; font-size: 28px; }
.cta-band p { color: #d5dbeb; margin: 0; }
.cta-band .inner { padding: 24px; }

/* Contact */
.contact-map {
  border-radius: 8px;
  overflow: hidden;
  height: 420px;
  background: #e9eef6;
  position: relative;
}
.contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.contact-form-wrap { margin: 70px 0 0; }
.contact-form-wrap h2 {
  font-size: 36px;
  margin-bottom: 28px;
}
.contact-form-wrap .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.contact-form-wrap .form-grid > div:first-child .form-group { margin-bottom: 16px; }
.contact-form-wrap .form-grid > div:first-child .form-group:last-child { margin-bottom: 0; }
.contact-form-wrap .form-grid > .form-group {
  margin-bottom: 0;
  height: 100%;
}
.contact-form-wrap .form-group input {
  height: 56px;
  background: #f4f6f8;
  border: 0;
}
.contact-form-wrap textarea {
  height: 100% !important;
  min-height: 260px;
  background: #f4f6f8;
  border: 0;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.contact-fields { display: flex; flex-direction: column; }
.contact-message { min-height: 260px; }

/* Pagination */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 30px; }
.pagination a, .pagination span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 600;
}
.pagination a.active, .pagination a:hover { background: var(--red); color: #fff; }

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: #fff;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  display: none;
  z-index: 40;
}
.back-top.show { display: block; }

/* Toast */
.toast {
  position: fixed;
  bottom: 80px;
  right: 22px;
  background: var(--navy);
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  display: none;
  z-index: 80;
}
.toast.show { display: block; }

/* Responsive */
@media (max-width: 1199px) {
  .hero-content h1 { font-size: 42px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .footer-mascot { display: none; }
  .shop-layout { grid-template-columns: 260px 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1100px) {
  .team-grid[style] { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 991px) {
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .menu {
    display: none;
    position: absolute;
    left: 15px;
    right: 15px;
    top: 100%;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
    z-index: 30;
  }
  .menu.open { display: flex; }
  .menu > li > a { padding: 12px 18px; }
  .dropdown { position: static; opacity: 1; visibility: visible; width: 100%; box-shadow: none; display: none; }
  .menu > li.open > .dropdown { display: block; }
  .hero, .hero-grid, .about-grid, .why-grid, .booking-grid, .service-grid, .card-grid-3, .blog-grid, .team-grid, .price-grid, .testi-grid, .blog-layout, .sidebar-layout, .product-details, .shop-layout, .footer-grid, .subscribe-bar, .cta-band, .value-grid, .process-grid, .counter-row, .form-row, .contact-form-wrap .form-grid, .dtls-pair, .dtls-issue {
    grid-template-columns: 1fr;
  }
  .hero { background: #f7f9fc; min-height: auto; }
  .hero:after { display: none; }
  .hero-grid { padding: 50px 0 140px; align-items: center; }
  .hero-photo img { max-width: 100%; max-height: 420px; }
  .hero-content { padding-bottom: 20px; }
  .nav-bar { padding: 8px 14px; }
  .quote-btn { display: none; }
  .page-banner h1 { font-size: 34px; }
  .feature-overlap { margin-top: -80px; }
}
@media (max-width: 767px) {
  .header-top { display: none; }
  .product-grid { grid-template-columns: 1fr; }
  .hero-content { padding-left: 0; }
  .hero-content h1 { font-size: 32px; }
  .section, .about-section, .why-section, .blog-section { padding: 70px 0; }
  .subscribe-form-wrap { flex-direction: column; align-items: stretch; }
  .subscribe-form-wrap input { width: 100%; }
  .footer-bottom { flex-direction: column; }
}
