/* Reset default margins */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: white;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1E3A8A; /* Dark blue */
    padding: 3rem 4rem;
}

.logo img {
    height: 70px;
    transition: transform 0.3s;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #A5D8FF; /* Light blue on hover */
}

/* Language Dropdown */
.language-dropdown {
    position: relative;
    display: inline-block;
}

.lang-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 50px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: #1E3A8A;
    padding: 8px 12px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.language-dropdown:hover .dropdown-content {
    display: block;
}
/* ===== ENHANCED STYLES FOR FINFREASH KLEANERZ ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
}

body {
    background-color: #fefefe;
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(30, 58, 138, 0.8); /* semi-transparent blue */
    backdrop-filter: blur(10px); /* glass blur effect */
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1000;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 3px 0;
  border-radius: 2px;
  transition: 0.3s;
}


.logo img {
    height: 40px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #A5D8FF;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(165, 216, 255, 0.6);
}

/* ===== LANGUAGE DROPDOWN ===== */
.language-dropdown {
    position: relative;
    display: inline-block;
}

.lang-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.lang-btn:hover {
    background: white;
    color: #1E3A8A;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background: white;
    min-width: 80px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1000;
}

.dropdown-content a {
    color: #1E3A8A;
    padding: 10px 14px;
    text-decoration: none;
    display: block;
    transition: background 0.3s ease;
}

.dropdown-content a:hover {
    background: #e0f2ff;
}

.language-dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.4s ease;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Optional: Water ripple effect (on click) */
.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
/* ===== PARTICLES BACKGROUND ===== */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
}

body {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Social Icons Style */
.social-icons-desktop {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-left: 40px; /* Adjust this for spacing */
}

.social-icons-desktop a {
    display: inline-block;
    padding: 0; /* Remove extra padding */
    margin: 0;  /* Remove extra margin */
    line-height: 1;
}

.social-link {
    display: inline-block;
}

.social-icon {
    height: 28px;
    width: 28px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.2s;
    padding: 0;
    box-shadow: none;
    background: none;
}

.social-link:hover,
.social-icon:hover {
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    transform: scale(1.13);
}

/* Hide desktop social icons on mobile */
@media (max-width: 992px) {
    .social-icons-desktop {
        display: none !important;
    }
}

/* Sidebar social icons: horizontal row, only on mobile */
.social-icons-sidebar {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
}

.social-icons-sidebar a {
    padding: 0;
    margin: 0;
    line-height: 1;
}

@media (min-width: 993px) {
    .social-icons-sidebar {
        display: none !important;
    }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.55);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1rem;
  max-width: 950px;
}

.hero-label {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: .6rem;
  opacity: .9;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: .5rem;
  font-weight: 700;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 1.5rem;
}

