:root {
  --navy: #0d1f3c;
  --accent: #c8902a;
  --accent-light: #e8b052;
  --white: #ffffff;
  --light: #f4f6f9;
  --border: #dde3ee;
  --text-muted: #6b7280;
}

/* Shared structural styles */
*, *::before, *::after { box-sizing: border-box; }
img { max-width: 100%; height: auto; }

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.topbar {
  background: var(--navy);
  color: #aab8cc;
  font-size: 13px;
  padding: 8px 0;
  text-align: center;
}

.topbar span {
  margin: 0 16px;
}

.topbar a {
  color: var(--accent-light);
  text-decoration: none;
  font-weight: 600;
}

header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--accent);
}

.logo img {
  display: block;
  height: 48px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.2s;
}

nav a:hover,
nav a[aria-current="page"] {
  background: var(--light);
  color: var(--accent);
}

.btn-nav {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  font-weight: 600 !important;
  border-radius: 4px;
  margin-left: 8px;
}

.btn-nav:hover {
  background: var(--accent-light) !important;
}

footer {
  background: #091628;
  color: #5a7a9a;
  padding: 56px 24px 28px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo {
  font-size: 26px;
  display: block;
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #5a7a9a;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--accent-light);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8aa5c4;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: #5a7a9a;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal a {
  color: #5a7a9a;
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--accent-light);
}

.cta-section {
  padding: 88px 24px;
  background: linear-gradient(135deg, #162d52 0%, var(--navy) 100%);
  text-align: center;
}

.cta-section .section-label {
  color: var(--accent-light);
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(26px, 3.5vw, 38px);
  margin-bottom: 12px;
  line-height: 1.25;
  font-family: 'Playfair Display', serif;
}

.cta-section > .container > p {
  color: #8aa5c4;
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #b8cce4;
}

.cta-form {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-row.single {
  grid-template-columns: 1fr;
}

.form-row input,
.form-row select,
.form-row textarea,
.cta-f-row input,
.cta-f-single input,
.cta-f-single textarea,
.cta-f-single select {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 14px 16px;
  color: var(--white);
  font-size: 14px;
  font-family: 'Source Sans 3', sans-serif;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.form-row input::placeholder,
.form-row textarea::placeholder,
.cta-f-row input::placeholder,
.cta-f-single input::placeholder,
.cta-f-single textarea::placeholder {
  color: #6f89a6;
}

.form-row select,
.cta-f-single select {
  color: #c8d8ea;
}

.form-row select option,
.cta-f-single select option {
  color: #1f2d3d;
  background: #ffffff;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus,
.cta-f-row input:focus,
.cta-f-single input:focus,
.cta-f-single textarea:focus,
.cta-f-single select:focus {
  border-color: var(--accent-light);
  background: rgba(255, 255, 255, 0.11);
}

.form-row textarea,
.cta-f-single textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-primary,
.btn-cta-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover,
.btn-cta-submit:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.btn-cta-submit {
  width: 100%;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--accent-light);
  border: 2px solid var(--accent-light);
  padding: 13px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.form-privacy {
  font-size: 12px;
  color: #5a7a9a;
  margin-top: 12px;
}

.cta-divider {
  margin: 32px 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #4a6a8a;
  font-size: 13px;
}

.cta-divider::before,
.cta-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.cta-tel-large {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
}

.cta-tel-note {
  font-size: 13px;
  color: #6b8aaa;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-feedback {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.5;
}

.form-feedback.is-success {
  background: rgba(70, 166, 110, 0.18);
  border: 1px solid rgba(70, 166, 110, 0.4);
  color: #d8f3df;
}

.form-feedback.is-error {
  background: rgba(190, 72, 72, 0.18);
  border: 1px solid rgba(190, 72, 72, 0.38);
  color: #ffd8d8;
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #fff;
  margin-bottom: 24px;
  text-align: left;
}

.btn-form:disabled,
.btn-cta:disabled,
.btn-cta-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.menu-toggle {
  display: none;
  appearance: none;
  border: 1px solid rgba(13, 31, 60, 0.2);
  background: #fff;
  color: #0d1f3c;
  border-radius: 10px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .topbar {
    padding-left: 12px;
    padding-right: 12px;
  }

  .topbar span {
    display: block;
    margin: 4px 0;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-inner nav {
    display: none !important;
    width: 100%;
    flex-direction: column;
    gap: 8px;
    padding-top: 8px;
  }

  .header-inner nav.is-open {
    display: flex !important;
  }

  .header-inner nav a {
    white-space: normal;
  }

  .logo img {
    height: 42px;
  }

  .footer-inner {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .footer-brand,
  .footer-col {
    width: 100%;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-legal {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }

  .footer-legal a {
    margin-left: 0 !important;
  }

  .cta-features,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .cta-feature {
    justify-content: flex-start;
  }

  .cta-inner,
  .form-row,
  .form-row-2,
  .cta-f-row,
  .sedi-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-right,
  .cta-form,
  .cta-form-box {
    width: 100%;
    max-width: 100%;
  }

  .cta-section {
    padding: 64px 20px;
  }

  .cta-form {
    padding: 22px;
  }

  .cta-tel-large {
    font-size: 24px;
  }
}
