/* ==========================================================================
   Coming Soon Custom styles - Access Rail Solutions
   ========================================================================== */

:root {
  --color-coming-bg: #0a1d2c;
  --color-coming-bg-soft: rgba(14, 42, 63, 0.45);
  --color-coming-accent: #ed690e;
  --color-coming-accent-hover: #ea580e;
  --color-coming-text: #f5f6f8;
  --color-coming-muted: #94a3b8;
}

body.coming-soon-page {
  background: var(--color-coming-bg);
  color: var(--color-coming-text);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Background elements for rich aesthetics */
.bg-glow-1 {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(237, 105, 14, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 0;
  pointer-events: none;
  filter: blur(80px);
}

.bg-glow-2 {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(14, 94, 168, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 0;
  pointer-events: none;
  filter: blur(100px);
}

/* Main Container */
.coming-soon-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Header section */
.coming-soon-header {
  margin-bottom: 60px;
}

.coming-soon-header .logo-wrapper {
  display: inline-block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.coming-soon-header .logo {
  max-height: 80px;
  width: auto;
  display: block;
}

/* Main Content Grid */
.coming-soon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  align-items: center;
  justify-items: center;
  max-width: 760px;
  margin: 0 auto;
}

.details-column {
  width: 100%;
}

.coming-soon-header {
  text-align: center;
}

@media (max-width: 992px) {
  .coming-soon-grid {
    gap: 60px;
  }

  .coming-soon-header {
    margin-bottom: 40px;
  }
}

/* Typography styles */
.badge-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(237, 105, 14, 0.15);
  color: var(--color-coming-accent);
  border: 1px solid rgba(237, 105, 14, 0.3);
  padding: 8px 16px;
  border-radius: 99px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 24px;
  
}

.badge-status .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-coming-accent);
  border-radius: 50%;
  animation: pulse-animation 1.5s infinite;
}

@keyframes pulse-animation {
  0% {
    transform: scale(0.9);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(237, 105, 14, 0.7);
  }

  70% {
    transform: scale(1);
    opacity: 0.5;
    box-shadow: 0 0 0 6px rgba(237, 105, 14, 0);
  }

  100% {
    transform: scale(0.9);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(237, 105, 14, 0);
  }
}

.coming-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 54px;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  text-align: center;
}

@media (max-width: 768px) {
  .coming-title {
    font-size: 38px;
  }
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 30%, var(--color-coming-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.coming-description {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-coming-muted);
  margin-bottom: 40px;
  text-align: center;
}

/* Contacts Column styling */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--color-coming-bg-soft);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  text-decoration: none;
}

.contact-card-item:hover {
  transform: translateY(-3px);
  border-color: rgba(237, 105, 14, 0.3);
  background: rgba(14, 42, 63, 0.65);
}

.contact-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(237, 105, 14, 0.1);
  color: var(--color-coming-accent);
  border-radius: 10px;
  font-size: 20px;
  transition: background 0.3s ease, color 0.3s ease;
}

.contact-card-item:hover .contact-icon-wrapper {
  background: var(--color-coming-accent);
  color: #ffffff;
}

.contact-card-info {
  display: flex;
  flex-direction: column;
}

.contact-card-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-coming-muted);
  margin-bottom: 4px;
}

.contact-card-value {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
}

/* Form Container glassmorphism */
.form-glass-card {
  background: rgba(14, 42, 63, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  position: relative;
}

@media (max-width: 576px) {
  .form-glass-card {
    padding: 28px 20px;
  }
}

.form-header {
  margin-bottom: 28px;
}

.form-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 14.5px;
  color: var(--color-coming-muted);
  line-height: 1.5;
}

/* Custom form elements styling */
.form-group-custom {
  margin-bottom: 20px;
}

.form-label-custom {
  font-size: 13.5px;
  font-weight: 500;
  color: #cbd5e1;
  margin-bottom: 8px;
  display: block;
}

.form-control-custom {
  width: 100%;
  background: rgba(10, 29, 44, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 12px 16px;
  color: #ffffff;
  font-size: 14.5px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  outline: none;
}

.form-control-custom::placeholder {
  color: #64748b;
}

.form-control-custom:focus {
  background: rgba(10, 29, 44, 0.8);
  border-color: var(--color-coming-accent);
  box-shadow: 0 0 0 3px rgba(237, 105, 14, 0.2);
}

textarea.form-control-custom {
  resize: vertical;
  min-height: 100px;
}

.btn-submit-custom {
  width: 100%;
  background: var(--color-coming-accent);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit-custom:hover {
  background: var(--color-coming-accent-hover);
  box-shadow: 0 8px 20px rgba(237, 105, 14, 0.35);
  transform: translateY(-1px);
}

.btn-submit-custom:active {
  transform: translateY(0);
}

/* Success layout styles */
.success-container {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 0;
}

.success-icon {
  font-size: 54px;
  color: var(--color-coming-accent);
  margin-bottom: 20px;
  animation: scale-up 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes scale-up {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 12px;
}

.success-message {
  font-size: 15px;
  color: var(--color-coming-muted);
  line-height: 1.6;
}

/* Footer styling */
.coming-soon-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
  margin-top: 60px;
}

.coming-soon-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .coming-soon-footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

.footer-copyright {
  font-size: 13.5px;
  color: var(--color-coming-muted);
}

.footer-copyright a {
  color: var(--color-coming-accent);
  transition: opacity 0.2s ease;
}

.footer-copyright a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-social-link {
  color: var(--color-coming-muted);
  font-size: 18px;
  transition: color 0.3s ease, transform 0.2s ease;
}

.footer-social-link:hover {
  color: var(--color-coming-accent);
  transform: translateY(-2px);
}