/* ============================================
   CONTACT.CSS — RocketPro Tech
   Fully Responsive | No Horizontal Overflow
   Breakpoints: 1100 | 900 | 768 | 480
============================================ */

/* ── TOPBAR ── */
.topbar {
background: linear-gradient(90deg, var(--blue-mid), #0c5fa8); 
  border-bottom: 1px solid rgba(0, 212, 255, 0.12);
  padding: 10px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-left .dot {
  color: var(--white);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
}

.topbar-right .ph {
  color: var(--gold);
}

.navbar {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 5%;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.logo {
  display: flex;
  align-items: left;
  gap: 12px;
}

.logo-icon {
  width: 100px;
  height: 90px;
  /* background: linear-gradient(135deg, var(--cyan), #0077ff); */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  flex-shrink: 20;
}

.logo-text {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--white);
  line-height: 3.1;
}

.logo-text span {
  color: var(--cyan);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.25s;
  display: block;
}

nav ul li a:hover nav ul li a.active {
  color: var(--white);
  background: rgba(0, 212, 255, 0.09);
}

nav ul li a.active {
  color: var(--cyan);
}

.nav-cta {
  background: linear-gradient(135deg, #00aaff, #0055dd) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  border-radius: 25px !important;
  padding: 8px 20px !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 150, 255, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}


/* ── CONTACT HERO ── */
.contact-hero {
  text-align: center;
  padding: 90px 5%;
  background: linear-gradient(120deg, #0f172a, #1e293b, #020617);
  color: white;
  overflow: hidden;
}

.contact-hero h1 {
  font-size: 40px;
  margin-bottom: 12px;
  line-height: 1.25;
}

.contact-hero p {
  color: #cbd5e1;
  font-size: 17px;
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ── HERO BUTTONS ── */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.call-tech a,
.what-support a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: 0.3s;
}

.btn-primary,
.call-tech a {
  background: linear-gradient(45deg, #6366f1, #8b5cf6);
  color: white;
}

.btn-secondary,
.what-support a {
  background: #25d366;
  color: white;
}

.btn-primary:hover,
.call-tech a:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.4);
}

.btn-secondary:hover,
.what-support a:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

/* ── SUPPORT OPTIONS ── */
.support-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 70px 5%;
  background: #f8fafc;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
}

.support-card {
  background: white;
  padding: 36px 20px;
  border-radius: 12px;
  transition: 0.35s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.support-card i {
  font-size: 32px;
  color: #6366f1;
  margin-bottom: 12px;
  display: block;
}

.support-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.support-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

.support-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.13);
}

/* ── CONTACT SECTION (Form + Map) ── */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 70px 5%;
  background: white;
  box-sizing: border-box;
  max-width: 100%;
}

/* ── FORM ── */
.contact-form h2 {
  font-size: 26px;
  margin-bottom: 22px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

.contact-form textarea {
  height: 130px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  background: linear-gradient(45deg, #6366f1, #8b5cf6);
  color: white;
  border: none;
  padding: 13px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(99, 102, 241, 0.4);
}

/* ── MAP ── */
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: 12px;
  border: 0;
}

/* ── SERVICE PROCESS ── */
.service-process {
  text-align: center;
  padding: 70px 5%;
  background: #e2e8f0;
}

.service-process h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

.process-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: auto;
}

.process-step {
  background: white;
  padding: 26px 20px;
  border-radius: 12px;
  width: 155px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.13);
}

.process-step h3 {
  color: #6366f1;
  font-size: 26px;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13px;
  color: #64748b;
}

/* ── FAQ ── */
.faq {
  padding: 70px 5%;
  background: white;
  max-width: 1554px;
  margin: auto;
  box-sizing: border-box;
}

.faq h2 {
  text-align: center;
  margin-bottom: 36px;
  font-size: 28px;
}

.faq-item {
  margin-bottom: 18px;
  padding: 20px 22px;
  background: #f1f5f9;
  border-radius: 10px;
  border-left: 4px solid #6366f1;
}

.faq-item h4 {
  margin-bottom: 8px;
  font-size: 15px;
  color: #1e293b;
}

.faq-item p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.65;
}

/* ── CURSOR GLOW ── */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #7b6cff55, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

/* ── FLOATING WHATSAPP ── */
.whatsapp {
  position: fixed;
  bottom: 90px;
  right: 22px;
  width: 54px;
  height: 54px;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: 0.3s;
}

.whatsapp:hover {
  transform: scale(1.1);
}

