/* ===== CONTACT PAGE CSS - EFG AFRO MARKET ===== */
/* Header and Footer styles removed - using global header.css and footer.css */

/* Contact page specific styles that extend the main style.css */

/* ===== PAGE HERO SECTION ===== */
.page-hero-section {
  padding: 150px 0 80px;
  text-align: center;
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--background-white) 0%, var(--background-light) 100%);
  margin-top: 80px;
}

.hero-content {
  width: 100%;
}

.page-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.page-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2rem;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(5, 84, 64, 0.1);
  border: 1px solid rgba(5, 84, 64, 0.2);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(5, 84, 64, 0.1);
  animation: fadeInDown 1s ease-out;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  animation: pulse 2s infinite;
  color: var(--accent-orange);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-stats .stat-item {
  text-align: center;
}

.hero-stats .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-stats .stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ===== SECTION COMMON STYLES ===== */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(5, 84, 64, 0.1);
  border: 1px solid rgba(5, 84, 64, 0.2);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(5, 84, 64, 0.1);
}

.section-badge i {
  font-size: 0.8rem;
  color: var(--accent-orange);
}

/* ===== CONTACT OPTIONS SECTION ===== */
.contact-options-section {
  padding: 100px 0;
  background: var(--background-light);
}

/* Desktop Contact Options Grid */
.contact-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.d-none {
  display: none !important;
}

.d-md-grid {
  display: none !important;
}

@media (min-width: 768px) {
  .d-md-grid {
    display: grid !important;
  }
  .d-block.d-md-none {
    display: none !important;
  }
}

.contact-option-card {
  background: var(--background-white);
  border: 2px solid rgba(5, 84, 64, 0.15);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  cursor: pointer;
}

.contact-option-card:hover {
  transform: translateY(-10px);
  border-color: rgba(5, 84, 64, 0.4);
  box-shadow: var(--card-shadow-hover);
}

.contact-option-card.active {
  border-color: var(--primary-green);
  background: rgba(5, 84, 64, 0.02);
  border-width: 3px;
}

.contact-option-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(5, 84, 64, 0.05), transparent);
  transition: left 0.6s;
}

.contact-option-card:hover::before {
  left: 100%;
}

.option-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-orange));
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 25px rgba(5, 84, 64, 0.2);
}

.contact-option-card:hover .option-icon {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 12px 35px rgba(5, 84, 64, 0.3);
}

.contact-option-card h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.contact-option-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.btn-option {
  background: var(--background-white);
  border: 2px solid rgba(5, 84, 64, 0.25);
  color: var(--text-primary);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(5, 84, 64, 0.1);
}

.btn-option:hover,
.btn-option.active {
  background: var(--primary-green);
  color: white;
  border-color: var(--primary-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 84, 64, 0.3);
}

/* Mobile Contact Options Carousel */
.contact-options-carousel {
  margin-top: 3rem;
}

.contact-options-owl .contact-option-card {
  margin: 0 10px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 1.5rem;
}

.contact-options-owl .option-icon {
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-options-owl .contact-option-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.contact-options-owl .contact-option-card p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  flex-grow: 1;
  line-height: 1.4;
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
  padding: 100px 0;
  background: var(--background-white);
}

.contact-form-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(5, 84, 64, 0.15);
  border-radius: var(--border-radius-xl);
  padding: 3rem;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(5, 84, 64, 0.1);
}

.form-header h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.form-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ===== FORM LAYOUT ===== */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.form-column {
  display: flex;
  flex-direction: column;
}

/* ===== FORM SECTIONS ===== */
.form-section {
  margin-bottom: 2.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(5, 84, 64, 0.05);
}

.form-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  color: var(--primary-green);
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title i {
  font-size: 1.2rem;
}

/* ===== FORM CONTROLS ===== */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
}

.required {
  color: #ef4444;
  margin-left: 3px;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(5, 84, 64, 0.2);
  border-radius: var(--border-radius);
  color: var(--text-primary);
  font-size: 1rem;
  transition: var(--transition-smooth);
  font-family: inherit;
}

.form-control::placeholder {
  color: var(--text-light);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-green);
  background: var(--background-white);
  box-shadow: 0 0 15px rgba(5, 84, 64, 0.2);
  border-width: 2px;
}

.form-control:valid {
  border-color: #22c55e;
}

.form-control:invalid:not(:placeholder-shown) {
  border-color: #ef4444;
}

