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

/* ================= ROOT & RESET ================= */
* {
  margin: 0;
  padding: 0;
}

:root {
  --primary-blue: #52C0F7;
  --primary-green: #8FF89F;
  --primary-yellow: #FDC43D;
  --primary-pink: #FD98C1;
  --primary-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --white: #ffffff;
  --transition: all 0.3s ease;
}

body {
  font-family: "Segoe UI", system-ui, sans-serif;
  color: var(--primary-dark);
  line-height: 1.6;
  background: var(--white);
  padding-top: 120px;
}

/* ================= HEADER ================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
}

nav {
  max-width: 1400px;
  margin: auto;
  padding: 1rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ================= LOGO ================= */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 100px;           /* Adjust if needed */
  width: auto;
  transition: var(--transition);
}

.logo img:hover {
  opacity: 0.95;
}

.navbar {
  max-width: 100%;
  margin: auto;
  padding: 1rem 2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: left;
}

/* Center menu */
.nav-menu {
  list-style: none;
  display: flex;
  justify-content: left;
  gap: 3rem;
  margin-left: 3rem;
}

.nav-link {
  text-decoration: none;
  color: var(--primary-dark);
  font-weight: 700;
  transition: var(--transition);
  font-size: 20px;
}

.nav-link:hover {
  color: #3b82f6;
  border: 2px solid #3b82f6;
  padding: 10px 20px;
}

.btn-contact {
  text-decoration: none;
  background-color: #000000;
  color: #fff;
  padding: 10px 20px;
  font-weight: 700;
  transition: var(--transition);
  font-size: 20px;
  border-radius: 10px;
}

.btn-contact:hover {
  color: #3b82f6;
  padding: 10px 20px;
}

.mobile-contact-btn {
  display: none;
}

/* HAMBURGER DEFAULT (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #0f172a;
  border-radius: 4px;
  transition: .3s;
}

/*Mobile Responsive */

@media (max-width: 768px) {

.navbar {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 1rem;
}

.logo img {
  height: 58px;
}

  /* SHOW HAMBURGER */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  justify-self: end;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #0f172a;
  border-radius: 4px;
  transition: .3s;
}  

/* HIDE MENU INITIALLY */
.nav-menu {
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  background: #ffffff;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid #e5e7eb;
  z-index: 999;
  margin-left: 0;
}

/* WHEN OPEN */
.nav-menu.active {
  display: flex;
}

.nav-link {
  font-size: 17px;
  padding: 6px 10px;
}

.btn-contact {
  display: none;  /* keep header clean on mobile */
}

.mobile-contact-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 18px;
  background: #000000;
  color: #ffffff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
}

.mobile-contact-btn:hover {
  opacity: .9;
}

}

  /* HAMBURGER ANIMATION */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}


/* ================= CONTACT ================= */

.contact-section {
  background: #f9fafb;
  padding: 6rem 2rem;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-left h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-left p {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

.contact-info li {
  list-style: none;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.contact-right {
  background: #ffffff;
  padding: 3rem;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* FORM */
.contact-right form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 15px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}

.form-action {
  grid-column: span 2;
  text-align: center;
}

.form-action button {
  background: #000000;
  color: #fff;
  padding: 14px 40px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

#formStatus {
  margin-top: 10px;
  font-size: 14px;
}


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

  .contact-section {
    padding: 3rem 1rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-left h2 {
    font-size: 1.9rem;
    line-height: 1.2;
  }

  .contact-left p {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }

  .contact-info li {
    font-size: 0.9rem;
  }

  .contact-right {
    padding: 1.6rem 1.2rem;
    border-radius: 12px;
  }

  /* FORM */
  .contact-right form {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .form-group.full {
    grid-column: span 1;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .form-action {
    grid-column: span 1;
  }

  .form-action button {
    width: 100%;
    font-size: 1rem;
    padding: 12px;
  }

  #formStatus {
    font-size: 12px;
  }
}


/* ================= CONTACT CTA CARDS ================= */

.contact-cards {
    width: 100%;
    padding: 5rem 2rem;
    background: #ffffff;
  }
  
  .cards-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  .contact-card {
    border: 2px solid #e5e7eb;
    border-radius: 22px;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .contact-card h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #52C0F7; 
    margin-bottom: 1.5rem;
  }
  
  .contact-card p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 3rem;
  }
  
  /* BUTTON */
  .card-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #52C0F7;
    color: #000;
    font-weight: 700;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s ease;
    font-size: 1.1rem;
  }
  
  .card-btn span {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
  }
  
  .card-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
  }
  
  .card-btn:hover span {
    transform: translateX(6px);
  }

/* Mobile Compatible */
@media (max-width: 768px) {

    .contact-cards {
      padding: 2.5rem 1rem;
    }
  
    .cards-container {
      grid-template-columns: 1fr;   /* stack */
      gap: 1.5rem;
    }
  
    .contact-card {
      padding: 1.8rem 1.4rem;
      border-radius: 16px;
    }
  
    .contact-card h2 {
      font-size: 1.8rem;
      margin-bottom: 0.9rem;
      line-height: 1.2;
    }
  
    .contact-card p {
      font-size: 0.95rem;
      line-height: 1.5;
      margin-bottom: 1.6rem;
    }
  
    .card-btn {
      width: 100%;
      justify-content: center;
      padding: 0.9rem 1.2rem;
      font-size: 0.95rem;
      border-radius: 10px;
    }
  
    .card-btn span {
      font-size: 1.2rem;
    }
  }
  

/* ================= SOCIAL LINKS ================= */

.follow-strip {
    width: 80%;
    padding: 4rem 2rem;
    margin-left: 90px;
    display: flex;
    flex-direction: column;
    border-top: 1px solid #e5e7eb;      /* separator line */
    background: #ffffff;
  }
  
  .follow-container {
    max-width: 2000px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10rem;
    align-items: center;
  }
  
  .follow-text h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.4;
  }
  
  .follow-box {
    border: 2px solid #e5e7eb;
    border-radius: 18px;
    padding: 2rem;
  }
  
  .follow-title {
    display: block;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0f172a;
  }
  
  .follow-icons {
    display: flex;
    gap: 10px;
  }
  
  .follow-icons a {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #52C0F7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 18px;
    transition: .25s ease;
  }
  
  .follow-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,.12);
  }

