
    .contact-section {
      background-color: #121212;
      color: #e0e0e0;
      padding: 100px 20px 40px;
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      text-align: center;
      position: relative;
    }

    .contact-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .contact-title {
      font-size: 2.5rem;
      font-weight: 300;
      margin-bottom: 3rem;
      letter-spacing: -0.5px;
      color: #ffffff;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      text-align: left;
      margin-bottom: 5rem;
    }

    .contact-item {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .contact-label {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #666;
      margin-bottom: 1rem; /* Malo veći razmak zbog ikonica */
    }

    .contact-value {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #fff;
    }

    /* --- STILOVI ZA IKONICE --- */
    .social-icons {
      display: flex;
      gap: 1.5rem; /* Razmak između ikonica */
    }

    .icon-link {
      color: #e0e0e0;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .icon-link svg {
      width: 32px;
      height: 32px;
      fill: currentColor; /* Uzima boju teksta (#e0e0e0) */
    }

    .icon-link:hover {
      color: #fff;
      transform: translateY(-3px); /* Lagani skok na hover */
    }

    /* Specifične boje na hover ako želiš (opcionalno) */
    .icon-link.whatsapp:hover { color: #25D366; }
    .icon-link.instagram:hover { color: #E1306C; }

    /* --- FOOTER CREDIT --- */
    .footer-credit {
      border-top: 1px solid #222;
      padding-top: 2rem;
      font-size: 0.75rem;
      color: #444;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .footer-credit span {
      color: #666;
      font-weight: 600;
    }

    @media (max-width: 600px) {
      .contact-grid {
        text-align: center;
        justify-items: center;
      }
      .contact-item {
        align-items: center;
      }
    }