/* ==========================================================================
   LHYcloud Enterprise — Contact Support Hero Design System
   Modern Hostinger + DigitalOcean UI style with smooth typography & aesthetics
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --primary-blue: #0060fe;
  --primary-hover: #004cce;
  --secondary-purple: #6366f1;
  --accent-cyan: #06b6d4;
  --dark-slate: #0f172a;
  --bg-main: #f8fafc;
  --bg-gradient: linear-gradient(135deg, #f4f8ff 0%, #eef5ff 50%, #e6f0fa 100%);
  --card-bg: #ffffff;
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  --border-color: #e2e8f0;
  --focus-ring: rgba(0, 96, 254, 0.15);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 45px -10px rgba(0, 96, 254, 0.15);
  --radius-xl: 20px;
  --radius-lg: 16px;
  --radius-md: 10px;
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-main);
  background: var(--bg-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

/* ==================== CONTACT HERO SECTION ==================== */
.page-hero-section {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  background: var(--bg-gradient);
  padding: 110px 0 60px;
  overflow: hidden;
}

/* Background Ambient Glows */
.page-hero-section::before {
  content: '';
  position: absolute;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, rgba(0, 96, 254, 0.05) 50%, transparent 70%);
  top: -100px;
  left: -150px;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.page-hero-section::after {
  content: '';
  position: absolute;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(0, 96, 254, 0.18) 0%, rgba(99, 102, 241, 0.08) 50%, transparent 70%);
  bottom: -150px;
  right: -100px;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* ==================== HERO LEFT (TEXT & FORM) ==================== */
.hero-left {
  width: 100%;
}

.eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #0060fe;
  background: transparent;
  padding: 0;
  border: none;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.hero-title .highlight-blue {
  color: #0060fe;
  font-weight: 800;
}

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 400;
}

/* ==================== CONTACT FORM ==================== */
.contact-form {
  background: var(--card-bg);
  padding: 22px 28px;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.9);
  transition: box-shadow var(--transition-smooth);
}

.form-header-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--dark-slate);
  margin-bottom: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.input-with-icon {
  position: relative;
  width: 100%;
  margin-bottom: 12px;
}

.form-row .input-with-icon {
  margin-bottom: 0;
}

.input-with-icon svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: stroke var(--transition-fast);
}

.textarea-icon-wrapper svg {
  top: 14px;
  transform: none;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text-main);
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 0;
  padding: 9px 14px 9px 40px;
  outline: none;
  transition: all var(--transition-fast);
}

.contact-form textarea {
  resize: none;
  min-height: 70px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: #ffffff;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3.5px rgba(0, 96, 254, 0.12);
}

.input-with-icon:focus-within svg {
  stroke: var(--primary-blue);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

/* ==================== BUTTON STYLES ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.btn.primary {
  background: #0060fe;
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 96, 254, 0.25);
}

.btn.primary:hover {
  background: #0052db;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 96, 254, 0.35);
}

.btn.ghost {
  background: #ffffff;
  color: #0060fe;
  border: 1.5px solid #cbd5e1;
}

.btn.ghost:hover {
  background: #f8fafc;
  border-color: #0060fe;
}

/* Form Bottom Trust Footer */
.form-trust-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
  gap: 8px;
  flex-wrap: wrap;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge-icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 0;
  background: rgba(0, 96, 254, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-badge-item strong {
  display: block;
  font-size: 0.76rem;
  color: #1e293b;
  line-height: 1.2;
}

.trust-badge-item span {
  display: block;
  font-size: 0.68rem;
  color: #64748b;
  line-height: 1.2;
}

/* Bottom Contact Bar Strip */
.hero-bottom-contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0;
  padding: 14px 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  font-size: 0.88rem;
  flex-wrap: wrap;
}

.strip-label {
  font-weight: 600;
  color: #1e293b;
}

.strip-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #0060fe;
  text-decoration: none;
  transition: color 0.2s ease;
}

.strip-link span {
  font-weight: 400;
  color: #64748b;
}

.strip-link:hover {
  color: #004cce;
}

/* ==================== HERO RIGHT (MEDIA & 3D CARD) ==================== */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.hero-media {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 400px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 96, 254, 0.1);
  border: 4px solid #ffffff;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: #ffffff;
}

.hero-media:hover {
  transform: translateY(-4px);
}

.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}

.hero-media:hover img {
  transform: scale(1.03);
}

/* Media Glow Overlay */
.hero-media::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-xl);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-left,
  .hero-media {
    max-width: 100%;
  }

  .hero-title {
    font-size: 2.6rem;
  }
}

@media (max-width: 640px) {
  .page-hero-section {
    padding: 50px 0;
  }

  .container {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .contact-form {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}


.contact-details-section {
  position: relative;
  background-color: #050b1c;
  padding: 110px 0;
  color: #ffffff;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.relative-z {
  position: relative;
  z-index: 2;
}

/* Ambient Glowing Background Circles & Grid Lines */
.ambient-bg-glow {
  display: none;
}

.glow-1 {
  display: none;
}

.glow-2 {
  display: none;
}

.grid-line-overlay {
  display: none;
}

/* ==================== SECTION HEADER ==================== */
.section-header {
  margin-bottom: 70px;
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.badge-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 96, 254, 0.1);
  color: var(--primary, #0060fe);
  border: 1px solid rgba(0, 96, 254, 0.2);
  padding: 6px 18px;
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin-bottom: 18px;
  color: #ffffff;
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  color: #94a3b8;
  line-height: 1.65;
}

/* ==================== SPLIT 2-COLUMN GRID ==================== */
.split-contact-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 50px;
  align-items: start;
}

/* ==================== LEFT: 2x2 GLASSMORPHISM CARDS ==================== */
.cards-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 34px;
}

