/* Contact Page Styles - Matching Website Design System */

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Contact Hero Section - Matching About Page Style */
.contact-hero {
  background: linear-gradient(135deg, var(--secondary-cream) 0%, var(--neutral-light) 100%);
  padding: 30px 0; /* Reduced from 40px */
  border-bottom: 3px solid var(--primary-gold);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--neutral-medium);
}

.breadcrumb a {
  color: var(--accent-coral);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--primary-gold);
}

.breadcrumb-separator {
  color: var(--neutral-medium);
  opacity: 0.6;
}

.breadcrumb-current {
  color: var(--neutral-dark);
  font-weight: 600;
}

.contact-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.highlight {
  background: var(--gradient-earth);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-subtitle {
  font-size: 18px;
  color: var(--neutral-medium);
  line-height: 1.6;
  max-width: 600px;
}

/* Section Styles */
.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

/* Specific styling for contact section titles with underlines */
.contact-page-details .section-title,
.contact-form-container .section-title {
  color: var(--neutral-dark);
  margin-bottom: 12px; /* Reduced from 16px */
  font-size: 28px;
  position: relative;
  padding-bottom: 8px; /* Reduced from 10px */
  display: inline-block;
  text-align: center;
  width: 100%;
  font-weight: 700;
}

.contact-page-details .section-title::after,
.contact-form-container .section-title::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px; /* Increased from 80px */
  height: 3px; /* Increased from 2px */
  background: linear-gradient(135deg, #E07B5F 0%, #F4A261 100%);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--neutral-medium);
  margin-bottom: 40px;
  line-height: 1.6;
}

.text-center {
  text-align: center;
}

/* Contact Information Section */
.contact-info-section {
  padding: 40px 0; /* Reduced from 60px */
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

/* Ensure contact page styles don't conflict with footer */
.contact-info-section .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Force mobile/tablet layout - HIGHEST PRIORITY */
@media screen and (max-width: 1024px) {
  .contact-info-section .container .contact-grid,
  .contact-info-section .contact-grid,
  div.contact-info-section div.container div.contact-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    flex-direction: column !important;
  }
}

/* Tablet specific */
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .contact-info-section .container .contact-grid,
  .contact-info-section .contact-grid {
    gap: 50px !important;
  }
}

/* Mobile specific */
@media screen and (max-width: 767px) {
  .contact-info-section .container .contact-grid,
  .contact-info-section .contact-grid {
    gap: 30px !important;
  }
}

.contact-info-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d4af37" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23e07b5f" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%23d4af37" opacity="0.03"/><circle cx="10" cy="60" r="0.5" fill="%23e07b5f" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  opacity: 0.6;
  z-index: 0;
}

.contact-page-details {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 32px 24px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 
    0 20px 60px rgba(15, 23, 42, 0.08),
    0 8px 24px rgba(212, 175, 55, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

/* Contact Form */
.contact-form-container {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 32px 24px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
  position: relative;
  overflow: hidden;
}

.contact-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-warm);
  border-radius: 24px 24px 0 0;
}

.contact-page-details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-warm);
  border-radius: 24px 24px 0 0;
}

.contact-description {
  color: var(--neutral-medium);
  margin-bottom: 18px; /* Reduced from 24px */
  line-height: 1.6;
  font-size: 16px;
  text-align: center;
}

/* Contact Methods */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px; /* Reduced from 18px */
  padding: 16px; /* Reduced from 20px */
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
}

.contact-method::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-warm);
  transform: scaleY(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-method:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  border-color: var(--primary-gold);
  background: rgba(255, 255, 255, 0.95);
}

.contact-method:hover::before {
  transform: scaleY(1);
}

.method-icon {
  background: var(--gradient-warm);
  color: white;
  width: 50px; /* Increased from 40px */
  height: 50px; /* Increased from 40px */
  border-radius: 14px; /* Increased from 12px */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(224, 122, 95, 0.3);
  transition: all 0.3s ease;
}

.contact-method:hover .method-icon {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(224, 122, 95, 0.4);
}

.method-details {
  flex: 1;
  text-align: center;
}

.method-details h3 {
  font-size: 18px; /* Increased from 15px */
  font-weight: 700;
  margin-bottom: 6px; /* Increased from 2px */
  color: var(--neutral-dark);
  line-height: 1.3;
}

.method-details p {
  color: var(--neutral-medium);
  margin-bottom: 4px; /* Increased from 1px */
  line-height: 1.5; /* Increased from 1.4 */
  font-size: 15px; /* Increased from 13px */
}

.method-details small {
  color: var(--neutral-medium);
  font-size: 13px; /* Increased from default */
  opacity: 0.8;
  display: block;
  margin-top: 2px;
}

.method-details a {
  color: var(--accent-coral);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.method-details a:hover {
  color: var(--primary-gold);
  text-decoration: underline;
}

.method-details small {
  color: var(--neutral-medium);
  font-size: 14px;
  opacity: 0.8;
}

/* Quick Actions */
.quick-actions {
  display: flex;
  gap: 12px; /* Reduced from 14px */
  flex-wrap: wrap;
  padding-top: 16px; /* Reduced from 20px */
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  justify-content: center;
}

/* Enhanced Button Styles */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px; /* Increased from 14px 28px */
  background: var(--gradient-warm);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px; /* Consistent size */
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(224, 122, 95, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px; /* Increased from 14px 28px */
  background: transparent;
  color: var(--accent-coral);
  border: 2px solid var(--accent-coral);
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px; /* Consistent size */
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Enhanced Button Styles */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--gradient-warm);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(224, 122, 95, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 122, 95, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  color: var(--accent-coral);
  border: 2px solid var(--accent-coral);
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--accent-coral);
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-secondary:hover::before {
  width: 100%;
}

.btn-secondary:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 122, 95, 0.3);
}

