/* Components - unlujenerator.com
 * Yeniden kullanılabilir bileşenler (button, card, nav, vb.)
 */

@layer components {
  /* Button */
  .btn {
    display: inline-block;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: 0.2s;
  }

  .btn:focus-visible {
    outline: 2px solid var(--color-secondary);
    outline-offset: 2px;
  }

  .btn--primary {
    background: var(--color-primary);
    color: #fff;
  }

  /* Kontrast kontrolü: #0E5A8A üzerine #fff = ~7.5:1 (WCAG AA geçer) */

  .btn--primary:hover {
    filter: brightness(1.05);
  }

  .btn--secondary {
    background: var(--color-secondary);
    color: #111;
  }

  /* Kontrast kontrolü: #FFB703 üzerine #111 = ~8.2:1 (WCAG AA geçer) */

  .btn--secondary:hover {
    filter: brightness(1.05);
  }

  .btn--large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
  }

  /* Card */
  .card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  }

  /* Basit grid yardımcıları */
  .grid {
    display: grid;
    gap: var(--space-5);
  }

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

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

  /* === Header & Navigation === */

  /* Masaüstü varsayılan */
  .site-header {
    background: var(--color-header-bg-grad);
    color: var(--color-header-fg);
    border-bottom: 1px solid var(--color-header-hairline);
    position: sticky;
    top: 0;
    z-index: 50;
    will-change: transform;
    transform: translateZ(0);
  }

  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
  }

  .logo {
    font-weight: 700;
    text-decoration: none;
    color: var(--color-header-fg-strong);
    letter-spacing: 0.5px;
    font-size: 1.1rem;
    white-space: nowrap;
  }

  .logo:hover,
  .logo:focus {
    color: var(--color-header-hover);
  }

  .nav-toggle {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius);
    color: var(--color-header-fg);
    padding: 6px 10px;
    cursor: pointer;
    line-height: 1.2;
    font-size: 1.25rem;
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-toggle:focus-visible {
    outline: 2px solid var(--color-secondary);
    outline-offset: 2px;
  }

  /* Menü */
  .site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    position: relative;
  }

  .site-nav .nav-menu {
    display: flex;
    gap: 20px;
    align-items: center;
  }

  .site-nav a {
    color: var(--color-header-fg);
    text-decoration: none;
    border-radius: 6px;
    padding: 10px 14px;
    transition: background 0.15s ease, color 0.15s ease;
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .site-nav a:hover,
  .site-nav a:focus {
    background: var(--color-header-active-bg);
    color: var(--color-header-hover);
  }

  .site-nav a[aria-current="page"] {
    background: var(--color-header-active-bg);
    color: var(--color-header-hover); /* kare kutu + beyaz yazı */
  }

  /* Mobil kırılım */
  @media (max-width: 768px) {
    .site-header {
      background: var(--color-header-mobile-bg);
      color: var(--color-header-mobile-fg);
      border-bottom: 1px solid #e5e7eb;
      box-shadow: var(--shadow-1);
      border-radius: 10px 10px 0 0; /* görseldeki kart hissi */
    }

    .header-container {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 16px 0;
      position: relative;
    }

    .logo {
      color: var(--color-header-mobile-fg);
      font-size: 1.15rem;
      text-align: center;
      order: 1;
      width: 100%;
      font-weight: 600;
      letter-spacing: 0.3px;
    }

    .nav-toggle {
      border-color: #cbd5e1;
      color: var(--color-primary); /* hamburger lacivert */
      order: 2;
      margin: 0 auto;
      font-size: 1.4rem;
      padding: 8px 12px;
      border-radius: 6px;
      background: transparent;
    }

    .site-nav {
      position: relative;
      width: 100%;
      order: 3;
    }

    .site-nav .nav-menu {
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding: 0;
      background: #fff;
      border-top: 1px solid #e5e7eb;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      z-index: 100;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      max-height: 0;
      overflow: hidden;
      visibility: hidden;
      transition: max-height 0.3s ease-out, opacity 0.2s ease-out, visibility 0s 0.3s, padding 0.3s ease-out;
      opacity: 0;
    }

    .site-nav .nav-menu.is-open {
      max-height: 90vh;
      opacity: 1;
      visibility: visible;
      padding: 12px 0;
      transition: max-height 0.3s ease-out, opacity 0.2s ease-out, visibility 0s, padding 0.3s ease-out;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }

    .site-nav a {
      color: var(--color-header-mobile-link);
      padding: 12px 16px;
      border-bottom: 1px solid #f0f0f0;
      min-height: 44px;
      display: flex;
      align-items: center;
    }

    .site-nav a[aria-current="page"] {
      background: var(--color-header-mobile-active);
      color: #111;
      border-left: 3px solid var(--color-primary);
      padding-left: 13px;
    }
  }

  /* Desktop Menu */
  @media (min-width: 769px) {
    .header-container {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      padding: 12px 0;
    }

    .nav-toggle {
      display: none;
    }
  }

  /* Form */
  form label {
    display: block;
    margin-bottom: var(--space-2);
    font-weight: 600;
  }

  form input,
  form textarea {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: var(--fs-body);
    margin-top: var(--space-1);
  }

  form input:focus,
  form textarea:focus {
    outline: 2px solid var(--color-secondary);
    outline-offset: 2px;
    border-color: var(--color-secondary);
  }

  form textarea {
    resize: vertical;
    min-height: 100px;
  }

  /* Working Hours Table */
  .working-hours {
    width: 100%;
    border-collapse: collapse;
    margin-top: var(--space-4);
  }

  .working-hours td {
    padding: var(--space-3) var(--space-4);
    border-bottom: 1px solid #e9ecef;
  }

  .working-hours td:first-child {
    font-weight: 600;
  }

  .working-hours tr:last-child td {
    border-bottom: none;
  }

  /* Floating Action Button - İletişim */
  .fab-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 100;
  }

  .fab-main {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #ffa000 100%);
    border: 3px solid rgba(255, 255, 255, 0.2);
    color: #111;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(255, 183, 3, 0.4), 0 0 30px rgba(255, 183, 3, 0.2), inset 0 2px 4px rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    position: relative;
    overflow: hidden;
  }

  .fab-main::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
  }

  .fab-main:hover::before {
    width: 300px;
    height: 300px;
  }

  .fab-main svg {
    width: 32px;
    height: 32px;
    display: block;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  }

  .fab-main:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 28px rgba(255, 183, 3, 0.5), 0 0 40px rgba(255, 183, 3, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
  }

  .fab-main:active {
    transform: scale(1.05) rotate(0deg);
  }

  .fab-main:focus-visible {
    outline: 3px solid var(--color-secondary);
    outline-offset: 3px;
  }

  .fab-main[aria-expanded="true"] {
    background: linear-gradient(135deg, #ffa000 0%, var(--color-secondary) 100%);
    box-shadow: 0 8px 28px rgba(255, 183, 3, 0.6), 0 0 50px rgba(255, 183, 3, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.4);
    transform: rotate(180deg);
  }

  .fab-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }

  .fab-container.is-open .fab-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .fab-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 28px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 32px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #111;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 160px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }

  .fab-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
  }

  .fab-item:hover::before {
    left: 100%;
  }

  .fab-item:hover {
    transform: translateX(-8px) scale(1.05);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .fab-item:focus-visible {
    outline: 3px solid var(--color-secondary);
    outline-offset: 3px;
  }

  .fab-item--call {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0a4a6a 100%);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
  }

  .fab-item--call:hover {
    background: linear-gradient(135deg, #0a4a6a 0%, var(--color-primary) 100%);
    box-shadow: 0 8px 28px rgba(14, 90, 138, 0.4), 0 4px 12px rgba(14, 90, 138, 0.3);
  }

  .fab-item--call svg {
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  }

  .fab-item--whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
  }

  .fab-item--whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4), 0 4px 12px rgba(37, 211, 102, 0.3);
  }

  .fab-item--whatsapp svg {
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  }

  .fab-item svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
  }

  .fab-item:hover svg {
    transform: scale(1.2) rotate(5deg);
  }

  /* Mobilde FAB'ı gizle (isteğe bağlı) */
  @media (max-width: 480px) {
    .fab-container {
      bottom: 16px;
      right: 16px;
    }

    .fab-main {
      width: 48px;
      height: 48px;
    }

    .fab-menu {
      bottom: 60px;
    }
  }

  /* Header Container */
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
  }

  /* Logo Link Large */
  .logo-link-large {
    font-size: 200%;
  }

  /* Heading Sizes */
  .heading-large {
    font-size: 150%;
  }

  .heading-medium {
    font-size: 125%;
  }

  /* Scroll to Top Image */
  .scroll-top-img {
    width: 60px;
    height: 60px;
  }

  /* Gallery Image */
  .gallery-img {
    height: 250px;
    width: 250px;
  }

  /* Map Iframe */
  .map-iframe {
    width: 100%;
    height: 450px;
    border: 0;
  }

  /* Footer HR */
  .footer-hr {
    border-color: rgba(0, 38, 51, 0.80);
  }

  /* Link Secondary Color */
  .link-secondary {
    color: var(--color-secondary);
  }

  .link-secondary:hover {
    text-decoration: underline;
  }

  /* Scroll Top Image Right */
  .scroll-top-img--right {
    float: right;
  }

  /* GTM Noscript */
  .gtm-noscript {
    display: none;
    visibility: hidden;
    width: 0;
    height: 0;
    border: 0;
  }
}

