/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Version: 1.0
*/


.gbs-wrap {
  font-family: Arial, sans-serif;
  color: #1f2937;
  line-height: 1.6;
}

.gbs-section {
  padding: 80px 20px;
}

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

.gbs-hero,
.gbs-light {
  background: #f5f7fa;
}

.gbs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.gbs-grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gbs-align-center {
  align-items: center;
}

.gbs-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.gbs-wrap h1 {
  font-size: 48px;
  line-height: 1.1;
  color: #1e3a5f;
  margin: 0 0 20px;
}

.gbs-wrap h2 {
  font-size: 34px;
  color: #1e3a5f;
  margin: 0 0 35px;
  text-align: center;
}

.gbs-wrap h3 {
  font-size: 22px;
  color: #1e3a5f;
  margin: 0 0 10px;
}

.gbs-wrap p {
  font-size: 17px;
  margin: 0 0 18px;
}

.gbs-card ul {
  padding-left: 20px;
  margin: 20px 0;
}

.gbs-card li {
  margin-bottom: 8px;
}

.gbs-btn {
  display: inline-block;
  background: #2563eb;
  color: #ffffff !important;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  margin: 8px 8px 8px 0;
  transition: 0.2s ease;
}

.gbs-btn:hover {
  background: #1d4ed8;
  color: #ffffff !important;
}

.gbs-btn-light {
  background: #ffffff;
  color: #2563eb !important;
  border: 1px solid #2563eb;
}

.gbs-btn-light:hover {
  background: #eff6ff;
  color: #1d4ed8 !important;
}

.gbs-price {
  font-size: 34px;
  font-weight: 700;
  color: #1e3a5f;
  margin: 15px 0;
}

.gbs-muted {
  color: #6b7280;
}

.gbs-cta {
  background: #1e3a5f;
  color: #ffffff;
  text-align: center;
}

.gbs-cta h2,
.gbs-cta p {
  color: #ffffff;
}

@media (max-width: 768px) {
  .gbs-section {
    padding: 55px 18px;
  }

  .gbs-wrap h1 {
    font-size: 36px;
  }

  .gbs-wrap h2 {
    font-size: 28px;
  }
}

/********************************
 * Popup form
 *******************************/

/* POPUP MAKER CONTAINER */
.pum-theme-default-theme,
.pum-container {
    border-radius: 18px !important;
    padding: 35px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18) !important;
    background: #ffffff !important;
}

/* POPUP TITLE */
.pum-title {
    font-size: 30px !important;
    font-weight: 700 !important;
    color: #1e3a5f !important;
    text-align: center;
    margin-bottom: 10px !important;
}

/* OPTIONAL SUBTEXT */
.pum-content p {
    color: #6b7280;
    font-size: 16px;
}

/* FORM LABELS */
.wpcf7-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

/* INPUTS */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 15px;
    color: #1f2937;
    background: #ffffff;
    transition: all 0.2s ease;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 18px;
}

/* INPUT FOCUS */
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37,99,235,0.12);
}

/* TEXTAREA */
.wpcf7-form textarea {
    min-height: 140px;
    resize: vertical;
}

/* SUBMIT BUTTON */
.wpcf7-submit {
    width: 100%;
    background: #2563eb !important;
    color: #ffffff !important;
    border: none !important;
    padding: 16px 20px !important;
    border-radius: 10px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* BUTTON HOVER */
.wpcf7-submit:hover {
    background: #1d4ed8 !important;
    transform: translateY(-2px);
}

/* CLOSE BUTTON */
.pum-close {
    background: transparent !important;
    color: #6b7280 !important;
    font-size: 28px !important;
    border: none !important;
    box-shadow: none !important;
    top: 14px !important;
    right: 18px !important;
}

/* ERROR MESSAGES */
.wpcf7-not-valid-tip {
    font-size: 13px;
    color: #dc2626;
    margin-top: -12px;
    margin-bottom: 12px;
}

/* SUCCESS MESSAGE */
.wpcf7-response-output {
    border-radius: 10px !important;
    padding: 14px !important;
    font-size: 14px !important;
    margin-top: 20px !important;
}

.wpcf7-response-output {
  display: block !important;
}

/* MOBILE */
@media (max-width: 768px) {
    .pum-container {
        padding: 22px !important;
    }

    .pum-title {
        font-size: 24px !important;
    }
}

/* FIX POPUP WIDTH */
.pum-container,
.pum-theme-default-theme .pum-container {
    width: 90% !important;
    max-width: 560px !important;
    padding: 30px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

/* FORCE FORM TO FIT */
.pum-content,
.pum-content .wpcf7,
.pum-content form {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* INPUT FIX */
.pum-content input,
.pum-content select,
.pum-content textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    display: block !important;
}

/* TEXTAREA FIX */
.pum-content textarea {
    min-height: 130px !important;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .pum-container,
    .pum-theme-default-theme .pum-container {
        width: calc(100vw - 30px) !important;
        max-width: calc(100vw - 30px) !important;
        padding: 20px !important;
        left: 15px !important;
        right: 15px !important;
        margin: 0 !important;
    }

    .pum-title {
        font-size: 22px !important;
    }

    .wpcf7-form input,
    .wpcf7-form select,
    .wpcf7-form textarea {
        font-size: 16px !important;
    }
}

.pum-theme-72 .pum-container, .pum-theme-lightbox .pum-container {
    border: none!important;
 }

/* Make popup fit inside screen height */
.pum-container {
  max-height: calc(100vh - 40px) !important;
  overflow-y: auto !important;
}

/* Reduce popup inner spacing */
.pum-content {
  padding: 0 !important;
}

/* Remove extra CF7 paragraph spacing */
.wpcf7-form p {
  margin: 0 0 12px !important;
}

/* Compact fields */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  margin: 0 0 12px !important;
  padding: 12px 14px !important;
}

/* Make textarea shorter */
.wpcf7-form textarea {
  min-height: 90px !important;
  max-height: 120px !important;
}

/* Placeholder styling */
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
  color: #6b7280;
}

