@charset "UTF-8";
:root {
  --black: #111111;
  --white: #ffffff;
  --red: #E60000;
  --gray: #888888;
  --light-gray: #eeeeee;
}

body,
html {
  margin: 0;
  padding: 0;
  background-color: var(--white);
  color: var(--black);
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

/* ----- Site Loader ----- */
#site-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#site-loader img {
  max-width: 200px;
  height: auto;
}

/* ----- Liquid Glass Cursor System ----- */
@media (pointer: fine) {
  body, html, a, button, label {
    cursor: none !important;
  }
}
#liquid-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 64px;
  height: 64px;
  margin-left: -32px;
  margin-top: -32px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  backdrop-filter: brightness(1.1) blur(0.5px) url(#liquid-light);
  -webkit-backdrop-filter: brightness(1.1) blur(0.5px) url(#liquid-light);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s ease-out, opacity 0.3s ease, width 0.3s ease, height 0.3s ease, margin 0.3s ease;
  opacity: 0;
  will-change: transform;
}

#liquid-cursor.visible {
  opacity: 1;
}

#liquid-cursor.hovering {
  width: 128px;
  height: 128px;
  margin-left: -64px;
  margin-top: -64px;
  backdrop-filter: brightness(1.3) blur(0px) url(#liquid-light);
  -webkit-backdrop-filter: brightness(1.3) blur(0px) url(#liquid-light);
  border-color: rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.08);
}

.cursor-inner-border {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  #liquid-cursor {
    display: none;
  }
  body {
    cursor: auto !important;
  }
}
/* Minimalist Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 5vw;
  z-index: 100;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
}

/* Slide out when scrolling down */
header.hide-top {
  transform: translateY(-100%);
}

/* Slide in at the bottom */
header.scrolled-bottom {
  top: auto;
  bottom: 0;
  transform: translateY(100%);
  padding: 20px 5vw;
}

header.scrolled-bottom.show-bottom {
  transform: translateY(0);
}

header.scrolled-bottom .logo-img.logo-full {
  display: none;
}

header.scrolled-bottom .logo-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5em;
  height: 3.5em;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: brightness(1.1) blur(2px) url(#liquid-light);
  -webkit-backdrop-filter: brightness(1.1) blur(2px) url(#liquid-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

header.scrolled-bottom .logo-img.logo-icon {
  display: block;
  height: 2em;
  width: auto;
}

.logo {
  cursor: pointer;
  z-index: 110;
  position: relative;
}

.logo-img {
  height: 10em;
  transition: height 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.logo-img.logo-icon,
.logo-icon-container {
  display: none;
}

/* Navigation Panel (Bottom-Left) */
.nav-menu {
  position: fixed;
  bottom: 0;
  left: 30px;
  width: 380px;
  max-height: calc(100vh - 60px);
  background-color: #111111;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  padding: 30px;
  border-radius: 12px 12px 0 0;
  overflow-y: auto;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
  will-change: transform, opacity;
  transform: translate3d(0, 100%, 0);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.7s;
}
.nav-menu::-webkit-scrollbar {
  width: 4px;
}
.nav-menu::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}

.nav-menu.nav-active {
  visibility: visible;
  transform: translate3d(0, 0, 0);
  opacity: 1;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-close-btn {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  margin-bottom: 20px;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.nav-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.nav-heading {
  font-family: "Petit Formal Script", cursive;
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
}

.nav-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #ccc;
  margin: 0;
}

.nav-menu nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.nav-menu nav a {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  text-decoration: none;
  color: #ffffff;
  font-size: 1.5rem;
  position: relative;
  display: inline-block;
  line-height: 1;
  opacity: 0;
  transform: translateX(-20px);
  transition: transform 0.3s ease, opacity 0.3s ease, color 0.3s ease;
}

/* Entrance staggered animations */
.nav-menu.nav-active nav a:nth-child(1) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) calc(0.3s + 1 * 0.05s), opacity 0.4s ease calc(0.3s + 1 * 0.05s);
}

.nav-menu.nav-active nav a:nth-child(2) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) calc(0.3s + 2 * 0.05s), opacity 0.4s ease calc(0.3s + 2 * 0.05s);
}

.nav-menu.nav-active nav a:nth-child(3) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) calc(0.3s + 3 * 0.05s), opacity 0.4s ease calc(0.3s + 3 * 0.05s);
}

