/* Responsive Styles */

@media (max-width: 1024px) {
  .site-header {
    flex-direction: column;
    gap: 1rem;
  }

  .site-header nav a {
    margin: 0 0.5rem;
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .service-section {
    flex-direction: column !important;
    gap: 2rem;
    padding: 3rem 1.5rem;
  }

  .service-image-wrapper {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .site-header nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: var(--primary);
    padding: 1rem 0;
  }

  .site-header nav.active {
    display: flex;
  }

  .site-header nav a {
    padding: 0.75rem 2rem;
    margin: 0;
  }

  .hero {
    padding: 3rem 1rem;
    flex-direction: column;
    text-align: center;
    min-height: auto;
  }

  .hero-left,
  .hero-right {
    flex: 1;
    text-align: center;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .service-grid,
  .blog-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-inner .col {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex: 1 1 100%;
    min-width: 100%;
  }

  .footer-inner .col:last-child {
    border-bottom: none;
  }

  .success-stories-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .site-footer {
    padding: 2rem 1.5rem;
  }

  .cookie-banner {
    flex-direction: row;
    text-align: left;
    gap: 1rem;
    padding: 1rem;
    font-size: 0.85rem;
  }

  .cookie-banner p {
    flex: 1 1 100%;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  #cookie-accept {
    width: auto;
    padding: 12px 20px;
    flex-shrink: 0;
  }

  .form {
    padding: 1.5rem;
  }

  .sticky-button {
    bottom: 1rem;
    right: 1rem;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  main {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .site-header {
    padding: 0.5rem;
  }

  .site-header .brand {
    font-size: 1.2rem;
  }

  .site-header img {
    height: 30px;
  }

  .site-header nav a {
    margin: 0.25rem;
    font-size: 0.8rem;
  }

  .hero {
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  .consult-btn,
  .btn {
    padding: 10px 20px;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.75rem;
  }

  .cookie-banner p {
    flex: 1 1 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  #cookie-accept {
    width: 100%;
  }

  .sticky-button {
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
    bottom: 0.5rem;
    right: 0.5rem;
  }

  .blog-full,
  .review-card {
    padding-left: 1rem;
  }

  .blog-wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }

  .blog-image {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
  }

  .service-section {
    padding: 2rem 1rem;
  }

  .service-image-wrapper {
    height: 250px;
  }
}