.elementor-1392 .elementor-element.elementor-element-4c9ffba{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-fbcfde2 *//* ============================================================
   CONTACT US PAGE - OPTIMIZED WITH GLOBAL COLORS
   ============================================================ */

/* Container */
.exaghost-contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header Section */
.exaghost-contact-header {
  background: linear-gradient(135deg, var(--neutral-900) 0%, var(--neutral-800) 50%, #3D1A2E 100%);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
  border-radius: 0 0 40px 40px;
}

.exaghost-contact-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,107,53,0.15), transparent 70%);
  pointer-events: none;
}

.exaghost-contact-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-glow);
}

.exaghost-contact-header h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 15px;
  color: white;
  font-weight: 800;
}

.exaghost-contact-tagline {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
}

/* Section Badge - Single Class */
.exaghost-section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,107,53,0.1);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

/* Contact Grid */
.exaghost-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* Contact Cards */
.exaghost-contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.exaghost-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 25px;
  border: 1px solid var(--color-border);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.exaghost-contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-glow);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.exaghost-contact-card:hover::before {
  transform: scaleX(1);
}

.exaghost-contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}

.exaghost-contact-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(217,70,239,0.1));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.exaghost-contact-details h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--color-text);
}

.exaghost-contact-details p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.exaghost-contact-details a {
  color: var(--color-primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.exaghost-contact-details a:hover {
  color: var(--color-primary-dark);
}

.exaghost-contact-details address {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.exaghost-live-chat-btn {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
  margin-top: 8px;
}

.exaghost-live-chat-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-primary);
}

/* Contact Form */
.exaghost-contact-form-wrapper {
  background: var(--color-surface);
  border-radius: var(--radius-2xl);
  padding: 35px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.exaghost-form-header {
  text-align: center;
  margin-bottom: 30px;
}

.exaghost-form-header h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--color-text);
}

.exaghost-form-header p {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.exaghost-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.exaghost-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.exaghost-form-group {
  position: relative;
}

.exaghost-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.exaghost-form-group input,
.exaghost-form-group select,
.exaghost-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  background: var(--color-surface);
  transition: var(--transition-base);
}

.exaghost-form-group input:focus,
.exaghost-form-group select:focus,
.exaghost-form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-glow);
}

.exaghost-form-group.full-width {
  grid-column: span 2;
}

/* Checkbox */
.exaghost-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.exaghost-checkbox input {
  display: none;
}

.exaghost-checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-border);
  border-radius: 4px;
  display: inline-block;
  position: relative;
}

.exaghost-checkbox input:checked + .exaghost-checkmark {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.exaghost-checkbox input:checked + .exaghost-checkmark::after {
  content: '✓';
  position: absolute;
  top: -2px;
  left: 3px;
  color: white;
  font-size: 12px;
}

.exaghost-checkbox a {
  color: var(--color-primary);
  text-decoration: none;
}

/* Submit Button */
.exaghost-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--gradient-primary);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition-base);
  width: 100%;
}

.exaghost-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-primary);
}

/* Map Section */
.exaghost-map-section {
  margin-bottom: 60px;
  text-align: center;
}

.exaghost-map-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  margin-bottom: 10px;
}

.exaghost-map-wrapper {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* FAQ Section */
.exaghost-contact-faq {
  margin-bottom: 60px;
}

.exaghost-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.exaghost-faq-item {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.exaghost-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  color: var(--color-text);
  transition: background var(--transition-fast);
}

.exaghost-faq-question:hover {
  background: rgba(255,107,53,0.03);
}

.exaghost-faq-question svg {
  transition: transform var(--transition-fast);
}

.exaghost-faq-item.active .exaghost-faq-question svg {
  transform: rotate(180deg);
}

.exaghost-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.exaghost-faq-item.active .exaghost-faq-answer {
  max-height: 200px;
  padding: 0 20px 18px;
}

.exaghost-faq-answer p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Social Section */
.exaghost-social-section {
  background: linear-gradient(135deg, var(--color-bg), var(--color-surface));
  border-radius: var(--radius-2xl);
  padding: 50px;
  text-align: center;
  margin-bottom: 60px;
  border: 1px solid var(--color-border);
}

.exaghost-social-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  margin-bottom: 15px;
}

.exaghost-social-section p {
  color: var(--color-text-secondary);
  margin-bottom: 30px;
}

.exaghost-social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.exaghost-social-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: var(--transition-base);
  border: 1px solid var(--color-border);
}

.exaghost-social-icon:hover {
  transform: translateY(-3px);
  color: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

/* Responsive */
@media (max-width: 968px) {
  .exaghost-contact-grid { grid-template-columns: 1fr; }
  .exaghost-faq-grid { grid-template-columns: 1fr; }
  .exaghost-form-row { grid-template-columns: 1fr; }
  .exaghost-form-group.full-width { grid-column: span 1; }
  .exaghost-contact-header { padding: 60px 0 50px; }
}

@media (max-width: 768px) {
  .exaghost-contact-container { padding: 0 16px; }
  .exaghost-contact-form-wrapper { padding: 25px; }
  .exaghost-social-section { padding: 30px 20px; }
  .exaghost-social-icons { flex-direction: column; align-items: center; }
  .exaghost-social-icon { width: 100%; max-width: 200px; justify-content: center; }
}

@media (max-width: 480px) {
  .exaghost-contact-card { flex-direction: column; text-align: center; align-items: center; }
  .exaghost-contact-details a { display: block; }
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.exaghost-contact-grid,
.exaghost-map-section,
.exaghost-contact-faq,
.exaghost-social-section {
  animation: fadeInUp 0.6s ease forwards;
}

/* Theme Compatibility */
.entry-content, .site-main {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

::selection {
  background: rgba(255,107,53,0.2);
  color: var(--color-text);
}/* End custom CSS */