.hero-ctas { margin-top: 12px; }
.btn { padding: .6rem 1rem; border-radius: 8px; text-decoration:none; font-weight:600; margin:0 .4rem; }
.btn-primary { background:#1E3A8A; color:#fff; }
.btn-ghost { background: rgba(255,255,255,0.92); color:#1E3A8A; }

/* fallback for mobile: hide video, show bg image */
@media (max-width: 600px) {

}
/* ===== car home yard pics and speech===== */
.services-preview {
  background: #fff;
  padding: 60px 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.service-block {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 900px;
  width: 100%;
  background: #f8fafc;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(30,58,138,0.07);
  padding: 32px;
}

.service-info h2 {
  font-size: 1.5rem;
  color: #1E3A8A;
  margin-bottom: 10px;
}

.service-info p {
  font-size: 1.05rem;
  color: #222;
  opacity: 0.95;
}

.service-img {
  width: 180px;
  height: 140px;
  object-fit: cover;
  border-radius: 18px;
  animation: floaty 3s ease-in-out infinite;
  box-shadow:
    0 8px 32px rgba(30,58,138,0.18),
    0 2px 8px rgba(30,58,138,0.09);
  transition: transform 0.25s, box-shadow 0.25s;
  background: linear-gradient(135deg, #e0f2ff 0%, #fff 100%);
  position: relative;
}

/* Responsive for mobile */
@media (max-width: 700px) {
  .service-block {
    flex-direction: column;
    text-align: center;
    padding: 18px;
    gap: 18px;
  }
  .service-img {
    width: 90vw;
    max-width: 340px;
    height: 180px;
    margin: 0 auto;
  }
}
/* ===== anime home page pnjs ===== */
@keyframes floaty {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-18px) scale(1.04); }
  100% { transform: translateY(0); }
}

.service-img {
  animation: floaty 3s ease-in-out infinite;
  box-shadow:
    0 8px 32px rgba(30,58,138,0.18),
    0 2px 8px rgba(30,58,138,0.09);
  border-radius: 18px;
  transition: transform 0.25s, box-shadow 0.25s;
  background: linear-gradient(135deg, #e0f2ff 0%, #fff 100%);
  position: relative;
}

.service-block:hover .service-img,
.service-img:hover {
  transform: translateY(-24px) scale(1.08);
  box-shadow:
    0 16px 48px rgba(30,58,138,0.22),
    0 4px 16px rgba(165,216,255,0.18),
    0 0 24px #A5D8FF;
  z-index: 2;
}

/* ===== FOOTER ===== */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.site-footer {
  background: #1E3A8A;
  color: #fff;
  padding: 40px 0 18px 0;
  margin-top: auto;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 950px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-contact h3,
.footer-socials h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #fff;
}

.footer-contact p,
.footer-contact a {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 8px;
  text-decoration: none;
}

.footer-contact i {
  margin-right: 8px;
  color: #A5D8FF;
}

.footer-logos {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
  background: #1E3A8A;
  padding: 4px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(30,58,138,0.08);
}

.footer-icon:hover {
  transform: scale(1.13);
  box-shadow: 0 4px 16px #A5D8FF;
}

.footer-bottom {
  text-align: center;
  margin-top: 28px;
  font-size: 0.95rem;
  color: #fff;
  opacity: 0.85;
}

/* Responsive for mobile */
@media (max-width: 700px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
  }
  .footer-logos {
    justify-content: center;
  }
}

/* ===== FAQ SECTION STYLES ===== */
.faqs-hero {
  background: #1E3A8A;
  color: #fff;
  padding: 32px 0 16px 0;
  text-align: center;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 4px 24px rgba(30,58,138,0.08);
}
.faqs-hero-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px #A5D8FF;
}
.faqs-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.faqs-list {
  max-width: 700px;
  margin: 0 auto;
  padding: 32px 0;
}
.faq-category {
  margin-bottom: 22px;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(30,58,138,0.07);
  background: #f8fafc;
  overflow: hidden;
}
.faq-toggle {
  width: 100%;
  background: #A5D8FF;
  color: #1E3A8A;
  font-weight: bold;
  border: none;
  border-radius: 0;
  padding: 18px 24px;
  font-size: 1.18rem;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s, color 0.2s;
  border-bottom: 1px solid #e0f2ff;
  letter-spacing: 0.5px;
}
.faq-toggle.active,
.faq-toggle:hover {
  background: #1E3A8A;
  color: #fff;
}
.faq-content {
  display: none;
  background: #fff;
  border-radius: 0 0 16px 16px;
  padding: 18px 28px;
  font-size: 1.07rem;
  color: #222;
  box-shadow: 0 2px 8px rgba(30,58,138,0.07);
}
.faq-content p {
  margin-bottom: 12px;
  line-height: 1.6;
}
@media (max-width: 700px) {
  .faqs-list { padding: 12px 0; }
  .faqs-hero-img { width: 60px; height: 60px; }
  .faq-content { padding: 14px 12px; font-size: 1rem; }
}

/* ===== ABOUT SECTION STYLES ===== */
.about-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  margin-bottom: 0;
}

.about-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.7) blur(1px);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 2;
}

.about-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 32px 18px 48px 18px;
  background: none; /* Remove light blue box */
  border-radius: 0;
  box-shadow: none;
}

.about-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 1px;
  text-shadow: 0 2px 12px rgba(30,58,138,0.25);
}

.about-hero-story {
  font-size: 1.15rem;
  opacity: 0.97;
  margin-bottom: 24px;
  line-height: 1.7;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(30,58,138,0.18);
}

.about-team-hero {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 32px;
  margin-bottom: 12px;
}

.team-member-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.team-img-hero-big {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 24px #A5D8FF;
  border: 5px solid #fff;
  background: #e0f2ff;
  transition: transform 0.2s;
}

.team-img-hero-big:hover {
  transform: scale(1.09);
  box-shadow: 0 8px 32px #A5D8FF;
}

.team-name-hero {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: 0.5px;
  margin-top: 6px;
  text-shadow: 0 2px 8px rgba(30,58,138,0.12);
}

@media (max-width: 700px) {
  .about-hero { height: auto; min-height: 220px; }
  .about-hero-content { max-width: 98%; padding: 18px 6px 32px 6px; }
  .about-team-hero { gap: 18px; margin-top: 18px; }
  .team-img-hero-big { width: 80px; height: 80px; }
  .team-name-hero { font-size: 1rem; }
}

/* ===== CONTACT SECTION STYLES ===== */
.contact-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0;
}

