body {
    min-height: 100vh;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(120deg, #f5e7da 0%, #e3c9a9 100%);
    position: relative;
    overflow-x: hidden;
  }
  body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/coffee-beans.png');
    opacity: 0.13;
    z-index: 0;
    pointer-events: none;
  }
  .contact-section {
    max-width: 1050px;
    margin: 48px auto;
    background: rgba(255,255,255,0.80);
    border-radius: 32px;
    box-shadow: 0 18px 64px 0 rgba(60, 40, 20, 0.17);
    padding: 56px 40px;
    border: 1.5px solid #e3c9a9;
    backdrop-filter: blur(8px);
    position: relative;
    z-index: 1;
  }
  .coffee-cup {
    width: 70px;
    display: block;
    margin: 0 auto 24px auto;
    filter: drop-shadow(0 6px 16px rgba(60,40,20,0.12));
    animation: steam 2.8s infinite alternate cubic-bezier(.4,0,.2,1);
  }
  @keyframes steam {
    0% { transform: translateY(0);}
    100% { transform: translateY(-8px);}
  }
  .card-custom {
    border-radius: 24px;
    background: rgba(255, 253, 250, 0.97);
    box-shadow: 0 10px 40px 0 rgba(60, 40, 20, 0.12);
    border: 1px solid #f5e7da;
    backdrop-filter: blur(2px);
  }
  .form-label {
    color: #7c4a1e;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 1.08rem;
  }
  .form-control, textarea {
    border-radius: 14px;
    border: 1.5px solid #e3c9a9;
    background: #fffdfa;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .form-control:focus, textarea:focus {
    border-color: #a97142;
    box-shadow: 0 0 0 0.18rem rgba(169,113,66,0.13);
  }
  .btn-coffee {
    background: linear-gradient(90deg, #a97142 0%, #7c4a1e 100%);
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 1.13rem;
    letter-spacing: 1.2px;
    border-radius: 26px;
    box-shadow: 0 3px 12px 0 rgba(169,113,66,0.10);
    padding: 14px 0;
    transition: background 0.2s, transform 0.18s, box-shadow 0.2s;
  }
  .btn-coffee:hover {
    background: linear-gradient(90deg, #7c4a1e 0%, #a97142 100%);
    transform: translateY(-3px) scale(1.045);
    box-shadow: 0 8px 24px 0 rgba(169,113,66,0.13);
    color: #fff;
  }
  .contact-info h4,
  .contact-info h5 {
    color: #7c4a1e;
    font-weight: 800;
    letter-spacing: 0.8px;
  }
  .contact-info p,
  .contact-info a {
    color: #5a3a1b;
    font-size: 1.09rem;
    margin-bottom: 8px;
  }
  .contact-info a {
    text-decoration: underline dotted #a97142;
    transition: color 0.2s;
  }
  .contact-info a:hover {
    color: #a97142;
  }
  .social-icons a {
    color: #7c4a1e;
    margin-right: 18px;
    transition: color 0.2s, transform 0.2s, background 0.2s;
    background: #f5e7da;
    border-radius: 50%;
    padding: 10px;
    display: inline-block;
    box-shadow: 0 2px 8px 0 rgba(169,113,66,0.10);
    position: relative;
    font-size: 1.3rem;
  }
  .social-icons a:hover {
    color: #fff;
    background: #a97142;
    transform: scale(1.18) rotate(-6deg);
  }
  .social-icons a[aria-label]:hover::after {
    content: attr(aria-label);
    position: absolute;
    bottom: -38px;
    left: 50%;
    transform: translateX(-50%);
    background: #7c4a1e;
    color: #fff;
    font-size: 0.85rem;
    padding: 4px 14px;
    border-radius: 12px;
    white-space: nowrap;
    opacity: 0.97;
    pointer-events: none;
    box-shadow: 0 2px 8px 0 rgba(60,40,20,0.11);
  }
  .map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 3px 16px 0 rgba(60,40,20,0.10);
  }
  .map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border: none;
    border-radius: 16px;
  }
  .opening-hours {
    background: #f5e7da;
    border-radius: 14px;
    padding: 12px 18px;
    margin-top: 14px;
    font-size: 1.08rem;
    color: #7c4a1e;
    box-shadow: 0 2px 8px 0 rgba(169,113,66,0.09);
    border-left: 4px solid #a97142;
  }
  .opening-hours strong {
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  @media (max-width: 991px) {
    .contact-section { padding: 32px 8px; }
  }
  @media (max-width: 767px) {
    .contact-section { padding: 16px 2px; }
    .coffee-cup { margin-bottom: 10px; }
    .card-custom { padding: 16px 8px; }
  }