/* ===== BUSINESS ACCOUNT PAGE ===== */

/* Remove default padding */
body.page-template-business-account .site-main {
  padding: 0 !important;
  max-width: none !important;
}

/* ===== HERO SECTION ===== */
.business-hero {
  background: var(--gb-navy-light);
  color: var(--gb-white);
  padding: 4rem 2rem;
  text-align: center;
}

.business-hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--gb-white);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.business-hero .hero-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  margin: 0 auto;
  max-width: 700px;
}

/* ===== MAIN CONTENT SECTION ===== */
.business-content {
  background: var(--gb-white);
  padding: 4rem 2rem;
}

.business-content-inner {
  max-width: 800px;
}

.business-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gb-text);
  margin-bottom: 1.25rem;
}

.business-content ol {
  margin: 0 0 2rem 1.25rem;
  padding: 0;
}

.business-content ol li {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gb-text);
  margin-bottom: 0.9rem;
  padding-left: 0.35rem;
}

.business-content ol li em {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.95rem;
  color: #555;
}

.business-content a {
  color: var(--gb-navy);
  font-weight: 600;
  text-decoration: underline;
}

.business-content a:hover {
  color: var(--gb-gold);
}

/* ===== ENQUIRY FORM SECTION ===== */
.business-form-section {
  background: var(--gb-gray, #f8f8f8);
  padding: 4rem 2rem;
}

.business-form-inner {
  max-width: 800px;
}

.business-form-card {
  background: var(--gb-white);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  border: 1px solid var(--gb-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.business-form-card h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gb-navy);
  margin: 0 0 0.5rem;
}

.business-form-card .form-subheading {
  font-size: 1.05rem;
  color: var(--gb-text);
  margin: 0 0 2rem;
  line-height: 1.6;
}

/* Contact Form 7 styling */
.business-form-wrap .wpcf7-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.business-form-wrap .wpcf7-form p {
  margin: 0;
  width: 100%;
}

.business-form-wrap .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.business-form-wrap label {
  display: block;
  font-weight: 600;
  color: var(--gb-navy);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.business-form-wrap input[type="text"],
.business-form-wrap input[type="email"],
.business-form-wrap input[type="tel"] {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--gb-border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--gb-gray, #f8f8f8);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.business-form-wrap input[type="text"]:focus,
.business-form-wrap input[type="email"]:focus,
.business-form-wrap input[type="tel"]:focus {
  outline: none;
  border-color: var(--gb-gold);
  background: var(--gb-white);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
}

.business-form-wrap input[type="submit"] {
  background: var(--gb-gold);
  color: var(--gb-white);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.3s ease, transform 0.15s ease;
  width: 100%;
  margin-top: 0.5rem;
}

.business-form-wrap input[type="submit"]:hover {
  background: var(--gb-navy);
  transform: translateY(-1px);
}

/* CF7 response messages */
.business-form-wrap .wpcf7-response-output {
  margin: 1rem 0 0;
  padding: 1rem;
  border-radius: 8px;
}

.business-form-wrap .wpcf7-mail-sent-ok {
  background: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

.business-form-wrap .wpcf7-validation-errors {
  background: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}

/* Responsive */
@media (max-width: 768px) {
  .business-hero {
    padding: 3rem 1.5rem;
  }

  .business-hero h1 {
    font-size: 1.75rem;
  }

  .business-content {
    padding: 3rem 1.5rem;
  }

  .business-form-section {
    padding: 3rem 1.5rem;
  }

  .business-form-card {
    padding: 2rem 1.5rem;
  }

  .business-form-card h2 {
    font-size: 1.5rem;
  }
}
