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

:root {
  --header-offset: 80px;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --red-600: #dc2626;
  --red-700: #b91c1c;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--slate-900);
  color: var(--white);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

a:hover {
  color: var(--orange-400);
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: all 0.3s;
}

header.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-image {
  height: 48px;
  width: auto;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-image img {
  height: 100%;
  width: auto;
}

.logo-text h1 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.logo-text p {
  font-size: 0.75rem;
  color: var(--orange-400);
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  color: var(--white);
  font-weight: 500;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange-500), var(--red-600));
  color: var(--white) !important;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-primary:hover {
  box-shadow: 0 10px 40px rgba(249, 115, 22, 0.5);
  transform: translateY(-2px);
  color: var(--white) !important;
}

.btn-secondary {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
  background: transparent;
  cursor: pointer;
  display: inline-block;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--slate-900), var(--slate-800), var(--slate-900));
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  pointer-events: none;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.shape-1 {
  top: 80px;
  left: 40px;
  width: 300px;
  height: 300px;
  background: var(--orange-500);
}

.shape-2 {
  bottom: 80px;
  right: 40px;
  width: 400px;
  height: 400px;
  background: var(--red-600);
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 .highlight,
.highlight {
  color: var(--orange-500);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gray-300);
  margin-bottom: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero .highlight-text {
  color: var(--orange-500);
  font-weight: 500;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(8px);
}

.feature-card svg {
  color: var(--orange-400);
  margin: 0 auto 0.75rem;
}

.feature-card h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.feature-card p {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 0;
}

.section {
  padding: 5rem 0;
}

.section-dark {
  background: var(--slate-800);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--orange-500);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.125rem;
  color: var(--white);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  position: relative;
  border: 1px solid var(--slate-600);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  display: block;
  min-height: 350px;
}

.service-card:hover {
  border-color: var(--orange-500);
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.2);
  transform: translateY(-4px);
}

.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s;
}

.service-card:hover .service-card-bg {
  transform: scale(1.1);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  transition: background 0.3s;
}

.service-card:hover .service-card-overlay {
  background: rgba(15, 23, 42, 0.4);
}

.service-card-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.service-card p {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.service-features {
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.service-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange-500);
  border-radius: 50%;
  flex-shrink: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-content h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about-content .intro {
  font-size: 1.125rem;
  color: var(--gray-300);
  margin-bottom: 1.5rem;
}

.about-content .intro strong {
  color: var(--orange-500);
}

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

.about-points {
  margin-top: 1.5rem;
}

.about-point {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.about-point-dot {
  width: 8px;
  height: 8px;
  background: var(--orange-500);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.about-point h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--white);
}

.about-point p {
  font-size: 0.9rem;
  color: var(--gray-400);
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-expertise {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-top: -2rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 40px rgba(249, 115, 22, 0.3);
  transition: all 0.3s;
}

.about-expertise:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(249, 115, 22, 0.4);
}

.about-expertise p {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .about-expertise {
    position: absolute;
    bottom: -2rem;
    left: 1rem;
    right: 1rem;
    margin-top: 0;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
  border: 1px solid var(--slate-700);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.contact-card:hover {
  border-color: rgba(249, 115, 22, 0.5);
  transform: translateY(-4px);
}

.contact-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--orange-500), var(--red-600));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.contact-icon svg {
  color: var(--white);
}

.contact-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.contact-card p {
  color: var(--gray-300);
  font-size: 1.1rem;
}

.schedule-box {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(220, 38, 38, 0.1));
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 16px;
  padding: 2rem;
}

.schedule-box h4 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.schedule-item p:first-child {
  color: var(--gray-300);
  margin-bottom: 0.5rem;
}

.schedule-item p:last-child {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
}

.contact-cta {
  text-align: center;
  margin-top: 3rem;
  color: var(--gray-300);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

footer {
  background: var(--slate-900);
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.footer-brand .logo-image {
  height: 48px;
  border-radius: 8px;
}

.footer-brand h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand p {
  font-size: 0.75rem;
  color: var(--orange-400);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.social-link:hover {
  background: var(--orange-500);
}

.social-link svg {
  color: var(--white);
}

.footer-section h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--gray-400);
  font-size: 0.9rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--gray-400);
  font-size: 0.9rem;
}

