:root {
  --contact-navy: #003c34;
  --contact-orange: #f6630c;
  --contact-text: #333;
  --contact-muted: #666;
  --contact-bg-light: #f9f9f9;
}

/* Contact Grid Layout */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  margin-bottom: 5rem;
}

/* Form Styling */
.contact-form-container {
  background: #ffffff;
}

.contact-form-header {
  margin-bottom: 2.5rem;
}

.contact-form-header h2 {
  font-size: 2.2rem;
  color: var(--contact-navy);
  font-weight: 550;
  margin-top: 0; /* Clear default margin */
  margin-bottom: 1rem;
}

.contact-form-header p {
  color: #003c34;
  font-size: 1.15rem;
  line-height: 1.6;
}

.modern-form {
  display: grid;
  gap: 1.5rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--contact-navy);
  
  letter-spacing: 0.5px;
}

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(0, 60, 52, 0.1);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--contact-bg-light);
}

.form-input:focus {
  outline: none;
  border-color: var(--contact-orange);
  background: #fff;
 
}

textarea.form-input {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background: #f6630c;
  color: #fff;
  border: none;
  padding: .75rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: fit-content;
  margin-top: 1rem;
}

.submit-btn:hover {
  background: #e05500;
}

.submit-btn:disabled {
  background: #cbd5e0 !important;
  cursor: not-allowed !important;
  opacity: 0.7 !important;
  transform: none !important;
}

/* Sidebar Panel */
.contact-sidebar {
  position: sticky;
  top: 120px;
  align-self: start;
  
}

.contact-info-card {
  background: rgba(0, 60, 52, 0.9);
  color: #fff;
  padding: 1.2rem 2.5rem 2.5rem; /* Minimizing gap between edge and "Contact Info" title */
  
  border-radius: 10px;
  
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.contact-info-header {
  margin-bottom: 2rem;
}

.contact-info-header h3 {
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #fff;
  font-weight: 600;
}

.contact-info-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.info-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--contact-orange);
}

.info-text h4 {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.2;
}

.info-text p, .info-text a {
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
  line-height: 1.5;
  margin-top: 0.5rem;
}

.info-text a:hover {
  color: var(--contact-orange);
}

/* Socials */
.sidebar-socials {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-socials h4 {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-icons-wrapper {
  display: flex;
  gap: 1rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: var(--contact-orange);
 
}

.social-btn img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* Map Section */
.map-section {
  margin-bottom: 5rem;
}

.map-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1.7px solid rgba(0,0,0,0.05);
}

.map-card iframe {
  display: block;
}

.map-header {
  padding: 1.5rem 2rem;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.map-header h3 {
  font-size: 1.2rem;
  color: var(--contact-navy);
  font-weight: 600;
}

.map-link {
  color: var(--contact-orange);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.map-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1100px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .form-group-row {
    grid-template-columns: 1fr;
  }
  .contact-form-header h2 {
    font-size: 1.8rem;
  }
  .submit-btn {
    width: 100%;
  }

  /* Mobile Optimizations */
  .map-card iframe {
    height: 300px; /* Smaller map on mobile */
  }
  .contact-info-card {
    padding: 2rem 1.5rem; /* Reduced horizontal padding */
  }
}

/* Popup Styling Update */
.form-popup {
  border-radius: 6px;
  padding: 3rem;
  max-width: 400px;
  width: 90%;
}

.popup-icon {
  width: 64px;
  height: 64px;
  background: rgba(0, 204, 166, 0.1);
  color: #00cca6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.modern-faq-link { color: var(--contact-orange); font-weight: 500; text-decoration: none; }
.modern-faq-link:hover { text-decoration: underline; }

/* Modern Contact FAQ Section */
.contact-faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.modern-faq-item {
  padding: 0 0 2rem 0;
  border-bottom: 1px solid rgba(0, 60, 52, 0.08);
  height: 100%;
}

.modern-faq-item h4 {
  font-size: 1.2rem;
  color: #003c34;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 0;
}

.modern-faq-item h4::before {
  content: 'Q.';
  color: var(--contact-orange);
  font-weight: 800;
  font-size: 1rem;
  margin-top: 0.1rem;
}

.modern-faq-item p {
  color: #003c34;
  font-size: 1.05rem;
  line-height: 1.7;
  padding-inline-start: 2.2rem;
  margin: 0;
}

@media (max-width: 1100px) {
  .contact-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .modern-faq-item h4 {
    font-size: 1.1rem;
  }
}