.nav-menu.nav-active nav a:nth-child(4) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) calc(0.3s + 4 * 0.05s), opacity 0.4s ease calc(0.3s + 4 * 0.05s);
}

.nav-menu.nav-active nav a:nth-child(5) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) calc(0.3s + 5 * 0.05s), opacity 0.4s ease calc(0.3s + 5 * 0.05s);
}

.nav-menu.nav-active nav a:nth-child(6) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) calc(0.3s + 6 * 0.05s), opacity 0.4s ease calc(0.3s + 6 * 0.05s);
}

.nav-menu.interactive {
  pointer-events: all;
}

.nav-menu.interactive nav a {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.nav-menu.interactive nav a:hover {
  transform: translateX(15px);
  color: #E60000;
}

.nav-footer {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.nav-socials {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav-socials a {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  color: #aaa;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}
.nav-socials a:hover {
  color: #fff;
}

.nav-qr {
  width: 60px;
  height: 60px;
  background: #fff;
  padding: 3px;
  border-radius: 4px;
}
.nav-qr img {
  width: 100%;
  height: 100%;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    width: 100%;
    left: 0;
    bottom: 0;
    padding: 20px;
    border-radius: 20px 20px 0 0;
  }
  .nav-menu .nav-heading {
    font-size: 1.5rem;
  }
  .nav-menu .nav-desc {
    font-size: 0.8rem;
  }
  .nav-menu nav a {
    font-size: 1.3rem;
  }
}
/* Accessibility: Support for reduced motion */
@media (prefers-reduced-motion: reduce) {
  .nav-menu,
  .nav-menu.nav-active,
  nav a,
  .nav-menu.nav-active nav a,
  .nav-menu.interactive nav a {
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
    transform: none !important;
  }
}
/* Form Container — top padding clears the fixed header (~10em logo + padding) */
.form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 18vh 5vw 8vh;
}

.page-title {
  font-size: 4vw;
  text-transform: uppercase;
  letter-spacing: -2px;
  margin-bottom: 60px;
  line-height: 1;
}

.page-title .serif {
  font-family: "Playfair Display", serif;
  font-style: italic;
  text-transform: lowercase;
  font-weight: normal;
}

/* Section Styling */
.form-section {
  margin-bottom: 60px;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.section-header {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gray);
  margin-bottom: 30px;
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 10px;
}

/* Minimalist Input Fields */
.input-group {
  margin-bottom: 30px;
  position: relative;
}

label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--black);
}

input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--black);
  padding: 15px 0;
  font-size: 1.2rem;
  font-family: "Montserrat", sans-serif;
  color: var(--black);
  transition: border-color 0.3s ease;
  outline: none;
  border-radius: 0;
  /* Fix for iOS */
}

input:focus,
textarea:focus,
select:focus {
  border-bottom-color: var(--red);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

/* Error States */
.error-msg {
  color: var(--red);
  font-size: 0.8rem;
  margin-top: 5px;
  display: none;
}

input:invalid:not(:-moz-placeholder) {
  border-bottom-color: var(--red);
}

input:invalid:not(:placeholder-shown) {
  border-bottom-color: var(--red);
}

/* Radio Buttons (Service Selection) */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.radio-label {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  padding: 15px;
  border: 1px solid var(--light-gray);
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.radio-label:hover {
  border-color: var(--black);
}

.radio-label input {
  display: none;
}

.radio-label span.custom-radio {
  width: 15px;
  height: 15px;
  border: 2px solid var(--black);
  border-radius: 50%;
  margin-right: 15px;
  display: inline-block;
  position: relative;
}

.radio-label input:checked + span.custom-radio::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  background-color: var(--red);
  border-radius: 50%;
}

.radio-label input:checked ~ span.text {
  color: var(--red);
}

.radio-label:has(input:checked) {
  border-color: var(--red);
}

/* Conditional Logic Sections */
.dynamic-section {
  display: none;
  /* Hidden by default */
  margin-top: 40px;
  padding-left: 20px;
  border-left: 2px solid var(--red);
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Checkbox styling */
.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 15px;
}

.check-label {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  cursor: pointer;
}

.check-label input {
  margin-right: 10px;
}

/* Submit Button */
.submit-btn {
  background-color: var(--black);
  color: var(--white);
  border: none;
  padding: 20px 40px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 900;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
  margin-top: 40px;
}

.submit-btn:hover {
  background-color: var(--red);
}/*# sourceMappingURL=subpages.css.map */