/* Textarea specific styles */
textarea.form-control {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

/* Select specific styles */
select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 45px;
}

/* ===== FORM VALIDATION ===== */
.form-control.is-invalid {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
}

.form-control.is-valid {
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.05);
}

.invalid-feedback {
  display: none;
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.form-control.is-invalid ~ .invalid-feedback {
  display: block;
}

.form-hint {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

/* ===== CHARACTER COUNT ===== */
.character-count {
  text-align: right;
  margin-top: 0.5rem;
  color: var(--text-light);
  font-size: 0.85rem;
}

.character-count.warning {
  color: #f59e0b;
}

.character-count.error {
  color: #ef4444;
}

/* ===== CHECKBOX AND RADIO STYLES ===== */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.5rem;
}

.form-check-input {
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(5, 84, 64, 0.2);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
}

.form-check-input:checked {
  background: var(--primary-green);
  border-color: var(--primary-green);
}

.form-check-input:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.form-check-label {
  color: var(--text-primary);
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.4;
}

.form-check-label a {
  color: var(--primary-green);
  text-decoration: none;
}

.form-check-label a:hover {
  text-decoration: underline;
}

/* ===== PRIVACY NOTICE ===== */
.privacy-notice {
  background: rgba(5, 84, 64, 0.05);
  border: 2px solid rgba(5, 84, 64, 0.25);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-top: 1rem;
}

.privacy-notice .form-check-label {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ===== FORM SUBMIT ===== */
.form-submit {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(5, 84, 64, 0.1);
}

.btn-submit {
  background: linear-gradient(135deg, var(--primary-green), var(--brown-accent));
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: var(--border-radius-xl);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  min-width: 200px;
  justify-content: center;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(5, 84, 64, 0.4);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-loading {
  display: none;
  align-items: center;
  gap: 8px;
}

.btn-submit.loading .btn-text {
  display: none;
}

.btn-submit.loading .btn-loading {
  display: flex;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.submit-note {
  margin-top: 1rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ===== OFFICE INFO SECTION ===== */
.office-info-section {
  padding: 100px 0;
  background: var(--background-light);
}

.contact-info-card {
  background: var(--background-white);
  border: 2px solid rgba(5, 84, 64, 0.15);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(5, 84, 64, 0.4);
  box-shadow: var(--card-shadow-hover);
}

.info-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(5, 84, 64, 0.1);
}

.info-header i {
  font-size: 1.5rem;
  color: var(--primary-green);
}

.info-header h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ===== OFFICE INFO ===== */
.office-address {
  margin-bottom: 1.5rem;
}

.office-address p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.office-hours h5 {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(5, 84, 64, 0.05);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-item span:first-child {
  font-weight: 500;
}

.hours-item span:last-child {
  color: var(--text-primary);
}

/* ===== RESPONSE TIMES ===== */
.response-times {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.response-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(5, 84, 64, 0.2);
  border-radius: var(--border-radius);
  transition: var(--transition-smooth);
}

.response-item:hover {
  background: rgba(5, 84, 64, 0.02);
  border-color: rgba(5, 84, 64, 0.3);
}

.response-icon {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-orange));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.response-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.response-type {
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 500;
}

.response-time {
  color: var(--primary-green);
  font-size: 0.8rem;
  font-weight: 600;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 100px 0;
  background: var(--background-white);
}

.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background: var(--background-white);
  border: 2px solid rgba(5, 84, 64, 0.15);
  border-radius: var(--border-radius-lg);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(5, 84, 64, 0.4);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.faq-question:hover {
  background: rgba(5, 84, 64, 0.02);
}

.faq-question h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  flex: 1;
}

.faq-question i {
  color: var(--primary-green);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(5, 84, 64, 0.02);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 2rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ===== SUCCESS MODAL ===== */
.modal-content {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(5, 84, 64, 0.15);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--card-shadow);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #22c55e, #10b981);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: white;
}

.modal-body h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.modal-body p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

#referenceId {
  color: var(--primary-green);
  font-weight: 600;
  font-family: monospace;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green), var(--brown-accent));
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 84, 64, 0.3);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease-out;
}

.fade-out {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease-out;
}

.animate-in {
  animation: fadeInUp 0.8s ease-out;
}

.count-up {
  animation: countUp 0.8s ease-out;
}

