/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/


/* ========== MAIN CONTENT ========== */
  .page-main {
    flex: 1;
  }
  .thankyou-block h2 a{
  	font-size: 18px;
  	font-weight: bold;
  }
  .thankyou-block {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }

  /* Success icon */
  .success-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: #459647;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(69,150,71,0.25);
  }

  .success-icon svg {
    width: 44px;
    height: 44px;
    fill: none;
    stroke: #fff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* Heading */
  .thankyou-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #242424;
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .thankyou-subtitle {
    font-size: 17px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 52px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Steps block */
  .steps-block {
    background: #f5f5f5;
    border-top: 3px solid #FA7D00;
    padding: 36px 40px;
    margin-bottom: 44px;
    text-align: left;
  }

  .steps-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #242424;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    text-align: center;
  }

  .steps-grid {
    display: flex;
    gap: 24px;
  }

  .step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .step-icon {
    width: 48px;
    height: 48px;
    background: #FA7D00;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .step-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .step-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #FA7D00;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .step-text {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
  }

  /* CTA buttons */
  .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
  }

  .btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 15px 36px;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    display: inline-block;
    line-height: 1;
    border: 2px solid transparent;
  }

  .btn-primary {
    background: #FA7D00;
    color: #fff;
    border-color: #FA7D00;
  }

  .btn-primary:hover {
    background: #e06e00;
    border-color: #e06e00;
  }

  .btn-outline {
    background: transparent;
    color: #FA7D00;
    border-color: #FA7D00;
  }

  .btn-outline:hover {
    background: #FA7D00;
    color: #fff;
  }

  /* Contact nudge */
  .contact-nudge {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
  }

  .contact-nudge a {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #FA7D00;
    margin-top: 6px;
    transition: color 0.2s;
  }

  .contact-nudge a:hover { color: #e06e00; }