.footer-socials{
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
}

.footer-socials a{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: .3s;
}

.footer-socials a:hover{
    background: #2563ff;
    transform: translateY(-3px);
}


/* ============================================================
   TECHWAVE — CONTACT US PAGE  |  Redesigned CSS
   Theme: Light / White  |  Accents: Navy (#1e40ff) & Yellow (#f0b429)
   Matches main site palette (navy / yellow / blue)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy:        #0a1628;
  --blue:        #1e40ff;
  --blue-dark:   #1531c9;
  --yellow:      #f0b429;
  --yellow-dark: #d9a020;
  --white:       #ffffff;
  --off-white:   #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-400:    #94a3b8;
  --gray-500:    #64748b;
  --text-dark:   #0a1628;
  --text-muted:  #64748b;
  --border:      #e2e8f0;
  --border-h:    rgba(30,64,255,0.35);
  --grad-btn:    linear-gradient(135deg, #1e40ff 0%, #3b82f6 100%);
  --grad-title:  linear-gradient(100deg, #1e40ff 0%, #3b82f6 45%, #f0b429 100%);
  --radius-card: 18px;
  --radius-input:10px;
  --transition:  0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background: var(--off-white);
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 10%, rgba(30,64,255,0.05) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 90%, rgba(240,180,41,0.06) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* ── Alert Box ────────────────────────────────────────────── */
#alertBox { position: relative; z-index: 1; }
#alertMsg {
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

/* ── Page Heading ─────────────────────────────────────────── */
.contact-heading-wrap {
  text-align: center;
  padding: 50px 20px 10px;
  position: relative;
  z-index: 1;
}

.contact-heading-wrap h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.contact-heading-wrap h1 .highlight { color: var(--yellow-dark); }

.contact-heading-wrap p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ── Two-column layout ────────────────────────────────────── */
.custom-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 20px 60px;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .custom-container {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* ── Form Card ────────────────────────────────────────────── */
form {
  width: 100%;
  padding: 32px 36px;
  background: var(--white);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  box-shadow:
    0 20px 60px rgba(10, 22, 40, 0.08),
    0 2px 10px rgba(10, 22, 40, 0.04);
  overflow: visible;
  max-height: none;
}

form h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
form h2::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(240,180,41,0.5);
}

form hr {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 16px;
}

/* ── Form Groups & Labels ─────────────────────────────────── */
.form-group { margin-bottom: 14px; }

.field-row {
  display: flex;
  gap: 14px;
}
.field-row .form-group { flex: 1; margin-bottom: 14px; }

.form-group label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.optional-tag {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  color: var(--gray-400);
  font-size: 0.78rem;
}

/* ── Inputs, Select, Textarea ─────────────────────────────── */
.input, select, textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius-input);
  border: 1.5px solid var(--border);
  background: var(--off-white);
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.input::placeholder, textarea::placeholder { color: var(--gray-400); }

.input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(30,64,255,0.10);
  outline: none;
  color: var(--text-dark);
}

textarea { resize: vertical; min-height: 80px; line-height: 1.5; }

/* ── Simple Select Dropdown ───────────────────────────────── */
select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231e40ff' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 38px;
}
select option { background: var(--white); color: var(--text-dark); }

/* ── Info Panel (right side) ──────────────────────────────── */
.info-panel {
  background: var(--navy);
  border-radius: var(--radius-card);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(10, 22, 40, 0.18),
    0 2px 10px rgba(10, 22, 40, 0.06);
}