/* ===== DYNAMIC FORM SECTIONS ===== */
.dynamic-section {
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE DESIGN ===== */

/* ===== LARGE DESKTOP (1200px+) ===== */
@media (min-width: 1200px) {
  .contact-options-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== TABLET AND SMALL DESKTOP (768px - 1199px) ===== */
@media (max-width: 1199px) {
  .contact-options-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* ===== TABLET (768px - 991px) ===== */
@media (max-width: 991.98px) {
  .page-hero-section {
    padding: 120px 0 60px;
    min-height: 40vh;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .contact-form-section,
  .contact-options-section,
  .faq-section,
  .office-info-section {
    padding: 60px 0;
  }

  .contact-form-card {
    padding: 2rem;
  }

  .form-row {
    gap: 2rem;
  }
}

/* ===== MOBILE (576px - 767px) ===== */
@media (max-width: 767.98px) {
  .page-hero-section {
    padding: 100px 0 50px;
    min-height: 35vh;
  }
  
  .page-title {
    font-size: 2.5rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .contact-form-section,
  .contact-options-section,
  .faq-section,
  .office-info-section {
    padding: 50px 0;
  }

  .contact-options-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-option-card {
    padding: 1.5rem;
  }

  .option-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .contact-form-card {
    padding: 2rem;
  }

  .form-header h3 {
    font-size: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-title {
    font-size: 1rem;
  }

  .checkbox-group {
    flex-direction: column;
    gap: 0.5rem;
  }

  .btn-submit {
    width: 100%;
    padding: 15px 20px;
  }

  .contact-info-card {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .response-item {
    padding: 0.75rem;
  }

  .response-icon {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .faq-question {
    padding: 1rem 1.5rem;
  }

  .faq-question h4 {
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 0 1.5rem 1rem;
  }
}

/* ===== SMALL MOBILE (max-width: 575px) ===== */
@media (max-width: 575.98px) {
  .page-hero-section {
    padding: 90px 0 40px;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .contact-option-card {
    padding: 1rem;
  }

  .option-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .contact-form-card {
    padding: 1.5rem;
  }

  .form-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
  }

  .form-header h3 {
    font-size: 1.3rem;
  }

  .form-control {
    padding: 12px 15px;
  }

  .contact-info-card {
    padding: 1rem;
  }

  .info-header {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
  }

  .response-item {
    padding: 0.5rem;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .response-icon {
    width: 25px;
    height: 25px;
    font-size: 0.7rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

/* ===== OWL CAROUSEL CUSTOMIZATION ===== */
.owl-carousel .owl-nav {
  margin-top: 20px;
  text-align: center;
}

.owl-carousel .owl-nav button {
  background: var(--primary-green) !important;
  color: white !important;
  border-radius: 50% !important;
  width: 45px !important;
  height: 45px !important;
  font-size: 16px !important;
  margin: 0 10px !important;
  transition: all 0.3s ease !important;
}

.owl-carousel .owl-nav button:hover {
  background: var(--accent-orange) !important;
  transform: scale(1.1) !important;
}

.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  margin: 0 5px;
}

.owl-carousel .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  background: rgba(5, 84, 64, 0.3);
  border-radius: 50%;
  display: block;
  transition: all 0.3s ease;
}

.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
  background: var(--primary-green);
  transform: scale(1.2);
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-muted {
  color: var(--text-secondary);
}

.d-flex {
  display: flex;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-lg-flex {
  display: flex;
}

.d-lg-none {
  display: none;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.me-auto {
  margin-right: auto;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

/* ===== BOOTSTRAP GRID SYSTEM ===== */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-lg-4,
.col-lg-8,
.col-lg-6,
.col-md-6 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
.touch-device .contact-option-card:active,
.touch-device .btn-option:active,
.touch-device .btn-submit:active,
.touch-device .faq-question:active {
  transform: scale(0.98);
}

.touch-active {
  background: rgba(5, 84, 64, 0.05) !important;
  border-color: var(--primary-green) !important;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background-light);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary-green), var(--accent-orange));
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--accent-orange), var(--primary-green));
}

/* ===== PRINT STYLES ===== */
@media print {
  .back-to-top,
  .owl-carousel .owl-nav,
  .owl-carousel .owl-dots {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .section-title,
  .page-title {
    color: black;
  }

  .gradient-text {
    color: var(--primary-green);
  }

  .page-hero-section {
    padding: 2rem 0 1rem;
  }

  section {
    padding: 2rem 0;
  }

  .contact-options-section,
  .office-info-section {
    page-break-inside: avoid;
  }
}