/* ============================================
   Speed Auto Care BD - Main Stylesheet
   Built on the Dhaka Hybrid reference system,
   toned down for a more minimal, professional vibe.
   ============================================ */

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

:root {
  --primary: #1a56db;
  --primary-dark: #1e40af;
  --primary-light: #dbeafe;
  --dark: #111827;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --green: #16a34a;
  --red: #dc2626;
  --amber: #f59e0b;
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-bn: 'Hind Siliguri', 'Noto Sans Bengali', 'Segoe UI', sans-serif;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -2px rgba(0,0,0,0.05);
  --radius: 12px;
  --radius-sm: 8px;
  --max-width: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

html[lang="bn"] body { font-family: var(--font-bn); }

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

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

ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 24px);
  width: 100%;
}

/* ----- Header / Navigation ----- */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: clamp(8px, 2vw, 20px);
  min-width: 0;
}

.header nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 0;
}

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

.logo-text {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links > li { position: relative; }

.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-700);
  transition: color 0.2s;
  padding: 8px 0;
  display: inline-block;
}

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

.nav-links .has-dropdown > a::after {
  content: " \25BE";
  font-size: 0.7em;
  opacity: 0.6;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 8px 0;
  min-width: 180px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
}

.nav-links li:hover > .nav-dropdown,
.nav-links li:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 8px 16px;
  font-size: 0.78rem;
  text-transform: none;
  letter-spacing: 0.2px;
}

.nav-dropdown a:hover { background: var(--gray-100); }

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1.5vw, 12px);
  flex-shrink: 0;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 2px;
  background: var(--white);
}

.lang-toggle a {
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  border-radius: 20px;
  transition: all 0.2s;
}

.lang-toggle a.active {
  background: var(--primary);
  color: var(--white);
}

/* ----- Buttons ----- */
.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.87rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s;
  text-align: center;
  font-family: inherit;
}

.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { opacity: 0.9; }

.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}
.btn-outline:hover { background: var(--primary-light); }

.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { opacity: 0.92; }

.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { opacity: 0.92; }

.btn-ghost {
  background: transparent;
  color: var(--gray-700);
  border-color: var(--gray-200);
}
.btn-ghost:hover { background: var(--gray-100); }

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

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ----- Hero ----- */
.hero {
  background:
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(26, 86, 219, 0.06), transparent 70%),
    linear-gradient(180deg, #f9fafb 0%, #eef2ff 100%);
  padding: 64px 0 72px;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(26, 86, 219, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero > .container { position: relative; z-index: 1; }

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero-content {
  flex: 1;
  max-width: 560px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero-content p {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: 26px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-form {
  flex: 0 0 400px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-form h3 {
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.hero-form .sub {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 20px;
}

/* ----- Form controls ----- */
.form-group { margin-bottom: 14px; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--gray-700);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-feedback {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  display: none;
}
.form-feedback.error { background: #fef2f2; color: var(--red); display: block; }
.form-feedback.success { background: #f0fdf4; color: var(--green); display: block; }

/* ----- Brands ticker ----- */
.brands {
  padding: 48px 0 56px;
  background: var(--white);
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}

.brands h2 {
  font-size: 0.84rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 32px;
  font-weight: 600;
}

.brand-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
          mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.brand-marquee-track {
  display: flex;
  width: max-content;
  align-items: flex-end;
  gap: 64px;
  animation: brand-marquee 36s linear infinite;
  will-change: transform;
}

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

.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-shrink: 0;
  width: 200px;
}

.brand-item img {
  width: 200px;
  height: 120px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter 0.4s, opacity 0.4s, transform 0.4s;
}

.brand-item:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.04);
}

.brand-item .brand-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gray-500);
  transition: color 0.3s;
}

.brand-item:hover .brand-label { color: var(--primary); }

@keyframes brand-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 32px)); }
}

@media (prefers-reduced-motion: reduce) {
  .brand-marquee-track { animation: none; }
}

/* ----- Sections ----- */
.section { padding: 72px 0; }
.section-alt { background: var(--gray-50); }

.section-title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.3px;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-500);
  font-size: 1rem;
  margin-bottom: 44px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ----- Service cards ----- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.28s, border-color 0.28s, box-shadow 0.28s;
  display: block;
  box-shadow: var(--shadow);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--gray-100);
}

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

.service-card h3 {
  font-size: 1.08rem;
  color: var(--dark);
  margin-bottom: 8px;
  font-weight: 600;
}

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

.service-card .card-cta {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
}

/* ----- Service clusters (grouped list on services page) ----- */
.service-cluster {
  margin-bottom: 56px;
}

.service-cluster:last-child { margin-bottom: 0; }

.service-cluster-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}

.service-cluster-header h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
}

