@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

:root {
  --main-blue: #1857b6;
  --main-blue-dark: #133a7c;
  --main-blue-light: #4fc3f7;
  --accent-blue: #00bcd4;
  --white: #fff;
  --dark: #222;
  --gray: #f5f5f5;
  --footer-bg: linear-gradient(120deg, #133a7c 0%, #1857b6 60%, #4fc3f7 100%);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--white);
  color: var(--dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background: var(--white);
  color: var(--main-blue);
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: none;
}

header::after {
  display: none !important;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2rem 1.1rem 2rem;
  background: var(--white);
  position: relative;
}

.logo {
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 1px;
  color: var(--main-blue);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.2rem;
  align-items: center;
}

.nav-links a {
  color: var(--main-blue);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.08rem;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-bottom 0.2s;
}

.nav-links a.active,
.nav-links a:hover {
  border-bottom: 2px solid var(--main-blue);
  color: #0d47a1;
}

/* Hamburger menu for mobile */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  margin-left: 1rem;
}

.hamburger span {
  height: 4px;
  width: 100%;
  background: var(--main-blue);
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 900px) {
  .navbar {
    padding: 0.7rem 1rem;
  }
  .nav-links {
    gap: 1.2rem;
  }
}

@media (max-width: 700px) {
  .navbar {
    flex-direction: row;
    padding: 0.7rem 0.5rem;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    flex-direction: column;
    width: 210px;
    box-shadow: 0 8px 32px rgba(25, 118, 210, 0.18);
    border-radius: 0 0 16px 16px;
    gap: 1.1rem;
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    display: none;
    z-index: 200;
    transition: opacity 0.25s, transform 0.25s;
    opacity: 0;
    transform: translateY(-10px);
  }
  .nav-links.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }
  .nav-links a {
    font-size: 1.13rem;
    padding: 0.5rem 0.2rem;
    border-radius: 8px;
    transition: background 0.18s, color 0.18s;
  }
  .nav-links a:active, .nav-links a:hover {
    background: var(--main-blue-light);
    color: #fff;
  }
  .hamburger {
    display: flex;
    width: 38px;
    height: 38px;
    margin-left: 1rem;
    background: rgba(24,87,182,0.07);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(24, 87, 182, 0.10);
    align-items: center;
    justify-content: center;
    transition: background 0.2s, box-shadow 0.2s;
  }
  .hamburger:active, .hamburger.open {
    background: var(--main-blue-light);
    box-shadow: 0 4px 16px rgba(24, 87, 182, 0.18);
  }
  .hamburger span {
    height: 5px;
    width: 28px;
    background: var(--main-blue);
    margin: 4px 0;
    border-radius: 3px;
    transition: 0.3s;
    display: block;
  }
  .main-slider { margin-top: 0; }
  .slider { border-radius: 12px; }
  .slide, .slide img { height: 180px; min-height: 180px; }
  .slide-overlay {
    padding: 0.7rem 0.5rem 1rem 0.5rem;
    font-size: 0.95rem;
    max-width: 100%;
    background: rgba(24, 40, 80, 0.82);
    text-align: center;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 4px 16px rgba(24, 40, 80, 0.18);
    min-height: 80px;
    display: flex;
    flex-direction: column;
    border: 1.5px solid rgba(255,255,255,0.13);
  }
  .slide-overlay h2 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
    color: var(--main-blue-light);
  }
  .slide-overlay p {
    font-size: 0.92rem;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0,0,0,0.13);
    color: #fff;
  }
  .slider-btn {
    display: none !important;
  }
}
@media (max-width: 400px) {
  .slide-overlay {
    padding: 0.4rem 0.2rem 0.7rem 0.2rem;
    min-height: 60px;
  }
  .slide-overlay h2 {
    font-size: 0.95rem;
  }
  .slide-overlay p {
    font-size: 0.8rem;
  }
}

/* Slider */
.main-slider {
  width: 100vw;
  max-width: 100%;
  background: var(--gray);
  margin-bottom: 2.5rem;
  margin-top: 0;
  display: block;
}

.slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(24, 87, 182, 0.10);
  min-height: 480px;
  background: var(--white);
  border: none;
  transition: none;
}

.slide {
  display: none;
  width: 100%;
  height: 480px;
  position: absolute;
  left: 0; top: 0;
  right: 0; bottom: 0;
  transition: opacity 0.5s;
  align-items: center;
  justify-content: center;
}

