/* === CSS VARIABLES FOR CONSISTENT DESIGN === */
:root {
  --text-primary: #1a1a1a; /* 21:1 contrast on white */
  --text-secondary: #424242; /* 10.9:1 contrast */
  --text-muted: #6c757d; /* 6.2:1 contrast */
  --accent-primary: #4CAF50;
  --accent-secondary: #ff6d00;
  --bg-primary: #fff;
  --bg-secondary: #f8f8f8;
  --border-light: #f0f0f0;
}

/* === SHARED STYLES ACROSS ALL PAGES === */
*,:before,:after{box-sizing:border-box;margin:0;padding:0}
body{background:var(--bg-primary);font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;line-height:1.65;-webkit-font-smoothing:antialiased;color:var(--text-primary);font-size:1rem}
.header-section{height:1.5625rem}

/* Remove footer margin-top */
footer {
  margin-top: 0;
}

/* === FORM STYLES === */
.quote-form{max-width:600px;margin:0 auto;padding:32px 24px;position:relative}
.quote-form fieldset{border:none}
.form-row{display:flex;flex-wrap:wrap;gap:20px;margin-bottom:20px}
.form-group{flex:1 1 100%;display:flex;flex-direction:column}
@media(min-width:650px){.form-group{flex:1 1 calc(50% - 10px)}}
.quote-form label{margin-bottom:8px;font-weight:600;font-size:0.9375rem;color:#1a1a1a}
.quote-form input,.quote-form select,.quote-form textarea{background-color:#d9f4cd;border:2px solid transparent;border-radius:12px;padding:14px 16px;font-size:16px;width:100%;line-height:1.5;transition:all 0.3s ease}
.quote-form input:focus,.quote-form select:focus,.quote-form textarea:focus{outline:none;border-color:#4CAF50;box-shadow:0 0 0 4px rgba(76,175,80,0.1);background-color:#e8f9e5}
.quote-form input::placeholder,.quote-form textarea::placeholder{color:rgba(0,0,0,.45)}
.quote-form select{color:rgba(0,0,0,.85)}
.quote-form select option:disabled[selected]{color:rgba(0,0,0,.45)}
.quote-form textarea{resize:vertical;min-height:100px;width:100%;box-sizing:border-box}
.error-message{color:#d93025;font-size:0.8125rem;margin-top:8px;display:none;font-weight:500}

.form-group.privacy-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.form-group.privacy-group > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.form-group.privacy-group label {
  font-size: 12px;
  line-height: 1.3;
}

.form-group.privacy-group label {
  display: inline-block;
  margin: 0;
}

.form-group.privacy-group input[type="checkbox"] {
  width: 24px;
  height: 24px;
  margin: 0;
  flex-shrink: 0;
  cursor: pointer;
}
.cta-button{background:linear-gradient(135deg, #4CAF50 0%, #45a049 100%);color:#fff;font-weight:700;padding:18px 32px;border:none;border-radius:12px;cursor:pointer;margin-top:24px;width:100%;font-size:18px;transition:all 0.3s ease;box-shadow:0 4px 20px rgba(76,175,80,0.3);letter-spacing:0.3px}
.cta-button:hover{transform:translateY(-2px);box-shadow:0 8px 30px rgba(76,175,80,0.4)}
.cta-button:active{transform:translateY(0)}
.privacy-text{font-size:0.875rem;margin-top:16px;margin-left:5px;color:#666;line-height:1.5}
.privacy-text a{color:#4CAF50;text-decoration:none;font-weight:600}
.privacy-text a:hover{text-decoration:underline}
.form-error-banner{display:none;background:#fdd;color:#900;padding:14px;border-radius:12px;margin-bottom:20px;font-weight:600;font-size:14px}

/* === FULL-WIDTH BREAKOUT SECTIONS === */
.full-bleed-wrapper {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

html, body {
  overflow-x: hidden;
}

/* === MOBILE-FIRST SECTION INNER PADDING === */
.section-inner {
  padding: 3.125rem 1.25rem;
}

@media (min-width: 30.0625rem) {
  .section-inner {
    padding: 3.75rem 1.5rem;
  }
}

@media (min-width: 40.0625rem) {
  .section-inner {
    padding: 4.375rem 2rem;
  }
}

@media (min-width: 48.0625rem) {
  .section-inner {
    padding: 5rem 2.5rem;
    max-width: 75rem;
    margin: 0 auto;
  }
}

@media (min-width: 64.0625rem) {
  .section-inner {
    padding: 6.25rem 3.75rem;
    max-width: 87.5rem;
  }
}

@media (min-width: 90.0625rem) {
  .section-inner {
    max-width: 100rem;
  }
}

/* === MOBILE-FIRST SECTION HEADERS === */
.section-inner h2,
.section-inner > div > h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.section-inner p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.quote-form {
  padding: 1.5rem 1rem;
}

/* Extra small mobile */
@media (min-width: 23.4375rem) {
  .section-inner h2,
  .section-inner > div > h2 {
    font-size: 1.625rem;
  }
  .section-inner p {
    font-size: 1.0625rem;
  }
}

@media (min-width: 30.0625rem) {
  .section-inner h2,
  .section-inner > div > h2 {
    font-size: 2rem;
    letter-spacing: -0.025em;
  }
  .section-inner p {
    font-size: 1.125rem;
  }
}

@media (min-width: 40.0625rem) {
  .section-inner h2,
  .section-inner > div > h2 {
    font-size: 2.25rem;
  }
  .section-inner p {
    font-size: 1.1875rem;
  }
}

@media (min-width: 48.0625rem) {
  .section-inner h2,
  .section-inner > div > h2 {
    font-size: 2.625rem;
    letter-spacing: -0.0625em;
    line-height: 1.2;
  }
  .section-inner p {
    font-size: 1.3125rem;
  }
}

@media (min-width: 64.0625rem) {
  .section-inner h2,
  .section-inner > div > h2 {
    font-size: 3rem;
  }
  .section-inner p {
    font-size: 1.375rem;
  }
}

@media (min-width: 90.0625rem) {
  .section-inner p {
    font-size: 1.5rem;
  }
}

/* === MOBILE-FIRST CARDS === */
.full-bleed-wrapper .cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 769px) {
  .full-bleed-wrapper .cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
}

.full-bleed-wrapper .card {
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.3s ease;
  display: grid;
  place-items: center;
  height: 180px;
  background: white;
  padding: 20px;
  box-sizing: border-box;
  grid-template-rows: auto 1fr;
  gap: 8px;
}

@media (min-width: 481px) {
  .full-bleed-wrapper .card {
    border-radius: 24px;
    height: 220px;
    padding: 30px;
  }
}

/* Mobile card centering fixes - keep consistent height */
@media (max-width: 768px) {
  .full-bleed-wrapper .card {
    display: grid;
    place-items: center;
    grid-template-rows: auto auto;
    gap: 8px;
    height: 220px;  /* Keep same height as desktop to prevent breaking */
    padding: 20px;
    box-sizing: border-box;
  }
}

.full-bleed-wrapper .card h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

@media (min-width: 481px) {
  .full-bleed-wrapper .card h3 {
    font-size: 26px;
  }
}

.full-bleed-wrapper .card p {
  font-size: 18px;
  line-height: 1.6;
  color: inherit;
  margin: 0;
}

@media (min-width: 481px) {
  .full-bleed-wrapper .card p {
    font-size: 20px;
  }
}

.full-bleed-wrapper .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

@media (max-width: 768px) {
  .full-bleed-wrapper .card:hover {
    transform: translateY(-4px);
  }
}

/* === FAQ STYLING === */
.faq-item {
  margin-bottom: 16px;
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
  background: white;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #e0e0e0;
}

@media (max-width: 480px) {
  .faq-item {
    margin-bottom: 12px;
    border-radius: 10px;
  }
}

.faq-question {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f8f8f8;
}

@media (max-width: 480px) {
  .faq-question {
    font-size: 20px;
    padding: 16px 20px;
  }
}

.faq-icon {
  font-size: 24px;
  color: #4CAF50;
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
  pointer-events: none;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  padding: 0 24px 20px 24px;
}

@media (max-width: 480px) {
  .faq-answer p {
    font-size: 16px;
    padding: 0 20px 16px 20px;
  }
}

/* === TRUST SECTION STYLING === */
.trust-section-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

@media (min-width: 769px) {
  .trust-section-content {
    gap: 60px;
    justify-content: center;
  }
}

.trust-section-left {
  flex: 1;
  min-width: 100%;
}

@media (min-width: 769px) {
  .trust-section-left {
    flex: 0 0 auto;
    max-width: 600px;
  }
}

.trust-section-left h2 {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

@media (min-width: 769px) {
  .trust-section-left h2 {
    font-size: 42px;
    text-align: left;
    white-space: nowrap;
  }
}

.trust-section-left > p {
  font-size: 17px;
  text-align: center;
  margin-bottom: 24px;
  color: #555;
  line-height: 1.6;
}

@media (min-width: 769px) {
  .trust-section-left > p {
    font-size: 18px;
    text-align: left;
    margin-bottom: 30px;
  }
}

/* Trust list styling */
.trust-list {
  list-style: none;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  font-weight: 500;
}

@media (min-width: 481px) {
  .trust-list {
    font-size: 19px;
  }
}

@media (min-width: 769px) {
  .trust-list {
    font-size: 24px;
    text-align: center;
  }
}

.trust-list li {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

@media (min-width: 481px) {
  .trust-list li {
    margin-bottom: 16px;
  }
}

.trust-list li::before {
  content: attr(data-icon);
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1.3;
}

@media (min-width: 481px) {
  .trust-list li::before {
    font-size: 24px;
  }
}

.trust-section-right {
  flex: 1;
  min-width: 100%;
  text-align: center;
}

@media (min-width: 769px) {
  .trust-section-right {
    flex: 0 0 auto;
    max-width: 400px;
    margin: 0 auto;
  }
}

.trust-section-right img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

@media (min-width: 481px) {
  .trust-section-right img {
    border-radius: 20px;
  }
}

@media (min-width: 769px) {
  .trust-section-right img {
    margin: 0 auto;
    display: block;
  }
}

/* === MODAL STYLES === */
.quote-form-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: none;
  z-index: 9999;
  overflow: hidden;
}

.modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  position: relative;
  margin: 5% auto;
  max-width: 600px;
  width: 90%;
  box-sizing: border-box;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

#close-form {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  background: #f5f5f5;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  color: #333;
  font-weight: 300;
  line-height: 1;
  z-index: 10;
}

#close-form:hover {
  background: #e0e0e0;
  transform: rotate(90deg);
}

/* Mobile Adjustments - Full Screen with Top Space */
@media (max-width: 600px) {
  .quote-form-modal {
    overflow: hidden;
    position: fixed;
    touch-action: none;
    height: 100vh;
    height: 100dvh;
  }

  .modal-content {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    max-width: 100%;
    width: 100%;
    height: calc(100vh - 40px);
    height: calc(100dvh - 40px);
    max-height: calc(100vh - 40px);
    max-height: calc(100dvh - 40px);
    border-radius: 20px 20px 0 0;
    padding: 20px;
    padding-top: 70px;
    padding-bottom: 40px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    box-sizing: border-box;
  }

  .quote-form-modal #close-form {
    position: fixed;
    top: 50px;
    right: 20px;
    font-size: 32px;
    z-index: 10;
    background: white;
    width: 44px;
    height: 44px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

  .quote-form-modal .quote-form {
    padding: 16px;
    padding-bottom: 20px;
  }
}

/* Additional mobile-specific improvements */
@media (max-width: 480px) {
  .form-row {
    gap: 16px;
    margin-bottom: 16px;
  }

  .quote-form input,
  .quote-form select,
  .quote-form textarea {
    font-size: 16px;
    padding: 12px 14px;
  }

  .cta-button {
    padding: 16px 28px;
    font-size: 17px;
  }
}

/* === ABOUT US PAGE STYLES === */

/* About Us Story Grid */
.about-us-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .about-us-story-grid {
    display: block;
    gap: 0;
  }

  .about-us-story-grid > div:first-child {
    margin-bottom: 3rem;
  }

  .about-us-story-grid > div:last-child {
    text-align: center;
  }

  .about-us-story-grid > div:last-child img {
    max-width: 350px !important;
    width: 100% !important;
    height: auto !important;
  }
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Feature Cards */
.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

@media (max-width: 768px) {
  .feature-card {
    padding: 1.5rem;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .feature-card {
    padding: 1.25rem;
  }
}

/* === ABOUT US PAGE MOBILE OPTIMIZATIONS === */

/* About Us Typography Improvements */
.full-bleed-wrapper:nth-child(1) h1 {
  font-size: 2.8rem;
}

.full-bleed-wrapper:nth-child(1) p {
  font-size: 1.6rem;
  color: #444;
}

.full-bleed-wrapper:nth-child(2) h2 {
  font-size: 2.3rem;
  color: #2c2c2c;
}

.full-bleed-wrapper:nth-child(2) p {
  font-size: 1.25rem;
  color: #444;
}

.full-bleed-wrapper:nth-child(3) h2 {
  font-size: 2.3rem;
  color: #2c2c2c;
}

.full-bleed-wrapper:nth-child(3) p {
  font-size: 1.25rem;
  color: #444;
}

.full-bleed-wrapper:nth-child(4) h2 {
  font-size: 2.3rem;
  color: #2c2c2c;
}

.full-bleed-wrapper:nth-child(4) p {
  font-size: 1.25rem;
  color: #444;
}

.full-bleed-wrapper:nth-child(4) h3 {
  font-size: 1.8rem;
}

.full-bleed-wrapper:nth-child(4) .section-inner > div > div > div p {
  font-size: 1.15rem;
  color: #444;
}

.full-bleed-wrapper:nth-child(5) h2 {
  font-size: 2.3rem;
  color: #2c2c2c;
}

.full-bleed-wrapper:nth-child(5) p {
  font-size: 1.25rem;
  color: #444;
}

.full-bleed-wrapper:last-child h2 {
  font-size: 2.3rem;
  color: white;
}

.full-bleed-wrapper:last-child p {
  font-size: 1.25rem;
  color: white;
}

/* Mobile hero section */
@media (max-width: 480px) {
  .full-bleed-wrapper:first-child .section-inner {
    padding: 60px 20px;
  }

  .full-bleed-wrapper:first-child h1 {
    font-size: 2.1rem !important;
    line-height: 1.2;
  }

  .full-bleed-wrapper:first-child p {
    font-size: 1.3rem !important;
    line-height: 1.4;
  }

  .full-bleed-wrapper:first-child button {
    padding: 14px 24px !important;
    font-size: 1.1rem !important;
    width: 100% !important;
    max-width: 280px !important;
  }
}

/* Mobile two-column layout fixes - force stacked layout */
@media (max-width: 768px) {
  /* Target the grid container in the second section */
  .full-bleed-wrapper:nth-child(2) .section-inner > div > div[style*="display: grid"] {
    display: block !important;
    grid-template-columns: unset !important;
    gap: 0 !important;
  }

  /* Stack the content and image vertically */
  .full-bleed-wrapper:nth-child(2) .section-inner > div > div > div {
    display: block !important;
    width: 100% !important;
  }

  /* Add space between content and image */
  .full-bleed-wrapper:nth-child(2) .section-inner > div > div > div:first-child {
    margin-bottom: 3rem !important;
  }

  /* Center the image container */
  .full-bleed-wrapper:nth-child(2) .section-inner > div > div > div:last-child {
    text-align: center !important;
  }

  /* Make image larger on mobile */
  .full-bleed-wrapper:nth-child(2) .section-inner > div > div > div:last-child img {
    max-width: 350px !important;
    width: 100% !important;
    height: auto !important;
  }
}

/* Mobile service cards */
@media (max-width: 768px) {
  .full-bleed-wrapper:nth-child(3) .section-inner .section-inner h2 {
    font-size: 1.8rem !important;
  }

  .full-bleed-wrapper:nth-child(3) .section-inner .section-inner p {
    font-size: 1rem !important;
  }
}

/* Mobile why choose us section - Force single column layout */
@media (max-width: 768px) {
  .full-bleed-wrapper:nth-child(4) .section-inner > div > h2 {
    font-size: 1.8rem !important;
    margin-bottom: 2rem !important;
  }

  .full-bleed-wrapper:nth-child(4) .section-inner > div > p {
    font-size: 1.1rem !important;
    margin-bottom: 2rem !important;
  }

  /* Force the grid to display as block on mobile - more specific override */
  .full-bleed-wrapper:nth-child(4) .section-inner > div > div[style] {
    display: block !important;
    grid-template-columns: unset !important;
    gap: 0 !important;
  }

  /* Ensure each column stacks vertically */
  .full-bleed-wrapper:nth-child(4) .section-inner > div > div > div {
    margin-bottom: 0 !important;
    width: 100% !important;
  }

  /* Individual feature items as cards */
  .full-bleed-wrapper:nth-child(4) .section-inner > div > div > div {
    background: white !important;
    padding: 1.5rem !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
    margin-bottom: 1.5rem !important;
    border: 1px solid #f0f0f0 !important;
    transition: all 0.3s ease !important;
  }

  .full-bleed-wrapper:nth-child(4) .section-inner > div > div > div:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12) !important;
  }

  /* Last item in each column shouldn't have bottom margin */
  .full-bleed-wrapper:nth-child(4) .section-inner > div > div > div:last-child {
    margin-bottom: 0 !important;
  }
}

/* Extra small mobile devices - even more compact */
@media (max-width: 480px) {
  .full-bleed-wrapper:nth-child(4) .section-inner > div > h2 {
    font-size: 1.6rem !important;
  }

  .full-bleed-wrapper:nth-child(4) .section-inner > div > p {
    font-size: 1rem !important;
  }

  .full-bleed-wrapper:nth-child(4) .section-inner > div > div > div h3 {
    font-size: 1.3rem !important;
  }

  .full-bleed-wrapper:nth-child(4) .section-inner > div > div > div p {
    font-size: 0.95rem !important;
  }

  .full-bleed-wrapper:nth-child(4) .section-inner > div > div > div > div {
    margin-bottom: 1.5rem !important;
  }
}

/* Mobile CTA sections */
@media (max-width: 480px) {
  .full-bleed-wrapper .section-inner h3 {
    font-size: 1.4rem !important;
  }

  .open-form-btn.cta-button {
    padding: 14px 24px !important;
    font-size: 1.1rem !important;
    width: 100% !important;
    max-width: 280px !important;
    margin: 0 auto !important;
  }

  .full-bleed-wrapper:last-child .section-inner h2 {
    font-size: 2rem !important;
  }

  .full-bleed-wrapper:last-child .section-inner p {
    font-size: 1.2rem !important;
  }

  .full-bleed-wrapper:last-child .section-inner div button {
    margin-bottom: 1rem;
  }
}



/* === NAVIGATION STYLES === */

/* Fix mobile navbar grow/shrink animation */
@media (max-width: 768px) {
  .navbar-collapse {
    transition: none !important;
  }
}

/* Make Get Quote link a button on all viewports below 1200px */
@media (max-width: 1199px) {
  .get-quote-nav-item .nav-link {
    background: #ff6d00 !important;
    color: white !important;
    border: none !important;
    padding: 8px 16px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-align: center !important;
    line-height: 1 !important;
    transition: all 0.3s ease !important;
    margin: 8px auto 0 !important;
    display: block !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
    box-shadow: 0 2px 8px rgba(255,109,0,0.3) !important;
    width: fit-content !important;
  }

  .get-quote-nav-item .nav-link:hover {
    background: #e55a00 !important;
    color: white !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(255,109,0,0.4) !important;
  }

  /* Center the button in nav for viewports below 1200px */
  .get-quote-nav-item {
    width: 100% !important;
    text-align: center !important;
    margin-top: 8px !important;
    margin-bottom: 12px !important;
  }
}

/* Get Quote navigation button - desktop only */
@media (min-width: 1200px) {
  .get-quote-nav-btn {
    background: #ff6d00 !important;
    color: white !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-align: center !important;
    line-height: 1 !important;
    transition: all 0.3s ease !important;
    margin-left: 12px !important;
    display: inline-block !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
  }

  .get-quote-nav-btn:hover {
    background: #e55a00 !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(255,109,0,0.4) !important;
  }

  .get-quote-nav-item {
    margin-left: 12px;
    display: flex !important;
    align-items: center !important;
  }
}

/* === PAGE-SPECIFIC STYLES === */

/* Privacy Policy and Terms page styling - container padding for these pages only */
.privacy-policy-page .col-xl-8,
.privacy-policy-page .col-lg-10,
.terms-page .col-xl-8,
.terms-page .col-lg-10 {
  padding: 0 30px;
}

.page-template .content {
  line-height: 1.8;
  margin-bottom: 20px;
}

.page-template .content p {
  margin-bottom: 16px;
}

.page-template .content ul {
  margin-left: 60px;
  padding-left: 40px;
  margin-bottom: 24px;
  margin-top: 12px;
}

.page-template .content li {
  margin-bottom: 16px;
  padding-left: 12px;
  line-height: 1.7;
  list-style: none;
  position: relative;
}

.page-template .content li::before {
  content: "-";
  position: absolute;
  left: -12px;
  color: #333;
}

/* Services page styles */
.service-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 40px 0;
}

@media (min-width: 769px) {
  .service-options {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

.service-option {
  padding: 32px 24px;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  text-align: center;
  background: #fafafa;
  transition: all 0.3s ease;
}

.service-option:hover {
  border-color: #4CAF50;
  background: #f0f9f0;
  transform: translateY(-4px);
}

.service-option h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.service-option p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-option .frequency {
  font-size: 20px;
  font-weight: 600;
  color: #4CAF50;
  margin-bottom: 16px;
}

/* How it works */
.how-it-works {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 40px 0;
}

@media (min-width: 769px) {
  .how-it-works {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.step {
  text-align: center;
  padding: 24px;
}

.step-number {
  font-size: 48px;
  font-weight: 800;
  color: #4CAF50;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

/* Benefits list */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.benefits-list li {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.benefits-list li::before {
  content: none;
}

/* Mobile optimization for benefits list */
@media (max-width: 768px) {
  .benefits-list li {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
  }

  .benefits-list li strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
  }
}

/* Service area */
.service-area {
  text-align: center;
  padding: 40px 0;
  background: #f8f8f8;
  margin: 40px 0;
  border-radius: 16px;
}

.service-area h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.service-area p {
  font-size: 20px;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

/* === EXTRACTED INLINE STYLES === */

/* HERO SECTION */
.hero-wrapper {
  background: #f8f8f8;
}

/* GENERAL SECTIONS */
.section-background-light {
  background: #f8f8f8;
}

.section-header-center {
  text-align: center;
  margin-bottom: 50px;
}

.section-description-large {
  font-size: 20px;
}

.section-inner-center {
  text-align: center;
}

.hero-description {
  font-size: 18px;
  margin: 20px 0;
  color: #1a1a1a;
}

.cta-button-max-width {
  max-width: 300px;
  margin: 0 auto;
}

/* TRUST SECTION */
.trust-section-right-custom {
  flex: 1;
  min-width: 300px;
  margin-top: 20px;
}

.trust-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.trust-bottom-text {
  text-align: center;
  width: 100%;
  padding-top: 10px;
  font-size: 20px;
}

/* CUSTOMER BENEFITS CARDS */
.card-background-light {
  background: #e0f7fa;
  color: #1a1a1a;
}

.card-text-large {
  font-size: 21px;
}

/* TRUST LIST */
.trust-list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

.trust-emoji {
  font-size: 24px;
  width: 36px;
  text-align: center;
}

/* HOW IT WORKS CARDS */
.card-background-green {
  background: #4CAF50;
  color: #fff;
}

.step-emoji {
  font-size: 48px;
  margin-bottom: 16px;
}

/* SECTION TITLES */
.section-title-large {
  font-size: 48px;
  font-weight: 800;
  color: #1a1a1a;
}

.section-background-white {
  background: #ffffff;
}

.section-title-margin {
  margin-bottom: 40px;
}

/* MODAL */
.modal-close-button {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}

/* SERVICES PAGE SPECIFIC */
.hero-description-large {
  font-size: 20px;
  margin: 24px 0 32px;
}

.service-image {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin: 20px auto 0;
  display: block;
}

.service-option-description {
  margin-bottom: 20px;
}

.service-frequency {
  font-size: 20px;
  font-weight: 600;
  color: #4CAF50;
  margin-bottom: 16px;
}

.section-title-center-margin {
  text-align: center;
  margin-bottom: 40px;
}