/* Footer Styles */
.footer-cta {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  padding: var(--space-5) 0;
  text-align: center;
  border-top: 1px solid rgba(255, 183, 3, 0.2);
}

.footer-cta .btn {
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #ffa000 100%);
  color: #111;
  border: 2px solid var(--color-secondary);
  box-shadow: 0 4px 16px rgba(255, 183, 3, 0.4), 0 0 20px rgba(255, 183, 3, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-cta .btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.footer-main {
  background: linear-gradient(180deg, #1a1a1a 0%, #151515 100%);
  color: var(--color-footer-fg);
  padding: var(--space-7) 0 var(--space-6);
  position: relative;
}

.footer-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-secondary) 50%, transparent 100%);
  opacity: 0.3;
}

.footer-main h2 {
  color: var(--color-footer-fg);
  margin-bottom: var(--space-5);
  font-size: var(--fs-h3);
  font-weight: 700;
  position: relative;
  padding-bottom: var(--space-3);
  display: inline-block;
}

.footer-main h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary) 0%, transparent 100%);
  border-radius: 2px;
}

.footer-main .grid--2 {
  gap: var(--space-6);
}

.footer-contact-item {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
  align-items: flex-start;
  padding: var(--space-4);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.footer-contact-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--color-secondary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.footer-contact-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 183, 3, 0.3);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-contact-item:hover::before {
  transform: scaleY(1);
}