.glass-contact-card {
  background: rgba(14, 30, 80, 0.4);
  border: 1px solid rgba(30, 93, 217, 0.4);
  border-radius: 0;
  padding: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}

.glass-contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(30, 93, 217, 0.8);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), inset 0 0 20px rgba(30, 93, 217, 0.1);
}

.card-icon-wrap {
  margin-bottom: 20px;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.5);
  transition: transform 0.2s ease;
}

.glass-contact-card:hover .card-icon {
  transform: translateY(-2px);
}

.card-icon svg {
  width: 26px;
  height: 26px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
}

.text-white {
  color: #f8fafc;
  font-weight: 600;
}

.contact-link {
  color: #93c5fd;
  font-weight: 500;
  transition: color 0.2s ease;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-link:hover {
  color: #38bdf8;
}

/* Status & Tags */
.status-pill {
  display: inline-block;
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 0;
}

.blue-pill {
  background: rgba(0, 96, 254, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(96, 165, 250, 0.3);
}

.cyan-pill {
  background: rgba(6, 182, 212, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.social-pills {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #ffffff;
  transition: all 0.25s ease;
}

.social-btn:hover {
  background: #38bdf8;
  color: #0b1220;
}

/* ==================== ACTION BUTTONS ROW ==================== */
.contact-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-modern {
  flex: 1;
  min-width: 150px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 15px 22px;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: none;
}

.btn-modern svg {
  width: 18px;
  height: 18px;
}

.btn-modern.live-chat {
  background: var(--primary, #0060fe);
  color: #ffffff;
}

.btn-modern.live-chat:hover {
  filter: brightness(1.1);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  animation: pingDot 1.5s ease-in-out infinite alternate;
}

@keyframes pingDot {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.3);
    opacity: 1;
    box-shadow: 0 0 14px #10b981;
  }
}

.btn-modern.call-btn,
.btn-modern.email-btn {
  background: rgba(11, 18, 32, 0.9);
  color: #e2e8f0;
  border: 1.5px solid rgba(56, 189, 248, 0.28);
}

.btn-modern.call-btn:hover,
.btn-modern.email-btn:hover {
  background: var(--semi-dark-2, #212235);
  color: #38bdf8;
  border-color: #38bdf8;
}

/* ==================== RIGHT: GOOGLE MAPS STYLE CARD ==================== */
.map-card-wrapper {
  position: relative;
}

.google-map-card {
  background: #0b1220;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

/* Map Window Top Bar (Mac style) */
.map-header-bar {
  background: rgba(6, 11, 23, 0.95);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.map-dots {
  display: flex;
  gap: 7px;
}

.map-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #334155;
}

.map-dots span:nth-child(1) {
  background: #ff5f56;
}

.map-dots span:nth-child(2) {
  background: #ffbd2e;
}

.map-dots span:nth-child(3) {
  background: #27c93f;
}

.map-location-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #cbd5e1;
}

.map-external a {
  color: #64748b;
  transition: color 0.2s;
}

.map-external a:hover {
  color: #38bdf8;
}

.map-external svg {
  width: 18px;
  height: 18px;
}

.map-canvas-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.map-canvas-container iframe {
  display: block;
}

/* Complete Google Maps Style Info Card (Floating HQ Badge) */
.hq-badge-float {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 340px;
  background: #ffffff;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
  color: #1e293b;
}

.hq-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.hq-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hq-info strong {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 4px;
}

.hq-info span {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.4;
}

.hq-map-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.map-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: background 0.2s;
  text-decoration: none;
}

.map-action-btn svg {
  width: 18px;
  height: 18px;
}

.map-action-btn:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.map-action-btn.primary-dir {
  background: #1a73e8;
  color: #ffffff;
  border: none;
}

.map-action-btn.primary-dir:hover {
  background: #1557b0;
}

.hq-card-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
}

.map-rating-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
}

.rating-star {
  color: #fbbf24;
  font-size: 1rem;
}

.rating-count {
  color: #64748b;
  font-weight: 400;
}

.rating-info {
  color: #94a3b8;
  font-size: 0.85rem;
  margin-left: 2px;
}

.live-pulse-badge {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  padding: 2px 8px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.live-dot {
  width: 5px;
  height: 5px;
  background-color: #059669;
  border-radius: 50%;
}

/* ==================== RESPONSIVE BREAKPOINTS ==================== */
@media (max-width: 1100px) {
  .split-contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .google-map-card iframe {
    height: 480px;
  }
}

@media (max-width: 768px) {
  .contact-details-section {
    padding: 80px 0;
  }

  .cards-grid-2x2 {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-title {
    font-size: 2.1rem;
  }

  .section-subtitle {
    font-size: 1.05rem;
  }

  .contact-action-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-modern {
    width: 100%;
  }

  .hq-badge-float {
    top: 15px;
    left: 15px;
    right: 15px;
    padding: 12px 16px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }

  .glass-contact-card {
    padding: 24px;
  }
}