/* Compact submit button */
.wpcf7-submit {
  padding: 14px 18px !important;
}

/* Mobile popup height fix */
@media (max-width: 768px) {
  .pum-container {
    max-height: calc(100vh - 24px) !important;
    overflow-y: auto !important;
    padding: 18px !important;
  }

  .pum-title {
    font-size: 22px !important;
    margin-bottom: 10px !important;
  }

  .wpcf7-form textarea {
    min-height: 80px !important;
  }
}

.pum-content, .pum-content .wpcf7, .pum-content form {
    margin-bottom: -20px;
}

.gbs-selected-package {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e3a5f;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 15px;
  margin-bottom: 14px;
}


.wpcf7-response-output:empty {
  display: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
  display: block !important;
}


/**********************************
 * Pricing Page
 *********************************/

.gbs-pricing-hero {
  background: #f5f7fa;
  padding: 90px 20px;
  text-align: center;
}

.gbs-pricing-hero h1 {
  max-width: 850px;
  margin: 0 auto 20px;
  font-size: 48px;
  line-height: 1.1;
  color: #1e3a5f;
}

.gbs-pricing-hero p {
  max-width: 700px;
  margin: 0 auto 25px;
  font-size: 18px;
  color: #4b5563;
}

.gbs-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.gbs-pricing-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 34px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}

.gbs-pricing-card h3 {
  font-size: 26px;
  color: #1e3a5f;
  margin: 0 0 8px;
}

.gbs-package-subtitle {
  color: #6b7280;
  margin-bottom: 10px;
}

.gbs-pricing-card ul {
  padding-left: 20px;
  margin: 22px 0;
}

.gbs-pricing-card li {
  margin-bottom: 9px;
}

.gbs-pricing-card .gbs-btn {
  margin-top: auto;
  text-align: center;
}

.gbs-featured {
  border: 2px solid #2563eb;
  transform: translateY(-10px);
}

.gbs-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: #ffffff;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.gbs-info-box {
  max-width: 850px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-left: 5px solid #2563eb;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.gbs-info-box p:last-child {
  margin-bottom: 0;
}

.gbs-pricing-page h2 {
  margin-bottom: 60px;
}

@media (max-width: 900px) {
  .gbs-pricing-grid {
    grid-template-columns: 1fr;
  }

  .gbs-featured {
    transform: none;
  }

  .gbs-pricing-hero h1 {
    font-size: 36px;
  }
}

/********************************
 * Footer section
 * *****************************/

.gbs-footer {
  background: #1e3a5f;
  color: #ffffff;
  padding: 70px 20px 30px;
}

.gbs-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 50px;
}

.gbs-footer h3 {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 16px;
}

.gbs-footer h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 18px;
}

.gbs-footer p {
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 14px;
  font-size: 15px;
}

.gbs-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gbs-footer li {
  margin-bottom: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
}

.gbs-footer a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: 0.2s ease;
}

.gbs-footer a:hover {
  color: #ffffff;
  opacity: 1;
}

.gbs-footer .gbs-btn {
  margin-top: 12px;
  background: #2563eb;
}

.gbs-footer .gbs-btn:hover {
  background: #1d4ed8;
}

.gbs-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.gbs-footer-bottom p {
  margin: 0;
  font-size: 14px;
}

.gbs-footer-legal {
  display: flex;
  gap: 24px;
}

.gbs-footer-legal a {
  font-size: 14px;
}

@media (max-width: 992px) {
  .gbs-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gbs-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .gbs-footer {
    padding: 55px 20px 25px;
  }

  .gbs-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gbs-footer h3 {
    font-size: 24px;
  }
}

/*******************************
 * Portfolio page
 ******************************/

.gbs-portfolio-hero {
  background: #f5f7fa;
  padding: 90px 20px;
  text-align: center;
}

.gbs-portfolio-hero h1 {
  max-width: 850px;
  margin: 0 auto 20px;
  font-size: 48px;
  line-height: 1.1;
  color: #1e3a5f;
}

.gbs-portfolio-hero p {
  max-width: 700px;
  margin: 0 auto 25px;
  font-size: 18px;
  color: #4b5563;
}

.gbs-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.gbs-portfolio-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}

