/* ========================================
   CONTACT PAGE - STYLES
   Al Durra National Real Estate
   ======================================== */

/* ========================================
   1. CONTACT HERO SECTION
   ======================================== */
.contact-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem var(--container-padding) 4rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Breadcrumb */
.contact-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.contact-breadcrumb a,
.contact-breadcrumb span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.contact-breadcrumb a:hover {
  color: white;
}

.contact-breadcrumb svg {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--durra-orange);
  margin-bottom: 1.5rem;
}

.contact-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.contact-hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   2. CONTACT METHODS CARDS
   ======================================== */
.contact-methods {
  padding: 0;
  margin-top: -4rem;
  position: relative;
  z-index: 10;
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .contact-methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-methods-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contact-method-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s var(--ease-smooth);
  text-align: center;
}

.contact-method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.contact-method-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(165, 42, 42, 0.08);
  border-radius: 16px;
  margin: 0 auto 1.25rem;
  transition: all 0.4s var(--ease-smooth);
}

.contact-method-card:hover .contact-method-icon {
  background: var(--durra-red);
}

.contact-method-icon svg {
  width: 28px;
  height: 28px;
  color: var(--durra-red);
  transition: color 0.4s var(--ease-smooth);
}

.contact-method-card:hover .contact-method-icon svg {
  color: white;
}

.contact-method-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.contact-method-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.contact-method-card a {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--durra-red);
  transition: color 0.3s ease;
}

.contact-method-card a:hover {
  color: var(--durra-orange);
}

.contact-method-hours {
  font-size: 0.8rem !important;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.contact-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  color: var(--durra-red) !important;
  margin-top: 0.75rem;
}

.contact-map-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.contact-map-link:hover svg {
  transform: translateX(4px);
}

/* ========================================
   3. MAIN CONTACT SECTION
   ======================================== */
.contact-main {
  padding: 6rem 0;
  background: var(--bg-light);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Left Column - Info & Quick Actions */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-info-header .section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--durra-red);
  margin-bottom: 1rem;
}

.contact-info-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-info-header p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Quick Inquiry Options */
.quick-inquiry-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quick-inquiry-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s var(--ease-smooth);
  cursor: pointer;
  text-align: left;
  width: 100%;
}

.quick-inquiry-btn:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--durra-red);
}

.quick-inquiry-btn .btn-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(165, 42, 42, 0.08);
  border-radius: 12px;
  flex-shrink: 0;
  transition: all 0.3s var(--ease-smooth);
}

.quick-inquiry-btn:hover .btn-icon {
  background: var(--durra-red);
}

.quick-inquiry-btn .btn-icon svg {
  width: 22px;
  height: 22px;
  color: var(--durra-red);
  transition: color 0.3s var(--ease-smooth);
}

.quick-inquiry-btn:hover .btn-icon svg {
  color: white;
}

.quick-inquiry-btn .btn-content {
  flex: 1;
}

.quick-inquiry-btn .btn-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.quick-inquiry-btn .btn-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.quick-inquiry-btn .btn-arrow {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: all 0.3s var(--ease-smooth);
}

.quick-inquiry-btn:hover .btn-arrow {
  color: var(--durra-red);
  transform: translateX(4px);
}

/* WhatsApp Button */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: #25D366;
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s var(--ease-smooth);
  margin-top: 1rem;
}

.whatsapp-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn svg {
  width: 22px;
  height: 22px;
}

/* ========================================
   4. CONTACT FORM
   ======================================== */
.contact-form-col {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

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

.contact-form-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-form-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group label .required {
  color: var(--durra-red);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--bg-light);
  border: 2px solid transparent;
  border-radius: 10px;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: white;
  border-color: var(--durra-red);
  box-shadow: 0 0 0 4px rgba(165, 42, 42, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

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

/* Form validation states */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #dc3545;
  background: #fff5f5;
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
  border-color: #28a745;
}

.form-error-message {
  font-size: 0.8rem;
  color: #dc3545;
  display: none;
}

.form-group.error .form-error-message {
  display: block;
}

/* Privacy Consent */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-consent input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 0.125rem;
  accent-color: var(--durra-red);
  cursor: pointer;
}

.form-consent label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-consent label a {
  color: var(--durra-red);
  text-decoration: underline;
}

/* Submit Button */
.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.125rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: var(--durra-red);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s var(--ease-smooth);
  margin-top: 0.5rem;
}

.contact-submit-btn:hover {
  background: var(--durra-orange);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(165, 42, 42, 0.3);
}

.contact-submit-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.contact-submit-btn:hover svg {
  transform: translateX(4px);
}

.contact-submit-btn.loading {
  pointer-events: none;
  opacity: 0.7;
}

.contact-submit-btn .spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}

.contact-submit-btn.loading .spinner {
  display: block;
}

.contact-submit-btn.loading .btn-text,
.contact-submit-btn.loading svg:not(.spinner) {
  display: none;
}

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