.footer-icon-wrapper {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.15) 0%, rgba(255, 183, 3, 0.05) 100%);
  border-radius: 12px;
  color: var(--color-secondary);
  transition: all 0.3s ease;
}

.footer-contact-item:hover .footer-icon-wrapper {
  background: linear-gradient(135deg, var(--color-secondary) 0%, rgba(255, 183, 3, 0.8) 100%);
  color: #111;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 4px 12px rgba(255, 183, 3, 0.3);
}

.footer-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.footer-contact-item h3 {
  color: var(--color-secondary);
  margin-bottom: var(--space-2);
  font-size: var(--fs-h4);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.footer-contact-item p {
  color: #e0e0e0;
  margin-bottom: var(--space-2);
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-contact-item a {
  color: #e0e0e0;
  margin-bottom: var(--space-2);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-contact-item a:hover {
  color: var(--color-secondary);
  transform: translateX(2px);
}

.footer-phone-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-2);
}

.footer-contact-item .btn {
  margin: 0;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #ffa000 100%);
  color: #111;
  font-weight: 600;
  border: 2px solid transparent;
  box-shadow: 0 2px 8px rgba(255, 183, 3, 0.2);
  transition: all 0.3s ease;
}

.footer-contact-item .btn:hover {
  background: #000000 !important;
  color: #ffffff !important;
  border-color: var(--color-secondary) !important;
  border-width: 2px;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 183, 3, 0.4);
}

.footer-hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 0;
}

.footer-bottom {
  background: #151515;
  padding: var(--space-5) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .text-small {
  font-size: var(--fs-small);
  color: #b0b0b0;
  margin-bottom: var(--space-2);
  line-height: 1.6;
}

.footer-bottom .text-small strong {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 1.05em;
}

.footer-bottom a {
  color: var(--color-secondary) !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #ffffff !important;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-main {
    padding: var(--space-6) 0 var(--space-5);
  }

  .footer-main .grid--2 {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .footer-main h2 {
    font-size: var(--fs-h4);
  }

  .footer-bottom .grid--2 {
    grid-template-columns: 1fr;
    gap: var(--space-3);
    text-align: center;
  }

  .footer-bottom .text-right {
    text-align: center;
  }
}

/* Contact Page Styles */
.contact-hero {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-7);
  align-items: start;
  margin-top: var(--space-6);
  margin-bottom: var(--space-7);
}

.contact-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  background: #f8f9fa;
}

.contact-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-5);
}

.contact-card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border: 2px solid #e9ecef;
  border-radius: 16px;
  padding: var(--space-6);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: var(--color-primary);
}