.slide.active {
  display: flex;
  position: relative;
  opacity: 1;
  z-index: 2;
}

.slide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.slide-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: rgba(24, 40, 80, 0.60);
  backdrop-filter: blur(6px);
  color: var(--white);
  padding: 4.2rem 4rem 4.5rem 4rem;
  border-radius: 0 0 18px 18px;
  text-align: left;
  max-width: 70%;
  box-shadow: 0 8px 32px rgba(24, 40, 80, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1.5px solid rgba(255,255,255,0.13);
}

.slide-overlay h2 {
  font-size: 3.1rem;
  margin-bottom: 1.1rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
  color: var(--main-blue-light);
}

.slide-overlay p {
  font-size: 1.5rem;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0,0,0,0.13);
  color: #fff;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(19,58,124,0.92);
  color: var(--main-blue-light);
  border: none;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 3;
  opacity: 0.92;
  transition: background 0.2s, opacity 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(19,58,124,0.13);
}

.slider-btn:hover {
  background: var(--main-blue-light);
  color: var(--main-blue-dark);
  opacity: 1;
  box-shadow: 0 8px 32px rgba(19,58,124,0.18);
}

.slider-btn.prev { left: 38px; }
.slider-btn.next { right: 38px; }

/* Services Grid */
.services-section {
  max-width: 1200px;
  margin: 0 auto 2.5rem auto;
  padding: 0 1.5rem;
}

.services-section h2 {
  color: var(--main-blue);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--main-blue-light);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(24, 87, 182, 0.06);
  padding: 1.2rem 1rem 1.5rem 1rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s, border 0.2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  will-change: transform, box-shadow;
}

.service-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1rem;
  border: 2px solid var(--main-blue);
  aspect-ratio: 1/1;
  background: var(--gray);
}

.service-card h3 {
  color: var(--main-blue);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.service-card p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #444;
}

.service-card:hover,
.service-card:focus,
.service-card:active {
  box-shadow: 0 8px 32px rgba(24, 87, 182, 0.13);
  transform: translateY(-6px) scale(1.03);
  border: 1.5px solid var(--main-blue);
  outline: none;
}

@media (hover: none) and (pointer: coarse) {
  .service-card:active {
    box-shadow: 0 8px 32px rgba(24, 87, 182, 0.18);
    transform: scale(0.97);
    border: 1.5px solid var(--main-blue-dark);
  }
}

/* Footer */
footer {
  background: var(--footer-bg);
  color: var(--white);
  text-align: center;
  padding: 3rem 1rem 1.5rem 1rem;
  margin-top: auto;
  border-top: none;
  box-shadow: 0 -2px 12px rgba(24, 87, 182, 0.08);
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 1.5rem auto;
  gap: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.footer-menu a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.08rem;
  transition: color 0.2s;
  letter-spacing: 0.2px;
}

.footer-menu a:hover {
  color: var(--main-blue-light);
  text-decoration: underline;
}

.footer-contact {
  font-size: 1.05rem;
  text-align: left;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.footer-contact a {
  color: #fff;
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  margin-top: 0.5rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(24, 87, 182, 0.08);
}

.footer-social img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  transition: filter 0.2s;
}

.footer-social a:hover {
  background: var(--main-blue-light);
}

.footer-social a:hover img {
  filter: none;
}

.footer-copy {
  font-size: 1rem;
  margin-top: 1.5rem;
  color: #e3f2fd;
  letter-spacing: 0.2px;
}

@media (max-width: 1100px) {
  .slider, .main-slider { min-height: 340px; }
  .slide, .slide img { height: 340px; }
  .slide-overlay { padding: 1.5rem 1rem 2rem 1rem; font-size: 1.1rem; max-width: 100%; }
  .service-card img { width: 90px; height: 90px; }
  .footer-main { gap: 1.2rem; }
}

@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
    align-items: center;
  }
  .footer-menu, .footer-contact {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .services-section h2 { font-size: 1.1rem; }
  .footer-main { gap: 0.2rem; }
  .footer-copy { font-size: 0.92rem; }
}