.gbs-portfolio-img {
  min-height: 190px;
  background: linear-gradient(135deg, #1e3a5f, #2563eb);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  font-size: 24px;
  font-weight: 700;
}

.gbs-portfolio-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.gbs-portfolio-content h3 {
  color: #1e3a5f;
  font-size: 24px;
  margin: 0 0 12px;
}

.gbs-portfolio-content ul {
  padding-left: 20px;
  margin: 18px 0 24px;
}

.gbs-portfolio-content li {
  margin-bottom: 8px;
}

.gbs-portfolio-content .gbs-btn {
  margin-top: auto;
  text-align: center;
}

@media (max-width: 900px) {
  .gbs-portfolio-grid {
    grid-template-columns: 1fr;
  }

  .gbs-portfolio-hero h1 {
    font-size: 36px;
  }
}

/*********************************
 * Contractor Demo Page
 * *****************************/


.contractor-demo {
  font-family: Arial, sans-serif;
  color: #24303f;
  background: #ffffff;
}

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

.contractor-top-note {
  background: #111827;
  color: #f9fafb;
  padding: 12px 20px;
  font-size: 14px;
  text-align: center;
}

.contractor-hero {
  padding: 95px 20px;
  background:
    linear-gradient(rgba(17,24,39,0.78), rgba(17,24,39,0.78)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.contractor-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.contractor-badge {
  display: inline-block;
  background: #f59e0b;
  color: #111827;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 20px;
}

.contractor-hero h1 {
  font-size: 58px;
  line-height: 1.05;
  margin: 0 0 22px;
  color: #ffffff;
}

.contractor-hero p {
  font-size: 19px;
  max-width: 650px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}

.contractor-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contractor-btn {
  display: inline-block;
  background: #f59e0b;
  color: #111827 !important;
  padding: 15px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.2s ease;
}

.contractor-btn:hover {
  background: #d97706;
  color: #111827 !important;
  transform: translateY(-2px);
}

.contractor-btn-outline {
  background: transparent;
  color: #ffffff !important;
  border: 2px solid rgba(255,255,255,0.8);
}

.contractor-btn-outline:hover {
  background: #ffffff;
  color: #111827 !important;
}

.contractor-estimate-box {
  background: #ffffff;
  color: #24303f;
  border-radius: 12px;
  padding: 34px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}

.contractor-estimate-box h3 {
  font-size: 26px;
  color: #111827;
  margin: 0 0 12px;
}

.contractor-estimate-box p {
  color: #4b5563;
  font-size: 16px;
  margin-bottom: 15px;
}

.contractor-estimate-box ul {
  padding-left: 20px;
  margin: 0 0 22px;
}

.contractor-estimate-box li {
  margin-bottom: 9px;
}

.contractor-section {
  padding: 85px 20px;
}

.contractor-section-heading {
  max-width: 760px;
  margin: 0 auto 45px;
  text-align: center;
}

.contractor-section-heading span,
.contractor-split-content span {
  color: #d97706;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.contractor-section-heading h2,
.contractor-split-content h2,
.contractor-cta h2 {
  font-size: 40px;
  line-height: 1.15;
  color: #111827;
  margin: 12px 0 16px;
}

.contractor-section-heading p {
  color: #4b5563;
  font-size: 18px;
}

.contractor-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.contractor-service-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.contractor-service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.contractor-service-card div {
  padding: 26px;
}

.contractor-service-card h3 {
  font-size: 23px;
  color: #111827;
  margin: 0 0 10px;
}

.contractor-service-card p {
  color: #4b5563;
  margin: 0;
}

.contractor-split {
  background: #f3f4f6;
  padding: 90px 20px;
}

.contractor-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.contractor-image-panel img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}

.contractor-split-content p {
  color: #4b5563;
  font-size: 18px;
}

.contractor-check-list {
  margin: 24px 0;
}

.contractor-check-list p {
  margin: 0 0 12px;
  color: #111827;
  font-weight: 700;
}

.contractor-proof {
  background: #111827;
  color: #ffffff;
  padding: 45px 20px;
}

.contractor-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.contractor-proof strong {
  display: block;
  color: #f59e0b;
  font-size: 38px;
  margin-bottom: 8px;
}

.contractor-proof span {
  color: rgba(255,255,255,0.85);
}

.contractor-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.contractor-testimonial {
  background: #ffffff;
  border-left: 5px solid #f59e0b;
  padding: 28px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.07);
}

.contractor-testimonial p {
  color: #374151;
  font-size: 17px;
  margin-bottom: 18px;
}

.contractor-testimonial strong {
  color: #111827;
}

.contractor-cta {
  background: #f59e0b;
  color: #111827;
  text-align: center;
  padding: 80px 20px;
}

.contractor-cta h2 {
  color: #111827;
}

.contractor-cta p {
  font-size: 18px;
  margin-bottom: 24px;
}

.contractor-cta .contractor-btn {
  background: #111827;
  color: #ffffff !important;
}

.contractor-cta .contractor-btn:hover {
  background: #24303f;
}

@media (max-width: 900px) {
  .contractor-hero-grid,
  .contractor-split-grid,
  .contractor-card-grid,
  .contractor-testimonial-grid,
  .contractor-proof-grid {
    grid-template-columns: 1fr;
  }

  .contractor-hero {
    padding: 70px 20px;
  }

  .contractor-hero h1 {
    font-size: 40px;
  }

  .contractor-section-heading h2,
  .contractor-split-content h2,
  .contractor-cta h2 {
    font-size: 32px;
  }

  .contractor-image-panel img {
    height: 320px;
  }
}

.contractor-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 18px 20px;
  position: sticky;
  top: 0;
  z-index: 50;
}

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

.contractor-logo {
  font-size: 24px;
  font-weight: 900;
  color: #111827;
}

.contractor-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.contractor-nav a {
  color: #111827;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}

.contractor-nav a:hover {
  color: #d97706;
}

.contractor-header-btn {
  background: #f59e0b;
  color: #111827 !important;
  padding: 11px 18px;
  border-radius: 6px;
}

.contractor-footer {
  background: #111827;
  color: #ffffff;
  padding: 65px 20px 25px;
}

.contractor-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

.contractor-footer h3,
.contractor-footer h4 {
  color: #ffffff;
  margin-bottom: 16px;
}

.contractor-footer p,
.contractor-footer li {
  color: rgba(255,255,255,0.8);
}

.contractor-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contractor-footer li {
  margin-bottom: 10px;
}

.contractor-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 40px;
  padding-top: 22px;
  text-align: center;
}

.contractor-footer-bottom p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 768px) {
  .contractor-header-inner,
  .contractor-nav {
    flex-direction: column;
  }

  .contractor-nav {
    gap: 14px;
  }

  .contractor-footer-grid {
    grid-template-columns: 1fr;
  }
}


