* {
  margin: 0;
  padding: 0;
  box-sizing: border-box !important;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
}

html,
body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  background-color: #fcfcfd;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 800' preserveAspectRatio='none'%3E%3Cpath fill='%23fff0f2' fill-opacity='1' d='M0,320L48,298.7C96,277,192,235,288,240C384,245,480,299,576,325.3C672,352,768,352,864,320C960,288,1056,224,1152,197.3C1248,171,1344,181,1392,186.7L1440,192L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 660px;
  color: #1d1d1f;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

nav {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.2rem 2.5rem;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
  border-bottom: 1px solid rgba(229, 9, 20, 0.05);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: #515154;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #e50914;
  border-bottom: 2px solid #e50914;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #1d1d1f;
  margin: 5px 0;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* =========================================
           3. HERO SECTION
           ========================================= */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 130px 2rem 60px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  gap: 3rem;
}

.hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.hero-logo-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  padding: 10px 20px;
}

.hero-logo {
  width: 90px;
  height: 90px;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

.hero-tagline {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #515154;
  opacity: 0;
  position: absolute;
  left: calc(50% + 65px);
  white-space: nowrap;
  transition:
    opacity 0.3s ease,
    left 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.hero-logo-wrap:hover .hero-logo {
  transform: translateX(-60px);
}
.hero-logo-wrap:hover .hero-tagline {
  opacity: 1;
  left: calc(50% + 15px);
}

.hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #1d1d1f;
  letter-spacing: -1.5px;
}

.hero h1 span {
  color: #e50914;
}

.hero p {
  font-size: 1.2rem;
  color: #515154;
  max-width: 500px;
  font-weight: 400;
  margin: 0 auto;
}

/* =========================================
           4. UNIFIED CONTACT MASTER CARD
           ========================================= */
.contact-grid {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 32px;
  padding: 3.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  width: 100%;
  max-width: 100%;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  width: 100%;
}

.form-section h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.5px;
  margin-bottom: 0.5rem;
}

.formgroup {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}

.formgroup label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #86868b;
}

.formgroup input,
.formgroup select,
.formgroup textarea {
  width: 100%;
  max-width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e5e5ea;
  border-radius: 14px;
  font-size: 0.95rem;
  background: #fbfbfd;
  color: #1d1d1f;
  outline: none;
  transition: all 0.25s ease;
  margin-bottom: 10px;
}

.formgroup input:focus,
.formgroup select:focus,
.formgroup textarea:focus {
  border-color: #e50914;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(229, 9, 20, 0.1);
}

.formgroup textarea {
  resize: vertical;
  min-height: 130px;
}

.select-wrapper {
  position: relative;
  width: 100%;
}
.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
}
.select-wrapper::after {
  content: "⌵";
  font-size: 0.85rem;
  color: #86868b;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.btn-send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #1d1d1f;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s ease;
  font-family: "Poppins", sans-serif;
  margin-top: 0.5rem;
}

.btn-send:hover {
  background: #e50914;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(229, 9, 20, 0.2);
}

.right-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-left: 1px solid #e5e5ea;
  padding-left: 4rem;
  width: 100%;
}

.map-section {
  border-radius: 20px;
  overflow: hidden;
  flex: 1;
  min-height: 300px;
  border: 1px solid #e5e5ea;
  width: 100%;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
  display: block;
}

.info-section {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1rem;
}

.info-section img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 16px;
}

.info-section-text h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 4px;
}

.info-section-text p {
  font-size: 0.95rem;
  color: #515154;
  line-height: 1.5;
  margin-bottom: 8px;
}
.info-section-text a {
  color: #e50914;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.info-section-text a:hover {
  text-decoration: underline;
}

/* =========================================
           5. FOOTER
           ========================================= */
footer {
  text-align: center;
  padding: 3rem 0;
  color: #86868b;
  font-size: 0.95rem;
  border-top: 1px solid #e5e5ea;
  margin-top: 4rem;
}

/* =========================================
           6. BULLETPROOF MOBILE RESPONSIVENESS 
           ========================================= */

/* Tablets */
@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
    padding: 3rem;
    gap: 3rem;
  }
  .right-col {
    border-left: none;
    border-top: 1px solid #e5e5ea;
    padding-left: 0;
    padding-top: 3rem;
  }
  body {
    background-size: 100% 450px;
  }
}

/* Mobile Phones */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }
  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    gap: 2rem;
  }
  .nav-links.active {
    right: 0;
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* Perfectly constrained main wrapper */
  main {
    padding: 100px 1rem 40px 1rem;
    gap: 2rem;
  }

  /* Hiding tagline guarantees it doesn't push the screen width */
  .hero-tagline {
    display: none !important;
  }
  .hero-logo-wrap:hover .hero-logo {
    transform: none;
  }

  .hero h1 {
    font-size: 2.6rem;
  }
  .hero p {
    font-size: 1rem;
    padding: 0 10px;
  }

  /* Perfectly constrained grid inside the wrapper */
  .contact-grid {
    padding: 2rem 1.5rem;
    border-radius: 24px;
    gap: 2.5rem;
  }

  .right-col {
    padding-top: 2rem;
    gap: 1.5rem;
  }
  .form-section {
    gap: 1.2rem;
  }
  .form-section h2 {
    font-size: 1.4rem;
  }
  .map-section {
    min-height: 250px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero-logo {
    width: 70px;
    height: 70px;
  }

  /* Tighter padding for very small phones */
  .contact-grid {
    padding: 1.5rem 1rem;
  }

  .info-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
}
