    .contact-hero {
      background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(22, 33, 62, 0.9) 100%),
                  url('../images/trotinette3.jpg');
      background-size: cover;
      background-position: center;
      padding: 120px 0 80px;
      text-align: center;
      position: relative;
    }

    .contact-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(26, 26, 46, 0.75) 0%, rgba(22, 33, 62, 0.85) 100%);
      z-index: 1;
    }

    .contact-hero .container {
      position: relative;
      z-index: 2;
    }

    .contact-hero h1 {
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 800;
      margin-bottom: 1rem;
      color: #ffffff !important;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    }

    .contact-hero p {
      font-size: 1.15rem;
      max-width: 600px;
      margin: 0 auto;
      color: rgba(255, 255, 255, 0.95) !important;
      text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    }

    .contact-section {
      padding: 80px 0;
      background: #f8f9fa;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .contact-info {
      background: white;
      border-radius: 16px;
      padding: 2.5rem;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }

    .contact-info h2 {
      font-size: 1.5rem;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 1.5rem;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.25rem 0;
      border-bottom: 1px solid #eee;
    }

    .contact-item:last-child {
      border-bottom: none;
    }

    .contact-item-icon {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, #D4AF37, #B8941F);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .contact-item-content h3 {
      font-size: 1rem;
      font-weight: 600;
      color: #1a1a2e;
      margin-bottom: 0.25rem;
    }

    .contact-item-content p {
      color: var(--text-secondary);
      font-size: 0.95rem;
      line-height: 1.5;
    }

    .contact-item-content a {
      color: #D4AF37;
      text-decoration: none;
      font-weight: 500;
    }

    .contact-item-content a:hover {
      text-decoration: underline;
    }

    .contact-form-card {
      background: white;
      border-radius: 16px;
      padding: 2.5rem;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }

    .contact-form-card h2 {
      font-size: 1.5rem;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 1.5rem;
    }

    .form-group {
      margin-bottom: 1.25rem;
    }

    .form-group label {
      display: block;
      font-weight: 600;
      color: #1a1a2e;
      margin-bottom: 0.5rem;
      font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 12px 16px;
      border: 2px solid #eee;
      border-radius: 10px;
      font-size: 1rem;
      transition: border-color 0.2s ease;
      font-family: inherit;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      outline: none;
      border-color: #D4AF37;
    }

    .form-group input:focus-visible,
    .form-group textarea:focus-visible,
    .form-group select:focus-visible {
      outline: 2px solid #D4AF37;
      outline-offset: 2px;
    }

    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }

    .btn-submit {
      width: 100%;
      padding: 14px 24px;
      background: linear-gradient(135deg, #D4AF37, #B8941F);
      color: white;
      border: none;
      border-radius: 10px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: transform 0.15s ease, box-shadow 0.15s ease;
    }

    .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }

    .btn-submit:disabled {
      opacity: 0.6;
      cursor: not-allowed;
      transform: none;
    }

    .form-success {
      display: none;
      text-align: center;
      padding: 2rem;
    }

    .form-success.show {
      display: block;
    }

    .form-success i {
      font-size: 3rem;
      color: #10B981;
      margin-bottom: 1rem;
    }

    .form-success h3 {
      font-size: 1.25rem;
      color: #1a1a2e;
      margin-bottom: 0.5rem;
    }

    .form-success p {
      color: var(--text-secondary);
    }

    .faq-teaser {
      background: white;
      padding: 60px 0;
      text-align: center;
    }

    .faq-teaser h2 {
      font-size: 1.75rem;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 1rem;
    }

    .faq-teaser p {
      color: var(--text-secondary);
      margin-bottom: 2rem;
    }

    .faq-teaser .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 12px 24px;
      background: #1a1a2e;
      color: white;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      transition: transform 0.15s ease;
    }

    .faq-teaser .btn:hover {
      transform: translateY(-2px);
    }

    @media (max-width: 768px) {
      .contact-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
      }

      .contact-hero {
        padding: 100px 1rem 60px;
      }
    }