#pum-379 .pum-container {
  max-width: 540px !important;
  border-radius: 12px !important;
  padding: 30px !important;
  border-top: 6px solid #f59e0b !important;
}

#pum-379 .pum-title {
  color: #111827 !important;
  font-size: 28px !important;
}

#pum-379 input,
#pum-379 select,
#pum-379 textarea {
  border-radius: 6px !important;
}

#pum-379 input:focus,
#pum-379 select:focus,
#pum-137910 textarea:focus {
  border-color: #f59e0b !important;
  box-shadow: 0 0 0 4px rgba(245,158,11,0.18) !important;
}

#pum-379 .wpcf7-submit {
  background: #f59e0b !important;
  color: #111827 !important;
  border-radius: 6px !important;
  font-weight: 800 !important;
}

#pum-379 .wpcf7-submit:hover {
  background: #d97706 !important;
}

/*********************************
 * Dental Clinic Page
 * ******************************/

.dental-demo-v2 {
  font-family: Arial, sans-serif;
  color: #12343b;
  background: #ffffff;
}

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

.dental-v2-header {
  background: #ffffff;
  border-bottom: 1px solid #d9f5f2;
  padding: 18px 20px;
  position: sticky;
  top: 0;
  z-index: 50;
}

.dental-v2-header-inner,
.dental-v2-nav,
.dental-v2-bar-grid {
  display: flex;
  align-items: center;
}

.dental-v2-header-inner {
  justify-content: space-between;
}

.dental-v2-logo {
  font-size: 25px;
  font-weight: 900;
  color: #0f766e;
}

.dental-v2-nav {
  gap: 24px;
}

.dental-v2-nav a {
  text-decoration: none;
  color: #24404a;
  font-weight: 700;
}

.dental-v2-nav-btn,
.dental-v2-btn {
  background: #0f766e;
  color: #ffffff !important;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  display: inline-block;
}

.dental-v2-hero {
  background: url("https://images.unsplash.com/photo-1606811841689-23dfddce3e95?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.dental-v2-overlay {
  background: linear-gradient(90deg, rgba(236,254,255,.96), rgba(236,254,255,.78), rgba(236,254,255,.25));
  padding: 120px 20px;
}

.dental-v2-hero-content {
  max-width: 700px;
}

.dental-v2-hero span,
.dental-v2-heading span,
.dental-v2-team span {
  color: #0f766e;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}

.dental-v2-hero h1 {
  font-size: 60px;
  line-height: 1.05;
  margin: 16px 0 22px;
  color: #12343b;
}

.dental-v2-hero p {
  font-size: 20px;
  color: #4b6369;
  margin-bottom: 28px;
}

.dental-v2-appointment-bar {
  margin-top: -35px;
  position: relative;
  z-index: 2;
  padding: 0 20px 55px;
}

.dental-v2-bar-grid {
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(15,118,110,.15);
  padding: 28px;
  justify-content: space-between;
  gap: 20px;
}

.dental-v2-bar-grid strong {
  display: block;
  color: #12343b;
}

.dental-v2-bar-grid span {
  color: #6b7f84;
  font-size: 14px;
}

.dental-v2-section {
  padding: 85px 20px;
}

.dental-v2-heading {
  max-width: 760px;
  text-align: center;
  margin: 0 auto 45px;
}

.dental-v2-heading h2,
.dental-v2-team h2,
.dental-v2-insurance h2,
.dental-v2-cta h2 {
  font-size: 42px;
  color: #12343b;
  margin: 12px 0 16px;
}

.dental-v2-heading p {
  color: #4b6369;
  font-size: 18px;
}

.dental-v2-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.dental-v2-icon-card {
  text-align: center;
  background: #f0fdfa;
  border: 1px solid #ccfbf1;
  border-radius: 24px;
  padding: 34px 22px;
}

.dental-v2-icon-card div {
  font-size: 40px;
  margin-bottom: 16px;
}

.dental-v2-icon-card h3 {
  color: #12343b;
  font-size: 21px;
}

.dental-v2-icon-card p {
  color: #4b6369;
}

.dental-v2-team {
  background: #f8fffe;
  padding: 90px 20px;
}

.dental-v2-team-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.dental-v2-team img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 20px 55px rgba(15,118,110,.16);
}

.dental-v2-team p,
.dental-v2-insurance p,
.dental-v2-cta p {
  color: #4b6369;
  font-size: 18px;
}

.dental-v2-team ul {
  margin: 24px 0;
  padding-left: 20px;
}

.dental-v2-team li {
  margin-bottom: 10px;
  font-weight: 700;
}

.dental-v2-insurance {
  padding: 80px 20px;
}

.dental-v2-insurance-box {
  background: #12343b;
  color: #ffffff;
  border-radius: 28px;
  padding: 55px;
  text-align: center;
}

.dental-v2-insurance h2,
.dental-v2-insurance p {
  color: #ffffff;
}

.dental-v2-pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 25px;
}

.dental-v2-pill-row span {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  padding: 12px 18px;
  border-radius: 999px;
  color: #ffffff;
}

.dental-v2-soft {
  background: #f0fdfa;
}