/* Decorative glows */
.info-panel::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(240,180,41,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.info-panel::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(30,64,255,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.info-panel-header {
  position: relative;
  z-index: 1;
  margin-bottom: 6px;
}

.info-panel-eyebrow {
  display: inline-block;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.info-panel-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
}
.info-panel-title span { color: var(--yellow); }

.info-panel-desc {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  line-height: 1.7;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.info-icon {
  width: 46px; height: 46px; min-width: 46px;
  background: var(--yellow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--navy);
  flex-shrink: 0;
}

.info-text h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.info-text p,
.info-text a {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  line-height: 1.6;
  text-decoration: none;
  margin: 0;
}
.info-text a:hover { color: var(--yellow); }

.info-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  position: relative;
  z-index: 1;
}

/* Social icons row */
.info-socials {
  display: flex;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.info-socials a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
}
.info-socials a:hover {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
  transform: translateY(-3px);
}

/* ── Radio & Checkbox ─────────────────────────────────────── */
.form-group input[type="radio"],
.form-group input[type="checkbox"] {
  accent-color: var(--blue);
  width: 16px; height: 16px;
  margin-right: 6px;
  cursor: pointer;
  vertical-align: middle;
}

/* ── Customer Type pills ──────────────────────────────────── */
.customer-type-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.customer-type-row label {
  display: flex !important;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--off-white);
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  color: var(--gray-500) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  margin-bottom: 0 !important;
  cursor: pointer;
  transition: var(--transition);
  flex: 1 1 120px;
  justify-content: center;
}

.customer-type-row label:hover {
  border-color: var(--border-h);
  background: rgba(30,64,255,0.04);
  color: var(--blue) !important;
}

.customer-type-row input[type="radio"]:checked + span,
.customer-type-row label:has(input:checked) {
  border-color: var(--blue);
  background: rgba(30,64,255,0.06);
  color: var(--blue) !important;
  box-shadow: 0 4px 14px rgba(30,64,255,0.12);
}

/* ── Submit Button ────────────────────────────────────────── */
.btn[type="submit"], #submitBtn {
  width: 100%;
  padding: 12px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--grad-btn);
  color: #fff;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(30,64,255,0.28);
  margin-top: 4px;
}
.btn[type="submit"]:hover, #submitBtn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1e40ff 100%);
  box-shadow: 0 14px 34px rgba(30,64,255,0.4);
}
.btn[type="submit"]:active, #submitBtn:active {
  transform: translateY(-1px);
}
.btn[type="submit"]:disabled, #submitBtn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ── Back To Top ──────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  right: 28px; bottom: 28px;
  width: 50px; height: 50px;
  display: none;
  justify-content: center;
  align-items: center;
  background: var(--grad-btn);
  color: #fff;
  border-radius: 14px;
  text-decoration: none;
  font-size: 18px;
  z-index: 9999;
  transition: var(--transition);
  box-shadow: 0 6px 25px rgba(30,64,255,0.3);
}
.back-to-top.visible { display: flex; }
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(30,64,255,0.45);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 991px) {
  form { padding: 30px 28px; }
  .info-panel { padding: 30px 28px; }
}
@media (max-width: 540px) {
  form { padding: 24px 18px; }
  .info-panel { padding: 24px 18px; gap: 22px; }
  .field-row { flex-direction: column; gap: 0; }
  .customer-type-row { flex-direction: column; }
  .btn[type="submit"], #submitBtn { font-size: 0.9rem; padding: 14px; }
  .back-to-top { right: 16px; bottom: 16px; width: 44px; height: 44px; font-size: 15px; }
}

/* Button Animation */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 64, 255, 0.4);
}

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

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Spinner */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Success Message */
.alert-success-custom {
  background: linear-gradient(135deg, #0f5132, #198754);
  color: #fff;
  padding: 16px 24px;
  border-radius: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  animation: slideDown 0.4s ease;
  box-shadow: 0 4px 20px rgba(25, 135, 84, 0.3);
}

.alert-success-custom i {
  font-size: 1.4rem;
}

/* Error Message */
.alert-danger-custom {
  background: linear-gradient(135deg, #842029, #dc3545);
  color: #fff;
  padding: 16px 24px;
  border-radius: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  animation: slideDown 0.4s ease;
  box-shadow: 0 4px 20px rgba(220, 53, 69, 0.3);
}

.alert-danger-custom i {
  font-size: 1.4rem;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   CONTACT PAGE — HERO SECTION
   Theme: Navy background, Yellow & Blue accents
   ============================================================ */

.contact-hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 90px 20px 80px;
  text-align: center;
}

/* Decorative glows */
.contact-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(240,180,41,0.16) 0%, transparent 70%);
  pointer-events: none;
}
.contact-hero::after {
  content: '';
  position: absolute;
  bottom: -140px; left: -100px;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(30,64,255,0.28) 0%, transparent 70%);
  pointer-events: none;
}

/* Subtle grid/dot pattern overlay */
.contact-hero {
  background-image:
    radial-gradient(circle, rgba(240,180,41,0.16) 0%, transparent 70%),
    radial-gradient(circle, rgba(30,64,255,0.28) 0%, transparent 70%),
    radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-position: top right, bottom left, 0 0;
  background-size: 320px 320px, 340px 340px, 22px 22px;
  background-repeat: no-repeat, no-repeat, repeat;
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.contact-hero-eyebrow {
  display: inline-block;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.contact-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.contact-hero-title span { color: var(--yellow); }

.contact-hero-desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto 26px;
}

/* Breadcrumb */
.contact-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 0.82rem;
  font-weight: 500;
}

.contact-hero-breadcrumb a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.25s ease;
}
.contact-hero-breadcrumb a:hover { color: var(--yellow); }

.contact-hero-breadcrumb .sep {
  color: rgba(255,255,255,0.3);
  font-size: 0.65rem;
}

.contact-hero-breadcrumb .current {
  color: var(--yellow);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 767px) {
  .contact-hero { padding: 70px 20px 60px; }
  .contact-hero-title { font-size: clamp(2rem, 9vw, 2.8rem); }
  .contact-hero-desc { font-size: 0.88rem; }
  .contact-hero-breadcrumb { font-size: 0.78rem; padding: 8px 18px; }
}