.contact-card:hover::before {
  transform: scaleX(1);
}

.contact-card--whatsapp:hover {
  border-color: #25D366;
}

.contact-card--whatsapp::before {
  background: #25D366;
}

.contact-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(14, 90, 138, 0.1) 0%, rgba(14, 90, 138, 0.05) 100%);
  border-radius: 50%;
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.contact-card--whatsapp .contact-card-icon {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(37, 211, 102, 0.05) 100%);
  color: #25D366;
}

.contact-card:hover .contact-card-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--color-primary) 0%, #0a4a6a 100%);
  color: #fff;
}

.contact-card--whatsapp:hover .contact-card-icon {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
}

.contact-card h2 {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-2);
  color: var(--color-text);
}

.contact-card p {
  color: var(--color-muted);
  margin-bottom: var(--space-5);
  line-height: 1.6;
}

.contact-card-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  width: 100%;
}

.contact-card-actions .btn--cta {
  width: 100%;
  font-size: 0.95rem !important;
  padding: 14px 20px !important;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  line-height: 1.4;
}

.working-hours-section {
  margin-top: var(--space-7);
  padding: var(--space-7);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #ffa000 100%);
  border-top: none;
}

.working-hours-section-full {
  width: 100%;
  margin: var(--space-7) 0;
  padding: var(--space-7) 0;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #ffa000 100%);
}

.working-hours-container {
  width: min(1200px, 90%);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.working-hours-section h2,
.working-hours-section-full h2 {
  text-align: center;
  margin-bottom: var(--space-4);
  font-size: var(--fs-h2);
  color: #000000 !important;
  font-weight: 700 !important;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5) !important;
}

.working-hours-section p,
.working-hours-section-full p {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.working-hours-section p a,
.working-hours-section-full p a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}

.working-hours-section p a:hover,
.working-hours-section-full p a:hover {
  color: var(--color-primary);
}

.working-hours-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-5);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.working-hours-card {
  background: #fff;
  color: var(--color-text);
  padding: var(--space-6);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid var(--color-secondary);
  border-bottom: 3px solid var(--color-secondary);
  border-right: 3px solid var(--color-secondary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.working-hours-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary);
}

.working-hours-card--closed {
  background: #4b5563;
  color: #fff;
  border-color: var(--color-secondary);
  border-bottom: 3px solid var(--color-secondary);
  border-right: 3px solid var(--color-secondary);
}

.working-hours-day {
  font-size: var(--fs-h5);
  font-weight: 700;
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text);
}

.working-hours-card--closed .working-hours-day {
  color: #fff;
}

.working-hours-time {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
}

.working-hours-card--closed .working-hours-time {
  color: #fff;
}

@media (max-width: 768px) {
  .contact-hero {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .contact-card {
    padding: var(--space-5);
  }

  .working-hours-cards {
    grid-template-columns: 1fr;
  }
}

.scroll-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 99;
  margin: 0;
  text-align: right;
}

.scroll-top a {
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.8;
}

.scroll-top a:hover {
  transform: translateY(-4px);
  opacity: 1;
}

.scroll-top a:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
  border-radius: 4px;
}

.scroll-top-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.2s ease;
}

.scroll-top a:hover .scroll-top-img {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .scroll-top {
    bottom: 100px;
    right: 16px;
  }

  .scroll-top-img {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .scroll-top {
    bottom: 80px;
    right: 16px;
    display: block;
  }

  .scroll-top-img {
    width: 40px;
    height: 40px;
  }
}

.form-success {
  text-align: center;
  padding: var(--space-5);
}

.form-success h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

@media (max-width: 767px) {
  .footer-main .grid--2,
  .footer-bottom .grid--2 {
    grid-template-columns: 1fr;
  }

  .footer-bottom .text-right {
    text-align: left;
    margin-top: var(--space-4);
  }
}

/* Page Header & Content */
.page-header {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #ffa000 100%);
  color: #111;
  padding: var(--space-7) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: var(--space-4);
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
}

.page-header h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, transparent 100%);
  margin: var(--space-4) auto 0;
  border-radius: 2px;
}

.page-header-subtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #111;
  max-width: 800px;
  margin: 0 auto var(--space-6);
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
  font-weight: 500;
}

.page-header-subtitle a {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.page-header-subtitle a:hover {
  opacity: 0.8;
  color: #0a4a6a;
}

.page-header p {
  color: #111;
  line-height: 1.8;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.page-header-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-6);
  position: relative;
  z-index: 1;
}

