/* ========================================
   FIX GLOBAL - BOX-SIZING UNIVERSEL
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ========================================
   PAGE CONTACT - SOBRE & ÉLÉGANT
======================================== */

.contact-section {
  padding: 0rem 0rem 8rem 0rem;
  background: #0d0d0d;
  width: 100%;
  overflow-x: hidden;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 5rem;
  width: 100%;
}

/* ========================================
   FORMULAIRE
======================================== */
.contact-form-wrapper {
  background: rgba(26, 26, 26, 0.5);
  border: 1px solid rgba(224, 185, 74, 0.15);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  width: 100%;
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #f5f5f5;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: rgba(245, 245, 245, 0.6);
  font-size: 0.95rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(245, 245, 245, 0.8);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(13, 13, 13, 0.6);
  border: 1px solid rgba(224, 185, 74, 0.2);
  border-radius: 10px;
  padding: 0.9rem 1.2rem;
  font-size: 0.95rem;
  color: #f5f5f5;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245, 245, 245, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e0b94a;
  background: rgba(13, 13, 13, 0.8);
  box-shadow: 0 0 0 3px rgba(224, 185, 74, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23e0b94a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  appearance: none;
  padding-right: 3rem;
  cursor: pointer;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.7);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid rgba(224, 185, 74, 0.3);
  border-radius: 5px;
  background: transparent;
  cursor: pointer;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked {
  background: #e0b94a;
  border-color: #e0b94a;
}

.checkbox-label a {
  color: #e0b94a;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

@media (min-width: 1025px) {
  .checkbox-label a:hover {
    opacity: 0.8;
  }
}

.btn-submit {
  background: linear-gradient(135deg, #e0b94a 0%, #d4a944 100%);
  border: none;
  border-radius: 10px;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #0d0d0d;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(224, 185, 74, 0.25);
  margin-top: 0.5rem;
}

@media (min-width: 1025px) {
  .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 185, 74, 0.35);
  }
}

.btn-submit svg {
  transition: transform 0.3s ease;
}

@media (min-width: 1025px) {
  .btn-submit:hover svg {
    transform: translateX(4px);
  }
}

/* ========================================
   INFORMATIONS
======================================== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.info-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(26, 26, 26, 0.3);
  border: 1px solid rgba(224, 185, 74, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

@media (min-width: 1025px) {
  .info-item:hover {
    border-color: rgba(224, 185, 74, 0.25);
    background: rgba(26, 26, 26, 0.5);
    transform: translateX(5px);
  }
}

.info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(224, 185, 74, 0.1);
  border: 1px solid rgba(224, 185, 74, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e0b94a;
}

.info-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #f5f5f5;
  margin-bottom: 0.5rem;
}

.info-content p {
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.7);
  line-height: 1.6;
}

.info-content a {
  color: #e0b94a;
  transition: opacity 0.3s ease;
}

@media (min-width: 1025px) {
  .info-content a:hover {
    opacity: 0.8;
  }
}

.info-content .closed {
  display: block;
  margin-top: 0.5rem;
  color: rgba(224, 74, 74, 0.8);
  font-weight: 500;
}

/* ========================================
   RÉSEAUX SOCIAUX
======================================== */
.social-block {
  padding: 2rem;
  background: rgba(224, 185, 74, 0.08);
  border: 1px solid rgba(224, 185, 74, 0.2);
  border-radius: 16px;
  text-align: center;
  width: 100%;
}

.social-block h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #f5f5f5;
  margin-bottom: 1.25rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-links a {
  width: 44px;
  height: 44px;
  background: rgba(13, 13, 13, 0.6);
  border: 1px solid rgba(224, 185, 74, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e0b94a;
  transition: all 0.3s ease;
}

@media (min-width: 1025px) {
  .social-links a:hover {
    background: rgba(224, 185, 74, 0.15);
    border-color: #e0b94a;
    transform: translateY(-3px);
  }
}

/* ========================================
   CARTE
======================================== */
.map-section {
  border-top: 1px solid rgba(224, 185, 74, 0.15);
  border-bottom: 1px solid rgba(224, 185, 74, 0.15);
}

.map-section iframe {
  filter: grayscale(0.8) contrast(1.1) brightness(0.8);
  transition: filter 0.4s ease;
}

@media (min-width: 1025px) {
  .map-section:hover iframe {
    filter: grayscale(0.3) contrast(1.05) brightness(0.9);
  }
}

/* ========================================
   MODAL
======================================== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
  border: 1px solid rgba(224, 185, 74, 0.2);
  border-radius: 20px;
  padding: 3rem;
  max-width: 450px;
  width: 100%;
  text-align: center;
  animation: slideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideIn {
  from {
    transform: translateY(30px) scale(0.9);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.modal-icon {
  width: 70px;
  height: 70px;
  background: rgba(224, 185, 74, 0.15);
  border: 2px solid rgba(224, 185, 74, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #e0b94a;
}

.modal-content h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #f5f5f5;
  margin-bottom: 0.75rem;
}

.modal-content p {
  font-size: 0.95rem;
  color: rgba(245, 245, 245, 0.7);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.modal-content button {
  background: linear-gradient(135deg, #e0b94a 0%, #d4a944 100%);
  border: none;
  border-radius: 10px;
  padding: 0.9rem 2.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0d0d0d;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (min-width: 1025px) {
  .modal-content button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 185, 74, 0.35);
  }
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  /* ✅ SOLUTION : Padding 0 sur container + margin sur enfants */
  .contact-container {
    padding: 0 1rem !important;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .contact-form-wrapper,
  .info-item,
  .social-block {
    width: 100%;
  }
  
  .contact-form-wrapper {
    padding: 2rem !important;
  }
  
  .info-item {
    flex-direction: column;
    text-align: center;
  }

  .info-icon {
    margin: 0 auto;
  }

  /* Grid formulaire en 1 colonne */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Fix zoom iOS */
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px !important;
  }
}

@media (max-width: 480px) {
  .contact-container {
    padding: 0 0.75rem !important;
  }
  
  .contact-form-wrapper {
    padding: 1.5rem !important;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .modal-content {
    padding: 2rem;
  }
}

/* ========================================
   SUPPRESSION DES ASTÉRISQUES
======================================== */
.form-group label::after {
  content: none !important;
}

/* ========================================
   RGPD - VERSION FINALE SANS ASTÉRISQUE
======================================== */
.rgpd-wrapper {
  padding: 0.75rem 0;
}

.rgpd-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  position: relative;
}

.rgpd-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.rgpd-checkmark {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: rgba(13, 13, 13, 0.6);
  border: 2px solid rgba(224, 185, 74, 0.3);
  border-radius: 5px;
  position: relative;
  transition: all 0.3s ease;
  margin-top: 1px;
}

.rgpd-label:hover .rgpd-checkmark {
  border-color: rgba(224, 185, 74, 0.5);
}

.rgpd-label input[type="checkbox"]:checked ~ .rgpd-checkmark {
  background: linear-gradient(135deg, #e0b94a 0%, #d4a944 100%);
  border-color: #e0b94a;
}

.rgpd-checkmark::after {
  content: '';
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #0d0d0d;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.rgpd-label input[type="checkbox"]:checked ~ .rgpd-checkmark::after {
  display: block;
}

.rgpd-text {
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.7);
  line-height: 1.6;
  flex: 1;
}

.rgpd-text a {
  color: #e0b94a;
  text-decoration: none;
  transition: color 0.3s ease;
}

@media (min-width: 1025px) {
  .rgpd-text a:hover {
    color: #f5d670;
  }
}

/* Animation shake pour l'erreur */
.rgpd-wrapper.error {
  animation: shake 0.4s;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  75% { transform: translateX(8px); }
}

/* ========================================
   MODAL D'ERREUR CUSTOM
======================================== */

.error-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.error-modal-overlay.active {
  display: flex;
}

.error-modal-content {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(15, 15, 15, 0.9));
  border: 1px solid rgba(224, 74, 74, 0.3);
  border-radius: 24px;
  padding: 50px 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.error-modal-icon {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.error-modal-icon svg {
  width: 64px;
  height: 64px;
  color: #e04a4a;
}

.error-modal-title {
  font-size: 28px;
  font-weight: 600;
  color: #e04a4a;
  margin: 0 0 16px 0;
}

.error-modal-message {
  font-size: 15px;
  color: rgba(245, 245, 245, 0.7);
  line-height: 1.7;
  margin: 0 0 32px 0;
}

.error-modal-button {
  padding: 16px 40px;
  background: linear-gradient(135deg, #e04a4a, #d04040);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (min-width: 1025px) {
  .error-modal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 74, 74, 0.4);
  }
}

/* ========================================
   MODAL DE CONFIRMATION
======================================== */

.confirmation-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.confirmation-modal-overlay.active {
  display: flex;
}

.confirmation-modal-content {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(15, 15, 15, 0.9));
  border: 1px solid rgba(224, 185, 74, 0.3);
  border-radius: 24px;
  padding: 50px 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.confirmation-modal-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px auto;
  background: rgba(224, 185, 74, 0.1);
  border: 2px solid rgba(224, 185, 74, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.confirmation-modal-icon svg {
  width: 40px;
  height: 40px;
  color: #e0b94a;
  stroke-width: 2.5;
}

.confirmation-modal-title {
  font-size: 28px;
  font-weight: 600;
  color: #e0b94a;
  margin: 0 0 16px 0;
}

.confirmation-modal-message {
  font-size: 15px;
  color: rgba(245, 245, 245, 0.7);
  line-height: 1.7;
  margin: 0 0 32px 0;
}

.confirmation-modal-button {
  padding: 16px 40px;
  background: linear-gradient(135deg, #e0b94a, #d4a940);
  color: #0d0d0d;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (min-width: 1025px) {
  .confirmation-modal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 185, 74, 0.4);
  }
}

/* Responsive modals */
@media (max-width: 768px) {
  .error-modal-content,
  .confirmation-modal-content {
    padding: 40px 28px;
  }
  
  .error-modal-title,
  .confirmation-modal-title {
    font-size: 24px;
  }
}

/* Horaires - Version simple */
.schedule-text {
  line-height: 1.8;
  color: rgba(245, 245, 245, 0.8);
}

.delivery-note {
  color: #e0b94a;
  font-style: italic;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 0.3rem;
}

.closed {
  color: rgba(224, 74, 74, 0.9);
  font-weight: 500;
}

.star {
  color: #e0b94a;
  font-weight: 600;
}

/* ========================================
   SECTION CARTE PREMIUM
======================================== */

.map-section-premium {
  padding: 8rem 2rem;
  position: relative;
}

.map-section-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224, 185, 74, 0.3), transparent);
  box-shadow: 0 0 20px rgba(224, 185, 74, 0.3);
}

