/* ========= BASE RESET & VARIABLES ========= */
:root {
  --red: #e31e24;
  --dark: #1a1a2e;
  --dark2: #16213e;
  --white: #ffffff;
  --light-gray: #f8f8f8;
  --gray: #666666;
  --border: #e0e0e0;
  --font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: #333; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }
.text-center { text-align: center; }
.text-red { color: var(--red); }

/* ========= TOP BAR ========= */
.topbar {
  background: var(--dark);
  padding: 10px 0;
  font-size: 13px;
  color: #ccc;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-left a, .topbar-left span {
  color: #ccc;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-left a:hover { color: var(--red); }
.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.topbar-right .availability {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #ccc;
}
.topbar-right .availability::before {
  content: '';
  width: 8px; height: 8px;
  background: #4caf50;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #ccc;
  font-size: 12px;
  transition: var(--transition);
}
.social-links a:hover { background: var(--red); color: #fff; }

/* ========= HEADER / NAV ========= */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.logo img { height: 60px; width: auto; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-text .brand-name { font-size: 20px; font-weight: 800; color: var(--dark); }
.logo-text .brand-name span { color: var(--red); }
.logo-text .brand-sub { font-size: 10px; letter-spacing: 2px; color: var(--gray); text-transform: uppercase; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
}
.main-nav ul li a {
  padding: 8px 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  border-radius: 4px;
  transition: var(--transition);
  white-space: nowrap;
}
.main-nav ul li a:hover,
.main-nav ul li a.active { color: var(--red); }
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  cursor: pointer;
  padding: 7px 9px;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-close {
  display: none;
  position: absolute;
  top: 18px; right: 20px;
  font-size: 28px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

/* ========= HERO SLIDER ========= */
.hero {
  position: relative;
  height: 88vh;
  min-height: 480px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.80) 0%, rgba(227,30,36,0.22) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 820px;
}
.hero-content h1 {
  font-size: clamp(26px, 5vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.hero-content .hero-divider {
  width: 60px; height: 3px;
  background: var(--red);
  margin: 0 auto 20px;
}
.hero-content p {
  font-size: clamp(14px, 2vw, 19px);
  font-style: italic;
  margin-bottom: 32px;
  opacity: 0.95;
}
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 13px 32px;
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-radius: 4px;
  transition: var(--transition);
  border: 2px solid var(--red);
  cursor: pointer;
}
.btn-primary:hover { background: transparent; color: #fff; }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 13px 32px;
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-radius: 4px;
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.8);
  margin-left: 10px;
  cursor: pointer;
}
.btn-outline:hover { background: #fff; color: var(--dark); }
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 18px;
}
.hero-arrow:hover { background: var(--red); border-color: var(--red); }
.hero-arrow.prev { left: 18px; }
.hero-arrow.next { right: 18px; }
.hero-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.hero-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dots span.active { background: var(--red); transform: scale(1.2); }

/* ========= SECTION LABELS ========= */
.section-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.section-label::before { content: '★'; font-size: 13px; }
.section-title {
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { color: var(--red); }
.title-bar { width: 50px; height: 3px; background: var(--red); margin-bottom: 20px; }
.section-subtitle {
  font-size: 15px;
  color: var(--gray);
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* ========= WELCOME SECTION ========= */
.welcome-section { padding: 80px 0; background: #fff; }
.welcome-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.welcome-text p { color: var(--gray); line-height: 1.9; margin-bottom: 16px; font-size: 15px; }
.welcome-list { margin: 20px 0 30px; }
.welcome-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14.5px;
  color: #444;
  border-bottom: 1px solid var(--border);
}
.welcome-list li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.welcome-image { position: relative; }
.welcome-image img { width: 100%; border-radius: 12px; box-shadow: var(--shadow); }
.welcome-stats {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--red);
  color: #fff;
  padding: 20px 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow);
}
.welcome-stats .stat-num { font-size: 34px; font-weight: 900; line-height: 1; }
.welcome-stats .stat-label { font-size: 12px; opacity: 0.9; }

/* ========= SERVICES SECTION ========= */
.services-section { padding: 80px 0; background: var(--light-gray); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  margin-top: 50px;
}
.service-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.service-card img {
  width: 100%; height: 190px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover img { transform: scale(1.05); }
.service-card-body { padding: 22px; }
.service-card .label {
  font-size: 10px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.service-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.service-card p { font-size: 13.5px; color: var(--gray); line-height: 1.7; }
.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.service-card .card-link:hover { gap: 10px; }
.service-overlay {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--red);
  color: #fff;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 14px;
}

/* ========= ABOUT HIGHLIGHTS ========= */
.highlights-section { padding: 80px 0; background: #fff; }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 50px;
}
.highlight-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.highlight-card:hover { border-color: var(--red); box-shadow: var(--shadow); transform: translateY(-4px); }
.highlight-icon {
  width: 68px; height: 68px;
  background: rgba(227,30,36,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 28px;
  color: var(--red);
  transition: var(--transition);
}
.highlight-card:hover .highlight-icon { background: var(--red); color: #fff; }
.highlight-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.highlight-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.step-num { font-size: 44px; font-weight: 900; color: rgba(227,30,36,0.12); line-height: 1; margin-bottom: 8px; }

/* ========= GALLERY ========= */
.gallery-section { padding: 80px 0; background: var(--light-gray); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 50px;
}
.gallery-item { position: relative; overflow: hidden; border-radius: 8px; cursor: pointer; aspect-ratio: 1/1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(227,30,36,0.75);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { color: #fff; font-size: 26px; }

/* ========= TESTIMONIALS ========= */
.testimonials-section { padding: 80px 0; background: var(--dark2); }
.testimonials-section .section-label { color: #f9a825; }
.testimonials-section .section-title { color: #fff; }
.testimonials-section .title-bar { background: #f9a825; }
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.5s ease; }
.testimonial-card { min-width: 100%; padding: 36px 36px 50px; }
.testimonial-text {
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 32px;
  position: relative;
  border-left: 4px solid var(--red);
}
.testimonial-text p {
  font-size: 15.5px;
  color: rgba(255,255,255,0.85);
  line-height: 1.85;
  font-style: italic;
}
.testimonial-text::before {
  content: '"';
  position: absolute;
  top: -18px; left: 28px;
  font-size: 76px;
  color: var(--red);
  line-height: 1;
  opacity: 0.55;
}
.testimonial-author { display: flex; align-items: center; gap: 16px; margin-top: 22px; }
.testimonial-author img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--red);
}
.testimonial-author .author-info h4 { font-size: 15px; font-weight: 700; color: #fff; }
.testimonial-author .author-info span { font-size: 12.5px; color: rgba(255,255,255,0.5); }
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.testimonial-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition);
}
.testimonial-dots span.active { background: var(--red); }
.stars { color: #f9a825; font-size: 13px; margin-bottom: 8px; }

/* ========= CONTACT CTA ========= */
.contact-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
}
.contact-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.contact-cta-text .section-title { color: #fff; }
.contact-cta-text p { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.8; margin-bottom: 28px; }
.contact-info-items { display: flex; flex-direction: column; gap: 18px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon {
  width: 46px; height: 46px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  color: #fff;
  flex-shrink: 0;
}
.contact-icon-detail h4 { color: #fff; font-size: 14px; font-weight: 700; }
.contact-icon-detail p,
.contact-icon-detail a { color: rgba(255,255,255,0.65); font-size: 13.5px; }
.contact-icon-detail a:hover { color: var(--red); }
.contact-form-box {
  background: #fff;
  border-radius: 12px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-form-box h3 { font-size: 21px; font-weight: 800; color: var(--dark); margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12.5px; font-weight: 600; color: #555; margin-bottom: 5px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  font-family: var(--font);
  transition: var(--transition);
  outline: none;
  color: #333;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(227,30,36,0.1); }
.form-group textarea { resize: vertical; min-height: 95px; }
.btn-submit {
  width: 100%;
  background: var(--red);
  color: #fff;
  padding: 13px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-submit:hover { background: #c01920; }

/* ========= MAP ========= */
.map-section { height: 380px; }
.map-section iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ========= STATS BAR ========= */
.stats-bar { background: var(--red); padding: 50px 0; }
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item h3 { font-size: clamp(30px, 4vw, 48px); font-weight: 900; color: #fff; line-height: 1; }
.stat-item p { font-size: 13px; color: rgba(255,255,255,0.8); margin-top: 6px; text-transform: uppercase; letter-spacing: 1px; }

/* ========= PAGE HERO ========= */
.page-hero {
  background: linear-gradient(135deg, rgba(26,26,46,0.90) 0%, rgba(227,30,36,0.4) 100%),
              url('../images/hero/hero-4.jpg') center/cover no-repeat;
  padding: 72px 0;
  text-align: center;
  color: #fff;
}
.page-hero h1 { font-size: clamp(26px, 4vw, 46px); font-weight: 900; margin-bottom: 12px; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap;
  font-size: 14px; color: rgba(255,255,255,0.75);
}
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: #fff; font-weight: 600; }

/* ========= FOOTER ========= */
.footer { background: #111; padding: 60px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer-col p { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
}
.footer-col ul li a::before { content: '›'; color: var(--red); font-size: 16px; }
.footer-col ul li a:hover { color: var(--red); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 15px; }
.footer-contact-item .icon { color: var(--red); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item p, .footer-contact-item a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.footer-contact-item a:hover { color: var(--red); }
.footer-logo { margin-bottom: 16px; }
.footer-logo .brand { font-size: 18px; font-weight: 800; color: #fff; }
.footer-logo .brand span { color: var(--red); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--red); color: #fff; }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom a { color: var(--red); }

/* ========= FLOATING ACTIONS (right side — call + whatsapp) ========= */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fab {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 21px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: var(--transition);
  text-decoration: none;
}
.fab:hover { transform: scale(1.1); color: #fff; }
.fab-call { background: var(--red); }
.fab-whatsapp { background: #25d366; }

/* ========= SCROLL TO TOP (right, above floating actions) ========= */
#scrollTop {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 9998;
  width: 42px; height: 42px;
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 15px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: var(--transition);
}
#scrollTop:hover { background: var(--red); }

/* ========= ABOUT PAGE ========= */
.about-detail { padding: 80px 0; background: #fff; }
.about-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-images { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-images img { border-radius: 8px; width: 100%; height: 190px; object-fit: cover; }
.about-images .main-img { grid-column: 1 / -1; height: 270px; }
.treatment-steps { padding: 80px 0; background: var(--light-gray); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  margin-top: 50px;
}
.step-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--red);
}
.step-card .num { font-size: 44px; font-weight: 900; color: rgba(227,30,36,0.1); line-height: 1; margin-bottom: 8px; }
.step-card h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.step-card p { font-size: 13.5px; color: var(--gray); line-height: 1.7; }

/* ========= SERVICES DETAIL PAGE ========= */
.services-detail { padding: 80px 0; background: #fff; }
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
  margin-top: 50px;
}
.service-detail-card {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
}
.service-detail-card:hover { border-color: var(--red); box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.service-detail-card img { width: 100%; height: 190px; object-fit: cover; }
.service-detail-body { padding: 26px; }
.service-detail-body h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.service-detail-body p { font-size: 13.5px; color: var(--gray); line-height: 1.8; }
.service-cta-strip { background: var(--red); padding: 50px 0; text-align: center; }
.service-cta-strip h2 { color: #fff; font-size: clamp(20px, 3vw, 32px); font-weight: 800; margin-bottom: 20px; }
.service-cta-strip .btn-white {
  display: inline-block;
  background: #fff;
  color: var(--red);
  padding: 13px 36px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}
.service-cta-strip .btn-white:hover { background: var(--dark); color: #fff; }

/* ========= GALLERY PAGE ========= */
.gallery-page { padding: 80px 0; background: #fff; }
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 50px;
}
.gallery-page-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  aspect-ratio: 1/1;
}
.gallery-page-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-page-item:hover img { transform: scale(1.08); }
.gallery-page-item .caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  padding: 20px 14px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transform: translateY(100%);
  transition: var(--transition);
}
.gallery-page-item:hover .caption { transform: translateY(0); }

/* ========= FAQ PAGE ========= */
.faq-section { padding: 80px 0; background: #fff; }
.faq-list { max-width: 800px; margin: 50px auto 0; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--red); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  gap: 12px;
}
.faq-question .faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(227,30,36,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-question .faq-icon {
  background: var(--red);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 22px 20px; font-size: 14.5px; color: var(--gray); line-height: 1.85; }

/* ========= CONTACT PAGE ========= */
.contact-page { padding: 80px 0; background: #fff; }
.contact-page-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-page-form h3 { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 22px; }
.opening-hours { background: var(--light-gray); padding: 28px; border-radius: 10px; margin-top: 22px; }
.opening-hours h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 14px; }
.hours-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13.5px; color: var(--gray); }
.hours-row:last-child { border: none; }
.hours-row span { font-weight: 600; color: var(--dark); }

/* ========= TWO-COL GRID (service/blog inner pages) ========= */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ========= ALERTS ========= */
.alert { padding: 14px 18px; border-radius: 6px; margin-bottom: 16px; font-size: 14px; font-weight: 600; }
.alert-success { background: #e8f5e9; color: #2e7d32; border-left: 4px solid #43a047; }
.alert-error { background: #ffebee; color: #c62828; border-left: 4px solid #ef5350; }

/* ========= LOCAL SEO SCHEMA PAGE ========= */
.local-seo-strip {
  background: var(--dark);
  padding: 16px 0;
  text-align: center;
}
.local-seo-strip p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.local-seo-strip a { color: var(--red); }

/* ========= RESPONSIVE — TABLET (≤1024px) ========= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .welcome-inner,
  .contact-cta-inner,
  .about-detail-inner,
  .contact-page-inner { grid-template-columns: 1fr; gap: 40px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .welcome-stats { position: static; margin-top: 16px; display: inline-block; border-radius: 8px; }
  .two-col-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ========= RESPONSIVE — MOBILE (≤768px) ========= */
@media (max-width: 768px) {
  /* Top bar */
  .topbar { display: none; }

  /* Header */
  .header-inner { padding: 8px 0; }
  .logo img { height: 50px; }
  .nav-toggle { display: flex; }
  .nav-close { display: block; }

  /* Mobile overlay nav */
  .main-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26,26,46,0.97);
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .main-nav.open { display: flex; }
  .main-nav ul {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .main-nav ul li a {
    font-size: 20px;
    color: #fff;
    padding: 12px 28px;
    display: block;
  }
  .main-nav ul li a:hover,
  .main-nav ul li a.active { color: var(--red); }

  /* Hero */
  .hero { height: 70vh; min-height: 400px; }
  .hero-content h1 { font-size: 24px; letter-spacing: 1px; }
  .hero-content p { font-size: 14px; }
  .btn-primary, .btn-outline { padding: 11px 22px; font-size: 12.5px; }
  .btn-outline { margin-left: 6px; }

  /* Sections */
  .section-padding { padding: 56px 0; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 24px 18px; }
  .testimonial-card { padding: 24px 20px 36px; }
  .testimonial-text { padding: 24px; }
  .hero-arrow { display: none; }
  .two-col-grid { gap: 28px; }
  .two-col-grid img { max-height: 260px; object-fit: cover; }
  .page-hero { padding: 56px 0; }
  .faq-question { padding: 15px 16px; font-size: 14px; }
  .faq-answer-inner { padding: 0 16px 16px; }
}

/* ========= RESPONSIVE — SMALL MOBILE (≤480px) ========= */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .hero { height: 65vh; min-height: 350px; }
  .hero-content h1 { font-size: 20px; }
  .hero-content p { font-size: 13px; margin-bottom: 20px; }
  .btn-primary, .btn-outline { padding: 10px 18px; font-size: 12px; }
  .services-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 22px; }
  .about-images { grid-template-columns: 1fr; }
  .about-images .main-img { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .service-cta-strip h2 { font-size: 18px; }
  .floating-actions { bottom: 16px; right: 14px; }
  .fab { width: 46px; height: 46px; font-size: 18px; }
  #scrollTop { right: 14px; bottom: 88px; }
}