.dental-v2-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.dental-v2-faq-grid div {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid #ccfbf1;
}

.dental-v2-faq-grid h3 {
  margin-top: 0;
  color: #12343b;
}

.dental-v2-cta {
  background: #0f766e;
  color: #ffffff;
  text-align: center;
  padding: 85px 20px;
	margin-bottom: 60px !important;
}

.dental-v2-cta h2,
.dental-v2-cta p {
  color: #ffffff;
}

.dental-v2-cta .dental-v2-btn {
  background: #ffffff;
  color: #0f766e !important;
}

.dental-v2-footer {
  background: #12343b;
  color: #ffffff;
  padding: 65px 20px 25px;
}

.dental-v2-footer-grid {
  max-width: 1180px;
  margin: 0 auto 35px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

.dental-v2-footer h3,
.dental-v2-footer h4,
.dental-v2-footer p {
  color: #ffffff;
}

.dental-v2-copy {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.16);
  padding-top: 22px;
  margin: 0;
}

@media (max-width: 900px) {
  .dental-v2-header-inner,
  .dental-v2-nav,
  .dental-v2-bar-grid {
    flex-direction: column;
  }

  .dental-v2-icon-grid,
  .dental-v2-team-grid,
  .dental-v2-faq-grid,
  .dental-v2-footer-grid {
    grid-template-columns: 1fr;
  }

  .dental-v2-hero h1 {
    font-size: 40px;
  }

  .dental-v2-overlay {
    padding: 85px 20px;
  }

  .dental-v2-team img {
    height: 340px;
  }
}


/* DENTAL DEMO POPUP */
#pum-414 .pum-container,
#pum-414 .pum-theme-default-theme .pum-container {
    max-width: 560px !important;
    width: 90% !important;
    padding: 34px !important;
    border-radius: 24px !important;
    border-top: 6px solid #0f766e !important;
    box-shadow: 0 25px 60px rgba(15,118,110,0.20) !important;
    background: #ffffff !important;
}

/* TITLE */
#pum-414 .pum-title {
    color: #12343b !important;
    font-size: 30px !important;
    font-weight: 800 !important;
    text-align: center !important;
    margin-bottom: 22px !important;
}

/* CONTENT AREA */
#pum-414 .pum-content {
    padding: 0 !important;
}

/* FORM FIELDS */
#pum-414 input,
#pum-414 select,
#pum-414 textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 15px 18px !important;
    margin-bottom: 14px !important;
    border: 1px solid #cceee9 !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    color: #12343b !important;
    font-size: 15px !important;
    transition: 0.2s ease !important;
}

/* PLACEHOLDERS */
#pum-414 input::placeholder,
#pum-414 textarea::placeholder {
    color: #6b7f84 !important;
}

/* FOCUS */
#pum-414 input:focus,
#pum-414 select:focus,
#pum-414 textarea:focus {
    border-color: #0f766e !important;
    box-shadow: 0 0 0 4px rgba(15,118,110,0.14) !important;
    outline: none !important;
}

/* TEXTAREA */
#pum-414 textarea {
    min-height: 120px !important;
    resize: vertical !important;
}

/* REMOVE CF7 EXTRA SPACING */
#pum-414 .wpcf7-form p {
    margin: 0 !important;
}

/* SUBMIT BUTTON */
#pum-414 .wpcf7-submit {
    width: 100% !important;
    background: #0f766e !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 16px 24px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    transition: 0.2s ease !important;
}

#pum-414 .wpcf7-submit:hover {
    background: #115e59 !important;
    transform: translateY(-2px);
}

/* SUCCESS MESSAGE */
#pum-414 .wpcf7-response-output {
    border-radius: 14px !important;
    border: 1px solid #99f6e4 !important;
    background: #ecfdf5 !important;
    color: #065f46 !important;
    padding: 14px 16px !important;
    margin-top: 14px !important;
    font-size: 14px !important;
}

/* HIDE EMPTY MESSAGE BOX */
#pum-414 .wpcf7-response-output:empty {
    display: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ERROR FIELDS */
#pum-414 .wpcf7-not-valid {
    border-color: #dc2626 !important;
}

#pum-414 .wpcf7-not-valid-tip {
    color: #dc2626 !important;
    font-size: 13px !important;
    margin: -8px 0 12px !important;
}

/* CLOSE BUTTON */
#pum-414 .pum-close {
    background: transparent !important;
    color: #12343b !important;
    font-size: 28px !important;
    font-weight: 300 !important;
    top: 14px !important;
    right: 18px !important;
    box-shadow: none !important;
}

/* MOBILE */
@media (max-width: 768px) {
    #pum-414 .pum-container {
        width: calc(100vw - 24px) !important;
        max-width: calc(100vw - 24px) !important;
        padding: 24px !important;
        border-radius: 18px !important;
    }

    #pum-414 .pum-title {
        font-size: 24px !important;
    }

    #pum-414 textarea {
        min-height: 90px !important;
    }
}



/*********************************
 * Accountant Website
 * ******************************/

.acct-v2 {
  font-family: Arial, sans-serif;
  color: #1f2937;
  background: #ffffff;
}

.acct-v2-container {
  max-width: 1180px;
  margin: 0 auto;
}

.acct-v2-note {
  background: #111827;
  color: #ffffff;
  text-align: center;
  padding: 12px 20px;
  font-size: 14px;
}

.acct-v2-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 18px 20px;
  position: sticky;
  top: 0;
  z-index: 50;
}

.acct-v2-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

.acct-v2-logo {
  font-size: 25px;
  font-weight: 900;
  color: #111827;
}

