/* =====================================================
   MK Pristine Cleaning & Staffing Sdn Bhd
   Website Stylesheet
   Theme: Dark Red (#8B1A1A) & Gold (#C9A227)
   ===================================================== */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: #2d2d2d;
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.25;
}

.section-title {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title span { color: #8B1A1A; }

.section-subtitle {
  color: #666;
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: #8B1A1A;
  margin: 0.6rem auto 1.5rem;
  border-radius: 2px;
}

/* ---------- Variables ---------- */
:root {
  --red: #8B1A1A;
  --red-dark: #6a1414;
  --red-light: #a82020;
  --gold: #C9A227;
  --dark: #1a1a1a;
  --gray: #555;
  --light-bg: #f8f6f4;
  --border: #e0e0e0;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
}

/* ---------- Utility ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.text-white { color: #fff !important; }
.bg-red { background: var(--red); }
.bg-dark { background: var(--dark); }
.bg-light { background: var(--light-bg); }

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 3px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139,26,26,0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline:hover {
  background: #fff;
  color: var(--red);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #b08d20;
  border-color: #b08d20;
  transform: translateY(-2px);
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--red);
  padding: 0 1.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  transition: background 0.3s;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.nav-brand-tagline {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  color: rgba(255,255,255,0.9);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 0.9rem;
  border-radius: 3px;
  transition: all 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: all 0.2s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  left: 0.9rem;
  right: 0.9rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.nav-links .btn-nav {
  background: var(--gold);
  color: #fff !important;
  padding: 0.45rem 1.2rem;
  border-radius: 3px;
  margin-left: 0.5rem;
}
.nav-links .btn-nav:hover { background: #b08d20; }
.nav-links .btn-nav::after { display: none; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* ---------- Page Hero ---------- */
.page-hero {
  margin-top: 70px;
  height: 320px;
  background: var(--red);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  opacity: 0.85;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.page-hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.page-hero-content h1 span { color: var(--gold); }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* ---------- Hero (Home) ---------- */
.hero {
  margin-top: 70px;
  min-height: calc(100vh - 70px);
  background: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/img-000.jpg');
  background-size: cover;
  background-position: center right;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,26,26,0.92) 0%, rgba(26,26,26,0.85) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  color: #fff;
  padding: 4rem 1.5rem;
  margin-left: max(1.5rem, calc((100vw - 1200px) / 2));
}

.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.2rem;
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-content h1 span { color: var(--gold); }

.hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.hero-stat h3 {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.1rem;
}

.hero-stat p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---------- Section Base ---------- */
section { padding: 5rem 0; }

/* ---------- Services Overview (Home) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border-radius: 6px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-top: 4px solid var(--red);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
  z-index: 0;
}

.service-card:hover::before { transform: scaleY(1); }

.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.service-card-inner { position: relative; z-index: 1; }

.service-icon {
  width: 55px;
  height: 55px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: background 0.3s;
  font-size: 1.4rem;
  color: #fff;
}

.service-card:hover .service-icon { background: rgba(255,255,255,0.2); }

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--dark);
  transition: color 0.3s;
}

.service-card:hover h3 { color: #fff; }

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

.service-card:hover p { color: rgba(255,255,255,0.85); }

.service-card .read-more {
  display: inline-block;
  margin-top: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.service-card:hover .read-more { color: var(--gold); }

/* ---------- Why Choose Us (Home) ---------- */
.why-section {
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/img-099.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.why-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-content .section-title { color: #fff; }
.why-content .section-divider { margin: 0.6rem 0 1.5rem; }

.why-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.why-item-icon {
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: #fff;
}

.why-item-text h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.why-item-text p { font-size: 0.88rem; color: rgba(255,255,255,0.75); }

.why-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.why-img-box {
  border-radius: 6px;
  overflow: hidden;
  height: 180px;
}

.why-img-box img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Credibility Strip ---------- */
.cred-strip {
  background: var(--red);
  padding: 3rem 0;
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.cred-item h3 {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.cred-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---------- Clients & Partners ---------- */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.logo-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  transition: all 0.3s;
  filter: grayscale(50%);
}

.logo-box:hover {
  filter: grayscale(0%);
  box-shadow: var(--shadow);
  border-color: var(--red);
  transform: translateY(-3px);
}

.logo-box img { max-height: 60px; max-width: 130px; object-fit: contain; }

/* ---------- CTA Strip ---------- */
.cta-strip {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 4rem 0;
  text-align: center;
  color: #fff;
}

.cta-strip h2 {
  font-size: 1.9rem;
  margin-bottom: 0.6rem;
}

.cta-strip p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.8rem;
  font-size: 1rem;
}

/* ---------- About Page ---------- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-intro-img {
  position: relative;
}

.about-intro-img img {
  border-radius: 6px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.about-intro-img::before {
  content: '';
  position: absolute;
  top: -15px; left: -15px;
  width: 100%; height: 100%;
  border: 3px solid var(--red);
  border-radius: 6px;
  z-index: -1;
}

.about-intro-content .section-divider { margin: 0.6rem 0 1.5rem; }

.about-intro-content p { margin-bottom: 1rem; color: var(--gray); }

.about-services-list {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.about-services-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--gray);
}

.about-services-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Welcome Message */
.welcome-section {
  background: var(--light-bg);
}

.welcome-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: start;
}

.welcome-photo {
  text-align: center;
}

.welcome-photo-frame {
  width: 240px;
  height: 290px;
  margin: 0 auto 1rem;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--red);
}

.welcome-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.welcome-ceo-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--dark);
  font-size: 1rem;
}

