body {
  background-color: #FFFFFF;
  color: #1A2942;
}

/* ══════════════════════════════════════
   COLLAPSIBLE LOCATIONS
══════════════════════════════════════ */
.reveal.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.location-card {
  border: 1px solid rgba(11, 43, 92, 0.1);
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
  background: #FFFFFF;
  transition: all 0.3s ease;
  box-shadow: 0 8px 40px rgba(11, 43, 92, 0.12);
}

.location-header {
  width: 100%;
  padding: 18px 20px;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.location-header:hover {
  background: rgba(11, 43, 92, 0.03);
}

.location-header .arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.location-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.location-content {
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 16px;
}

.location-card.active .arrow {
  transform: rotate(45deg);
}

.location-address {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 12px 0;
  cursor: pointer;
  transition: color 0.2s ease;
  position: relative;
  display: inline-block;
}

.location-address:hover {
  color: var(--gold);
}

.location-address::after {
  content: "↗";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: var(--gold);
  transition: transform 0.2s ease;
}

.location-phone {
  font-size: 16px;
  margin: 8px 0;
  color: var(--text);
  font-weight: 600;
}

.location-phone a {
  color: var(--gold);
  text-decoration: none;
}

.location-phone a:hover {
  text-decoration: underline;
}

.location-email {
  display: block;
  color: var(--gold);
  text-decoration: none;
  font-size: 16px;
  margin: 8px 0;
}

.location-email:hover {
  text-decoration: underline;
}

/* ══════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════ */

.contact-section {
  padding: var(--section-y) 0;
}

.container {
  max-width: 100%;
  padding: 0 48px;
}

.contact-info {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 32px;
  color: #1A2942;
}


.form-section {
  padding: var(--section-y) 0 var(--section-y-lg);
  background: #f7f8fc;
  border-top: 1px solid rgba(11, 43, 92, 0.07);
}

.form-wrapper {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}

.form-header {
  margin-bottom: 48px;
}

.form-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: #1A2942;
  margin: 12px 0 16px;
  line-height: 1.15;
}

.form-header h2 em {
  font-style: italic;
  color: var(--gold, #c8922a);
}

.form-header p {
  color: rgba(26, 41, 66, 0.6);
  font-size: 16px;
  line-height: 1.7;
  font-family: 'DM Sans', sans-serif;
  max-width: 520px;
}

/* ── Layout ── */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ── Groups ── */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  position: relative;
}

.form-group--full {
  width: 100%;
}

.form-group label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26, 41, 66, 0.55);
}

.required {
  color: var(--gold, #c8922a);
}

/* ── Inputs, Textarea, Select ── */

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(11, 43, 92, 0.15);
  border-radius: 6px;
  color: #1A2942;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(26, 41, 66, 0.3);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--gold, #c8922a);
  box-shadow: 0 0 0 3px rgba(200, 146, 42, 0.12);
}

input.invalid,
textarea.invalid,
select.invalid {
  border-color: #d94f4f;
  box-shadow: 0 0 0 3px rgba(217, 79, 79, 0.1);
}

textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

/* ── Select wrapper ── */

.select-wrapper {
  position: relative;
}

.select-wrapper select {
  padding-right: 40px;
  cursor: pointer;
}

.select-wrapper select option {
  background: #fff;
  color: #1A2942;
}

.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(26, 41, 66, 0.4);
  pointer-events: none;
  display: flex;
  align-items: center;
}

/* ── Checkbox grid ── */

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 10px 16px;
  margin-top: 4px;
}

.check-item,
.radio-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: rgba(26, 41, 66, 0.75);
  transition: color 0.15s;
  user-select: none;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}

.check-item:hover,
.radio-item:hover {
  color: #1A2942;
}

.check-item input,
.radio-item input {
  display: none;
}

.checkmark,
.radiomark {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  border: 1.5px solid rgba(11, 43, 92, 0.25);
  border-radius: 3px;
  display: grid;
  place-items: center;
  transition: border-color 0.15s, background 0.15s;
}

.radiomark {
  border-radius: 50%;
}

.check-item input:checked ~ .checkmark,
.radio-item input:checked ~ .radiomark {
  background: var(--gold, #c8922a);
  border-color: var(--gold, #c8922a);
}

.check-item input:checked ~ .checkmark::after {
  content: '';
  width: 4px;
  height: 7px;
  border: 1.5px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

.radio-item input:checked ~ .radiomark::after {
  content: '';
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
}

/* ── Radio group ── */

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

/* ── Field errors ── */

.field-error {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #d94f4f;
  display: none;
  margin-top: 2px;
}

.form-group.has-error .field-error {
  display: block;
}

.field-error.visible {
  display: block;
}

/* ── Submit button ── */

.form-submit {
  padding-top: 8px;
}

.recaptcha-field {
  margin-top: 4px;
}

.recaptcha-field .field-error {
  margin-top: 8px;
}

@media (max-width: 400px) {
  .recaptcha-field {
    overflow-x: auto;
  }
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold, #c8922a);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 40px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

.btn-submit:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.btn-spinner svg {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Success / Error banners ── */

.form-success,
.form-error-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

.form-success {
  background: rgba(39, 174, 96, 0.08);
  border: 1px solid rgba(39, 174, 96, 0.25);
  color: #1e7e46;
}

.form-error-banner {
  background: rgba(217, 79, 79, 0.08);
  border: 1px solid rgba(217, 79, 79, 0.2);
  color: #b83232;
}

.form-error-banner a {
  color: #b83232;
  text-decoration: underline;
}

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */

.cta-section {
  background: #0B2B5C;
  color: white;
  padding: var(--section-y) 0;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cta-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  border: 1px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
  text-decoration: none;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

#formSuccess[hidden],
#formErrorBanner[hidden] {
  display: none !important;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

@media (max-width: 992px) {
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .checkbox-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-outline {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
}