/* About Page Modern Styles */
.about-hero {
  width: 100vw;
  background: var(--gray);
  padding: 0;
  margin-bottom: 2.5rem;
}
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 3.5rem 2rem 3.5rem 2rem;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(24, 87, 182, 0.10);
}
.about-img {
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img img {
  width: 100%;
  max-width: 340px;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(24, 87, 182, 0.13);
  border: 2.5px solid var(--main-blue-light);
  object-fit: cover;
}
.about-text {
  flex: 2 1 400px;
  color: var(--main-blue-dark);
  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: 500;
}
.about-text h1 {
  color: var(--main-blue);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.about-text p {
  margin-bottom: 1.1rem;
  color: #333;
}
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 0.7rem 2.5rem 0.7rem;
  }
  .about-img {
    max-width: 100%;
  }
  .about-text {
    font-size: 1.05rem;
    text-align: center;
  }
}

/* Service Detail Modern Styles */
.service-detail-banner {
  width: 100vw;
  min-height: 320px;
  max-height: 420px;
  background: var(--gray);
  background-size: cover !important;
  background-position: center !important;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 2px 16px rgba(24, 87, 182, 0.10);
  margin-bottom: 2.5rem;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.service-detail-banner::after {
  content: '';
  display: block;
  position: absolute;
  left: 0; right: 0; bottom: 0; top: 0;
  background: linear-gradient(180deg, rgba(24,40,80,0.10) 0%, rgba(24,40,80,0.60) 100%);
  border-radius: 0 0 18px 18px;
  pointer-events: none;
}
.service-detail-content {
  max-width: 900px;
  margin: -120px auto 2.5rem auto;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(24, 87, 182, 0.10);
  padding: 2.5rem 2rem 2.5rem 2rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service-detail-content h1 {
  color: var(--main-blue);
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
}
.service-detail-content p {
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 1.1rem;
  line-height: 1.7;
}
.service-extra {
  font-size: 1.1rem;
  color: var(--main-blue-dark);
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.whatsapp-btn {
  display: inline-block;
  background: linear-gradient(90deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.7rem 1.7rem;
  border-radius: 24px;
  text-decoration: none;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(37,211,102,0.13);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.whatsapp-btn:hover {
  background: linear-gradient(90deg, #128c7e 0%, #25d366 100%);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px rgba(37,211,102,0.18);
}
.comment-section {
  width: 100%;
  max-width: 600px;
  margin: 2.5rem auto 0 auto;
  background: var(--gray);
  border-radius: 18px;
  padding: 2.2rem 1.7rem 2.2rem 1.7rem;
  box-shadow: 0 4px 24px rgba(24, 87, 182, 0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1.5px solid var(--main-blue-light);
  position: relative;
}
.comment-section h2 {
  color: var(--main-blue-dark);
  font-size: 1.45rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 8px rgba(24, 87, 182, 0.08);
}
#comments {
  width: 100%;
  max-width: 480px;
  margin: 0 auto 1.2rem auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  background: rgba(255,255,255,0.85);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(24, 87, 182, 0.07);
  padding: 1.1rem 1rem 1.1rem 1rem;
  border: 1px solid #e3f2fd;
}
#comments .comment {
  background: #fafdff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(24, 87, 182, 0.06);
  border: 1.2px solid var(--main-blue-light);
  padding: 1rem 1.2rem 0.9rem 1.2rem;
  color: #222;
  font-size: 1rem;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  word-break: break-word;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: box-shadow 0.2s, border 0.2s;
}
#comments .comment b {
  color: var(--main-blue-dark);
  font-size: 1.08rem;
  margin-bottom: 0.2rem;
  letter-spacing: 0.1px;
}
.comment-divider {
  width: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, #e3f2fd 0%, #b3d1f7 100%);
  border: none;
  margin: 2.1rem 0 1.2rem 0;
  border-radius: 2px;
  opacity: 0.7;
}
#commentForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 0;
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(24, 87, 182, 0.04);
  padding: 1.2rem 1rem 1.2rem 1rem;
  border: 1px solid #e3f2fd;
}
#commentForm input, #commentForm textarea {
  border: 1.5px solid var(--main-blue-light);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  resize: none;
  background: #fafdff;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(24, 87, 182, 0.04);
}
#commentForm input:focus, #commentForm textarea:focus {
  border: 1.5px solid var(--main-blue);
  outline: none;
  box-shadow: 0 2px 8px rgba(24, 87, 182, 0.10);
}
#commentForm button {
  background: var(--main-blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.8rem 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(24, 87, 182, 0.08);
}
#commentForm button:hover {
  background: var(--main-blue-dark);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(24, 87, 182, 0.13);
}
@media (max-width: 700px) {
  .comment-section {
    max-width: 98vw;
    padding: 1rem 0.2rem 1rem 0.2rem;
  }
  #commentForm, #comments, #comments .comment {
    max-width: 98vw;
  }
  #comments {
    padding: 0.7rem 0.2rem 0.7rem 0.2rem;
  }
}
@media (max-width: 900px) {
  .service-detail-content {
    margin: -60px auto 1.5rem auto;
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
  }
  .service-detail-banner {
    min-height: 180px;
    max-height: 220px;
  }
}
@media (max-width: 600px) {
  .service-detail-content h1 {
    font-size: 1.3rem;
  }
  .service-detail-content p, .service-extra {
    font-size: 1rem;
  }
  .service-detail-content {
    padding: 0.7rem 0.2rem 1rem 0.2rem;
  }
  .service-detail-banner {
    min-height: 110px;
    max-height: 140px;
    border-radius: 0 0 10px 10px;
  }
}