.welcome-ceo-title {
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 600;
}

.welcome-content blockquote {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--red);
  border-left: 4px solid var(--red);
  padding-left: 1.2rem;
  margin: 1.5rem 0;
  line-height: 1.7;
}

.welcome-content p { color: var(--gray); margin-bottom: 1rem; }

/* Vision & Mission */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.vm-card {
  background: #fff;
  border-radius: 6px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--red);
}

.vm-card.mission { border-top-color: var(--gold); }

.vm-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.vm-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
}

.vm-card .vm-icon { background: var(--red); }
.vm-card.mission .vm-icon { background: var(--gold); }

.vm-card h3 {
  font-size: 1.3rem;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* Management Structure */
.mgmt-section { background: var(--light-bg); }

.mgmt-chart {
  text-align: center;
}

.mgmt-top {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mgmt-box {
  background: var(--red);
  color: #fff;
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 160px;
  position: relative;
}

.mgmt-connector {
  display: flex;
  justify-content: center;
}

.mgmt-connector::before {
  content: '';
  display: block;
  width: 2px;
  height: 30px;
  background: var(--red);
}

.mgmt-level {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.mgmt-dept {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.mgmt-dept-line {
  width: 2px;
  height: 25px;
  background: var(--red);
}

.mgmt-box.dept {
  background: var(--red);
  font-size: 0.75rem;
  min-width: 130px;
  padding: 0.6rem 1rem;
}

.mgmt-box.staff {
  background: #fff;
  color: var(--red);
  border: 2px solid var(--red);
  font-size: 0.75rem;
  min-width: 130px;
  padding: 0.6rem 1rem;
}

.mgmt-sub-level {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  justify-content: center;
}

/* Credibility */
.cred-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.cred-item-card {
  background: #fff;
  border-radius: 6px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: all 0.3s;
  border-left: 4px solid var(--red);
}

.cred-item-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.cred-item-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cred-item-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

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

/* ---------- Services Page ---------- */
.service-detail-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 3rem;
  transition: box-shadow 0.3s;
}

.service-detail-card:hover { box-shadow: var(--shadow-lg); }

.service-detail-header {
  background: var(--red);
  color: #fff;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.service-detail-header-icon {
  width: 55px;
  height: 55px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.service-detail-header h2 {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-detail-header p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  margin-top: 0.2rem;
}

.service-detail-body {
  padding: 2.5rem;
}

.service-detail-body p { color: var(--gray); margin-bottom: 1rem; line-height: 1.8; }

.service-sub-list {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-sub-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--gray);
}

.service-sub-list li .icon {
  color: var(--red);
  font-size: 0.9rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.service-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.service-photo {
  border-radius: 6px;
  overflow: hidden;
  height: 150px;
}

.service-photo img { width: 100%; height: 100%; object-fit: cover; }
.service-photo.tall { height: 310px; }
.service-photo.full { grid-column: 1/-1; height: 220px; }

.vending-photo {
  border-radius: 6px;
  overflow: hidden;
  max-width: 380px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.vending-photo img { width: 100%; }

/* ---------- Contact Page ---------- */
.contact-section { padding: 5rem 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 0.2rem;
  text-transform: uppercase;
}

.contact-item-text p, .contact-item-text a {
  color: var(--gray);
  font-size: 0.92rem;
}

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

.contact-form-box {
  background: #fff;
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--red);
}

.contact-form-box h3 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  transition: border-color 0.2s;
  outline: none;
  background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(139,26,26,0.08);
}

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

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.map-embed {
  margin-top: 3rem;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 350px;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  text-align: center;
  color: var(--gray);
}

.map-placeholder i {
  font-size: 3rem;
  color: var(--red);
  margin-bottom: 1rem;
}

.map-placeholder p { font-size: 0.95rem; }
.map-placeholder a { color: var(--red); font-weight: 600; }

/* ---------- Footer ---------- */
footer {
  background: #111;
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 45px;
  height: 45px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 4px;
}

.footer-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.3;
}

.footer-col p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a::before {
  content: '›';
  color: var(--red);
  font-size: 1rem;
}

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

.footer-contact-items { display: flex; flex-direction: column; gap: 0.8rem; }

.footer-contact-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }

.footer-bottom span { color: var(--red); }

/* ---------- Gallery Slider ---------- */
.gallery-section { background: var(--light-bg); }

.gallery-slider {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  max-width: 900px;
  margin: 0 auto;
}

.gallery-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.gallery-slide {
  min-width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

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

.gallery-prev { left: 1rem; }
.gallery-next { right: 1rem; }

.gallery-prev:hover,
.gallery-next:hover {
  background: var(--red);
  transform: translateY(-50%) scale(1.1);
}

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

.gallery-dot {
  width: 9px;
  height: 9px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.gallery-dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* ---------- Scroll to Top ---------- */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 999;
}

.scroll-top.show { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--red-dark); transform: translateY(-3px); }

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-content { margin-left: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-inner { grid-template-columns: 1fr; }
  .welcome-inner { grid-template-columns: 1fr; }
  .welcome-photo { display: flex; align-items: center; gap: 2rem; }
  .welcome-photo-frame { width: 160px; height: 190px; }
}

@media (max-width: 768px) {
  section { padding: 3rem 0; }
  .section-title { font-size: 1.55rem; }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--red-dark);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.25rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  }

  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 0.75rem 1rem; }
  .nav-toggle { display: flex; }

  .hero-content {
    margin-left: 0;
    padding: 3rem 1.5rem;
    max-width: 100%;
  }

  .hero-stats { gap: 1rem; flex-wrap: wrap; }
  .hero-stat h3 { font-size: 1.5rem; }
  .hero-buttons { flex-direction: column; width: fit-content; }

  .vm-grid, .contact-grid, .service-detail-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .page-hero-content h1 { font-size: 1.8rem; }
  .page-hero { height: 220px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.4rem; }

  .welcome-photo { flex-direction: column; }

  .logos-grid { grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 1rem; }
  .logo-box { height: 75px; }

  .mgmt-level { gap: 0.75rem; }
  .mgmt-sub-level { flex-direction: column; align-items: center; }

  /* Services page */
  .service-detail-header { padding: 1.2rem 1.5rem; gap: 0.75rem; }
  .service-detail-header h2 { font-size: 1.15rem; }
  .service-detail-header-icon { width: 44px; height: 44px; font-size: 1.2rem; }
  .service-detail-body { padding: 1.5rem; }
  .equip-grid { grid-template-columns: 1fr 1fr; }
  .services-nav-inner { padding: 0 0.75rem; }
  .services-nav a { padding: 0.85rem 0.9rem; font-size: 0.75rem; }

  /* Contact page */
  .contact-card { padding: 1.5rem; }
  .contact-form-box { padding: 1.5rem; }
  .map-wrapper { height: 260px; }

  /* CTA strip */
  .cta-strip h2 { font-size: 1.35rem; }
  .cta-strip p { font-size: 0.9rem; }
  .cta-strip { padding: 3rem 0; }

  /* Credibility list */
  .cred-list { grid-template-columns: 1fr; }

  /* About page */
  .welcome-photo-frame { width: 180px; height: 220px; }
  .welcome-content blockquote { font-size: 0.95rem; }
  .vm-card { padding: 1.5rem; }

  /* Home about section */
  .about-services-list li { font-size: 0.88rem; }

}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .section-title { font-size: 1.3rem; }

  /* Hero stats: 2x2 grid */
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.5rem; }
  .hero-stat h3 { font-size: 1.4rem; }

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

  .service-photos { grid-template-columns: 1fr; }
  .service-photos .service-photo.full { grid-column: 1; }
  .why-image-grid { grid-template-columns: 1fr; }

  /* Prevent service cards overflowing */
  .services-grid { grid-template-columns: 1fr; }

  /* Equip grid single col on very small screens */
  .equip-grid { grid-template-columns: 1fr; }

  /* Logos grid */
  .logos-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
  .logo-box { height: 65px; padding: 0.75rem; }
  .logo-box img { max-height: 40px; }

  /* Buttons */
  .btn { padding: 0.65rem 1.4rem; font-size: 0.82rem; }

  /* Service detail */
  .service-detail-header { flex-wrap: wrap; }
  .service-detail-body { padding: 1.2rem; }

  /* Contact form box */
  .contact-form-box { padding: 1.2rem; }

  /* CTA strip */
  .cta-strip h2 { font-size: 1.2rem; }
  .cta-strip { padding: 2.5rem 0; }

  /* Page hero */
  .page-hero { height: 180px; }
  .page-hero-content h1 { font-size: 1.5rem; }

  /* FAQ grid */
  .faq-grid { grid-template-columns: 1fr; }

  /* VM cards */
  .vm-card { padding: 1.2rem; }

  /* Medical photos: 2 col on tiny screens */
  .medical-photos { grid-template-columns: 1fr 1fr; }

  /* Cred strip items */
  .cred-item h3 { font-size: 1.6rem; }

  /* Nav brand – hide tagline on very small */
  .nav-brand-tagline { display: none; }
}
