/* === Brand Variables === */
:root {
  --zenith-navy: #27304e;
  --zenith-navy-700: #1b2235;
  --zenith-gold: #d2ae6d;
  --zenith-gold-dark: #b99556;
  --field-border: #d7dee9;
  --field-text: #0f1a34;
}

.zcb-bar {
    background: rgba(39, 48, 78, 0.85) !important;
}
.zcb-links {
    color: #D2AE6D !important;
}
.zcb-button-primary {
    border: 1px solid #d2ae6d !important;
    background: #d2ae6d !important;
    color: #27304e !important;
}

.hero {
  padding-top: clamp(4rem, 7vw, 8rem);  /* more breathing above text */
  padding-bottom: clamp(3rem, 6vw, 6rem); /* slightly less below */
  padding-left: 1rem;
  padding-right: 1rem;
}


@keyframes inputPulse {
  0%   { box-shadow: 0 0 0 0 rgba(210,174,109,0.6); }
  50%  { box-shadow: 0 0 0 8px rgba(210,174,109,0.3); }
  100% { box-shadow: 0 0 0 0 rgba(210,174,109,0); }
}
.input-highlight {
  animation: inputPulse 1.2s ease-out;
}

.section-why {
  background: linear-gradient(180deg, #27304e 0%, #1f2740 100%);
}
.benefit-block {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.benefit-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.model-card {
  min-height: 800px !important;
     display: flex;
  flex-direction: column;
    padding: 1.75rem 1.5rem 2.25rem;
  justify-content: space-between; /* ensures spacing between content & CTA */
  height: 100%; /* allows equal height in grid */
  background: #f8f9fb;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  border-top: 3px solid transparent;
}

.model-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.1);
  border-top: 3px solid #e6b44c; /* your brand gold accent */
}

/* Optional subtle image zoom */
.model-card img {
  transition: transform 0.35s ease;
}
.model-card:hover img {
  transform: scale(1.03);
}
.model-card .cta-btn { opacity: 0; transform: translateY(6px); }
.model-card:hover .cta-btn { opacity: 1; transform: translateY(0); }

.cta-btn {
      margin-top: auto; /* pushes it to the bottom */
  align-self: stretch; /* make it full width if desired */
  text-align: center;
  background-color: #e6b44c;
  color: #0f1a34;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(230,180,76,.25);
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, opacity .25s ease;
  will-change: transform;
}

.cta-btn:hover {
  background-color: #d5a53c;
  box-shadow: 0 10px 24px rgba(230,180,76,.38);
  transform: translateY(-2px);
}

.lead-section {
  position: relative;
  padding: clamp(3rem, 6vw, 6rem);
    background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  /* Parallax feel; remove if you don't want it */
  background-attachment: fixed;
}
.lead-section h1::before {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #d2ae6d;
  margin-bottom: 1rem;
}

.lead-section form {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  padding: 2rem 1.5rem;
}
.lead-section form * {
  overflow: visible;             /* safe; browsers ignore where not needed */
}
.lead-section select { position: relative; z-index: 3; }
.lead-section form label {
  display: block;
  font-weight: 600;
  color: var(--zenith-navy-700);
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}
/* === Inputs, Selects, Textareas === */
.lead-section form input,
.lead-section form select,
.lead-section form textarea {
  width: 100%;
  padding: 0.78rem 0.95rem;
  border: 1px solid var(--field-border);
  border-radius: 12px;
  background: #fff;
  color: var(--field-text);
  font-size: 1rem;
  transition: all 0.2s ease;
  box-sizing: border-box;
  appearance: none;
}
/* Focus ring in Zenith gold */
.lead-section form input:focus,
.lead-section form select:focus,
.lead-section form textarea:focus {
  outline: none;
  border-color: var(--zenith-gold);
  box-shadow: 0 0 0 3px rgba(210, 174, 109, 0.3);
}

/* === Custom Select Arrow (Zenith Navy) === */
.lead-section form select {
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%2327304e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 18px 18px;
  padding-right: 2.5rem;
  position: relative;
  z-index: 3; /* ensures dropdown sits on top */
}

/* === Button === */
.lead-section form button,
.lead-section form input[type="submit"] {
  display: inline-block;
  width: 100%;
  padding: 0.95rem 1.1rem;
  border: none;
  border-radius: 999px;
  background: var(--zenith-gold);
  color: var(--zenith-navy-700);
  font-weight: 800;
  font-size: 1rem;
  margin-top: 0.75rem;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(210, 174, 109, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.lead-section form button:hover,
.lead-section form input[type="submit"]:hover {
  background-color: var(--zenith-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(210, 174, 109, 0.4);
}

.lead-info-backdrop {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(3px);
}



/* Subtle hover (optional) */
.lead-section .lead-info-table tr:hover {
  background: rgba(255,255,255,0.07) !important;
  transition: background-color .25s ease;
}

/* Compact variant (uncomment if you want it tighter)
.lead-section .lead-info-table th,
.lead-section .lead-info-table td { padding: 9px 14px !important; }
*/


@media (hover:none) {
  .model-card .cta-btn { opacity: 1; transform: none; }
}

.hero_heading3 h2 span, .hero_heading1 h1 span,
.hero_heading2 h2 span, .hero_heading3 h3 span { font-size: inherit !important; }

.hero_heading1 h1 { font-size: 3rem; line-height: 1.2; }
.hero_heading2 h2 { font-size: 2rem; line-height: 1.3; }
.hero_heading3 h2 { font-size: 1.5rem; line-height: 1.3; }
.hero_heading3 h3 { font-size: 1.5rem; line-height: 1.3; }

/* Tablet adjustments */
@media (max-width: 1024px) {
  .hero_heading1 h1 { font-size: 2.3rem !important; }
  .hero_heading2 h2 { font-size: 1.6rem !important; }
}

@media (max-width: 768px) {
  .hero {
    padding: 2.5rem 1rem; /* slightly tighter on mobile */
  }
    
    .hero_heading1 h1 {
    font-size: 2rem;        /* ~32px */
    line-height: 1.25;
  }
  .hero_heading2 h2 {
    font-size: 1.4rem;      /* ~22px */
  }
  .hero_heading3 h2,h3 {
    font-size: 1rem;        /* keep copy readable */
  }
    
        #Lead_Form {
        scroll-margin-top: 30px;
    }
}