/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: #222;
  background: #f8f9fa;
  line-height: 1.6;
}

/* ================= HEADER ================= */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  z-index: 1000;
  transition: background 0.3s ease;
}

.header-left,
.header-center,
.header-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-left { justify-content: flex-start; }
.header-right { justify-content: flex-end; }

.logo {
  max-height: 55px;
  transition: transform 0.2s ease;
}
.logo:hover { transform: scale(1.05); }

.icon {
  max-height: 42px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.icon:hover { transform: scale(1.1); }

/* When scrolled or active, darken header */
.main-header.active {
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

/* ================= DROPDOWN ================= */
.dropdown-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 999;
  padding: 40px 0;
  text-align: center; /* centers content */
}

.dropdown-menu ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* force center */
  gap: 25px;
}


.dropdown-menu.open {
  display: block;
  animation: slideDown 0.25s ease forwards;
}



@media (min-width: 900px) {
  .dropdown-menu ul {
    flex-direction: row;
    gap: 60px;
  }
}

/* Links */
.dropdown-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.25s ease, transform 0.2s ease;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.dropdown-menu li a:hover {
  color: #00bfff; /* surf blue */
  transform: scale(1.08);
}

/* Slide Down Animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ================= MAIN FORM SECTION ================= */
main {
  padding: 120px 20px 60px; /* spacing below header */
  display: flex;
  justify-content: center;
}

.form-section {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  max-width: 720px;
  width: 100%;
}

.form-section h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #111;
}

.inquiry-form .form-group {
  margin-bottom: 22px;
}

.inquiry-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.inquiry-form input,
.inquiry-form textarea,
.inquiry-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  background: #fdfdfd;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus,
.inquiry-form select:focus {
  border-color: #0077ff;
  box-shadow: 0 0 0 3px rgba(0,119,255,0.15);
  outline: none;
}

.inquiry-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit button */
.inquiry-form .shop-btn {
  display: inline-block;
  background: #0077ff;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  width: 100%;
  text-align: center;
}

.inquiry-form .shop-btn:hover {
  background: #005fcc;
  transform: translateY(-2px);
}

/* ================= FOOTER ================= */
.site-footer {
  background: #111;
  color: #eee;
  padding: 50px 20px 20px;
  margin-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-brand img {
  height: 60px;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 0.95rem;
  color: #bbb;
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #fff;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social h4 {
  margin-bottom: 15px;
}

.social-icons a img {
  width: 28px;
  margin-right: 12px;
  transition: transform 0.2s ease;
}

.social-icons a img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 15px;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #aaa;
}


/* --- Footer: keep desktop layout */
  .footer-container {
    grid-template-columns: 2fr 1fr 1fr 1fr; /* same as desktop */
    gap: 40px;
    text-align: left;
  }

  .footer-brand {
    grid-column: auto;
    margin-bottom: 0;
  }
html, body {
  overflow-x: hidden;
}

/* ===================== MOBILE DROPDOWN FULLSCREEN ===================== */
@media (max-width: 900px) {
  .dropdown-menu {
    position: fixed;
    top: 70px; /* below header */
    left: 0;
    width: 100%;
    height: calc(100vh - 70px); /* full screen minus header */
    background: rgba(0, 0, 0, 0.95); /* overlay */
    display: none; /* hidden by default */
    flex-direction: column; /* stack links vertically */
    justify-content: center; /* vertically center the whole menu */
    align-items: center; /* horizontally center links */
    padding: 0; /* remove extra spacing */
    overflow-y: auto;
    text-align: center; /* ensure text in links is centered */
  }

  .dropdown-menu ul {
    display: flex;
    flex-direction: column; /* vertical stack */
    gap: 30px; /* space between links */
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .dropdown-menu li {
    width: 100%;
    display: flex;
    justify-content: center; /* center each link horizontally */
  }

  .dropdown-menu li a {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center; /* center text inside the link */
  }
}
/* ================ MOBILE FOOTER 2x2 ALIGNED ================ */
@media (max-width: 900px) {
  .site-footer {
    padding: 25px 15px 20px;
  }

  .footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns */
    grid-template-rows: auto auto; /* 2 rows */
    gap: 15px 20px; /* vertical / horizontal spacing */
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    align-items: start; /* align items at top of each cell */
  }

  /* Top-left: Logo / About */
  .footer-brand {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .footer-brand img {
    width: 100px; /* smaller logo */
    margin-bottom: 8px;
  }

  .footer-brand p {
    font-size: 0.9rem;
    max-width: 100%;
    margin: 0;
  }

  /* Top-right: Shop Links */
  .footer-links:nth-of-type(1) {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  /* Bottom-left: Company Links */
  .footer-links:nth-of-type(2) {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  /* Bottom-right: Socials */
  .footer-social {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  /* Headings smaller */
  .footer-links h4,
  .footer-social h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .footer-links ul li a {
    font-size: 0.9rem;
  }

  .social-icons {
    justify-content: center;
  }

  .social-icons img {
    width: 22px;
    height: 22px;
    margin-right: 10px;
  }

  /* Footer bottom bar */
  .footer-bottom {
    grid-column: 1 / 3; /* span both columns */
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
  }

  .footer-bottom p {
    font-size: 0.8rem;
    color: #777;
  }
}