.footer-contact-item svg {
  color: var(--orange-400);
  flex-shrink: 0;
  margin-top: 3px;
}

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

.footer-bottom p {
  color: var(--gray-400);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--gray-400);
  font-size: 0.875rem;
}

.service-page-hero {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--orange-600), var(--red-700));
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}

.service-page-hero.has-bg-image {
  background: none;
}

.service-page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
}

.service-page-hero-content {
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.service-page-hero svg {
  color: var(--white);
}

.service-page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.service-page-hero p {
  font-size: 1.125rem;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

.back-link {
  position: absolute;
  top: 100px;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 600;
  transition: color 0.3s;
}

.back-link:hover {
  color: var(--orange-500);
}

.service-page-content {
  background: rgba(15, 23, 42, 0.95);
  padding: 4rem 0;
}

.service-section {
  max-width: 900px;
  margin: 0 auto;
}

.service-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--orange-500);
  margin-bottom: 1.5rem;
}

.service-detail-card {
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-detail-header {
  display: flex;
  gap: 1rem;
}

.check-icon {
  color: var(--orange-500);
  flex-shrink: 0;
  margin-top: 3px;
}

.service-detail-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.service-detail-content p {
  color: var(--white);
  margin-bottom: 1rem;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.gallery-image {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-image:hover {
  transform: scale(1.05);
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu {
  display: none;
  padding: 1rem 0;
  background: var(--slate-900);
}

.mobile-menu.active {
  display: block;
  padding: 30px;
  border-radius: 15px;
}

.mobile-menu a,
.mobile-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem 0;
  color: var(--white);
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  max-width: 90vw;
  max-height: 90vh;
}

.modal-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s;
}

.modal-nav:hover {
  background: var(--orange-500);
}

.modal-nav.prev {
  left: 1rem;
}

.modal-nav.next {
  right: 1rem;
}

.modal-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.modal-nav:disabled:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lang-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
  min-width: 45px;
  text-align: center;
}

.lang-btn:hover {
  background: var(--orange-500);
  border-color: var(--orange-500);
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-offset: 70px;
  }

  nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .container {
    padding: 0 1rem;
  }

  .header-content {
    height: 70px;
  }

  .logo-image {
    height: 40px;
  }

  .logo-text h1 {
    font-size: 1.1rem;
  }

  .logo-text p {
    font-size: 0.7rem;
  }

  .hero {
    padding-top: 70px;
    min-height: auto;
    padding-bottom: 3rem;
  }

  .hero-content {
    padding: 1.5rem 1rem;
  }

  .hero h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }

  .hero .highlight-text {
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 100%;
  }

  .feature-card {
    padding: 1.25rem;
  }

  .feature-card h3 {
    font-size: 0.85rem;
  }

  .feature-card p {
    font-size: 0.75rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-title {
    margin-bottom: 2rem;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

  .section-title p {
    font-size: 1rem;
    padding: 0 0.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    min-height: 300px;
  }

  .service-card-content {
    padding: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.25rem;
  }

  .service-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .about-content h2 {
    font-size: 1.5rem;
  }

  .about-content .intro {
    font-size: 1rem;
  }

  .about-content .description {
    font-size: 0.9rem;
  }

  .about-image img {
    height: 280px;
  }

  .about-expertise {
    padding: 1.25rem 1.5rem;
    margin-top: -1.5rem;
  }

  .about-expertise p {
    font-size: 0.9rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .contact-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
  }

  .contact-card h4 {
    font-size: 1.1rem;
  }

  .contact-card p {
    font-size: 1rem;
  }

  .schedule-box {
    padding: 1.5rem;
  }

  .schedule-box h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .schedule-item {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
  }

  .contact-cta {
    font-size: 0.9rem;
    margin-top: 2rem;
    padding: 0 0.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-section {
    text-align: center;
  }

  .footer-section h4 {
    margin-bottom: 0.75rem;
  }

  .footer-contact-item {
    justify-content: center;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .service-page-hero {
    min-height: 400px;
    padding-top: 80px;
  }

  .service-page-hero h1 {
    font-size: 1.5rem;
  }

  .service-page-hero p {
    font-size: 1rem;
    padding: 0 0.5rem;
  }

  .service-page-hero svg {
    width: 48px;
    height: 48px;
  }

  .back-link {
    top: 80px;
    left: 1rem;
    font-size: 0.9rem;
  }

  .back-link svg {
    width: 18px;
    height: 18px;
  }

  .service-page-content {
    padding: 2.5rem 0;
  }

  .service-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }

  .service-detail-card {
    padding: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .service-detail-content h3 {
    font-size: 1.1rem;
  }

  .service-detail-content p {
    font-size: 0.9rem;
  }

  .image-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .gallery-image {
    aspect-ratio: 1/1;
  }

  .modal-nav {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .modal-close {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  :root {
    --header-offset: 60px;
  }

  .container {
    padding: 0 0.75rem;
  }

  .header-content {
    height: 60px;
  }

  .logo-image {
    height: 36px;
  }

  .logo-text h1 {
    font-size: 1rem;
  }

  .logo-text p {
    font-size: 0.65rem;
  }

  .hero {
    padding-top: 60px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
  }

  .feature-card {
    padding: 1rem;
  }

  .feature-card svg {
    width: 24px;
    height: 24px;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-title h2 {
    font-size: 1.35rem;
  }

  .section-title p {
    font-size: 0.9rem;
  }

  .service-card {
    min-height: 280px;
  }

  .service-card-content {
    padding: 1.25rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.85rem;
  }

  .service-features li {
    font-size: 0.8rem;
  }

  .about-content h2 {
    font-size: 1.35rem;
  }

  .about-content .intro {
    font-size: 0.95rem;
  }

  .about-content .description {
    font-size: 0.85rem;
  }

  .about-point h4 {
    font-size: 0.95rem;
  }

  .about-point p {
    font-size: 0.85rem;
  }

  .about-image img {
    height: 220px;
  }

  .about-expertise {
    padding: 1rem 1.25rem;
  }

  .about-expertise p {
    font-size: 0.85rem;
  }

  .contact-card {
    padding: 1.25rem;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
  }

  .contact-card h4 {
    font-size: 1rem;
  }

  .contact-card p {
    font-size: 0.9rem;
  }

  .schedule-box {
    padding: 1.25rem;
  }

  .schedule-box h4 {
    font-size: 1.1rem;
  }

  .schedule-item p:first-child {
    font-size: 0.85rem;
  }

  .schedule-item p:last-child {
    font-size: 0.95rem;
  }

  .service-page-hero {
    min-height: 350px;
    padding-top: 70px;
  }

  .service-page-hero h1 {
    font-size: 1.35rem;
  }

  .service-page-hero p {
    font-size: 0.9rem;
  }

  .service-page-hero svg {
    width: 40px;
    height: 40px;
  }

  .back-link {
    top: 70px;
    font-size: 0.85rem;
    z-index: 1000;
  }

  .service-page-content {
    padding: 2rem 0;
  }

  .service-section h2 {
    font-size: 1.35rem;
  }

  .service-detail-card {
    padding: 1rem;
  }

  .service-detail-content h3 {
    font-size: 1rem;
  }

  .service-detail-content p {
    font-size: 0.85rem;
  }

  .image-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .footer-brand .logo-image {
    height: 40px;
  }

  .footer-brand h3 {
    font-size: 1.1rem;
  }

  .footer-section h4 {
    font-size: 0.95rem;
  }

  .footer-section a {
    font-size: 0.85rem;
  }

  .footer-contact-item {
    font-size: 0.85rem;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }

  .mobile-menu a {
    padding: 1.4rem 0;
    font-size: 1.2rem;
  }

  .mobile-menu .lang-btn {
    padding: 0.65rem 0;
    font-size: 0.95rem;
  }

  .lang-btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
    min-width: 40px;
  }
}