/* =============================================
   RESPONSIVE — LARGE TABLET  (≤ 1100px)
   Targets the ~1034px right-gap bug
============================================= */
@media (max-width: 1100px) {
  .support-options {
    padding: 60px 4%;
    gap: 20px;
  }

  .contact-section {
    padding: 60px 4%;
    gap: 28px;
  }

  .contact-map iframe {
    min-height: 300px;
  }
}

/* =============================================
   RESPONSIVE — TABLET  (≤ 900px)
============================================= */
@media (max-width: 900px) {
  .support-options {
    grid-template-columns: 1fr;
    padding: 50px 5%;
    gap: 18px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    padding: 50px 5%;
    gap: 28px;
  }

  .contact-map iframe {
    min-height: 260px;
    height: 260px;
  }

  .process-container {
    gap: 14px;
  }

  .process-step {
    width: 140px;
    padding: 20px 14px;
  }
}

/* =============================================
   RESPONSIVE — MOBILE  (≤ 768px)
============================================= */
@media (max-width: 768px) {
  .contact-hero {
    padding: 60px 5%;
  }

  .contact-hero h1 {
    font-size: 28px;
  }

  .contact-hero p {
    font-size: 15px;
  }

  .service-process {
    padding: 50px 5%;
  }

  .service-process h2 {
    font-size: 24px;
  }

  .faq {
    padding: 50px 5%;
  }

  .faq h2 {
    font-size: 24px;
  }

  .process-step {
    width: 130px;
  }

  .process-step h3 {
    font-size: 22px;
  }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE  (≤ 480px)
============================================= */
@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: 22px;
  }

  .contact-hero p {
    font-size: 13px;
  }

  .support-card {
    padding: 24px 16px;
  }

  .process-step {
    width: 100%;
    max-width: 200px;
  }

  .contact-form h2 {
    font-size: 20px;
  }

  .faq h2 {
    font-size: 20px;
  }
}

/* =============================================
   MOBILE NAV — contact page
   (mirrors style.css mobile nav behaviour)
============================================= */
@media (max-width: 768px) {

  /* Hide desktop nav links, show hamburger */
  .navbar nav#main-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: rgba(8, 15, 34, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.15);
    z-index: 999;
  }

  .navbar nav#main-nav.open {
    display: block;
  }

  .navbar nav#main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 10px 0 16px;
  }

  .navbar nav#main-nav ul li a {
    display: flex;
    align-items: center;
    padding: 13px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 15px;
    border-radius: 0;
    min-height: 44px;
  }

  .navbar nav#main-nav ul li:last-child a {
    border-bottom: none;
  }

  .navbar nav#main-nav a.nav-cta {
    margin: 10px 20px 0;
    border-radius: 8px;
    text-align: center;
    justify-content: center;
  }

  .hamburger {
    display: flex;
  }

  /* Hero buttons stack on small screens */
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
    justify-content: center;
    min-height: 44px;
  }
}

/* =============================================
   TOPBAR — contact page responsive
============================================= */
@media (max-width: 600px) {
  .topbar {
    font-size: 11px;
    padding: 6px 16px;
    text-align: center;
  }
}

/* =============================================
   FOOTER — contact page responsive
   (mirrors style.css footer layout)
============================================= */
.footer .footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1.2fr 1.4fr;
  gap: 32px;
  padding: 60px 5% 40px;
  max-width: 1400px;
  margin: auto;
  box-sizing: border-box;
}

@media (max-width: 1200px) {
  .footer .footer-main {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer .footer-map-col {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .footer .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 40px 5% 30px;
  }

  .footer .footer-brand {
    grid-column: span 2;
  }

  .footer .footer-map-col {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .footer .footer-main {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer .footer-brand,
  .footer .footer-map-col {
    grid-column: span 1;
  }

  .footer-trust {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 18px 5%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}

/* =============================================
   CONTACT FORM — iframe responsive fix
============================================= */
.contact-map {
  overflow: hidden;
}

.contact-map iframe {
  display: block;
  width: 100%;
}

/* =============================================
   PROCESS STEPS — wrapping fix on tiny screens
============================================= */
@media (max-width: 360px) {
  .process-step {
    width: 100%;
    max-width: none;
  }

  .process-container {
    gap: 10px;
  }
}

/* =============================================
   TOUCH TARGET MINIMUMS
============================================= */
@media (max-width: 768px) {

  .btn-primary,
  .btn-secondary,
  .contact-form button,
  .whatsapp {
    min-height: 44px;
  }

  .hamburger {
    min-width: 44px;
    min-height: 44px;
  }
}