.map-premium-container {
  max-width: 1300px;
  margin: 0 auto;
}

.map-header-premium {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.2s;
}

.map-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #e0b94a;
  margin-bottom: 1.5rem;
}

.map-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

.map-wrapper-premium {
  position: relative;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.4s;
}

.map-frame {
  height: 500px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(224, 185, 74, 0.15);
}

.map-info-premium {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 2rem 2.5rem;
  background: rgba(20, 20, 20, 0.5);
  border: 1px solid rgba(224, 185, 74, 0.15);
  border-radius: 4px;
  backdrop-filter: blur(20px);
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.6s;
}

.info-item-map {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.info-item-map svg {
  color: #e0b94a;
  flex-shrink: 0;
  margin-top: 0px;
}

.info-item-map span {
  color: rgba(245, 245, 245, 0.9);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.map-link-premium {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: transparent;
  border: 1px solid rgba(224, 185, 74, 0.3);
  color: #e0b94a;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.map-link-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(224, 185, 74, 0.1);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1025px) {
  .map-link-premium:hover::before {
    transform: translateX(0);
  }
}

.map-link-premium span,
.map-link-premium svg {
  position: relative;
  z-index: 1;
}

@media (min-width: 1025px) {
  .map-link-premium:hover {
    border-color: rgba(224, 185, 74, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 185, 74, 0.2);
  }
}

.map-link-premium svg {
  transition: transform 0.4s ease;
}

@media (min-width: 1025px) {
  .map-link-premium:hover svg {
    transform: translateX(5px);
  }
}

@media (max-width: 900px) {
  .map-section-premium {
    padding: 5rem 1.5rem;
  }

  .map-header-premium {
    margin-bottom: 3rem;
  }

  .map-title {
    font-size: 2.5rem;
  }

  .map-frame {
    height: 400px;
  }

  .map-info-premium {
    flex-direction: column;
    padding: 1.8rem 1.5rem;
    gap: 1.5rem;
  }

  .info-item-map {
    justify-content: center;
    text-align: center;
  }

  .map-link-premium {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .map-frame {
    height: 350px;
  }

  .info-item-map span {
    font-size: 0.9rem;
  }

  .map-link-premium {
    padding: 0.9rem 1.8rem;
    font-size: 0.85rem;
  }
}

/* ================================================
   FIX - Stabiliser la flèche du select CONTACT
================================================ */

.page-contact .form-group select,
.page-contact select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23e0b94a' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  background-size: 12px !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 3rem !important;
}

.page-contact .form-group select:focus,
.page-contact select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23e0b94a' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
}

.page-contact select {
  color: rgba(245, 245, 245, 0.5);
}

.page-contact select:not([value=""]) {
  color: rgba(245, 245, 245, 0.9);
}

.page-contact select option {
  color: #f5f5f5;
  background: #1a1a1a;
}

.page-contact select option:first-child {
  color: rgba(245, 245, 245, 0.5);
}

@media (max-width: 768px) {
  .page-contact .form-group select,
  .page-contact select {
    background-position: right 0.75rem center !important;
  }
}