.page-header-actions .btn--cta {
  background: #000000 !important;
  color: var(--color-secondary) !important;
  border: 2px solid #000000 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 0, 0, 0.2) !important;
  transition: all 0.3s ease !important;
}

.page-header-actions .btn--cta:hover {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #ffa000 100%) !important;
  color: #000000 !important;
  border-color: #000000 !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 0, 0, 0.3) !important;
}

.btn--cta {
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  padding: 16px 32px !important;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #ffa000 100%) !important;
  color: #111 !important;
  border: 2px solid var(--color-secondary) !important;
  box-shadow: 0 4px 16px rgba(255, 183, 3, 0.4), 0 0 20px rgba(255, 183, 3, 0.2) !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn--cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 0, 0, 0.2) !important;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%) !important;
  color: var(--color-secondary) !important;
  border-color: var(--color-secondary) !important;
}

.page-content {
  background: linear-gradient(180deg, #fff 0%, var(--color-bg) 100%);
  padding: var(--space-7) 0;
}

.about-page-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-7);
}

.about-page-content h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--color-primary);
  position: relative;
  padding-bottom: var(--space-3);
}

.about-page-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary) 0%, transparent 100%);
  border-radius: 2px;
}

.about-page-content p {
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

.about-quote {
  background: linear-gradient(135deg, rgba(14, 90, 138, 0.05) 0%, rgba(14, 90, 138, 0.02) 100%);
  border-left: 4px solid var(--color-secondary);
  padding: var(--space-5);
  border-radius: 8px;
  margin-top: var(--space-6);
}

.about-quote h3 {
  font-size: var(--fs-h4);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-primary);
}

.about-quote p {
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: var(--space-3);
}

.about-page-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

@media (max-width: 768px) {
  .about-page-images {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .about-image-card {
    margin-bottom: var(--space-4);
  }

  .about-image-content {
    padding: var(--space-4);
  }

  .about-image-content h3 {
    font-size: var(--fs-h5);
    margin-bottom: var(--space-2);
  }

  .about-image-content p {
    font-size: var(--fs-small);
    line-height: 1.6;
  }
}

.about-image-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.about-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.about-image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.about-image-content {
  padding: var(--space-5);
}

.about-image-content h3 {
  font-size: var(--fs-h4);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-primary);
}

.about-image-content p {
  color: var(--color-text);
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .page-header {
    padding: var(--space-6) 0;
  }

  .page-header h1 {
    font-size: 1.75rem;
  }

  .page-header h1::after {
    width: 60px;
    height: 3px;
  }

  .page-header-subtitle {
    font-size: 1rem;
    margin-bottom: var(--space-5);
  }

  .page-header-actions {
    flex-direction: column;
    gap: var(--space-3);
    margin-top: var(--space-5);
  }

  .btn--cta {
    font-size: 1rem !important;
    padding: 14px 24px !important;
    width: 100%;
    max-width: 300px;
  }

  .about-page-grid {
    grid-template-columns: 1fr;
  }
}

.divider {
  border: 0;
  border-top: 2px solid var(--color-primary);
  margin: var(--space-5) 0;
}

blockquote {
  border-left: 4px solid var(--color-primary);
  padding-left: var(--space-4);
  margin: var(--space-5) 0;
  font-style: italic;
}

blockquote h3 {
  margin-bottom: var(--space-3);
}

/* Hero Section */
.hero-section {
  width: 100%;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Section Styles */
.intro-section {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #ffa000 100%) !important;
  color: var(--color-text) !important;
  padding: var(--space-7) 0;
  text-align: center;
  position: relative;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.intro-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-text) !important;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.intro-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-primary) !important;
  margin-bottom: var(--space-4);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
}

.intro-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text) !important;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 500;
}

.services-section {
  background: #fff;
  padding: var(--space-7) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-6);
}

.section-header h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-text);
  position: relative;
  display: inline-block;
  padding-bottom: var(--space-3);
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary) 0%, transparent 100%);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-6);
}

.service-card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border: 2px solid #e9ecef;
  border-radius: 16px;
  padding: var(--space-6);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: var(--color-primary);
}

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

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(14, 90, 138, 0.1) 0%, rgba(14, 90, 138, 0.05) 100%);
  border-radius: 50%;
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--color-primary) 0%, #0a4a6a 100%);
  color: #fff;
}