.contact-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6) blur(1px);
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 2;
}

.contact-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 32px 18px;
}

.contact-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.contact-hero-desc {
  font-size: 1.15rem;
  opacity: 0.92;
  margin-bottom: 18px;
}

.contact-hero-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.contact-hero-details div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.13rem;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 8px 18px;
  font-weight: 600;
}

.contact-hero-details i {
  font-size: 1.3rem;
  color: #A5D8FF;
}

.contact-hero-details a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.contact-hero-details a:hover {
  color: #A5D8FF;
}

.contact-hero-socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 8px;
}

@media (max-width: 700px) {
  .contact-hero {
    height: 340px;
    min-height: 220px;
  }
  .contact-hero-title { font-size: 1.5rem; }
  .contact-hero-content { padding: 18px 6px; }
  .contact-hero-details div { font-size: 1rem; padding: 6px 10px; }
}

/* ===== TERMS SECTION STYLES ===== */
.terms-hero {
  background: #1E3A8A;
  color: #fff;
  text-align: center;
  padding: 38px 0 22px 0;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 4px 24px rgba(30,58,138,0.08);
}

.terms-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.terms-desc {
  font-size: 1.13rem;
  opacity: 0.88;
  margin-bottom: 0;
}

.terms-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.terms-block {
  background: #f8fafc;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(30,58,138,0.07);
  padding: 22px 28px;
  color: #1E3A8A;
}

.terms-block h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #2563eb;
  letter-spacing: 0.5px;
}

.terms-block p {
  font-size: 1.07rem;
  color: #222;
  opacity: 0.96;
  line-height: 1.7;
}

@media (max-width: 700px) {
  .terms-hero { padding: 22px 0 12px 0; }
  .terms-title { font-size: 1.5rem; }
  .terms-content { padding: 12px 0; gap: 16px; }
  .terms-block { padding: 14px 10px; }
  .terms-block h3 { font-size: 1.05rem; }
  .terms-block p { font-size: 1rem; }
}

/* ===== POLICY SECTION STYLES ===== */
.policy-hero {
  background: #1E3A8A;
  color: #fff;
  text-align: center;
  padding: 38px 0 22px 0;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 4px 24px rgba(30,58,138,0.08);
}

.policy-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.policy-desc {
  font-size: 1.13rem;
  opacity: 0.88;
  margin-bottom: 0;
}

.policy-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.policy-block {
  background: #f8fafc;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(30,58,138,0.07);
  padding: 22px 28px;
  color: #1E3A8A;
}

.policy-block h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #2563eb;
  letter-spacing: 0.5px;
}

.policy-block p {
  font-size: 1.07rem;
  color: #222;
  opacity: 0.96;
  line-height: 1.7;
}

@media (max-width: 700px) {
  .policy-hero { padding: 22px 0 12px 0; }
  .policy-title { font-size: 1.5rem; }
  .policy-content { padding: 12px 0; gap: 16px; }
  .policy-block { padding: 14px 10px; }
  .policy-block h3 { font-size: 1.05rem; }
  .policy-block p { font-size: 1rem; }
}

/* ===== SERVICES SECTION STYLES ===== */
.services-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0;
}

.services-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.7) blur(1px);
}

.services-hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 2;
}

.services-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 32px 18px;
}

.services-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.services-hero-desc {
  font-size: 1.15rem;
  opacity: 0.92;
  margin-bottom: 28px;
}

.services-btns {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 18px;
}

.service-btn {
  background: #A5D8FF;
  color: #1E3A8A;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 18px 32px;
  font-size: 1.18rem;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(30,58,138,0.09);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-btn:hover {
  background: #1E3A8A;
  color: #fff;
  transform: scale(1.07);
}

@media (max-width: 700px) {
  .services-hero { height: 340px; min-height: 220px; }
  .services-hero-title { font-size: 1.5rem; }
  .services-hero-content { padding: 18px 6px; }
  .services-btns { flex-direction: column; gap: 16px; }
  .service-btn { padding: 12px 10px; font-size: 1rem; }
}

/* Service Detail Tabs */
.service-detail-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0;
}
.service-detail-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.7) blur(1px);
}
.service-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 2;
}
.service-detail-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 32px 18px;
}
.service-detail-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.service-detail-desc {
  font-size: 1.13rem;
  opacity: 0.96;
  margin-bottom: 0;
  line-height: 1.7;
}
@media (max-width: 700px) {
  .service-detail-hero { height: 340px; min-height: 220px; }
  .service-detail-title { font-size: 1.2rem; }
  .service-detail-hero-content { padding: 18px 6px; }
  .service-detail-desc { font-size: 1rem; }
}