/* Mobile Compatible */
@media (max-width: 768px) {

    .follow-strip {
      width: 100%;
      margin-left: 0;
      padding: 2.2rem 1rem;
    }
  
    .follow-container {
      grid-template-columns: 1fr;
      gap: 1.6rem;
    }
  
    .follow-text h2 {
      font-size: 1.3rem;
      line-height: 1.3;
    }
  
    .follow-box {
      padding: 1.2rem;
      border-radius: 14px;
    }
  
    .follow-title {
      font-size: 0.95rem;
      margin-bottom: 0.6rem;
    }
  
    .follow-icons {
      gap: 8px;
    }
  
    .follow-icons a {
      width: 36px;
      height: 36px;
      font-size: 15px;
    }
  }
  


/* ================= FOOTER ================= */

.site-footer {
    background: #ffffff;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid #e5e7eb;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
  }
  
  /* BRAND */
  .footer-brand img {
    width: 36px;
    height: auto;
  }
  
  .brand-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  
  .footer-brand h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
  }
  
  .tagline {
    display: inline-block;
    margin: 0.5rem 0 1rem;
    font-size: 1rem;
    color: #3b82f6;
    font-weight: 500;
  }
  
  .brand-desc {
    font-size: 1rem;
    color: #64748b;
    max-width: 360px;
    line-height: 1.6;
  }
  
  /* COLUMNS */
  .footer-col h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0f172a;
  }
  
  .footer-col a,
  .footer-col p {
    display: block;
    font-size: 1rem;
    color: #64748b;
    text-decoration: none;
    margin-bottom: 0.7rem;
    transition: color 0.3s ease;
  }
  
  .footer-col a:hover {
    color: #3b82f6;
  }
  
  /* BOTTOM */
  .footer-bottom {
    max-width: 1200px;
    margin: 1rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    font-size: 0.95rem;
    color: #94a3b8;
  }
  
  /* Social links */
  .social-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
  }
  
  .social-links a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #eef2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 16px;
    transition: 0.3s ease;
  }
  
  .social-links a:hover {
    background: #52C0F7;
    color: #ffffff;
  }
  
  /* Legal Link */
  .footer-legal {
    max-width: 1200px;
    margin: 2rem auto 0;
    text-align: center;
    color: #94a3b8;
    font-size: 0.95rem;
  }
  
  .footer-legal a {
    color: #64748b;
    text-decoration: none;
    margin: 0 5px;
    transition: color .3s ease;
  }
  
  .footer-legal a:hover {
    color: #3b82f6;
  }
  
  .footer-legal span {
    color: #cbd5e1;
  }
   
  /*Mobile Responsive*/
  @media (max-width: 768px) {
  
    .site-footer {
      padding: 2.2rem 1rem 1.5rem;
    }
  
    .footer-container {
      max-width: 100%;
      gap: 1.2rem;          /* tighter spacing */
    }
  
    .footer-brand img {
      width: 28px;
    }
  
    .footer-brand h3 {
      font-size: 1.05rem;
    }
  
    .tagline {
      font-size: 0.85rem;
      margin: 0.3rem 0 0.6rem;
    }
  
    .brand-desc {
      font-size: 0.85rem;
      line-height: 1.45;
      max-width: 100%;
    }
  
    .footer-col h4 {
      font-size: 0.95rem;
      margin-bottom: 0.6rem;
    }
  
    .footer-col a,
    .footer-col p {
      font-size: 0.85rem;
      margin-bottom: 0.45rem;
    }
  
    .social-links a {
      width: 28px;
      height: 28px;
      font-size: 13px;
    }
  
    .footer-legal {
      font-size: 0.8rem;
      margin-top: 1.2rem;
    }
  
    .footer-bottom {
      font-size: 0.8rem;
      padding-top: 1rem;
    }
  }

  
  * {
    box-sizing: border-box;
  }