.service-card h3 {
  font-size: var(--fs-h4);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.service-card p {
  color: var(--color-muted);
  margin-bottom: var(--space-5);
  line-height: 1.7;
}

.about-section {
  background: linear-gradient(180deg, var(--color-bg) 0%, #fff 100%);
  padding: var(--space-7) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-6);
}

.service-about-grid {
  margin-top: var(--space-6);
  margin-bottom: var(--space-6);
}

.about-content h3 {
  font-size: var(--fs-h4);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-primary);
}

.about-content p {
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: var(--space-5);
}

.why-title {
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  margin-bottom: var(--space-3);
  position: relative;
  padding-bottom: var(--space-4);
}

.why-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-secondary) 0%, transparent 100%);
  border-radius: 2px;
}

.why-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--color-muted);
  margin-bottom: var(--space-7);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-7);
  align-items: stretch;
}

.why-card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border: 2px solid #e9ecef;
  border-radius: 16px;
  padding: var(--space-6);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  box-sizing: border-box;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: var(--color-secondary);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.1) 0%, rgba(14, 90, 138, 0.1) 100%);
  border-radius: 50%;
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.why-card:hover .why-card-icon {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  color: #fff;
  transform: scale(1.1);
}

.why-card h3 {
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.why-card p {
  color: var(--color-muted);
  line-height: 1.7;
  margin: 0;
}

.stats-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-5);
  padding: var(--space-5);
  background: linear-gradient(135deg, var(--color-primary) 0%, #0a4a6a 100%);
  border-radius: 12px;
}

.stats-box-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-7);
  padding: var(--space-7);
  background: linear-gradient(135deg, var(--color-primary) 0%, #0a4a6a 100%);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(14, 90, 138, 0.2);
}

.stats-box-modern .stat-item {
  text-align: center;
  color: #fff;
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stats-box-modern .stat-item .stat-label {
  color: #000000 !important;
  font-weight: 900 !important;
  text-shadow: none !important;
}

.stats-box-modern .stat-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.stat-item {
  text-align: center;
  color: #fff !important;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--space-2);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.stats-box-modern .stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--space-2);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 1rem !important;
  color: #000000 !important;
  font-weight: 900 !important;
  text-shadow: none !important;
  opacity: 1 !important;
  line-height: 1.4;
}

.stats-box-modern .stat-label {
  font-size: 1.1rem !important;
  color: #000000 !important;
  font-weight: 900 !important;
  text-shadow: none !important;
}

.features-section {
  background: #fff;
  padding: var(--space-7) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: start;
  margin: var(--space-7) 0;
}

.features-title {
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  margin-bottom: var(--space-6);
  position: relative;
  padding-bottom: var(--space-4);
}

.features-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-secondary) 0%, transparent 100%);
  border-radius: 2px;
}

.features-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-6);
}

.feature-card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border: 2px solid #e9ecef;
  border-radius: 16px;
  padding: var(--space-6);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: var(--color-secondary);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.1) 0%, rgba(14, 90, 138, 0.1) 100%);
  border-radius: 50%;
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  color: #fff;
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.feature-card p {
  color: var(--color-muted);
  line-height: 1.7;
  margin: 0;
}

.sales-scope-section {
  margin: var(--space-7) 0;
  padding-top: var(--space-7);
  border-top: 2px solid #e9ecef;
}

.sales-scope-section h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  margin-bottom: var(--space-6);
  position: relative;
  padding-bottom: var(--space-4);
}

.sales-scope-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-secondary) 0%, transparent 100%);
  border-radius: 2px;
}

.sales-scope-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}

.sales-scope-card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: var(--space-5);
  transition: all 0.3s ease;
  border-left: 4px solid var(--color-secondary);
}

.sales-scope-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-left-color: var(--color-primary);
}

.sales-scope-card h3 {
  font-size: var(--fs-h5);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.sales-scope-card p {
  color: var(--color-muted);
  line-height: 1.7;
  margin: 0;
}

.sales-scope-note {
  text-align: center;
  color: var(--color-muted);
  font-style: italic;
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid #e9ecef;
}

/* Maintenance Scope Section */
.maintenance-scope-section {
  margin: var(--space-7) 0;
  padding-top: var(--space-7);
  border-top: 2px solid #e9ecef;
}

.maintenance-scope-section h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  margin-bottom: var(--space-6);
  position: relative;
  padding-bottom: var(--space-4);
}

.maintenance-scope-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-secondary) 0%, transparent 100%);
  border-radius: 2px;
}

.maintenance-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}

.maintenance-card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border: 2px solid #e9ecef;
  border-radius: 16px;
  padding: var(--space-6);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.maintenance-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.maintenance-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: var(--color-secondary);
}

