/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  /* background: #000; */
  color: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;

  /* make footer stick to bottom */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ============ NAVBAR ============ */
.navbar {
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 60;
  transition:
    background-color .25s ease,
    box-shadow .25s ease,
    color .18s ease,
    padding .18s ease;
  background: transparent;
  color: #fff;
  pointer-events: none; /* children control pointer events */
}

.nav-left {
  display:flex;
  align-items:center;
  pointer-events: auto;
}

.nav-logo img {
  height: 65px; 
 
  width: auto;
  display: block; 
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  pointer-events: auto;
}

.nav-links .nav-link {
  text-decoration: none;
  color: #ea5b26;
  font-size: 11px;
  letter-spacing: .8px;
  transition: color .18s ease;
}

.nav-links .nav-link:hover {
  color: #e8eef8;
}

.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  padding: 8px;
  border-radius: 8px;
  color: #ea5b26;
}

/* simple hamburger icon */
.hamburger-icon .line {
  transition: transform .28s cubic-bezier(.2,.9,.2,1), opacity .18s ease;
}

/* mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: none;
  background: radial-gradient(circle at 30% 40%, rgba(60,30,120,.12), rgba(0,0,0,.85));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: opacity .25s ease, visibility .25s ease;
  opacity: 0;
  visibility: hidden;
}

.mobile-menu.active {
  display:block;
  opacity:1;
  visibility:visible;
}

.mobile-menu-inner {
  height: 100%;
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 26px;
}

.mobile-link {
  color: #e8eef8;
  text-decoration: none;
  font-size: 22px;
  letter-spacing: 1px;
  padding: 12px 20px;
}

.mobile-link:hover {
  color: #fff;
  transform: translateY(-3px);
}

/* SCROLLED NAVBAR STATE */
.navbar.scrolled {
  background: #fff;
  color: #0b1220;
  box-shadow: 0 6px 18px rgba(6,10,20,0.08);
  padding: 12px 40px;
}

.navbar.scrolled .nav-link {
  color: #ea5b26;
}

.navbar.scrolled .nav-logo {
  color: #ea5b26;
}

.navbar.scrolled .hamburger {
  color: #ea5b26;
}

/* NAVBAR MEDIA QUERIES */
@media (max-width: 1024px) {
  .navbar {
    padding: 18px 32px;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: inline-flex; }
}

@media (max-width: 480px) {
  .navbar {
    padding: 14px 18px;
  }
  .nav-logo {
    font-size: 14px;
  }
}

/* ========== PAGE BACKGROUND & LAYOUT ========== */

.page-content {
  position: relative;
  z-index: 5;
  background:
    radial-gradient(circle at 10% 5%, rgba(0, 14, 34, 0.55), transparent 10%),
    radial-gradient(circle at 85% 25%, rgba(116, 61, 162, 0.45), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(106,166,255,0.35), transparent 30%),
    #000;
  background-attachment: fixed;
  color:#fff;

  /* Make the main area grow to push footer down */
  flex: 1;
}

.contact-page {
  position: relative;
  /* background: transparent; */
  color: #fff;
  padding: 80px 20px 90px; /* space for navbar + bottom */
}

/* ========== CONTACT SECTION LAYOUT ========== */

.contact-section {
  max-width: 1150px;
  margin: 0 auto;
}

.contact-inner {
  width: 100%;
}

/* Heading */
.contact-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-title {
  font-size: 56px;
  font-weight: 400;
  margin-bottom: 12px;
}

.contact-title span {
  font-weight: 700;
  color: #2b63ff;
}

.contact-subtitle {
  font-size: 16px;
  color: rgba(220,230,255,0.9);
  line-height: 1.7;
}

/* Grid for info + form */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

/* Shared card styles */
.contact-card {
  background: #11131a;
  border-radius: 24px;
  padding: 32px 32px 30px;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 22px 55px rgba(0,0,0,0.7);
}

/* ===== LEFT CARD (INFO) ===== */

.card-heading {
  font-size: 20px;
  margin-bottom: 26px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.info-item:last-of-type {
  margin-bottom: 0;
}

.info-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
}

/* icon backgrounds */
.info-icon-blue {
  background: rgba(0, 72, 85, 0.5);
  border: 1px solid rgba(0, 72, 85, 1);
}

.info-icon-purple {
  background: rgba(148, 31, 244, 0.5);
  border: 1px solid rgb(156, 48, 199);
}

.info-icon-teal {
  background: rgba(40, 160, 138, 0.5);
  border: 1px solid rgb(29, 144, 138);
}

.info-text h3 {
  font-size: 15px;
  margin: 0 0 4px;
}

.info-text p {
  margin: 0;
  font-size: 14px;
  color: rgba(225,235,255,0.9);
}