.acct-v2-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.acct-v2-nav a {
  color: #1f2937;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}

.acct-v2-nav a:hover {
  color: #8b5e34;
}

.acct-v2-nav-btn {
  background: #8b5e34;
  color: #ffffff !important;
  padding: 11px 18px;
  border-radius: 4px;
}

.acct-v2-hero {
  background: #f8f5f0;
  padding: 100px 20px;
}

.acct-v2-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: center;
}

.acct-v2-eyebrow,
.acct-v2-heading span {
  color: #8b5e34;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}

.acct-v2-hero h1 {
  font-size: 58px;
  line-height: 1.05;
  color: #111827;
  margin: 16px 0 22px;
}

.acct-v2-hero p {
  font-size: 20px;
  color: #4b5563;
  max-width: 680px;
  margin-bottom: 28px;
}

.acct-v2-btn {
  display: inline-block;
  background: #8b5e34;
  color: #ffffff !important;
  padding: 15px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 800;
  transition: .2s ease;
}

.acct-v2-btn:hover {
  background: #6f4828;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.acct-v2-consult-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-top: 6px solid #8b5e34;
  padding: 36px;
  box-shadow: 0 20px 50px rgba(17,24,39,.12);
}

.acct-v2-consult-card h3 {
  color: #111827;
  font-size: 28px;
  margin: 0 0 12px;
}

.acct-v2-consult-card p {
  font-size: 16px;
  margin-bottom: 18px;
}

.acct-v2-consult-card ul {
  padding-left: 20px;
  margin-bottom: 24px;
}

.acct-v2-consult-card li {
  margin-bottom: 10px;
}

.acct-v2-challenges {
  padding: 85px 20px;
}

.acct-v2-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 45px;
}

.acct-v2-heading.left {
  text-align: left;
  margin-left: 0;
}

.acct-v2-heading h2,
.acct-v2-cta h2 {
  font-size: 42px;
  color: #111827;
  margin: 12px 0 16px;
  line-height: 1.15;
}

.acct-v2-heading p {
  color: #4b5563;
  font-size: 18px;
}

.acct-v2-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.acct-v2-problem-grid div {
  background: #111827;
  color: #ffffff;
  padding: 24px;
  font-weight: 800;
  border-left: 5px solid #8b5e34;
}

.acct-v2-process {
  background: #111827;
  color: #ffffff;
  padding: 90px 20px;
}

.acct-v2-process .acct-v2-heading h2 {
  color: #ffffff;
}

.acct-v2-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.acct-v2-timeline div {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: 28px;
}

.acct-v2-timeline strong {
  display: inline-block;
  color: #d6b37c;
  font-size: 26px;
  margin-bottom: 18px;
}

.acct-v2-timeline h3 {
  color: #ffffff;
  margin: 0 0 12px;
}

.acct-v2-timeline p {
  color: rgba(255,255,255,.78);
}

.acct-v2-services {
  padding: 90px 20px;
  background: #ffffff;
}

.acct-v2-service-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid #e5e7eb;
}

.acct-v2-service-list div {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid #e5e7eb;
}

.acct-v2-service-list h3 {
  color: #111827;
  font-size: 24px;
  margin: 0;
}

.acct-v2-service-list p {
  color: #4b5563;
  margin: 0;
  font-size: 17px;
}

.acct-v2-results {
  background: #f8f5f0;
  padding: 90px 20px;
}

.acct-v2-result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.acct-v2-result-grid div {
  background: #ffffff;
  padding: 30px;
  box-shadow: 0 12px 30px rgba(17,24,39,.08);
  border-top: 5px solid #8b5e34;
}

.acct-v2-result-grid h3 {
  color: #111827;
  font-size: 24px;
  margin-top: 0;
}

.acct-v2-result-grid p {
  color: #4b5563;
}

.acct-v2-cta {
  background: #8b5e34;
  color: #ffffff;
  text-align: center;
  padding: 85px 20px;
}

.acct-v2-cta h2,
.acct-v2-cta p {
  color: #ffffff;
}

.acct-v2-cta p {
  font-size: 18px;
  margin-bottom: 24px;
}

.acct-v2-cta .acct-v2-btn {
  background: #111827;
}

.acct-v2-footer {
  background: #111827;
  color: #ffffff;
  padding: 65px 20px 25px;
}

.acct-v2-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 35px;
}

.acct-v2-footer h3,
.acct-v2-footer h4,
.acct-v2-footer p {
  color: #ffffff;
}

.acct-v2-copy {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.16);
  padding-top: 22px;
  margin: 0;
}

@media (max-width: 900px) {
  .acct-v2-header-inner,
  .acct-v2-nav {
    flex-direction: column;
  }

  .acct-v2-nav {
    gap: 14px;
  }

  .acct-v2-hero-grid,
  .acct-v2-problem-grid,
  .acct-v2-timeline,
  .acct-v2-result-grid,
  .acct-v2-footer-grid {
    grid-template-columns: 1fr;
  }

  .acct-v2-service-list div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .acct-v2-hero h1 {
    font-size: 40px;
  }

  .acct-v2-hero {
    padding: 75px 20px;
  }

  .acct-v2-heading.left {
    text-align: center;
    margin-left: auto;
  }
}

/* ACCOUNTANT / CONSULTANT DEMO POPUP */
#pum-446 .pum-container,
#pum-446 .pum-theme-default-theme .pum-container {
    max-width: 560px !important;
    width: 90% !important;
    padding: 36px !important;
    border-radius: 10px !important;
    border-top: 6px solid #8b5e34 !important;
    box-shadow: 0 28px 65px rgba(17,24,39,0.22) !important;
    background: #ffffff !important;
}

