/* ===== RESET ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, sans-serif;
}

html {
  min-height: 100%;
}

body {
  background: linear-gradient(to bottom, #071D28 0%, rgba(18, 51, 56, 1) 90%);
  color: #f5f5f5;
  line-height: 1.6;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: #ffbfc0;
}

::selection { color: #071D28; background: #ffbfc0; }

/* ===== LAYOUT ===== */
.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
  display: flex;
  justify-content: center;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: left;
  min-height: 80vh;
  display: flex;
  align-items: center;
}


/* ===== BREADCRUMB ===== */

.breadcrumb {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a {
  color: #ffbfc0;
  text-decoration: none;
  opacity: 0.85;
  transition: 0.2s ease;
}

.breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

.breadcrumb span:last-child {
  color: #b6b6bd;
}


/* ===== HERO ===== */
.hero {
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 50% 20%, rgba(255,255,255,0.06), transparent 60%);
}

.hero .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  text-align: left;
}

.hero-title {
  position: relative;
  margin-top: 60px;
  padding-right: 60px;
}

.hero-logo {
  width: 70px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.06));
  opacity: 0.85;
}

.hero-logo-wrap {
  position: absolute;
  top: 24px;
  left: 24px;
}

.hero-logo-wrap::after {
  content: "";
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 60%);
  z-index: -1;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

h1::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: #ffbfc0;
  margin-top: 18px;
}

.hero p {
  max-width: 420px;
  margin: 16px 0 0;
  color: #b6b6bd;
  font-size: 1.02rem;
}

/* ===== BUTTON ===== */
.cta {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  transition: 0.3s ease;
}

.cta:hover {
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 18px rgba(255,255,255,0.15);
}

/* ===== GLASS PANEL (FOR FORMS + PAGES) ===== */
.panel {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 32px;
}

/* ===== FORM ===== */
.form-wrap {
  flex: 1 1 40%;
  margin-top: 60px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

form {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

input, textarea, select {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
  color: #fff;
  outline: none;
}

input:focus, textarea:focus, select:focus {
  border-color: #ffbfc0;
  box-shadow: 0 0 0 1px rgba(255,191,192,0.2);
}

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

input::placeholder,
textarea::placeholder {
  color: #777;
}

.hero p.contact-form-privacy {
  font-size: 0.75rem;
  text-align: left;
  line-height: 1.6;

  max-width: 90%; 
  margin-bottom: 1rem;
  margin-left: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


button {
  padding: 14px;
  border-radius: 40px;
  border: none;
  background: #ffbfc0;
  color: #0e0e10;
  font-weight: 500;
  cursor: pointer;
  transition: 0.25s ease;
}

button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(255,255,255,0.25);
}

.form-success {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.form-success.show {
  opacity: 1;
}


/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 40px;
  font-size: 0.9rem;
  color: #666;
}

/* ===== PRIVACY ===== */

.privacy {
	margin-top: 100px;
}

.privacy-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px;
  text-align: left;
  display: flex;
}

.privacy-container h3, .privacy-container p {
	max-width: 900px;
	margin-top: 16px;
	margin-bottom: 16px;
}


/* ===== QUESTIONNAIRE ===== */

.questionnaire {
	margin-top: 100px;
}

.questionnaire-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px;
  text-align: left;
  min-height: 80vh;

}

.questionnaire-container p {
	margin-top: 16px;
	margin-bottom: 16px;
}

/* ===== SELECT STYLING ===== */

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: rgba(255,255,255,0.02);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 14px 40px 14px 16px;
  border-radius: 10px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffbfc0' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
}

/* Focus state */
select:focus {
  border-color: #ffbfc0;
  box-shadow: 0 0 0 1px rgba(255,191,192,0.2);
  outline: none;
}

/* Dropdown options (limited browser support but helps Chrome/Edge) */
select option {
  background: #071D28;
  color: #fff;
}

select:invalid {
  color: #777;
}

/* ===== THANK YOU ===== */

.thank-you {
	margin-top: 100px;
}

.thank-you-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px;
  text-align: left;
}

.thank-you-container p {
	margin-top: 16px;
	margin-bottom: 16px;
}


/* Mobile */
@media (max-width: 900px) {
  .hero .container {
    flex-direction: column;
    gap: 10px;
  }
  
  .hero-logo {
        width: 50px;
    }
    .hero-logo-wrap {
        top: 16px;
        left: 16px;
    }
  
  .form-wrap {
    width: 100%;
    margin-top: 0px;
  }
  .privacy, .questionnaire, .thank-you {
	  padding: 16px;

  }
}

/* Large screens */
@media (min-width: 1200px) {
  .hero-title {
	padding-right: 0px;
  }
	
}