/* Service Detail Flex Layout */
.service-detail-flex {
  max-width: 900px;
  margin: 2.5rem auto 0 auto;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(24, 87, 182, 0.10);
  padding: 2.5rem 2rem 2.5rem 2rem;
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}
.service-detail-img {
  flex: 1 1 260px;
  max-width: 320px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.service-detail-img img {
  width: 100%;
  max-width: 260px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(24, 87, 182, 0.13);
  border: 2.5px solid var(--main-blue-light);
  object-fit: cover;
  aspect-ratio: 1/1;
  background: var(--gray);
}
.service-detail-info {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.service-detail-info h1 {
  color: var(--main-blue);
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
}
.service-detail-info p {
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 1.1rem;
  line-height: 1.7;
}
.service-extra {
  font-size: 1.1rem;
  color: var(--main-blue-dark);
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.whatsapp-btn {
  display: inline-block;
  background: linear-gradient(90deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.7rem 1.7rem;
  border-radius: 24px;
  text-decoration: none;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(37,211,102,0.13);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.whatsapp-btn:hover {
  background: linear-gradient(90deg, #128c7e 0%, #25d366 100%);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px rgba(37,211,102,0.18);
}
@media (max-width: 900px) {
  .service-detail-flex {
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    align-items: center;
  }
  .service-detail-img {
    max-width: 100%;
    justify-content: center;
  }
  .service-detail-img img {
    max-width: 180px;
  }
  .service-detail-info h1 {
    font-size: 1.3rem;
  }
  .service-detail-info p, .service-extra {
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .service-detail-flex {
    padding: 0.7rem 0.2rem 1rem 0.2rem;
  }
  .service-detail-img img {
    max-width: 120px;
  }
}
@media (max-width: 700px) {
  .service-detail-flex {
    flex-direction: column;
    gap: 1.2rem;
    padding: 1rem 0.2rem 1.2rem 0.2rem;
    align-items: center;
  }
  .service-detail-img {
    max-width: 100%;
    justify-content: center;
    width: 100%;
    margin-bottom: 0.7rem;
  }
  .service-detail-img img {
    max-width: 90vw;
    min-width: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
  .service-detail-info {
    width: 100%;
    align-items: center;
    text-align: center;
    padding: 0 0.2rem;
  }
  .service-detail-info h1 {
    font-size: 1.1rem;
  }
  .service-detail-info p, .service-extra {
    font-size: 0.98rem;
  }
  .comment-section {
    margin-top: 1.2rem;
    padding: 1rem 0.2rem 1rem 0.2rem;
  }
}

.img-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,40,80,0.88);
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.img-modal[style*='display: flex'] {
  display: flex !important;
}
.img-modal-content {
  max-width: 92vw;
  max-height: 80vh;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(24, 87, 182, 0.25);
  border: 3px solid var(--main-blue-light);
  background: #fff;
  object-fit: contain;
  transition: box-shadow 0.2s;
}
.img-modal-close {
  position: absolute;
  top: 32px;
  right: 38px;
  color: #fff;
  font-size: 2.7rem;
  font-weight: 700;
  cursor: pointer;
  text-shadow: 0 2px 12px #000, 0 0px 2px #1857b6;
  z-index: 10001;
  transition: color 0.2s, transform 0.2s;
}
.img-modal-close:hover {
  color: var(--main-blue-light);
  transform: scale(1.15);
}
@media (max-width: 700px) {
  .img-modal-content {
    max-width: 98vw;
    max-height: 60vh;
    border-radius: 10px;
  }
  .img-modal-close {
    top: 12px;
    right: 18px;
    font-size: 2.1rem;
  }
} 