.btn-tertiary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, #b8941f 100%);
  color: white;
  border: 2px solid var(--primary-gold);
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  font-size: 16px;
}

.btn-tertiary:hover {
  background: linear-gradient(135deg, #b8941f 0%, var(--primary-gold) 100%);
  color: white;
  border-color: #b8941f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Contact Form */
.contact-form-container {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem; /* Reduced from 1.4rem */
  flex: 1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem; /* Increased from 0.6rem */
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem; /* Increased from 0.3rem */
  color: var(--neutral-dark);
  font-size: 15px; /* Increased from 13px */
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem;
  border: 2px solid #d1d5db; /* More visible border color */
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: white;
  font-family: inherit;
  color: var(--neutral-dark);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1), 0 4px 12px rgba(15, 23, 42, 0.1);
  transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
  font-style: italic;
  opacity: 0.8;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.form-submit {
  align-self: center;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  background: var(--gradient-warm);
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(224, 122, 95, 0.3);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.form-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.form-submit:hover::before {
  left: 100%;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 122, 95, 0.4);
}

/* Map Section */
.map-section {
  padding: 50px 0;
  background: rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--primary-gold);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.map-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

/* Professional Map Section */
.professional-map {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.map-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

.map-icon {
  width: 36px;
  height: 36px;
  background: #10b981;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.map-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.map-container-wrapper {
  position: relative;
  background: #f3f4f6;
}

.map-container-wrapper iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

.map-footer {
  padding: 16px 24px;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
}

.map-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}

.map-note svg {
  flex-shrink: 0;
  color: #10b981;
}

/* Remove old map-wrapper styles */
.map-wrapper {
  display: none;
}

/* Location Info Section - Dynamic Height */
.location-info {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 500px;
}

.location-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
  flex-shrink: 0;
}

.location-icon {
  width: 40px;
  height: 40px;
  background: #3b82f6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.location-title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.location-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.address-block,
.timing-block {
  background: #f9fafb;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.address-block h4,
.timing-block h4 {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.address-block h4::before {
  content: "📍";
  font-size: 16px;
}

.timing-block h4::before {
  content: "🕒";
  font-size: 16px;
}

.address-block p,
.timing-block p {
  font-size: 15px;
  color: #111827;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

.location-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.directions-btn,
.call-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.directions-btn {
  background: #3b82f6;
  color: white;
  border: 2px solid #3b82f6;
}

.directions-btn:hover {
  background: #2563eb;
  border-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.call-btn {
  background: white;
  color: #3b82f6;
  border: 2px solid #3b82f6;
}

.call-btn:hover {
  background: #3b82f6;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Form Messages */
.form-message {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-weight: 500;
}

.form-message.success {
  background: rgba(129, 178, 154, 0.1);
  color: var(--primary-sage);
  border: 1px solid var(--primary-sage);
}

.form-message.error {
  background: rgba(166, 52, 70, 0.1);
  color: var(--accent-burgundy);
  border: 1px solid var(--accent-burgundy);
}

/* Field-level validation errors */
.field-error {
  color: var(--accent-burgundy);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

/* Invalid input styling */
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: var(--accent-burgundy);
  box-shadow: 0 0 0 2px rgba(166, 52, 70, 0.1);
}

.form-group input.invalid:focus,
.form-group select.invalid:focus,
.form-group textarea.invalid:focus {
  border-color: var(--accent-burgundy);
  box-shadow: 0 0 0 3px rgba(166, 52, 70, 0.2);
}

/* Loading State */
.form-submit.loading {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-submit.loading::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 0.5rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Additional Responsive Styles */
@media (max-width: 1024px) {
  .contact-page-details {
    text-align: center;
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 32px auto 24px;
  }
  
  .map-container {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 30px 0;
  }
  
  .contact-title {
    font-size: 28px;
  }
  
  .contact-subtitle {
    font-size: 16px;
  }
  
  .contact-info-section {
    padding: 50px 0;
  }
  
  .contact-info-section .contact-grid {
    gap: 30px;
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .contact-form-container {
    padding: 24px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .quick-actions {
    justify-content: center;
  }
  
  .map-section {
    padding: 50px 0;
  }
  
  .map-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 20px 0;
  }
  
  .contact-title {
    font-size: 24px;
  }
  
  .contact-info-section {
    padding: 40px 0;
  }
  
  .contact-form-container {
    padding: 1.5rem;
  }
  
  .contact-method {
    padding: 1rem;
  }
  
  .method-icon {
    width: 40px;
    height: 40px;
  }
  
  .quick-actions {
    flex-direction: column;
  }
  
  .map-section {
    padding: 40px 0;
  }
}

/* Form Note */
.form-note {
  background: linear-gradient(135deg, var(--secondary-cream) 0%, var(--neutral-light) 100%);
  border: 1px solid var(--primary-gold);
  border-radius: 10px;
  padding: 1.2rem;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.1);
}

.form-note p {
  margin: 0;
  color: var(--neutral-dark);
  font-size: 14px;
  line-height: 1.5;
}

.form-note strong {
  color: var(--accent-coral);
  font-weight: 700;
}

/* FINAL OVERRIDE - Mobile and Tablet Layout Fix */
@media (max-width: 1024px) {
  .contact-info-section .contact-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto !important;
  }
}

@media (max-width: 768px) {
  .contact-info-section .contact-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto !important;
  }
}