.service-cluster-header .count {
  font-size: 0.82rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ----- Achievements ----- */
.achievements {
  background: var(--primary);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
}

.achievements h2 {
  font-size: 1.6rem;
  margin-bottom: 6px;
  font-weight: 700;
}

.achievements .subtitle {
  opacity: 0.85;
  margin-bottom: 36px;
  font-size: 0.95rem;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

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

.stat-item .number {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.stat-item .label {
  font-size: 0.88rem;
  opacity: 0.85;
  margin-top: 6px;
  letter-spacing: 0.3px;
}

/* ----- Products / parts grid ----- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.28s, border-color 0.28s, box-shadow 0.28s;
  box-shadow: var(--shadow);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--gray-100);
}

.product-card .card-body { padding: 16px; }

.product-card h3 {
  font-size: 0.98rem;
  color: var(--dark);
  margin-bottom: 6px;
  font-weight: 600;
}

.product-card p {
  font-size: 0.82rem;
  color: var(--gray-600);
  margin-bottom: 12px;
  line-height: 1.5;
}

.product-card .price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.product-card .btn { width: 100%; }

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.shop-toolbar .result-count {
  color: var(--gray-600);
  font-size: 0.88rem;
}

.shop-toolbar select {
  padding: 8px 32px 8px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  outline: none;
  background: var(--white);
}

.notice-banner {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

/* ----- Gallery grid + lightbox ----- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: zoom-in;
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img { transform: scale(1.04); }

dialog.lightbox {
  border: none;
  background: transparent;
  padding: 0;
  max-width: 92vw;
  max-height: 92vh;
}

dialog.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.85);
}

dialog.lightbox img {
  max-width: 92vw;
  max-height: 92vh;
  border-radius: var(--radius-sm);
}

dialog.lightbox .close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 4px 12px;
}

/* ----- Video grid ----- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.video-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.28s, border-color 0.28s, box-shadow 0.28s;
  box-shadow: var(--shadow);
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--dark) center/cover no-repeat;
  cursor: pointer;
}

.video-thumb::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(26, 86, 219, 0.92) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") center/28px no-repeat;
  transition: transform 0.2s;
}

.video-thumb:hover::after { transform: translate(-50%, -50%) scale(1.08); }

.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  display: block;
}

.video-card .card-body { padding: 16px 20px; }

.video-card h3 {
  font-size: 0.98rem;
  color: var(--dark);
  font-weight: 600;
}

.video-card .meta {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 4px;
}

/* ----- Offer grid ----- */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.offer-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s, border-color 0.28s, box-shadow 0.28s;
  box-shadow: var(--shadow);
}

.offer-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.offer-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--gray-100);
}

.offer-card .card-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.offer-card h3 {
  font-size: 1rem;
  color: var(--dark);
  font-weight: 600;
}

.offer-card p {
  font-size: 0.86rem;
  color: var(--gray-600);
  flex: 1;
}

.offer-card .btn { align-self: flex-start; }

/* ----- Testimonials ----- */
.testimonials {
  background: var(--gray-50);
  padding: 72px 0;
  text-align: center;
}

.testimonial-card {
  max-width: 620px;
  margin: 0 auto;
  background: var(--white);
  padding: 32px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}

.testimonial-card .quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 16px;
  line-height: 1.6;
}

.testimonial-card .stars {
  color: var(--amber);
  font-size: 1.1rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.testimonial-card .author {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.92rem;
}

.testimonial-card .author .role {
  display: block;
  font-weight: 400;
  color: var(--gray-500);
  font-size: 0.82rem;
  margin-top: 2px;
}

/* ----- Why Choose Us / features ----- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}

.feature-card {
  background: var(--white);
  padding: 26px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  text-align: center;
}

.feature-card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1.02rem;
  color: var(--dark);
  margin-bottom: 6px;
  font-weight: 600;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
}

/* ----- Contact cards ----- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 44px;
}

.contact-card {
  background: var(--white);
  padding: 26px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  text-align: center;
  display: block;
}

.contact-card .icon {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.contact-card h3 {
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-card p, .contact-card a {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.contact-card a:hover { color: var(--primary); }

.map-container {
  width: 100%;
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ----- About / chairman card ----- */
.chairman-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: start;
}

.chairman-card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--gray-100);
}

.chairman-card .role {
  font-size: 0.82rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  margin-bottom: 4px;
}

.chairman-card h3 {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 14px;
  font-weight: 700;
}

.chairman-card blockquote {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--gray-600);
  font-style: italic;
  border-left: 3px solid var(--primary);
  padding-left: 18px;
}

.who-we-are {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
}

.who-we-are h2 {
  font-size: 1.85rem;
  color: var(--dark);
  margin-bottom: 16px;
  font-weight: 700;
}

.who-we-are p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
}