/* TITLE */
#pum-446 .pum-title {
    color: #111827 !important;
    font-size: 30px !important;
    font-weight: 800 !important;
    text-align: center !important;
    margin-bottom: 22px !important;
    line-height: 1.2 !important;
}

/* CONTENT */
#pum-446 .pum-content {
    padding: 0 !important;
}

/* FORM FIELD RESET */
#pum-446 .wpcf7-form p {
    margin: 0 !important;
}

/* INPUTS */
#pum-446 input,
#pum-446 select,
#pum-446 textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 15px 18px !important;
    margin-bottom: 14px !important;
    border: 1px solid #d1d5db !important;
    border-radius: 6px !important;
    background: #ffffff !important;
    color: #111827 !important;
    font-size: 15px !important;
    transition: 0.2s ease !important;
    font-family: Arial, sans-serif !important;
}

/* PLACEHOLDERS */
#pum-446 input::placeholder,
#pum-446 textarea::placeholder {
    color: #6b7280 !important;
}

/* FOCUS */
#pum-446 input:focus,
#pum-446 select:focus,
#pum-446 textarea:focus {
    border-color: #8b5e34 !important;
    box-shadow: 0 0 0 4px rgba(139,94,52,0.14) !important;
    outline: none !important;
}

/* TEXTAREA */
#pum-446 textarea {
    min-height: 120px !important;
    resize: vertical !important;
}

/* SUBMIT BUTTON */
#pum-446 .wpcf7-submit {
    width: 100% !important;
    background: #8b5e34 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 16px 24px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    transition: 0.2s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
}

#pum-446 .wpcf7-submit:hover {
    background: #6f4828 !important;
    transform: translateY(-2px);
}

/* SUCCESS MESSAGE */
#pum-446 .wpcf7-response-output {
    border-radius: 6px !important;
    border: 1px solid #d6b37c !important;
    background: #f8f5f0 !important;
    color: #111827 !important;
    padding: 14px 16px !important;
    margin-top: 14px !important;
    font-size: 14px !important;
}

/* HIDE EMPTY SUCCESS BOX */
#pum-446 .wpcf7-response-output:empty {
    display: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* VALIDATION */
#pum-446 .wpcf7-not-valid {
    border-color: #dc2626 !important;
}

#pum-446 .wpcf7-not-valid-tip {
    color: #dc2626 !important;
    font-size: 13px !important;
    margin: -8px 0 12px !important;
}

/* CLOSE BUTTON */
#pum-446 .pum-close {
    background: transparent !important;
    color: #111827 !important;
    font-size: 28px !important;
    font-weight: 300 !important;
    top: 14px !important;
    right: 18px !important;
    box-shadow: none !important;
    border: none !important;
}

/* MOBILE */
@media (max-width: 768px) {
    #pum-446 .pum-container {
        width: calc(100vw - 24px) !important;
        max-width: calc(100vw - 24px) !important;
        padding: 24px !important;
        border-radius: 8px !important;
    }

    #pum-446 .pum-title {
        font-size: 24px !important;
    }

    #pum-446 textarea {
        min-height: 90px !important;
    }
}

/*************************************
 * Portfolio header images 
 ***********************************/
.gbs-portfolio-img {
  height: 260px;
  overflow: hidden;
}

.gbs-portfolio-img img {
  width: 100%;
  height: 100%;
  display: block;
}

/*************************************
* Article
*************************************/

.gbs-pillar-article {
  font-family: Arial, sans-serif;
  background: #f5f7fa;
  color: #1f2937;
}

.gbs-pillar-hero {
  background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
  padding: 115px 20px 150px;
  text-align: center;
  color: #ffffff;
}

.gbs-pillar-hero-inner {
  max-width: 920px;
  margin: 0 auto;
}

.gbs-pillar-label {
  color: #bfdbfe;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.gbs-pillar-hero h1 {
  color: #ffffff;
  font-size: 58px;
  line-height: 1.08;
  margin: 0 0 24px;
}

.gbs-pillar-subtitle {
  color: #e0ecff;
  font-size: 21px;
  line-height: 1.65;
  max-width: 780px;
  margin: 0 auto;
}

.gbs-pillar-content-wrap {
  padding: 0 20px 90px;
}

.gbs-pillar-content {
  max-width: 860px;
  margin: -70px auto 0;
  background: #ffffff;
  border-radius: 24px;
  padding: 65px;
  box-shadow: 0 20px 55px rgba(0,0,0,0.11);
}

.gbs-pillar-content p {
  font-size: 18px;
  line-height: 1.85;
  margin: 0 0 26px;
}

.gbs-pillar-content h2 {
  color: #1e3a5f;
  font-size: 36px;
  line-height: 1.25;
  margin: 68px 0 22px;
}

.gbs-pillar-content h3 {
  color: #1e3a5f;
  font-size: 25px;
  line-height: 1.3;
  margin: 42px 0 14px;
}

.gbs-pillar-content ul {
  margin: 0 0 34px 24px;
  padding: 0;
}

.gbs-pillar-content li {
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 12px;
}

.gbs-pillar-content a {
  color: #2563eb;
  font-weight: 800;
  text-decoration: none;
}

.gbs-pillar-content a:hover {
  text-decoration: underline;
}

.gbs-pillar-summary {
  background: #eff6ff;
  border-left: 6px solid #2563eb;
  border-radius: 18px;
  padding: 32px;
  margin-bottom: 50px;
}