/* ===== RIGHT CARD (FORM) ===== */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-group label {
  font-size: 13px;
  color: rgba(220,230,255,0.9);
}

.field-group input,
.field-group textarea {
  background: #05070d;
  border-radius: 10px;
  border: 1px solid #ea5b26;
  padding: 12px 14px;
  font-size: 14px;
  color: #f5f7ff;
  outline: none;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
  font-family: inherit;
}

.field-group input::placeholder,
.field-group textarea::placeholder {
  color: rgba(180,190,210,0.8);
}

.field-group input:focus,
.field-group textarea:focus {
  border-color: #2b63ff;
  box-shadow: 0 0 0 1px rgba(43,99,255,0.4);
  background: #04060b;
}

.field-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* Submit button */
.contact-btn {
  margin-top: 6px;
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  background: #ea5b26;
  color: #fff;
  /* box-shadow: 0 16px 36px rgba(18,55,145,0.7); */
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease;
  font-family: inherit;
}

.contact-btn:hover {
  background: #fadbdb;
  transform: translateY(-1px);
  color: #ea5b26;
}

/* ========== CONTACT RESPONSIVE ========== */

@media (max-width: 1024px) {
  .contact-title {
    font-size: 46px;
  }
}

@media (max-width: 880px) {
  .contact-page {
    padding: 70px 18px 80px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    border-radius: 22px;
  }
}

@media (max-width: 600px) {
  .contact-title {
    font-size: 36px;
  }

  .contact-subtitle {
    font-size: 14px;
  }

  .contact-card {
    padding: 26px 20px 24px;
  }

  .info-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .info-text p {
    font-size: 13px;
  }

  .field-group input,
  .field-group textarea {
    font-size: 13px;
  }

  .contact-btn {
    font-size: 14px;
  }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .bg-glow-1,
  .bg-glow-2 {
    animation: none !important;
    transform: none !important;
  }
}

/* ========== FOOTER ========== */
.site-footer {
  background: #05060a;
  color: #e5ecff;
  padding: 48px 24px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* TOP AREA */
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}

/* BRAND BLOCK */
.footer-brand {
  max-width: 520px;
}

/* .footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
} */

.footer-logo-row {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer-logo-img {
  height: 45px;   /* Adjust this value to match your layout */
  width: auto;
  display: block;
}


/* circular pill with HD */
.footer-logo-pill {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 20%, #6aa6ff, #3044c8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.footer-logo-text span {
  font-weight: 700;
}

/* tagline */
.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(227, 235, 255, 0.9);
  margin: 0 0 18px;
}

/* social icons */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(240, 245, 255, 0.96);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
  transition:
    background 0.18s ease,
    transform 0.18s ease,
    border-color 0.18s ease;
}

.footer-social-btn:hover {
  background: rgba(90, 140, 255, 0.25);
  border-color: rgba(120, 185, 255, 0.8);
  transform: translateY(-2px);
}

/* NAV COLUMN */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-heading {
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(210, 220, 255, 0.95);
  margin: 0 0 12px;
}

.footer-nav a {
  font-size: 14px;
  color: rgba(230, 238, 255, 0.9);
  text-decoration: none;
  padding: 2px 0;
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.footer-nav a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

/* CONTACT COLUMN */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact-icon {
  font-size: 16px;
  line-height: 1;
  margin-top: 2px;
}

.footer-contact p {
  margin: 0;
  font-size: 14px;
  color: rgba(230, 238, 255, 0.9);
}

.footer-contact-sub {
  color: rgba(180, 190, 210, 0.9);
}

/* DIVIDER */
.footer-divider {
  margin: 32px 0 18px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
}

/* BOTTOM BAR */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: rgba(160, 172, 198, 0.9);
}

.footer-copy {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-bottom-links a {
  color: rgba(200, 210, 235, 0.95);
  text-decoration: none;
  transition: color 0.16s ease;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

/* FOOTER media queries */
@media (max-width: 1000px) {
  .footer-main {
    grid-template-columns: 1.6fr 1fr;
    row-gap: 32px;
  }

  .footer-contact {
    grid-column: 1 / -1;
    max-width: 420px;
  }


}

@media (max-width: 1024px) {
  .footer-tagline {
  font-size: 18px;
}

.footer-contact p {
  font-size: 18px; 
}
.footer-nav a {
  font-size: 18px;
}}

@media (max-width: 700px) {
  .site-footer {
    padding: 40px 18px 26px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-bottom-links {
    font-size: 12px;
  }
}
@media (max-width: 540px){
    .footer-tagline {
  font-size: 16px;
}

.footer-contact p {
  font-size: 16px; 
}
.footer-nav a {
  font-size: 16px;
}

.footer-heading {
  font-size: 18px;
}}