/* Contact Section */
.contact {
  background:
    radial-gradient(circle at top left, rgba(30, 64, 175, 0.14), transparent 28%),
    linear-gradient(to bottom, #020617, #0a1628);
  padding: 6rem 1.25rem;
  position: relative;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: linear-gradient(135deg, #13233a 0%, #11192b 46%, #161f30 46%, #161f30 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(97, 122, 159, 0.14);
}

@media (min-width: 1024px) {
  .contact-container {
    grid-template-columns: 1.05fr 1fr;
  }
}

/* Contact Info - Left Side */
.contact-info {
  padding: 4.5rem 3.25rem 4rem;
  background:
    radial-gradient(circle at 14% 20%, rgba(0, 230, 251, 0.08), transparent 24%),
    radial-gradient(circle at 65% 100%, rgba(168, 85, 247, 0.14), transparent 28%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  padding: 0.7rem 1rem;
  margin-bottom: 2rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #f8fafc;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.custom-build-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  padding: 0.7rem 1rem;
  margin-bottom: 2rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #f8fafc;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.custom-build-badge svg,
.contact-badge svg {
  color: #00d7ff;
  flex-shrink: 0;
}

.contact-info h2 {
  max-width: 560px;
  font-size: clamp(2.4rem, 4vw, 4.15rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.7rem;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.contact-gradient-text {
  display: block;
  background: linear-gradient(90deg, #20d7ff 0%, #2591ff 38%, #8b5cf6 70%, #d946ef 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-info>p {
  max-width: 540px;
  font-size: 1.12rem;
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: 2.1rem;
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-feature {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  color: #f1f5f9;
}

.feature-dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #18d6ff;
  box-shadow: 0 0 12px rgba(24, 214, 255, 0.45);
  flex-shrink: 0;
}

.contact-feature::before {
  display: none;
}

.contact-feature span {
  font-size: 1.03rem;
  color: #e2e8f0;
  font-weight: 400;
}

/* Contact Form - Right Side */
.contact-form {
  padding: 3.5rem 3.1rem 3.4rem;
  background: rgba(15, 23, 42, 0.24);
}

.contact-form h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.85rem;
  letter-spacing: -0.03em;
}

.contact-form>p {
  max-width: 560px;
  font-size: 1.02rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 2.2rem;
}

/* Form Styles */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 0;
}

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

.form-group {
  margin-bottom: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 0 0.72rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 0;
  color: #f8fafc;
  font-size: 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  font-family: inherit;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: #b8c3d6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: #26d2ff;
  box-shadow: inset 0 -1px 0 #26d2ff;
}

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

.form-group select {
  cursor: pointer;
  appearance: none;
  color: #f8fafc;
  background: transparent;
  padding-right: 2rem;
}

.select-wrapper {
  position: relative;
}

.select-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #94a3b8;
  width: 1.25rem;
  height: 1.25rem;
}

.form-group select option {
  background: #111827;
  color: #f8fafc;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 2.15rem;
}

.form-submit-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 2.15rem;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-width: 172px;
  padding: 1rem 1.7rem;
  background: linear-gradient(90deg, #16c8ff 0%, #1f8fff 48%, #b04ae7 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 18px 36px rgba(30, 144, 255, 0.22);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(54, 151, 255, 0.28);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn svg {
  flex-shrink: 0;
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(to bottom, #020617, #0a1628);
  padding: 6rem 2rem;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: rgba(0, 188, 212, 0.3);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

/* Location Section */
.location-section {
  background: linear-gradient(to bottom, #020617, #0a1628, #0d1b2a);
  padding: 5rem 1.5rem;
}

.location-section .container {
  max-width: 80rem;
  height: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 10px;
}

@media (min-width: 1024px) {
  .location-section .container {
    padding: 0 2rem;
  }
}

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

.location-section .section-header h2 {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;

}

.location-container {
  max-width: 48rem;
  margin: 0 auto;
  gap: 20px;
}

.location-brand {
  margin-bottom: 2rem;
}

.brand-logo {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-cyan {
  color: #22d3ee;
}

.brand-description {
  color: #9ca3af;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.location-cards {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.location-card {
  display: flex;
  align-items: flex-start;
  gap: 0.9375rem;
  padding: 1.5rem;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(71, 85, 105, 0.5);
  border-radius: 1rem;
  transition: border-color 0.3s ease;
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
}

.location-card:hover {
  border-color: rgba(0, 230, 251, 0.5);
}

.location-icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(30, 136, 229, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-icon-box svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #00e6fb;
}

.location-info {
  flex: 1;
}

.location-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.location-info p {
  color: #9ca3af;
  line-height: 1.75;
  margin-bottom: 0.25rem;
  font-size: 0.9375rem;
}

.location-info p:last-child {
  margin-bottom: 0;
}

.location-info a {
  color: #00e6fb;
  text-decoration: none;
  transition: color 0.3s;
  display: block;
  line-height: 1.75;
}

.location-info a:hover {
  color: #1E88E5;
}

.location-info a+a {
  margin-top: 0.25rem;
}

/* Responsive */
@media (max-width: 1024px) {

  .contact-info,
  .contact-form {
    padding: 2.5rem 2rem;
  }

  .contact-info h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 4rem 1rem;
  }

  .contact-container {
    background: linear-gradient(180deg, #13233a 0%, #11192b 52%, #161f30 52%, #161f30 100%);
  }

  .contact-badge {
    margin-bottom: 1.5rem;
  }

  .contact-info h2 {
    font-size: 1.75rem;
  }

  .contact-info>p {
    font-size: 1rem;
  }

  .form-actions {
    justify-content: flex-start;
  }

  .submit-btn {
    width: 100%;
  }
}

.contact-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 1.5rem 0;
  background: #0f172a;
}

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

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

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(1px);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 70rem;
  margin: 0 auto;
  padding-top: 100px;
}

.contact-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  margin-bottom: 1.5rem;
  color: white;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  animation: fadeUp 1s ease;
}

.hero-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(90deg, #16c8ff 0%, #1f8fff 48%, #b04ae7 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(30, 144, 255, 0.3);
  margin-top: 1rem;
}

.hero-cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 230, 251, 0.5);
}

.hero-cta-button svg {
  flex-shrink: 0;
}

.contact-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  animation: fadeUp 1.2s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .contact-hero {
    min-height: 450px;
    padding: 5rem 1rem 0;
  }




  .hero-cta-button {
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
  }
  .location-grid{
    height: auto;
    gap: 20px;
  }
}