.gbs-pillar-summary h2 {
  margin-top: 0;
  font-size: 30px;
}

.gbs-pillar-table-wrap {
  overflow-x: auto;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  margin: 38px 0 55px;
}

.gbs-pillar-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #ffffff;
}

.gbs-pillar-table th {
  background: #1e3a5f;
  color: #ffffff;
  padding: 17px;
  text-align: left;
}

.gbs-pillar-table td {
  padding: 17px;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: top;
  line-height: 1.55;
}

.gbs-pillar-table tr:nth-child(even) {
  background: #f9fafb;
}

.gbs-pillar-cta,
.gbs-pillar-final-cta {
  background: #1e3a5f;
  color: #ffffff;
  border-radius: 22px;
  padding: 42px;
  text-align: center;
  margin: 60px 0;
}

.gbs-pillar-cta h2,
.gbs-pillar-cta p,
.gbs-pillar-final-cta h2,
.gbs-pillar-final-cta p {
  color: #ffffff;
}

.gbs-pillar-cta h2,
.gbs-pillar-final-cta h2 {
  margin-top: 0;
}

.gbs-pillar-cta a,
.gbs-pillar-final-cta a {
  display: inline-block;
  background: #2563eb;
  color: #ffffff !important;
  padding: 15px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  margin: 8px;
}

.gbs-pillar-final-cta .secondary {
  background: #ffffff;
  color: #1e3a5f !important;
}

.gbs-pillar-faq {
  margin: 35px 0 20px;
}

.gbs-pillar-faq > div {
  border-top: 1px solid #e5e7eb;
  padding: 30px 0;
}

.gbs-pillar-faq > div:last-child {
  border-bottom: 1px solid #e5e7eb;
}

.gbs-pillar-faq h3 {
  margin-top: 0;
}

@media (max-width: 768px) {
  .gbs-pillar-hero {
    padding: 80px 18px 115px;
  }

  .gbs-pillar-hero h1 {
    font-size: 38px;
  }

  .gbs-pillar-subtitle {
    font-size: 18px;
  }

  .gbs-pillar-content-wrap {
    padding: 0 14px 60px;
  }

  .gbs-pillar-content {
    margin-top: -55px;
    padding: 34px 22px;
    border-radius: 18px;
  }

  .gbs-pillar-content h2 {
    font-size: 29px;
    margin-top: 52px;
  }

  .gbs-pillar-content h3 {
    font-size: 22px;
  }

  .gbs-pillar-content p,
  .gbs-pillar-content li {
    font-size: 16px;
  }

  .gbs-pillar-summary,
  .gbs-pillar-cta,
  .gbs-pillar-final-cta {
    padding: 28px 22px;
  }
}

/************************************
* Article section of home page
************************************/

.gbs-latest-articles .gbs-section-intro {
  max-width: 680px;
  margin: -20px auto 40px;
  text-align: center;
  color: #4b5563;
  font-size: 18px;
}

.gbs-article-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.gbs-article-preview {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}

.gbs-article-preview h3 {
  color: #1e3a5f;
  font-size: 23px;
  line-height: 1.3;
  margin: 0 0 14px;
}

.gbs-article-preview p {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 22px;
}

.gbs-article-preview .gbs-btn {
  margin-top: auto;
  text-align: center;
}

@media (max-width: 900px) {
  .gbs-article-card-grid {
    grid-template-columns: 1fr;
  }
}


/***********************************
* Contact page
***********************************/

.gbs-contact-hero {
  background: #f5f7fa;
  padding: 90px 20px;
  text-align: center;
}

.gbs-contact-hero h1 {
  max-width: 850px;
  margin: 0 auto 20px;
  font-size: 48px;
  line-height: 1.1;
  color: #1e3a5f;
}

.gbs-contact-hero p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  color: #4b5563;
}

.gbs-contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 45px;
  align-items: start;
}

.gbs-contact-info h2,
.gbs-contact-form-box h2 {
  color: #1e3a5f;
  font-size: 34px;
  margin: 0 0 18px;
}

.gbs-contact-info p {
  font-size: 17px;
  color: #4b5563;
}

.gbs-contact-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 22px;
  margin-top: 18px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.05);
}

.gbs-contact-card h3 {
  color: #1e3a5f;
  margin: 0 0 8px;
}

.gbs-contact-card p {
  margin: 0;
}

.gbs-contact-card a {
  color: #2563eb;
  font-weight: 700;
  text-decoration: none;
}

.gbs-contact-form-box {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 34px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.07);
}

.gbs-contact-form-box .wpcf7-form p {
  margin: 0;
}

.gbs-contact-form-box input,
.gbs-contact-form-box select,
.gbs-contact-form-box textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  margin-bottom: 14px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 15px;
}

.gbs-contact-form-box textarea {
  min-height: 130px;
}

.gbs-contact-form-box input:focus,
.gbs-contact-form-box select:focus,
.gbs-contact-form-box textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.12);
}

.gbs-contact-form-box .wpcf7-submit {
  width: 100%;
  background: #2563eb !important;
  color: #ffffff !important;
  border: none !important;
  padding: 15px 22px !important;
  border-radius: 10px !important;
  font-weight: 800 !important;
  cursor: pointer;
}

.gbs-contact-form-box .wpcf7-submit:hover {
  background: #1d4ed8 !important;
}

@media (max-width: 900px) {
  .gbs-contact-grid {
    grid-template-columns: 1fr;
  }

  .gbs-contact-hero h1 {
    font-size: 36px;
  }
}