.maintenance-card:hover::before {
  transform: scaleX(1);
}

.maintenance-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.1) 0%, rgba(14, 90, 138, 0.1) 100%);
  border-radius: 50%;
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.maintenance-card:hover .maintenance-icon {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  color: #fff;
  transform: scale(1.1);
}

.maintenance-card h3 {
  font-size: var(--fs-h5);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.maintenance-card p {
  color: var(--color-muted);
  line-height: 1.7;
  margin: 0;
}

.maintenance-note {
  text-align: center;
  color: var(--color-muted);
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid #e9ecef;
}

/* Clean Work Section */
.clean-work-section {
  margin: var(--space-7) 0;
  padding-top: var(--space-7);
  border-top: 2px solid #e9ecef;
}

.clean-work-section h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  margin-bottom: var(--space-4);
  position: relative;
  padding-bottom: var(--space-4);
}

.clean-work-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-secondary) 0%, transparent 100%);
  border-radius: 2px;
}

.clean-work-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--color-muted);
  margin-bottom: var(--space-6);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.clean-work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}

.clean-work-card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border: 2px solid #e9ecef;
  border-radius: 16px;
  padding: var(--space-6);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.clean-work-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.clean-work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: var(--color-secondary);
}

.clean-work-card:hover::before {
  transform: scaleX(1);
}

.clean-work-icon {
  width: 64px;
  height: 64px;
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.1) 0%, rgba(14, 90, 138, 0.1) 100%);
  border-radius: 50%;
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.clean-work-card:hover .clean-work-icon {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  color: #fff;
  transform: scale(1.1);
}

.clean-work-card h3 {
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.clean-work-card p {
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.clean-work-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.clean-work-card ul li {
  color: var(--color-muted);
  line-height: 1.8;
  padding-left: var(--space-5);
  position: relative;
  margin-bottom: var(--space-2);
}

.clean-work-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 1.2rem;
}

.features-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.features-image img {
  width: 100%;
  height: auto;
  display: block;
}

.features-content {
  padding: var(--space-4);
}

.advantages-title {
  font-size: 2rem;
  font-weight: 700;
  color: #4b5563;
  margin-bottom: var(--space-6);
  position: relative;
  padding-bottom: var(--space-3);
}

.advantages-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--color-secondary);
  border-radius: 2px;
}

.advantages-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.advantage-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: #f8f9fa;
  border-radius: 0 12px 12px 0;
  border-left: 4px solid var(--color-secondary);
  position: relative;
  transition: all 0.3s ease;
}

.advantage-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateX(4px);
}

.advantage-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e5e7eb;
  border-radius: 50%;
  color: #4b5563;
  flex-shrink: 0;
}

.advantage-content {
  flex: 1;
}

.advantage-content h3 {
  font-size: var(--fs-h5);
  font-weight: 700;
  color: #4b5563;
  margin-bottom: var(--space-2);
}

.advantage-content p {
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.feature-item {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-4);
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  border-radius: 12px;
  border-left: 4px solid var(--color-secondary);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left-color: var(--color-primary);
}

.feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(14, 90, 138, 0.1) 0%, rgba(14, 90, 138, 0.05) 100%);
  border-radius: 12px;
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0a4a6a 100%);
  color: #fff;
  transform: scale(1.1);
}

.feature-item h3 {
  font-size: var(--fs-h5);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}

.feature-item p {
  color: var(--color-muted);
  line-height: 1.7;
  margin: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-6);
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

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

.link-secondary {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-color: var(--color-secondary);
  transition: all 0.2s ease;
}

.link-secondary:hover {
  color: var(--color-secondary);
  text-decoration-color: var(--color-primary);
}

/* Process Steps Styles */
.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: var(--space-6);
  margin: var(--space-7) 0;
  align-items: stretch;
}

.process-step {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-6);
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border: 2px solid #e9ecef;
  border-radius: 16px;
  border-left: 4px solid var(--color-secondary);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  box-sizing: border-box;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-4px) translateX(4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-left-color: var(--color-primary);
}

.process-step:hover::before {
  transform: scaleX(1);
}

.process-step-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.1) 0%, rgba(14, 90, 138, 0.1) 100%);
  border-radius: 50%;
  color: var(--color-primary);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.process-step:hover .process-step-icon {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

.process-step-content {
  flex: 1;
}

.process-step-content h3 {
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.process-step-content p {
  color: var(--color-muted);
  line-height: 1.7;
  margin: 0;
}

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

  .why-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
  }
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: var(--space-5);
    grid-auto-rows: auto;
  }

  .process-step {
    flex-direction: column;
    text-align: center;
    padding: var(--space-5);
    height: auto;
  }

  .process-step-icon {
    margin: 0 auto;
  }
}