/* Form Success State */
.form-success-message {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.form-success-message.active {
  display: block;
}

.form-success-message .success-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(40, 167, 69, 0.1);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

.form-success-message .success-icon svg {
  width: 40px;
  height: 40px;
  color: #28a745;
}

.form-success-message h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.form-success-message p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========================================
   5. MAP SECTION
   ======================================== */
.contact-map-section {
  padding: 0;
  position: relative;
}

.map-container {
  position: relative;
  height: 500px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(20%);
}

/* Map Info Card */
.map-info-card {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  z-index: 10;
}

.map-container .map-info-card.map-info-card-right {
  left: auto !important;
  right: 8%;
}

.map-info-card .location-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--durra-red);
  margin-bottom: 0.5rem;
}

.map-info-badge {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--durra-red);
  border-radius: 50%;
  margin-bottom: 1.25rem;
}

.map-info-badge svg {
  width: 24px;
  height: 24px;
  color: white;
}

.map-info-card h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.map-info-card .address {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.map-directions-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  background: var(--durra-red);
  border-radius: 8px;
  transition: all 0.3s var(--ease-smooth);
}

.map-directions-btn:hover {
  background: var(--durra-orange);
  transform: translateY(-2px);
}

.map-directions-btn svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 1023px) {
  .map-container {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .map-container iframe {
    height: 350px;
  }

  .map-info-card {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    max-width: none;
    margin: -2rem 1.5rem 0;
    z-index: 10;
  }
}

@media (max-width: 640px) {
  .map-container iframe {
    height: 280px;
  }

  .map-info-card {
    margin: -1.5rem 1rem 0;
    padding: 1.5rem;
  }
}

/* ========================================
   6. DEPARTMENTS SECTION
   ======================================== */
.contact-departments {
  padding: 6rem 0;
  background: var(--bg-light);
}

.departments-header {
  text-align: center;
  margin-bottom: 3rem;
}

.departments-header .section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--durra-red);
  margin-bottom: 1rem;
}

.departments-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.departments-header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.departments-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .departments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .departments-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.department-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s var(--ease-smooth);
  text-align: center;
}

.department-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.department-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(165, 42, 42, 0.08);
  border-radius: 14px;
  margin: 0 auto 1.25rem;
  transition: all 0.4s var(--ease-smooth);
}

.department-card:hover .department-icon {
  background: var(--durra-red);
}

.department-icon svg {
  width: 26px;
  height: 26px;
  color: var(--durra-red);
  transition: color 0.4s var(--ease-smooth);
}

.department-card:hover .department-icon svg {
  color: white;
}

.department-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.department-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.department-contact a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.department-contact a:hover {
  color: var(--durra-red);
}

/* ========================================
   7. WHY CONTACT SECTION
   ======================================== */
.why-contact-section {
  padding: 5rem 0;
  background: white;
}

.why-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .why-contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.why-contact-content .section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--durra-red);
  margin-bottom: 1rem;
}

.why-contact-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.why-contact-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.why-contact-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .why-contact-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 12px;
  transition: all 0.3s var(--ease-smooth);
}

.why-feature:hover {
  background: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.why-feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(165, 42, 42, 0.08);
  border-radius: 10px;
  flex-shrink: 0;
}

.why-feature-icon svg {
  width: 22px;
  height: 22px;
  color: var(--durra-red);
}

.why-feature h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.why-feature p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ========================================
   8. FAQ SNIPPET SECTION
   ======================================== */
.contact-faq {
  padding: 5rem 0;
  background: var(--durra-cream);
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header .section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--durra-red);
  margin-bottom: 1rem;
}

.faq-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--text-dark);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.faq-item {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.faq-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ========================================
   9. FOOTER CTA SECTION
   ======================================== */
.contact-footer-cta {
  padding: 6rem 0;
  background: var(--durra-pearl);
  text-align: center;
}

.footer-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.footer-cta-content .section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--durra-red);
  margin-bottom: 1.25rem;
}

.footer-cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.footer-cta-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.footer-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.footer-cta-buttons .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  background: var(--durra-red);
  border-radius: 50px;
  transition: all 0.4s var(--ease-smooth);
}

.footer-cta-buttons .btn-primary:hover {
  background: var(--durra-orange);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(165, 42, 42, 0.4);
}

.footer-cta-buttons .btn-primary svg {
  width: 18px;
  height: 18px;
}

.footer-cta-buttons .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  background: transparent;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  transition: all 0.4s var(--ease-smooth);
}

.footer-cta-buttons .btn-outline:hover {
  background: var(--text-dark);
  color: white;
  border-color: var(--text-dark);
}

/* ========================================
   10. RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 1023px) {
  .contact-hero {
    min-height: 45vh;
  }

  .contact-hero-content {
    padding: 5rem var(--container-padding) 3rem;
  }

  .contact-main {
    padding: 5rem 0;
  }

  .contact-form-col {
    padding: 2rem;
  }
}

@media (max-width: 767px) {
  .contact-hero {
    min-height: 40vh;
  }

  .contact-hero-content {
    padding: 4rem var(--container-padding) 2.5rem;
  }

  .contact-methods {
    margin-top: -3rem;
  }

  .contact-method-card {
    padding: 1.5rem;
  }

  .contact-main {
    padding: 4rem 0;
  }

  .contact-form-col {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .contact-departments,
  .why-contact-section,
  .contact-faq {
    padding: 4rem 0;
  }

  .contact-footer-cta {
    padding: 4rem 0;
  }

  .footer-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-cta-buttons .btn-primary,
  .footer-cta-buttons .btn-outline {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