/* ----- Booking page form ----- */
.booking-section {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px;
}

/* ----- Page banner ----- */
.page-banner {
  background:
    radial-gradient(ellipse 50% 70% at 80% 50%, rgba(255, 255, 255, 0.08), transparent 70%),
    linear-gradient(135deg, #1e3a8a 0%, #1a56db 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-banner > .container { position: relative; z-index: 1; }

.page-banner h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.page-banner p {
  font-size: 1rem;
  opacity: 0.82;
  max-width: 600px;
  margin: 0 auto;
}

/* ----- CTA band ----- */
.cta-band {
  background: var(--dark);
  color: var(--white);
  padding: 48px 0;
  text-align: center;
}

.cta-band h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.cta-band p {
  opacity: 0.82;
  margin-bottom: 24px;
  font-size: 0.98rem;
}

/* ----- Footer ----- */
.footer {
  background: var(--dark);
  color: var(--gray-400);
  padding: 56px 0 24px;
}

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

.footer h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer p, .footer li {
  font-size: 0.88rem;
  line-height: 1.85;
}

.footer a {
  color: var(--gray-400);
  transition: color 0.2s;
}

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

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--gray-400);
  transition: all 0.2s;
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
}

/* ----- Utility ----- */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ----- WhatsApp float ----- */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.42);
  z-index: 999;
  color: white;
  transition: transform 0.25s, box-shadow 0.25s;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg { width: 28px; height: 28px; }

/* ----- Responsive ----- */
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .hero-content { max-width: 100%; }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-form { flex: none; width: 100%; max-width: 440px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { gap: 36px; }
  .chairman-card { grid-template-columns: 1fr; text-align: center; }
  .chairman-card img { margin: 0 auto; }
  .chairman-card blockquote { text-align: left; }
}

@media (max-width: 768px) {
  .header { padding: 10px 0; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--gray-200);
    gap: 2px;
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9rem;
  }
  .nav-dropdown {
    position: static;
    border: none;
    box-shadow: none;
    padding: 0 0 0 16px;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 0;
  }
  .nav-dropdown a { font-size: 0.82rem; padding: 10px 0; }

  .hamburger { display: flex; }

  .logo img { height: 38px; }
  .logo-text { font-size: 1rem; }

  .header-actions .btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
  .lang-toggle a { padding: 3px 9px; font-size: 0.7rem; }

  .hero { padding: 48px 0 56px; }
  .hero-content h1 { font-size: 1.85rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-form { padding: 22px; }

  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .features-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .offer-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }

  .section { padding: 56px 0; }
  .section-title { font-size: 1.55rem; }
  .section-subtitle { font-size: 0.92rem; margin-bottom: 32px; }

  .stats-grid { gap: 28px; }
  .stat-item .number { font-size: 1.8rem; }

  .page-banner { padding: 44px 0; }
  .page-banner h1 { font-size: 1.6rem; }
  .page-banner p { font-size: 0.92rem; }

  .booking-section, .chairman-card { padding: 22px; }
  .service-cluster-header { flex-wrap: wrap; gap: 8px; }
  .service-cluster-header h2 { font-size: 1.15rem; }

  .shop-toolbar { flex-direction: column; align-items: stretch; }

  .brand-logos { gap: 24px; }
  .brand-logos span { font-size: 0.95rem; }

  .contact-cards { grid-template-columns: 1fr 1fr; gap: 14px; }
  .contact-card { padding: 20px 14px; }
  .contact-card h3 { font-size: 0.85rem; }
  .contact-card p { font-size: 0.85rem; }

  .map-container { height: 320px; }

  .footer { padding: 44px 0 22px; }
  .footer-grid { gap: 28px; margin-bottom: 24px; }

  .cta-band h2 { font-size: 1.3rem; }
  .cta-band p { font-size: 0.92rem; }

  .whatsapp-float { bottom: 18px; right: 18px; width: 48px; height: 48px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
}

@media (max-width: 560px) {
  .logo-text { display: none; }
  .logo img { height: 36px; }
  .header-actions .btn { padding: 7px 12px; font-size: 0.78rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

@media (max-width: 420px) {
  .lang-toggle { display: none; }
  .header-actions .btn-primary { padding: 7px 11px; font-size: 0.75rem; }
  .hero-content h1 { font-size: 1.6rem; }
  .hero-content p { font-size: 0.95rem; }
  .hero-eyebrow { font-size: 0.72rem; }
  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .stats-grid { gap: 18px; }
  .stat-item .number { font-size: 1.55rem; }
  .stat-item .label { font-size: 0.78rem; }
  .section-title { font-size: 1.35rem; }
  .booking-section, .chairman-card { padding: 18px; }
  .hero-form { padding: 18px; }
}