/* Rental Packages Styles */
.rental-packages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: var(--space-6);
  margin: var(--space-7) 0;
  align-items: stretch;
}

.rental-package-card {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-6);
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border: 2px solid #e9ecef;
  border-radius: 16px;
  border-left: 4px solid var(--color-secondary);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  box-sizing: border-box;
}

.rental-package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.rental-package-card:hover {
  transform: translateY(-4px) translateX(4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-left-color: var(--color-primary);
}

.rental-package-card:hover::before {
  transform: scaleX(1);
}

.rental-package-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.1) 0%, rgba(14, 90, 138, 0.1) 100%);
  border-radius: 50%;
  color: var(--color-primary);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.rental-package-card:hover .rental-package-icon {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

.rental-package-content {
  flex: 1;
}

.rental-package-content h3 {
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.rental-package-content p {
  color: var(--color-muted);
  line-height: 1.7;
  margin: 0;
}

.rental-note {
  text-align: center;
  margin: var(--space-6) 0;
  padding: var(--space-5);
  background: linear-gradient(135deg, rgba(14, 90, 138, 0.05) 0%, rgba(255, 183, 3, 0.05) 100%);
  border-radius: 12px;
  border-left: 4px solid var(--color-secondary);
}

.rental-note p {
  color: var(--color-text);
  margin: 0;
  font-size: 1.05rem;
}

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

@media (max-width: 768px) {
  .rental-packages {
    grid-template-columns: 1fr;
    gap: var(--space-5);
    grid-auto-rows: auto;
  }

  .rental-package-card {
    flex-direction: column;
    text-align: center;
    padding: var(--space-5);
    height: auto;
  }

  .rental-package-icon {
    margin: 0 auto;
  }
}

/* FAQ Section Styles */
.faq-section {
  margin-top: var(--space-7);
  padding-top: var(--space-7);
  border-top: 2px solid #e9ecef;
}

.faq-section h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
  margin-bottom: var(--space-6);
  color: var(--color-text);
  text-align: center;
  position: relative;
  padding-bottom: var(--space-3);
}

.faq-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary) 0%, transparent 100%);
  border-radius: 2px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 800px;
  margin: 0 auto;
}

details {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 0;
  transition: all 0.3s ease;
  overflow: hidden;
}

details:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

details[open] {
  border-color: var(--color-primary);
  box-shadow: 0 6px 20px rgba(14, 90, 138, 0.15);
}

summary {
  padding: var(--space-5);
  font-size: var(--fs-h5);
  font-weight: 700;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  transition: all 0.3s ease;
}

summary::-webkit-details-marker {
  display: none;
}

summary::marker {
  display: none;
}

summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(14, 90, 138, 0.1) 0%, rgba(14, 90, 138, 0.05) 100%);
  border-radius: 50%;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

details[open] summary::after {
  content: '−';
  background: linear-gradient(135deg, var(--color-primary) 0%, #0a4a6a 100%);
  color: #fff;
  transform: rotate(180deg);
}

summary:hover {
  color: var(--color-primary);
}

details[open] summary {
  border-bottom: 2px solid #e9ecef;
  margin-bottom: 0;
}

details p {
  padding: var(--space-5);
  color: var(--color-muted);
  line-height: 1.8;
  margin: 0;
  background: #fff;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

details ul,
details ol {
  padding: var(--space-5);
  padding-top: 0;
  color: var(--color-muted);
  line-height: 1.8;
  margin: 0;
  background: #fff;
}

details li {
  margin-bottom: var(--space-2);
}

details li:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .intro-content h1 {
    font-size: 2rem;
  }

  .intro-subtitle {
    font-size: 1.1rem;
  }

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

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

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

  .stats-box {
    grid-template-columns: 1fr;
  }

  .stats-box-modern {
    grid-template-columns: 1fr;
    padding: var(--space-5);
  }

  .why-cards-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
    grid-auto-rows: auto;
  }

  .why-card {
    height: auto;
  }

  .why-title {
    font-size: 1.75rem;
  }

  .stats-box-modern .stat-number {
    font-size: 2.5rem;
  }

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

  summary {
    font-size: var(--fs-h6);
    padding: var(--space-4);
  }

  details p {
    padding: var(--space-4);
  }
}
