/**
 * Theme Name:     Custom Graphics KC
 * Theme URI:      https://wdstheme.com/
 * Author:         Shahin Alam
 * Template:       generatepress
 * Text Domain:    custom-graphics-kc
 */

/* Load Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Load Barlow Condensed font */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;500;600;700;800;900&display=swap');

/* Load Inter Tight font */
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;500;600;700;800;900&display=swap');

/* Load Montserrat font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* Typography */
body {
  font-family: 'Poppins', sans-serif;
  color: #000;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Barlow Condensed', sans-serif;
  color: #000000;
  font-weight: 500;
  margin: 0 0 10px;
}

p {
  color: #7D7D7D;
  line-height: 1.7;
  margin-bottom: 1em;
}

/* ========= HEADER STYLES ========= */

/* Containers */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.header-top .container {
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  flex-wrap: wrap;
  gap: 6px;
  text-align: center;
}

/* Top Bar */
.header-top {
  background-color: #0a2b5a;
  color: #fff;
  font-size: 14px;
}

.top-bar-text {
  flex: 1;
  color: #fff;
  font-size: 14px;
}

.phone {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.phone svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

/* Main Header */
.header-main {
  background: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 100;
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px 15px;
}

/* cg code */

.logo img {
  width: 145px;
  height: auto;
}

/* cg code */

/* Nav Menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 16px;
  padding: 5px 0;
  display: inline-block;
  text-transform: uppercase;
}

.nav-menu li.menu-item-has-children>a::after {
  content: " ▼";
  font-size: 10px;
  margin-left: 4px;
}

/* Submenu */
.nav-menu .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: none;
  min-width: 300px;
  z-index: 1000;
  list-style: none;
}

.nav-menu li:hover>.sub-menu {
  display: block;
}

.sub-menu li a {
  padding: 8px 20px;
  display: block;
  color: #000;
  font-size: 15px;
}

.sub-menu li a:hover {
  background: #f4f4f4;
}

/* CTA Button */
.cta-button {
  background: #ff5a1f;
  color: #fff;
  padding: 10px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  flex-wrap: nowrap;
  gap: 20px;
}

.logo,
.cta-button {
  white-space: nowrap;
}

.nav-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

/* ====== Responsive ====== */
@media (max-width: 1024px) {
  .header-top .container {
    flex-direction: column;
    text-align: center;
    padding: 12px 10px;
  }

  .phone {
    margin-top: 6px;
    justify-content: center;
  }

  .logo img {
    height: auto;
    width: 80px;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 100%;
    padding: 15px 0;
    flex-direction: column;
    display: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li a {
    padding: 5px 20px;
    font-size: 16px;
    display: block;
    text-align: center;
  }

  .nav-menu .sub-menu {
    position: static;
    box-shadow: none;
    padding-left: 15px;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
    margin-left: auto;
  }

  .hamburger span {
    height: 3px;
    background: #000;
    border-radius: 2px;
  }

  .header-main .container {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .cta-button {
    margin-left: auto;
    margin-right: 10px;
    white-space: nowrap;
    font-size: 12px;

  }

  .hamburger {
    margin-left: 0;
  }

  .banner-buttons {
    align-items: center;
    justify-content: center;
  }

  .banner-content h1 {
    font-size: 44px !important;
    line-height: 1 !important;
  }


}

@media (min-width: 1025px) and (max-width: 1292px) {


  .nav-wrapper {
    justify-content: flex-end;
    overflow-x: auto;
    /* Add scroll if needed */
  }

  .nav-menu {
    flex-wrap: wrap;
    gap: 0px 15px;
    justify-content: center;
    vertical-align: middle;
  }

  .nav-menu li {
    flex-shrink: 0;
  }
}


@media (min-width: 1025px) {
  .hamburger {
    display: none;
  }
}


/* === Royal Footer Styling === */

.custom-graphickc-footer {
  background-color: #19212e;
  color: #ffffff;
  padding: 70px 20px 0;
  font-family: 'Poppins', sans-serif;
  margin-top: 4px;
}

.footer-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
}

/* Main two-column layout */
.footer-main {
  display: flex;
  gap: 60px;
  padding-bottom: 40px;
}

/* Left column: Company Info + Map */
.footer-info-column {
  flex: 0 0 450px;
  min-width: 280px;
}

.footer-company-name {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffffff;
  margin: 0 0 24px;
  font-family: 'Inter Tight', sans-serif;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #c0c8d4;
  line-height: 1.5;
}

.footer-contact-item i {
  color: #fff;
  font-size: 14px;
  width: 16px;
  text-align: center;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: #c0c8d4;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: #ffb347;
}

.footer-map {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-map iframe {
  display: block;
  height: 320px;
}

/* Right area */
.footer-right-area {
  flex: 1;
  min-width: 0;
}

/* Navigation columns row */
.footer-nav-columns {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-nav-col {
  flex: 1;
  min-width: 140px;
  padding-left: 50px;
}

.footer-nav-col h4 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  margin: 0 0 20px;
  font-family: 'Inter Tight', sans-serif;
  position: relative;
  display: inline-block;
}

.footer-nav-col h4::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #ffffff;
  margin-top: 8px;
}

.footer-nav-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-col ul li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #FFF;
  font-family: 'Inter Tight', sans-serif;
}

.footer-nav-col ul li a {
  color: #FFF;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav-col ul li a:hover {
  color: #ffb347;
}

/* Areas list with bullet dots */
.footer-nav-col .areas-list li {
  position: relative;
}


/* Stay Connected section */
.footer-stay-connected {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
  padding-left: 50px;
}

.footer-stay-connected h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  margin: 0 0 6px;
  position: relative;
  display: inline-block;
}

.footer-stay-connected h4::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #ffffff;
  margin-top: 8px;
}

.stay-connected-box {
  margin-top: 16px;
  border: 2px solid white;
  border-radius: 10px;
  padding: 20px 24px;
  max-width: 500px;
}

.stay-connected-title {
  font-size: 14px;
  color: #FFF;
  margin: 0 0 14px;
  line-height: 1.4;
}

.stay-connected-sub-title {
  font-size: 12px;
  color: #FFF;
  margin: 0 0 14px;
  line-height: 1.2;
}

.footer-signup-form {
  display: flex;
  gap: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.footer-signup-form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  border: none;
  background: #ffffff;
  color: #666666;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  outline: none;
}

.footer-signup-form input[type="email"]::placeholder {
  color: #999999;
}

.footer-signup-form button {
  padding: 12px 28px;
  background: #2563EB;
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.footer-signup-form button:hover {
  background: #1d4ed8;
}

/* Follow Us social row */
.footer-social-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.follow-label {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.footer-social-icons {
  display: flex;
  gap: 10px;
}

.footer-social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-icons a:hover {
  background: #2563EB;
  border-color: #2563EB;
  transform: translateY(-2px);
}

/* Footer Bottom Bar */
.footer-bottom {
  margin-top: 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #FFF;
}

.footer-copyright {
  margin: 0;
  color: #FFF;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: #FFF;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

/* Right group: Services + Areas + Stay Connected */
.footer-right-group {
  flex: 2;
  min-width: 0;
}

.footer-right-group-cols {
  display: flex;
  gap: 40px;
}

/* === Footer Responsive === */
@media (max-width: 1024px) {
  .footer-main {
    flex-direction: column;
    gap: 40px;
  }

  .footer-info-column {
    flex: none;
    max-width: 100%;
  }

  .footer-nav-columns {
    flex-wrap: wrap;
    gap: 30px 40px;
  }

  .stay-connected-box {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .custom-graphickc-footer {
    padding: 50px 16px 0;
  }

  .footer-nav-columns {
    flex-direction: column;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .footer-social-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}


/* === Home Page Banner === */

.page-template-home-page .site-content {
  display: block;
}

.home-banner {
  background-image: none !important;
  background-color: #ffffff;
  padding: 50px 0 0 0;
  position: relative;
  color: #000;
  overflow: hidden;
  min-height: 520px;
}

/* Diagonal blue background on the right */
.home-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: #2962FF;
  clip-path: polygon(74% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
}

.home-banner .container {
  position: relative;
  z-index: 2;
}

.banner-wrapper {
  display: flex;
  flex-direction: column-reverse;
  text-align: center;
  align-items: center;
  min-height: 520px;
}

@media (min-width: 1024px) {
  .banner-wrapper {
    flex-direction: row;
    text-align: left;
    gap: 0;
    align-items: center;
    justify-content: space-between;
  }
}

.banner-content {
  max-width: 540px;
  padding: 60px 0;
  position: relative;
  z-index: 3;
}

/* Subtitle line (e.g., "KANSAS CITY") */
.banner-content h1 {
  font-size: 32px;
  font-weight: 600;
  color: #8B8B8B;
  margin-bottom: 0;
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Solid bold line (e.g., "CUSTOM") */
.banner-content h1 .title-solid {
  display: block;
  font-size: 120px;
  color: #000;
  font-weight: 600;
  line-height: 0.85;
  margin-top: 4px;
  letter-spacing: 0px;
}

/* Outlined line (e.g., "APPAREL") */
.banner-content h1 .title-outline {
  display: block;
  font-size: 82px;
  color: transparent;
  -webkit-text-stroke: 2.5px #222;
  text-stroke: 2.5px #222;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -1px;
}

.banner-content p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 18px;
  margin-top: 15px;
  font-weight: 400;
}

/* Buttons */
.banner-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.banner-buttons .btn {
  padding: 11px 28px;
  border-radius: 0;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.2s ease;
  border: none;
}

.banner-buttons .btn-outline {
  background: #F0A500;
  color: #111;
  border: 2px solid #F0A500;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 22px !important;
  height: 42px !important;
  background: #f0a500 !important;
  color: #111 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  box-shadow: 4px 4px 0 0 #111 !important;
  transition: box-shadow 0.15s, transform 0.15s !important;
  line-height: 1 !important;
}

.banner-buttons .btn-outline:hover {
  background: #d99400;
  border-color: #d99400;
  background: #f0a500 !important;
  color: #111 !important;
  box-shadow: 2px 2px 0 0 #111 !important;
  transform: translate(2px, 2px) !important;
}

.banner-buttons .btn-primary {
  background: #444;
  color: #fff;
  border: 2px solid #444;
}

.banner-buttons .btn-primary:hover {
  background: #333;
  border-color: #333;
}

/* Review badge pill */
.banner-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  padding: 12px 18px 12px 10px;
  margin-top: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  cursor: default;
}

a.banner-review-badge {
  cursor: pointer;
}

a.banner-review-badge:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.13);
  transform: translateY(-1px);
}

.review-badge-img {
  height: 22px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.review-badge-text {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  white-space: nowrap;
  line-height: 1.2;
  font-family: 'Inter Tight', 'Poppins', sans-serif;
}

/* Right-side banner image */
.banner-image {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-image img {
  max-width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25));
}

@media (min-width: 1024px) {
  .banner-image {
    width: 50%;
    flex-shrink: 0;
    margin-bottom: 0;
    padding: 40px 0;
    justify-content: flex-end;
  }

  .banner-image img {
    max-height: 600px;
  }
}

/* === Banner Responsive === */
@media (max-width: 1023px) {
  .home-banner {
    min-height: auto;
  }

  .home-banner::before {
    width: 100%;
    height: 50%;
    top: auto;
    bottom: 0;
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
  }

  .banner-wrapper {
    flex-direction: column;
    min-height: auto;
    text-align: center;
  }

  .banner-content {
    padding: 50px 20px 30px;
    max-width: 100%;
  }

  .banner-content h1 {
    font-size: 48px;
  }

  .banner-buttons {
    justify-content: center;
  }

  .banner-image {
    padding: 20px;
  }

  .banner-image img {
    max-height: 320px;
  }
}

@media (max-width: 600px) {
  .banner-content h1 {
    font-size: 36px;
  }

  .banner-content h1 span {
    -webkit-text-stroke: 2px #222;
    text-stroke: 2px #222;
  }

  .banner-buttons .btn {
    padding: 11px 20px;
    font-size: 12px;
  }
}


/* === Quote Form Section === */

.quote-form-section {
  background-color: #054FCC;
  /* Bright blue background */
  padding: 20px 20px;
  padding-bottom: 20px;
  padding-top: 10px;
  color: #fff;
}

.quote-container {
  max-width: 1340px;
  margin: 0 auto;
  width: 100%;
}

.form-placeholder {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 10px;
  color: #333;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}


/* === Why Choose Section === */

.why-choose-section {
  padding: 80px 20px;
  background-color: #f5f5f7;
}

.why-choose-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
}

.why-choose-image {
  position: relative;
  flex: 1 1 45%;
  min-width: 300px;
}

.why-choose-image img {
  width: 100%;
  max-height: 500px;
  border-radius: 15px;
  object-fit: cover;
  background-color: #ddd;
}

.trust-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
}

.trust-badge img {
  max-width: 300px;
  height: auto;
  border-radius: 8px;
}

.why-choose-content {
  flex: 1 1 45%;
}

.why-choose-content h2 {
  font-weight: 600;
  margin-bottom: 20px;
  line-height: .9;
  letter-spacing: -0.5px;

  font-size: 60px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111;
}

.why-choose-content h2 .cgblue {
  text-decoration: underline;
  text-decoration-thickness: 5px;
  display: block;
}

.why-choose-content p {
  color: #000;
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 10px;
}

.why-choose-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
  margin-top: 20px;
  margin-left: 0px;
}

.why-choose-content ul li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
  color: #333;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
}

.why-choose-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background: #2E5BFF;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

/* --- Video Mode --- */
.why-choose-wrapper--video {
  flex-direction: row;
}

.why-choose-video {
  position: relative;
  flex: 1 1 45%;
  min-width: 300px;
  background: #2962FF;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 10;
  cursor: pointer;
}

.why-choose-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 15px;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.video-play-btn svg {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.12);
}

/* Responsive */
@media (max-width: 1024px) {
  .why-choose-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .why-choose-content h2 {
    font-size: 48px;
  }

  .why-choose-content ul li {
    text-align: left;
    display: inline-block;
    width: 100%;
    max-width: 350px;
  }

  .trust-badge {
    position: static;
    margin-top: 10px;
  }

  .why-choose-content {
    padding-top: 20px;
  }

  .why-choose-wrapper--video {
    flex-direction: column;
  }

  .why-choose-video {
    min-width: 100%;
  }
}


/* === Garage Services Section === */
.garage-services {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.garage-services .section-heading h2,
.testimonial-header h2,
.blog-section-header h2,
.section-header h2 {
  font-size: 39px;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 50px;
}

.garage-services .section-heading h2 .cgblue {
  text-decoration: underline;
  text-decoration-thickness: 5px;
}

.area-serve-section .section-header h2 {
  text-align: center;
  margin-bottom: 50px;
}

.area-serve-section .section-header p {
  text-align: center;
  margin-bottom: 40px;
}

.garage-services .section-heading p,
.testimonial-header p,
.blog-section-header p,
.section-header p {
  color: #7D7D7D;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 17px;

}

.page-id-2962 .why-choose-wrapper {
  flex-direction: row-reverse !important;

}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.service-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #00000036;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
  text-align: left;
  flex: 1 1 220px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-item:hover {
  background: #2962FF;
  border-color: #2962FF;
}

.service-item:hover h3,
.service-item:hover p,
.service-item:hover .service-details-link {
  color: #fff;
}

.service-item:hover .service-number {
  color: rgba(255, 255, 255, 0.15);
}

/* Large background number (01, 02, etc.) */
.service-number {
  position: absolute;
  bottom: -20px;
  right: -5px;
  font-size: 140px;
  font-weight: 900;
  line-height: 1;
  color: rgba(0, 0, 0, 0.06);
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.service-item .service-icon,
.service-item h3,
.service-item p,
.service-item .service-details-link {
  position: relative;
  z-index: 1;
}

.page-id-2962 .service-item {
  flex: 1 1 23%;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.service-item h3 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.service-item p {
  font-size: 14px;
  color: #454545;
  margin-bottom: 20px;
  line-height: 20px;
}

/* "MORE DETAILS →" link */
.service-details-link {
  display: inline-block;
  color: #000;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.25s ease;
  position: relative;
  z-index: 1;
}

.service-details-link:hover {
  color: #054FCC;
}

.learn-more {
  display: inline-block;
  background: #ff5a1f;
  color: #fff;
  padding: 10px 16px;
  font-weight: 600;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  font-style: italic;
}

.other-services {
  font-size: 16px;
  color: #000;
  font-weight: 500;
}

.other-services a {
  color: #555;
  text-decoration: none;
  margin: 0 5px;
  font-style: italic;
}

.other-services a:hover {
  color: #000;
}

.service_bottom_link {
  display: flex;
  justify-content: center;
  align-items: center;
}

.service_bottom_link span {
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .service-grid {
    flex-direction: column;
    align-items: center;
  }

  .service_bottom_link {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .service-item {
    width: 100%;
    max-width: 100%;
    flex: 1 1 100%;

  }
}


/* CTA SECTION BASE */
.cta-section {
  background-color: transparent;
  color: #fff;
  padding: 0;
  text-align: center;
}

.cta-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* CTA HEADING */
.cta-heading {
  font-size: 59px;
  font-weight: 600;
  line-height: 64px;
  margin-bottom: 25px;
  color: #fff;
}



@media (max-width: 1024px) {
  .cta-heading {
    font-size: 48px;
    line-height: 52px;
  }
}

@media (max-width: 768px) {
  .cta-heading {
    font-size: 48px;
    line-height: 42px;
  }

  .garage-services .section-heading h2,
  .testimonial-header h2,
  .blog-section-header h2,
  .section-header h2 {
    font-size: 48px !important;
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 38px;
  }
}


@media (max-width: 480px) {
  .cta-heading {
    font-size: 26px;
    line-height: 36px;
  }
}


/* BUTTONS */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.btn {
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid #FFFFFF;
}

.btn-secondary:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-primary {
  background: #f15b2a;
  color: #fff;
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: transparent;
  color: #f15b2a;
  border-color: #f15b2a;
}



/* ========================================
   TESTIMONIALS - GOOGLE REVIEW STYLE
   ======================================== */
.testimonial-section {
  padding: 80px 20px;
  background-color: #fff;
}

.testimonial-section .testimonial-header {
  text-align: center;
  margin-bottom: 40px;
}

.testimonial-section .testimonial-header h2 {
  font-size: 60px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111;
}

.testimonial-section .testimonial-header h2 .cgblue {
  text-decoration: underline;
  text-decoration-thickness: 5px;
}

/* ---------- Google Summary Bar ---------- */
.google-summary-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 16px 24px;
  margin-bottom: 32px;
  background: #fff;
}

.google-summary-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.google-logo-text {
  font-size: 22px;
  font-weight: 600;
  font-family: 'Product Sans', Arial, sans-serif;
  letter-spacing: -0.5px;
}

.google-stars-summary .star {
  color: #FBBC05;
  font-size: 20px;
}

.google-rating-text {
  font-size: 15px;
  color: #4a4a4a;
}

.google-rating-text strong {
  color: #1a1a1a;
  font-weight: 700;
}

.btn-write-review {
  display: inline-block;
  padding: 10px 24px;
  border: 1.5px solid #bbb;
  border-radius: 8px;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: capitalize;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-write-review:hover {
  border-color: #333;
  color: #111;
  background: #f8f8f8;
}

/* ---------- Cards Grid ---------- */
.testimonial-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ---------- Single Card ---------- */
.testimonial-card {
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* -- Card Header -- */
.tc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.tc-author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tc-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.tc-avatar-placeholder {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1a73e8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.tc-name-date {
  display: flex;
  flex-direction: column;
}

.tc-name {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.tc-date {
  font-size: 11px;
  color: #999;
  margin-top: 1px;
}

.tc-google-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* -- Stars -- */
.tc-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.tc-stars .star {
  color: #FBBC05;
  font-size: 16px;
  line-height: 1;
}

.tc-verified {
  margin-left: 6px;
  display: inline-flex;
  align-items: center;
}

/* -- Card Body -- */
.tc-body {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.tc-text {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin: 0;
  flex: 1;
}

.tc-review-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .testimonial-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonial-section .testimonial-header h2 {
    font-size: 36px;
  }

  .testimonial-cards-grid {
    grid-template-columns: 1fr;
  }

  .google-summary-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .tc-review-img {
    width: 80px;
    height: 80px;
  }
}

/* ===================== */
/* OWL DOTS STYLING      */
/* ===================== */
.owl-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 10px;
}

.blog-carousel .owl-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
  gap: 10px;
}

.owl-dot span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #e4e4e4;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.owl-dot.active span {
  background-color: #f15b2a !important;
}


.testimonial-nav img {
  width: 10px;
  height: auto;
  display: block;
}




.blog-slider-section {
  padding: 80px 20px;
  background: #fff;
}

.blog-section-header {
  text-align: center;
  margin-bottom: 50px;
}


.blog-slider-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: nowrap;
}

.blog-slider-left {
  flex: 0 0 30%;
  max-width: 30%;
}

.blog-slider-left h3 {
  font-size: 37px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 40px;
}

.blog-slider-left p {
  font-size: 15px;
  color: #868686;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 20px;
}

.explore-btn {
  display: inline-block;
  background-color: #f15b2a;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.explore-btn:hover {
  background-color: #d94f20;
}

.blog-slider-right {
  flex: 0 0 70%;
  max-width: 70%;
  position: relative;
}

/* Blog Card Styling */
.blog-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 6px 4px #00000017;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-card img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-content {
  padding: 20px;
}

.blog-category {
  color: #f15b2a;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 8px;
  display: block;
}

.blog-content h4 a {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  text-decoration: none;
}

.blog-content h4 {
  line-height: 1;
}

.blog-content p {
  font-size: 14px;
  color: #7d7d7d;
}

/* Responsive */
@media (max-width: 1024px) {
  .blog-slider-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .blog-slider-left,
  .blog-slider-right {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }

  .blog-slider-left h3 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 40px;
  }
}

@media (min-width: 1024px) {
  .blog-carousel .owl-item.middle-item .blog-card {
    transform: scale(1.06);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    z-index: 2;
    border-radius: 12px;
  }
}




/* === Recent Work / Portfolio Section === */

.recent-work {
  padding: 80px 0;
  background-color: #f5f5f7;
}

.recent-work .section-header {
  text-align: center;
  margin-bottom: 36px;
}

.recent-work .section-header h2 {
  font-size: 60px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111;
}

.recent-work .section-header h2 .cgblue {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.recent-work .section-header p {
  font-size: 15px;
  color: #888;
  margin-top: 6px;
}

/* --- Filter Buttons --- */
.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.portfolio-filters .filter-btn {
  padding: 10px 28px;
  border-radius: 50px;
  border: 1.5px solid #ccc;
  background: #fff;
  color: #3e3e3e !important;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}

.portfolio-filters .filter-btn:hover {
  border-color: #2563EB;
  color: #2563EB;
}

.portfolio-filters .filter-btn.active {
  background: #2563EB;
  color: #fff !important;
  border-color: #2563EB;
}

/* --- Hero Block (Text + Featured Image) --- */
.portfolio-hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-bottom: 30px;
}

.portfolio-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 48px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.portfolio-hero-text h3 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 50px;
  font-weight: 500;
  color: #111;
  margin-bottom: 16px;
  line-height: 1.15;
}

.portfolio-hero-text p {


  font-family: Inter Tight;
  font-weight: 400;
  font-style: Regular;
  font-size: 21px;
  leading-trim: CAP_HEIGHT;
  line-height: 28px;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: none;



}

.portfolio-hero-image {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.portfolio-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-category-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #fff;
  color: #222;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  width: 35%;
}

/* --- Portfolio Grid --- */
.recent-work .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Portfolio Item */
.recent-work .portfolio-item {
  position: relative;
  overflow: hidden;
  height: 300px;
  border-radius: 14px;
  background-color: #e0e0e0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recent-work .portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.recent-work .portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay */
.recent-work .portfolio-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  padding: 24px;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.82) 100%);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.recent-work .portfolio-item:hover .overlay {
  opacity: 1;
}

.recent-work .overlay .location {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 4px;
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.recent-work .overlay h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

.recent-work .overlay .view-link {
  font-size: 13px;
  color: #FFC759;
  text-decoration: none;
  font-weight: 500;
}

/* --- Bottom Buttons --- */
.recent-work .portfolio-buttons {
  text-align: center;
  margin-top: 40px;
}


.recent-work .btn-gallery {
  background: #F0A500;
  color: #111;
  border: 2px solid #F0A500;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 22px !important;
  height: 42px !important;
  background: #f0a500 !important;
  color: #111 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  box-shadow: 4px 4px 0 0 #111 !important;
  transition: box-shadow 0.15s, transform 0.15s !important;
  line-height: 1 !important;
}

.recent-work .btn-gallery:hover {
  background: #d99400;
  border-color: #d99400;
  background: #f0a500 !important;
  color: #111 !important;
  box-shadow: 2px 2px 0 0 #111 !important;
  transform: translate(2px, 2px) !important;
}

.recent-work .btn-gallery:hover {
  background: #e0a800;
  transform: translateY(-2px);
}

/* Hidden Items */
.recent-work .hidden-project {
  display: none;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .portfolio-hero {
    grid-template-columns: 1fr;
  }

  .portfolio-hero-text {
    padding: 36px 28px;
  }

  .portfolio-hero-text h3 {
    font-size: 30px;
  }

  .recent-work .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .recent-work .portfolio-item {
    height: 240px;
  }
}

@media (max-width: 576px) {
  .recent-work {
    padding: 50px 0;
  }

  .portfolio-filters {
    gap: 8px;
  }

  .portfolio-filters .filter-btn {
    padding: 8px 18px;
    font-size: 11px;
  }

  .recent-work .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .recent-work .portfolio-item {
    height: 220px;
  }

  .portfolio-hero-text h3 {
    font-size: 24px;
  }
}


/* === Portfolio Yellow / Dark Theme === */

.recent-work--yellow {
  background-color: #111;
}

.recent-work--yellow .section-header h2 {
  color: #fff;
}

.recent-work--yellow .section-header h2 .cgblue {
  color: #F0A500;
  text-decoration-color: #F0A500;
}

.recent-work--yellow .section-header p {
  color: #aaa;
}

/* Filter buttons – yellow theme */
.recent-work--yellow .portfolio-filters .filter-btn {
  background: #fff;
  color: #111;
  border-color: rgba(255, 255, 255, 0.35);
}

.recent-work--yellow .portfolio-filters .filter-btn:hover {
  border-color: #F0A500;
  color: #F0A500;
}

.recent-work--yellow .portfolio-filters .filter-btn.active {
  background: #F0A500;
  color: #FFF !important;
  border-color: #F0A500;
}

/* Hero card stays white – no override needed */

/* Portfolio grid items */
.recent-work--yellow .portfolio-item {
  background-color: #222;
}

/* Bottom button – yellow theme */
.recent-work--yellow .btn-gallery {
  background: transparent;
  color: #F0A500;
  border: 2px solid #F0A500;
  padding: 12px 34px;
}

.recent-work--yellow .btn-gallery:hover {
  background: #F0A500;
  color: #111;
}


/* ========= Services Tabbed Pane ========= */

.stp-section {
  padding: 60px 0 80px;
  background: #fff;
}

/* --- Tab Navigation --- */
.stp-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #e5e5e5;
  margin-bottom: 50px;
}

.stp-tab {
  padding: 14px 28px;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter Tight', sans-serif;
  color: #888;
  cursor: pointer;
  position: relative;
  transition: color 0.25s ease;
  text-transform: capitalize;
  letter-spacing: 0.02em;
}

.stp-tab:hover {
  color: #ffffff !important;
  background-color: #2e5bff;
}

.stp-tab.active {
  color: #111;
  background: none;
  outline: none;
  box-shadow: none;
}

.stp-tab.active:hover {
  color: #111 !important;
}

.stp-tab.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #2563EB;
  border-radius: 2px 2px 0 0;
}

/* --- Tab Content --- */
.stp-tab-content {
  display: none;
}

.stp-tab-content.active {
  display: block;
}

/* --- Overview Layout --- */
.stp-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.stp-heading {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.stp-heading span {
  color: #2563EB;
  display: block;
}

.stp-desc {
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 32px;
  max-width: 500px;
}

/* --- Stats Row --- */
.stp-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 36px;
}

.stp-stat {
  display: flex;
  flex-direction: column;
}

.stp-stat-number {
  font-size: 42px;
  font-weight: 800;
  font-style: italic;
  color: #2563EB;
  line-height: 1.1;
}

.stp-stat-label {
  font-size: 12px;
  font-weight: 700;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* --- CTA Button --- */
.stp-cta {
  display: inline-block;
  background: #2563EB;
  color: #fff;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Inter Tight', sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  border-radius: 6px;
  transition: background 0.25s ease, transform 0.2s ease;
}

.stp-cta:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

/* --- Image with Offset Border --- */
.stp-overview-right {
  display: flex;
  justify-content: center;
}

.stp-image-wrapper {
  position: relative;
  display: inline-block;
  max-width: 520px;
  width: 100%;
}

.stp-image-wrapper::after {
  content: "";
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 70%;
  height: 60%;
  border: 3px solid #F0A500;
  border-radius: 10px;
  z-index: 0;
  pointer-events: none;
}

.stp-image-wrapper img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  z-index: 1;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* --- Placeholder Tab Content --- */
.stp-placeholder {
  text-align: center;
  padding: 80px 20px;
  color: #999;
}

.stp-placeholder h3 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}

.stp-placeholder p {
  font-size: 15px;
  color: #888;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .stp-overview {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stp-heading {
    font-size: 38px;
  }

  .stp-stats {
    gap: 32px;
  }

  .stp-stat-number {
    font-size: 32px;
  }

  .stp-overview-right {
    order: -1;
  }
}

@media (max-width: 576px) {
  .stp-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0;
  }

  .stp-tab {
    padding: 12px 16px;
    font-size: 13px;
    white-space: nowrap;
  }

  .stp-heading {
    font-size: 30px;
  }

  .stp-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .stp-stat-number {
    font-size: 28px;
  }

  .stp-image-wrapper::after {
    bottom: -12px;
    right: -12px;
  }
}


/* ========= Project Spotlight ========= */

.ps-section {
  padding: 80px 0;
  background: #fff;
}

.ps-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ps-label {
  font-size: 12px;
  font-weight: 700;
  color: #F0A500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.ps-heading {
  margin-bottom: 20px;
  line-height: 1.05;
}

.ps-heading-top {
  display: block;
  font-size: 52px;
  font-weight: 900;
  text-transform: uppercase;
  color: #111;
  letter-spacing: 0.5px;
}

.ps-heading-blue {
  display: block;
  font-size: 52px;
  font-weight: 900;
  text-transform: uppercase;
  color: #2563EB;
  letter-spacing: 0.5px;
}

.ps-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 28px;
  max-width: 480px;
}

.ps-divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 0 0 28px;
}

.ps-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 36px;
}

.ps-stat {
  display: flex;
  flex-direction: column;
}

.ps-stat-number {
  font-size: 44px;
  font-weight: 900;
  font-style: italic;
  color: #2563EB;
  line-height: 1.1;
}

.ps-stat-label {
  font-size: 11px;
  font-weight: 700;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 4px;
}

.ps-btn {
  display: inline-block;
  padding: 14px 28px;
  border: 2px solid #111;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Inter Tight', sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1.5px;
  transition: all 0.25s ease;
}

.ps-btn:hover {
  background: #111;
  color: #fff;
}

/* --- Stacked Image (light shadow variant) --- */
.ps-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ps-stacked-images {
  position: relative;
  width: 400px;
  height: 420px;
}

.ps-img-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.08);
}

.ps-shadow-1 {
  transform: rotate(5deg) translate(14px, 8px);
}

.ps-shadow-2 {
  transform: rotate(2.5deg) translate(7px, 4px);
}

.ps-main-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  z-index: 2;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .ps-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ps-heading-top,
  .ps-heading-blue {
    font-size: 38px;
  }

  .ps-stacked-images {
    width: 300px;
    height: 320px;
  }

  .ps-stats {
    gap: 32px;
  }

  .ps-stat-number {
    font-size: 34px;
  }

  .ps-image-col {
    order: -1;
  }
}

@media (max-width: 576px) {

  .ps-heading-top,
  .ps-heading-blue {
    font-size: 30px;
  }

  .ps-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .ps-stat-number {
    font-size: 28px;
  }

  .ps-stacked-images {
    width: 260px;
    height: 280px;
  }
}


/* ========= Meet the Owner ========= */

.mto-section {
  padding: 80px 0;
  background: #111;
}

.mto-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* --- Stacked Image Effect --- */
.mto-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mto-stacked-images {
  position: relative;
  width: 380px;
  height: 420px;
}

.mto-img-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mto-shadow-1 {
  transform: rotate(-6deg) translate(-12px, 8px);
}

.mto-shadow-2 {
  transform: rotate(-3deg) translate(-6px, 4px);
}

.mto-main-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  z-index: 2;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* --- Content --- */
.mto-heading {
  font-size: 48px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.mto-subtitle {
  font-size: 14px;
  font-weight: 700;
  color: #F0A500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.mto-desc {
  color: #bbb;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.mto-desc p {
  margin-bottom: 16px;
  color: #bbb;
}

.mto-signature {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
  font-style: italic;
}

.mto-btn {
  display: inline-block;
  padding: 14px 32px;
  border: 2px solid #fff;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Inter Tight', sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1.5px;
  transition: all 0.25s ease;
}

.mto-btn:hover {
  background: #fff;
  color: #111;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .mto-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .mto-stacked-images {
    width: 300px;
    height: 340px;
  }

  .mto-heading {
    font-size: 36px;
  }

  .mto-signature {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .mto-stacked-images {
    width: 260px;
    height: 300px;
  }

  .mto-heading {
    font-size: 28px;
  }
}


/* ========= Mini Gallery ========= */

.mg-section {
  padding: 60px 0 70px;
  background: #111;
}

.mg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.mg-item {
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4 / 3;
}

.mg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.mg-item:hover img {
  transform: scale(1.05);
}

.mg-button-wrap {
  text-align: center;
}

.mg-btn {
  display: inline-block;
  background: #F0A500;
  color: #111;
  padding: 14px 36px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Inter Tight', sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1.5px;
  border: none;
  transition: background 0.25s ease, transform 0.2s ease;
}

.mg-btn:hover {
  background: #d99400;
  transform: translateY(-2px);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .mg-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}


/* ========= Section Process STYLES ========= */

.process-section {
  padding: 80px 20px 40px;
  background-color: #fff;
  text-align: center;
}

.process-section .section-heading h3 {
  text-transform: uppercase;
  font-size: 60px;

}

.process-section .section-heading .cgblue {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.section-title p {
  color: #777;
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.steps-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  position: relative;
}

/* Gray connector line through the step circles */
.steps-wrapper::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 15%;
  right: 15%;
  height: 2px;
  background-color: #d1d5db;
  z-index: 0;
}

.process-step {
  flex: 1 1 220px;
  position: relative;
  z-index: 1;
}

.step-image {
  position: relative;
  z-index: 1;
}

.process-step h4 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: #2E5BFF;
}

.step-image img {
  max-width: 220px;
  margin: 0 auto 20px;
  display: block;
}

.process-step h4 {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 21px;
}

.process-step p {
  font-size: 12px;
  color: #868686;
  line-height: 16px;
}

@media (max-width: 768px) {
  .steps-wrapper {
    gap: 40px;
  }

  .steps-wrapper::before {
    display: none;
  }

  .process-step {
    max-width: 100%;
  }

  .step-image img {
    max-width: 100px;
  }
}




.area-serve-section {
  padding: 80px 20px;
  background: #fff;
}

.area-serve-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.contact-card {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #C9DAE1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.map-placeholder img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.contact-details h4 {
  margin-top: 15px;
  margin-bottom: 10px;
  font-weight: 700;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}

.info-list li {
  font-size: 14px;
  margin: 15px 0;
  color: #333;
}

.info-list i {
  color: #F95D2A;
  margin-right: 8px;
}

.connect i {
  color: #F95D2A;

}

.connect {
  margin-bottom: 20px;
}

.connect a {
  display: inline-block;
  margin-right: 10px;
  font-size: 14px;
  color: #000;
  text-decoration: none;
}

.btn-orange {
  display: inline-block;
  background: #f15b2a;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.area-text {
  flex: 1 1 500px;
}

.area-text h5 {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.area-text h2 {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 15px;
}

.area-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.area-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 150px;
}

.area-list h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.area-list ul {
  padding: 0;
  list-style: disc;
  padding-left: 0px;
  font-size: 18px;
  color: #333;
}


.area-list ul li a {
  text-decoration: none;
  padding: 0;
  list-style: disc;
  padding-left: 0px;
  font-size: 18px;

}

@media (max-width: 992px) {
  .area-serve-wrapper {
    flex-direction: column;
  }

  .area-serve-section {
    padding: 80px 0px;
    background: #fff;
  }

  .area-list ul {

    font-size: 14px;

  }

  .area-text h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
  }

}

@media (max-width: 1227px) {
  .area-columns {
    gap: 40px;
  }
}


/* ========= Banner STYLES ========= */

.global_banner {
  background-color: #3b6ef6;
  color: #fff;
  padding: 80px 0 35px;
  padding-top: 130px;
  position: relative;
  overflow: hidden;

  .global_banner-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    position: relative;
    z-index: 2;
  }

  .global_banner-content {
    max-width: 800px;
    z-index: 2;

    h1 {
      font-size: 80px;
      font-weight: 500;
      line-height: 1;
      margin-bottom: 10px;
      color: #fff;
      text-transform: uppercase;
      font-family: 'Barlow Condensed', sans-serif
    }

    p.global_banner-desc {
      font-size: 20px;
      font-weight: 400;
      line-height: 1.4;
      margin-bottom: 30px;
      color: #f0f4ff;
      font-family: 'Inter Tight', sans-serif;
      text-transform: capitalize;
    }

    .global_banner-cta-p {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 30px;
      font-family: 'Inter Tight', sans-serif;
    }

    .cta-prefix-text {
      font-size: 20px;
      font-weight: 700;
      color: white;
      /* Dimmed light blue/gray */
      font-family: 'Inter Tight', sans-serif;
      letter-spacing: 0.5px;
    }

    .global_banner-cta {
      display: inline-block;
      font-size: 20px;
      font-weight: 700;
      color: #FFB400;

      /* Yellow */
      text-decoration: underline;
      transition: all 0.3s ease;
      letter-spacing: 0.5px;

      &:hover {
        opacity: 0.8;
      }
    }
  }

  .global_banner-logo {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    mix-blend-mode: overlay;
    z-index: 1;
    pointer-events: none;

    img {
      max-width: 550px;
      height: auto;
    }
  }

  @media (max-width: 991px) {
    .global_banner-logo {
      opacity: 0.1;

      img {
        max-width: 400px;
      }
    }

    .global_banner-content h1 {
      font-size: 60px;
    }
  }

  @media (max-width: 768px) {
    .container {
      flex-direction: column;
      text-align: left;
    }

    .global_banner-content,
    .global_banner-logo {
      width: 100%;
    }

    .global_banner-content h1 {
      font-size: 42px;
    }

    .global_banner-content p.global_banner-desc {
      font-size: 18px;
    }

    .global_banner-logo {
      position: absolute;
      right: -20px;
      top: 50%;
      opacity: 0.1;

      img {
        max-width: 300px;
      }
    }
  }
}


/* ========= About Us STYLES ========= */

.quote-section {
  background-color: #f05523;
  /* Brand orange */
  padding: 60px 20px;
  color: #fff;
  text-align: center;
}

.quote-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.quote-icon-custom img {
  width: auto;
  margin-bottom: 10px;
}

.quote-text p {
  font-size: 24px;
  line-height: 31px;
  font-weight: 400;
  color: #fff;
}

.quote-text strong {
  font-weight: 700;
}

.quote-author {
  font-family: Roboto;
  margin-top: 24px;
  font-style: italic;
  font-weight: 600;
  line-height: 31px;
  font-size: 16px;
  color: #fff;
}






.mission-section {
  padding: 80px 20px;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 40px;
}

.mission-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.mission-left,
.mission-right {
  flex: 1 1 100%;
}

@media (min-width: 768px) {
  .mission-left {
    flex: 0 0 45%;
  }

  .mission-right {
    flex: 0 0 50%;
  }
}

.mission-left img {
  width: 100%;
  border-radius: 16px;
}

.mission-statement-box {
  background: #FEFBF8;
  border: 1px solid #ddd;
  padding: 20px 30px;
  border-radius: 16px;
  margin-top: 20px;
}

.statement-top-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.statement-top-row img {
  width: 80px;
}

.icon-house {
  width: 40px;
  height: auto;
}

.statement-text h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  font-weight: 500;
  color: #F95D2A;
  text-align: center;
  line-height: 40px;
  margin: 0;
}

.statement-text h4 span {
  font-family: 'Petit Formal Script', cursive;
  font-size: 54px;
  color: #000;
  line-height: 50px;
  font-weight: 600;
}

.statement-description {
  font-size: 14px;
  color: #333;
  text-align: center;
  margin-top: 12px;
  padding: 0px 40px;
}


.statement-text p {
  font-size: 14px;
  margin-top: 8px;
}

.mission-right h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.mission-right p {
  font-size: 16px;
  color: #555;
}

.mission-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .mission-values {
    grid-template-columns: 1fr 1fr;
  }
}

.value-item {
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.value-item img {
  width: 70px;
  height: auto;
  margin-bottom: 15px;
}

.value-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.value-item p {
  font-size: 14px;
  color: #666;
}




.faq-section {
  padding: 80px 20px;
  background: #fff;
}

.faq-title {
  font-size: 28px;
  font-weight: 400;
  /* text-align: center; */
  margin-bottom: 40px;
}

.faq-items {
  /* max-width: 1000px; */
  /* margin: 0 auto 60px; */
  border-radius: 14px;
  /* padding: 20px 50px; */
  border: 1px solid #eaeaea;
  background: #fff;
  margin-top: 20px;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {

  width: 100%;
  padding: 16px;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #101828;
}

.faq-question:hover {
  background-color: #0057d9;
}

.faq-toggle {
  font-size: 24px;
  transition: transform 0.3s ease;
  color: #f15b2a;
}

.faq-answer {
  display: none;
  padding: 16px;
  padding-bottom: 0px;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.faq-contact-box {
  max-width: 1000px;
  margin: 0 auto;
  background: #f9f9f9;
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
}

.faq-contact-box img {
  max-height: 60px;
  margin-bottom: 20px;
}

.faq-contact-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.faq-contact-box p {
  color: #888;
  font-size: 15px;
  margin-bottom: 20px;
}

.faq-call-btn {
  display: inline-block;
  background: #fdd835;
  color: #000;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
}

.faq-question:hover {
  background-color: #054FCC;
  color: #fff;
}

.faq-item.active .faq-question {
  background-color: #054FCC;
  color: #fff;
}

.faq-question .faq-toggle {
  width: 20px;
  height: 20px;
  margin-left: 12px;
  transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-section {
    padding: 80px 0px;

  }

  .faq-items {
    padding: 20px 10px;
  }

  .faq-title {
    font-size: 24px;
  }

  .faq-contact-box h3 {
    font-size: 16px;
  }

  .faq-call-btn {
    font-size: 14px;
  }
}


/* Blog Grid Section */
.blog-grid-section {
  padding: 40px 20px 80px;
  background: #fff;
}

.blog-grid-section .blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.blog-grid-section .blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  width: calc(33.333% - 20px);
}

.blog-grid-section .blog-thumb {
  position: relative;
}

.blog-grid-section .blog-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-grid-section .blog-fav {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #054FCC;
  padding: 8px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-grid-section .blog-fav img {
  width: 20px;
  height: 20px;
}

.blog-grid-section .blog-content {
  background: #054FCC;
  color: #fff;
  padding: 20px 16px;
  padding-top: 30px;
}

.blog-grid-section .blog-content h3 a {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
  text-decoration: none;

}

.blog-grid-section .blog-content h3 {
  line-height: 1;

}

.blog-grid-section .blog-content h3 a:hover {

  color: #C2C2C2;


}

.blog-grid-section .blog-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  align-items: center;
}

.blog-grid-section .blog-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-grid-section .blog-meta img {
  width: 14px;
  height: 14px;
}

/* Buttons */
.blog-grid-section .blog-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.blog-grid-section .load-more {
  background: #f2f2f2;
  color: #000;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.blog-grid-section .estimate-btn {
  background: #f15b2a;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
  .blog-grid-section .blog-card {
    width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .blog-grid-section .blog-card {
    width: 100%;
  }

  .blog-grid-section .blog-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-grid-section .blog-buttons {
    flex-direction: column;
    gap: 10px;
  }
}



.testimonial-page-wrapper .testimonial-section {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.testimonial-page-wrapper .testimonial-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.testimonial-page-wrapper .testimonial-header p {
  font-size: 1rem;
  color: #777;
  max-width: 600px;
  margin: 0 auto 40px;
}

.testimonial-page-wrapper .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-page-wrapper .testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px 40px;
  box-shadow: 15px 10.5px 30px 0px #00000014;
  width: calc(25% - 30px);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.testimonial-page-wrapper .author-wrap {
  position: relative;
  margin-bottom: 20px;
}

.testimonial-page-wrapper .author-img {
  width: 110px;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}

.testimonial-page-wrapper .quote-icon {
  position: absolute;
  bottom: -10px;
  left: 84%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
}

.testimonial-page-wrapper .testimonial-text {
  font-size: 12px;
  font-weight: 400;
  color: #868686;
  line-height: 16px;
  margin-bottom: 20px;
  padding: 0 10px;
}

.testimonial-page-wrapper .testimonial-dot {
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 50%;
  margin: 10px auto 16px;
}

.testimonial-page-wrapper .author-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  margin: 0;
}

.testimonial-page-wrapper .author-title {
  font-size: 0.9rem;
  color: #888;
}

.testimonial-page-wrapper .testimonial-buttons {
  margin-top: 40px;
  text-align: center;
}

.testimonial-page-wrapper .btn.load-more {
  background-color: #f5f5f5;
  color: #000;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  border: 1px solid #ccc;
  cursor: pointer;
  margin-right: 10px;
}

.testimonial-page-wrapper .btn.btn-primary {
  background-color: #f15b2a;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.testimonial-page-wrapper .btn.btn-primary:hover {
  background-color: #d94f20;
}

.testimonial-page-wrapper .testimonial-card.hidden {
  display: none;
}

/* Responsive Layouts */
@media (max-width: 1024px) {
  .testimonial-page-wrapper .testimonial-card {
    width: calc(50% - 30px);
  }
}

@media (max-width: 600px) {
  .testimonial-page-wrapper .testimonial-card {
    width: 100%;
  }

  .testimonial-page-wrapper .testimonial-text {
    font-size: 13px;
  }

  .testimonial-page-wrapper .testimonial-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .testimonial-page-wrapper .btn.load-more,
  .testimonial-page-wrapper .btn.btn-primary {
    width: 100%;
    margin: 5px 0;
  }
}












.free-estimate-section {
  padding: 60px 20px;
  background-color: #fff;
}

.free-estimate-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background-color: #054FCC;
  border-radius: 12px;
  overflow: hidden;
  padding: 30px;
  justify-content: space-between;
  align-items: center;
}

.free-estimate-form {
  flex: 1 1 50%;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
}

.free-estimate-form h2 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 500;
  color: #000;
  line-height: 50px;
}

.form-placeholder {
  border: 2px dashed #ccc;
  padding: 40px;
  text-align: center;
  font-style: italic;
  color: #777;
}

.free-estimate-info {
  flex: 1 1 35%;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.urgent-label,
.phone-box,
.trusted-label {
  color: #fff;
  font-size: 30px;
  line-height: 39px;
}

.phone-box {
  background-color: #FFB703;
  color: #000;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  margin-bottom: 20px;
  font-size: 18px;
}

.trusted-label {
  font-size: 26px;
  margin: 20px 0 12px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 2px solid #FFFFFF85;
}

.trust-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  justify-items: center;
  margin-bottom: 20px;
  width: 100%;
}

.trust-logo {
  background: #fff;
  padding: 30px 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
}




.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons img {
  width: 22px;
  height: 22px;
}

.free-estimate-section .free-estimate-section-connect a {
  display: inline-flex;
  align-items: center;
  /* Align icon and text vertically */
  justify-content: flex-start;
  gap: 10px 5px;
  margin: 6px 5px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s ease;
  vertical-align: middle;
}

.free-estimate-section .free-estimate-section-connect a img {


  width: 100%;
  height: auto;
  padding: 5px;
  object-fit: contain;
  display: inline-block;
}

@media (min-width: 769px) and (max-width: 1220px) {
  .free-estimate-section .trust-logo img {
    width: 80%;
  }

  .free-estimate-wrapper {
    flex-direction: column;
    padding: 20px;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .free-estimate-wrapper {
    flex-direction: column;
    padding: 20px;
  }

  .free-estimate-form,
  .free-estimate-info {
    flex: 1 1 100%;
  }

  .trust-logos {
    grid-template-columns: repeat(1, 1fr);
  }
}



.contact-form-section {
  padding: 60px 20px;
  background-color: #fff;
}

.contact-form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background: #054FCC;
  border-radius: 12px;
  overflow: hidden;
  padding: 30px;
  justify-content: space-between;
}

.referral-contact-form-wrapper {

  background: #054FCC;
  border-radius: 12px;
  overflow: hidden;
  padding: 30px 20px;
  padding-bottom: 20px;

}

.contact-form-left {
  flex: 1 1 30%;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
}

.map-placeholder iframe {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.contact-details h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
}

.contact-details .info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.contact-details .info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 8px;
  color: #444;
}

.contact-form-section-connect a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 6px 10px 6px 0;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  background: #fff;
  border-radius: 50px;
  padding: 6px 10px;
}

.contact-form-section-connect a img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
}

.google-rating img {
  max-width: 180px;
  margin-top: 15px;
}

.google-rating .ti-widget-container {
  text-align: left !important;
}

.contact-form-right {
  flex: 1 1 45%;
  display: flex;
  color: #fff;
  font-style: italic;
  font-size: 1rem;
  padding: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-form-wrapper {
    flex-direction: column;
    padding: 20px;
  }

  .contact-form-left,
  .contact-form-right {
    flex: 1 1 100%;
  }

  .contact-form-section-connect {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}



.signature-projects-section {
  padding: 80px 20px;
  background: #fff;
}

.signature-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;

}

.signature-text {
  flex: 1 1 45%;
}

.signature-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.signature-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.signature-icons {
  flex: 1 1 50%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.signature-item {
  flex: 1 1 calc(33.333% - 20px);
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.signature-item:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.signature-item img {
  width: 50px;
  height: auto;
  margin-bottom: 12px;
}

.signature-item h4 {
  font-size: 18px;
  font-weight: 500;
  color: #101828;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 992px) {
  .signature-content {
    flex-direction: column;
    text-align: center;
  }

  .signature-text {
    flex: 1 1 100%;
  }

  .signature-icons {
    flex: 1 1 100%;
    justify-content: center;
  }

  .signature-item {
    flex: 1 1 30%;
  }
}

@media (max-width: 576px) {
  .signature-item {
    flex: 1 1 100%;
  }
}





/* Lightbox overlay */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 6px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}



/* ========== Single Blog Section ========== */

.single-blog__section {
  padding: 60px 0;
}

.single-blog__container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.single-blog__row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

/* Content: 70% width */
.single-blog__content {
  flex: 0 0 68%;
  max-width: 68%;
}

/* Image: 30% width */
.single-blog__image {
  flex: 0 0 29%;
  max-width: 29%;
}

.single-blog__featured-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

/* Responsive: Stack layout on smaller screens */
@media (max-width: 991px) {

  .single-blog__content,
  .single-blog__image {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


.single-blog__section .wp-block-separator {
  border-top: none;
}



.portfolio-item.hidden-project {
  display: none;
}

referral-contact-form-wrapper .portfolio-item.fade-in {
  display: block;
  animation: fadeIn 0.7s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #fff;
  z-index: 9999;

  /* Initial state: always ready to transition */
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

  /* Add smooth transitions */
  transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.sticky-header.hide {
  transform: translateY(-100%);
  box-shadow: none;
}

@media (max-width: 767px) {

  .area-serve-section,
  .process-section,
  .recent-work,
  .blog-slider-section,
  .testimonial-section,
  .garage-services,
  .why-choose-section,
  .mission-section,
  .faq-section {
    padding-top: 50px;
    padding-bottom: 30px;
  }

  .testimonial-section {
    padding-top: 50px;
    padding-bottom: 0px
  }

  .form-custom-6 {
    gap: 20px !important;
  }
}


/* Added after deploying */

.page-template-refer-page .gf_progressbar_title {
  color: white !important;

}

.page-template-refer-page .gform-theme--framework .gf_progressbar .percentbar_blue {
  background-color: lightgray;
}

.page-template-refer-page .gform-theme--framework .gform_validation_errors {
  border: lightgray;
}

.page-template-refer-page .gform_previous_button {
  color: lightgray !important;
}


/* Card wrapper - narrow centered card like your screenshot */
.form-custom-6 {
  background: #fff;
  max-width: 420px;
  /* narrow card like screenshot */
  margin: 0 auto;
  padding: 28px 22px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  text-align: center;
  font-family: "Roboto", "Helvetica", Arial, sans-serif;
}

/* Header: icon + title + desc (stacked, centered) */
.form-header {
  margin-bottom: 0px;
}

.form-top-icon {
  background: #1e73be;
  width: 88px;
  height: 88px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.form-top-icon img {
  max-width: 48px;
  display: block;
}

/* Title and description */
.form-subtitle {
  margin: 0 auto 8px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .2px;
  color: #111;
  line-height: 1.05;
}

.form-desc {
  margin: 0 0 14px;
  margin-bottom: 0px;
  color: #666;
  font-size: 14px;
  line-height: 1.4;
  padding: 0 6px;
}

/* Gravity Form - make sure wrapper fits card */
#gform_wrapper_6 {
  width: 100% !important;
  margin: 0 auto;
}

#gform_wrapper_6 .gform_body {
  padding: 0;
}

/* Inputs full width and readable */
#gform_wrapper_6 .gfield input[type="text"],
#gform_wrapper_6 .gfield input[type="email"],
#gform_wrapper_6 .gfield input[type="tel"],
#gform_wrapper_6 .gfield textarea,
#gform_wrapper_6 .gfield select {
  width: 100% !important;
  box-sizing: border-box;
  padding: 12px 12px;
  border-radius: 8px;
  border: 1px solid #e2e2e2;
  font-size: 14px;
  background: #fff;
}

/* keep placeholders visible and left-aligned */
#gform_wrapper_6 ::placeholder {
  color: #999;
  opacity: 1;
  text-align: left;
}

/* Submit button - full width and prominent */
#gform_wrapper_6 .gform_footer input[type="submit"],
#gform_wrapper_6 .gform_button {
  width: 100% !important;
  background: #f04c23;
  color: #fff;
  padding: 14px 18px;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background .15s ease;
  margin-top: 12px;
}

#gform_wrapper_6 .gform_footer input[type="submit"]:hover,
#gform_wrapper_6 .gform_button:hover {
  background: #d93f1a;
}

/* phone block */
.form-phone-title {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  color: #777;
  text-transform: uppercase;
  letter-spacing: .6px;
}

.form-phone {
  margin-top: 6px;
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

.form-phone i {
  color: #f04c23;
  margin-right: 8px;
}

body #gform_wrapper_6 .gfield_checkbox .gchoice label,
body #gform_wrapper_6 .gfield .ginput_container_consent label {

  text-align: left !important;
}

/* Responsive: slightly smaller padding / icon on small screens */
@media (max-width: 480px) {
  .form-custom-6 {
    padding: 18px 14px;
    max-width: 92%;
  }

  .form-top-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 12px;
  }

  .form-top-icon img {
    max-width: 40px;
  }

  .form-subtitle {
    font-size: 18px;
    margin-bottom: 0px;
  }

  .form-desc {
    font-size: 13px;
    margin-bottom: 10px;
    padding: 0 4px;
  }

  #gform_wrapper_6 .gfield input[type="text"],
  #gform_wrapper_6 .gfield textarea {
    padding: 11px;
    font-size: 14px;
  }

  #gform_wrapper_6 .gform_footer input[type="submit"] {
    padding: 12px;
  }
}



/* Only for custom graphics kc after coping the garaze door */

.section-heading {
  margin-bottom: 40px;
}

.garage-services .section-heading h2 {
  text-transform: uppercase;
  font-size: 60px;
}

.cgblue {
  color: #2E5BFF;
}


/* ========= CTA Section STYLES ========= */

.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-inner {
  background-color: #1a56db;
  padding: 100px 20px 80px;
  text-align: center;
  position: relative;
  clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
}

/* Halftone dot pattern overlay */
.cta-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.10) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  pointer-events: none;
  z-index: 0;
}

.cta-inner .container {
  position: relative;
  z-index: 1;
}

.cta-heading {
  font-size: 60px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #f0a500;
  color: #111;
  padding: 0 22px;
  height: 42px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 4px 4px 0 0 #111;
  transition: box-shadow 0.15s, transform 0.15s;
}

.btn-cta-primary:hover {
  background: #f0a500;
  color: #111;
  box-shadow: 2px 2px 0 0 #111;
  transform: translate(2px, 2px);
}

.btn-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #111;
  border-radius: 50%;
  flex-shrink: 0;
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  color: #fff;
  padding: 0 22px;
  height: 42px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid #fff;
  border-radius: 0;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-cta-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

@media (max-width: 768px) {
  .cta-inner {
    padding: 70px 20px 60px;
    clip-path: polygon(0 15px, 100% 0, 100% 100%, 0 100%);
  }

  .cta-heading {
    font-size: 48px;
    margin-bottom: 20px;
  }

  .btn-cta-primary,
  .btn-cta-outline {
    padding: 0 20px;
    height: 40px;
    font-size: 12px;
  }
}


/* ========= Brand Logos Section STYLES ========= */

.brand-logos {
  background-color: #2962ff;
  padding: 0;
  border-top: 4px solid #fff;
  border-bottom: 4px solid #fff;
  box-shadow: 0 0px 14px rgba(0, 0, 0, 0.4);
  margin-top: 1px;
  margin-bottom: 13px;
}

.brand-logos.white {
  background-color: white !important;
}

.brand-logos .container {
  padding: 0;
}

.brand-logos-bar {
  display: flex;
  align-items: stretch;
}

/* Left label with chevron */
.brand-logos-label {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  flex-shrink: 0;
  position: relative;
  padding-right: 45px;
}

.brand-label-img {
  height: 40px;
  width: auto;
  display: block;
}

.brand-arrow-img {
  height: 22px;
  width: auto;
  display: block;
}

/* Logos grid */
.brand-logos-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex: 1;
  padding: 15px 30px;
}

.brand-logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-item img {
  max-height: 55px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .brand-logos-bar {
    flex-direction: column;
  }

  .brand-logos-label {
    clip-path: none;
    justify-content: center;
    padding: 12px 20px;
  }

  .brand-logos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 10px;
    padding: 16px 12px;
    justify-items: center;
  }

  .brand-logo-item {
    width: 100%;
    justify-content: center;
  }

  .brand-logo-item img {
    max-height: 40px;
  }
}

/* ========================================
   ALTERNATING SERVICES SECTION
   ======================================== */
.alternating-services-section {
  padding: 80px 20px;
  background: #ffffff;
}

.as-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.as-heading {
  font-size: 50px;
  font-weight: 500;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.1;
}

.as-heading .cgblue {
  color: #2E5BFF;
  position: relative;
  display: inline-block;
}

.as-heading .cgblue::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 4px;
  background-color: #2E5BFF;
}

.as-subheading {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

.as-block {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
}

.as-block.as-right {
  flex-direction: row-reverse;
}

.as-image-wrap {
  flex: 1.1;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.as-image {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.as-image-placeholder {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.as-image-placeholder.blue {
  background-color: #2E5BFF;
}

.as-image-placeholder.black {
  background-color: #000000;
}

.as-image-placeholder h3 {
  color: #fff;
  font-size: 42px;
  margin: 0;
  text-transform: none;
  font-weight: 500;
}

.as-badge {
  position: absolute;
  top: -20px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  z-index: 2;
  letter-spacing: 1px;
}

.as-badge.yellow {
  background: #FFD700;
  color: #1a1a1a;
  left: -20px;
  box-shadow: 4px 4px 0px #1a1a1a;
  border: 1px solid #1a1a1a;
}

.as-badge.white-outline {
  background: #ffffff;
  color: #1a1a1a;
  right: -20px;
  border: 2px solid #1a1a1a;
  box-shadow: 4px 4px 0px #1a1a1a;
}

.as-content {
  flex: 0.9;
}

.as-subtitle {
  color: #2E5BFF;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 1px;
  font-family: 'Barlow Condensed', sans-serif
}

.as-title {
  font-size: 34px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.1;
  text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif
}

.as-desc {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.as-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.as-features li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #333;
  font-weight: 500;
}

.as-features i {
  color: #2E5BFF;
  font-size: 20px;
}

.as-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.as-btn {
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.as-btn.solid-blue {
  background-color: #2E5BFF;
  color: #ffffff;
  border: 2px solid #2E5BFF;
}

.as-btn.solid-blue:hover {
  background-color: #1a45d1;
  border-color: #1a45d1;
  color: #ffffff;
}

.as-btn.outline-black {
  background-color: transparent;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
}

.as-btn.outline-black:hover {
  background-color: #1a1a1a;
  color: #ffffff;
}

@media (max-width: 991px) {

  .as-block,
  .as-block.as-right {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
  }

  .as-badge.yellow,
  .as-badge.white-outline {
    left: 20px;
    right: auto;
  }
}

/* ==========================================================================
   FAQ Section Styles
   ========================================================================== */

.faq-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.faq-title {
  font-size: 46px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 40px;
  text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.5px;
}

.faq-title .cgblue,
.faq-title span.cgblue {
  color: #2E5BFF;
  position: relative;
  display: inline-block;
}

.faq-title .cgblue::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 4px;
  background-color: #2E5BFF;
}

.faq-content-wrapper {
  max-width: 1140px;
  margin: 0 auto;
}

.faq-items {
  margin-bottom: 30px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-heading {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  padding-bottom: 10px;
  background: transparent;
  border: none;
  font-size: 18px;
  color: #1a1a1a;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  text-align: left;
}

.faq-icon-plus,
.faq-toggle {
  font-size: 24px;
  font-weight: 300;
  color: #FF5A1F;
}

.faq-answer {
  padding: 0 30px 24px 30px;
  display: block;
  /* Typically toggled via JS, defaulting to block for Figma matching if needed but typically handled by theme JS */
}

.faq-answer p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Related Searches Box */
.faq-related-searches {
  background-color: #2E5BFF;
  border-radius: 8px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.faq-related-label {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Inter Tight', sans-serif;
  position: relative;
  padding-right: 24px;
  white-space: nowrap;
}

.faq-related-label::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.4);
}

.faq-related-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex: 1;
}

.faq-related-btn {
  background-color: #ffffff;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: 'Inter Tight', sans-serif;
}

.faq-related-btn:hover {
  background-color: #f1f1f1;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .faq-related-searches {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .faq-related-label::after {
    display: none;
  }

  .faq-related-label {
    padding-right: 0;
    margin-bottom: 8px;
  }

  .faq-title {
    font-size: 36px;
  }

  /* Custom code by shahin  for mobile version */


  .banner-content h1 .title-solid {

    font-size: 85px;

  }


  .service-icon {
    margin-bottom: 7px;
  }

  .brand-logos {
    padding: 30px 0px;
  }

  .why-choose-content {
    padding-top: 0px;
  }

  .footer-nav-col,
  .footer-stay-connected {

    padding-left: 0px;
  }

  .process-section .section-heading h3 {
    font-size: 48px;
  }


}

/* Garage Services Background Logo */
.garage-services {
  position: relative;
  overflow: hidden;
}

.services-bg-logo {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  max-height: 90%;
  width: auto;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 991px) {
  .services-bg-logo {
    display: none;
  }
}


/* ================================================================
   BLOG PAGE LAYOUT
   ================================================================ */

/* --- override GP defaults on blog index --- */
.blog .site-content {
  display: block !important;
}

.blog #primary {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
}

.blog #right-sidebar,
.blog .site-main>.inside-article {
  display: none !important;
}

.blog .inside-page,
.blog .site-main {
  margin: 0 !important;
  padding: 0 !important;
}

/* --- Blog Page Section --- */
.blog-page {
  padding: 40px 0 60px;
  background: #f8f9fa;
}

/* ===== FEATURED POST ===== */
.blog-featured {
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  margin-bottom: 45px;
  border: 2px solid #2563EB;
}

.blog-featured__image {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
  min-height: 340px;
  background: #3a3a3a;
}

.blog-featured__image a {
  display: block;
  height: 100%;
}

.blog-featured__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-featured__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 340px;
  background: #4a4a4a;
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  padding: 30px;
}

.blog-featured__content {
  flex: 1;
  padding: 120px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Category badge (yellow) */
.blog-cat-badge {
  display: inline-block;
  background: #F5C518;
  color: #000;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 14px;
  width: fit-content;
  font-family: 'Poppins', sans-serif;
}

.blog-featured__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 37px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0 0 12px;
  color: #111;
}

.blog-featured__title a {
  color: inherit;
  text-decoration: none;
}

.blog-featured__title a:hover {
  color: #2563EB;
}

.blog-featured__meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #888;
  margin-bottom: 14px;
  font-family: 'Poppins', sans-serif;
}

.blog-featured__meta i {
  margin-right: 5px;
}

.blog-featured__excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.blog-read-more {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: #2563EB;
  transition: color 0.2s;
}

.blog-read-more:hover {
  color: #2563EB;
  opacity: .9;
}

.blog-read-more--featured {
  font-size: 15px;
  border-bottom: 2px solid #111;
  padding-bottom: 2px;
  width: fit-content;
}

.blog-read-more--featured:hover {
  border-color: #2563EB;
}

/* ===== BODY: GRID + SIDEBAR ===== */
.blog-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

/* ===== POST GRID ===== */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* --- Post Card --- */
.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #2563EB;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
}

.blog-card__image {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: #4a4a4a;
}

.blog-card__image a {
  display: block;
  height: 100%;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.35;
}

.blog-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(50, 50, 50, 0.65);
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  padding: 20px;
  pointer-events: none;
}

.blog-card__content {
  padding: 18px 20px 22px;
}

/* Category label (blue text) */
.blog-cat-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #2563EB;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  font-family: 'Poppins', sans-serif;
}

.blog-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 8px;
  color: #111;
}

.blog-card__title a {
  color: inherit;
  text-decoration: none;
}

.blog-card__title a:hover {
  color: #2563EB;
}

.blog-card__excerpt {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
  margin: 0 0 12px;
}

/* Hidden state for load-more */
.blog-hidden {
  display: none !important;
}

.blog-fade-in {
  animation: blogFadeIn 0.45s ease forwards;
}

@keyframes blogFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SIDEBAR ===== */
.blog-sidebar {
  position: sticky;
  top: 30px;
}

.blog-sidebar__section {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
}

.blog-sidebar__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: #111;
  letter-spacing: 0.5px;
}

.blog-sidebar__heading--underline {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.blog-sidebar__heading--underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #111;
}

/* Search */
.blog-search-form {
  display: flex;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.blog-search-form input[type="text"] {
  flex: 1;
  padding: 10px 14px;
  border: none;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  color: #333;
  background: #fff;
}

.blog-search-form input[type="text"]::placeholder {
  color: #aaa;
}

.blog-search-form button {
  padding: 10px 16px;
  background: #2563EB;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}

.blog-search-form button:hover {
  background: #1d4ed8;
}

/* Categories */
.blog-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-category-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
}

.blog-category-list li:last-child {
  border-bottom: none;
}

.blog-category-list li a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-category-list li a:hover {
  color: #2563EB;
}

.blog-cat-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f1f1f1;
  color: #555;
  font-size: 12px;
  font-weight: 600;
}

/* Trending */
.blog-trending-item {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  transition: opacity 0.2s;
}

.blog-trending-item:last-child {
  border-bottom: none;
}

.blog-trending-item:hover {
  opacity: 0.8;
}

.blog-trending-thumb {
  width: 70px;
  height: 70px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: #e8e8e8;
}

.blog-trending-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-trending-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ddd;
  font-size: 12px;
  color: #666;
  font-weight: 600;
}

.blog-trending-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.blog-trending-info strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
  line-height: 1.3;
}

.blog-trending-info span {
  font-size: 12px;
  color: #999;
}

/* Load More */
.blog-load-more-wrap {
  text-align: center;
  margin-top: 35px;
  padding-bottom: 10px;
}

.blog-load-more-btn,
.blog-load-more-link {
  background: none;
  border: none;
  color: #111;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: none;
  border-bottom: 2px solid #111;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.blog-load-more-btn:hover,
.blog-load-more-link:hover {
  color: #2563EB;
  border-color: #2563EB;
}

/* ===== BLOG RESPONSIVE ===== */
@media (max-width: 1024px) {
  .blog-body {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .blog-sidebar__section {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .blog-featured {
    flex-direction: column;
  }

  .blog-featured__image {
    min-height: 220px;
  }

  .blog-featured__content {
    padding: 24px;
  }

  .blog-featured__title {
    font-size: 22px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    grid-template-columns: 1fr;
  }
}


/* ================================================================
   SINGLE BLOG POST
   ================================================================ */

/* --- GP overrides for single posts --- */
.single-post .site-content {
  display: block !important;
}

.single-post #primary {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
}

.single-post #right-sidebar,
.single-post .site-main>.inside-article {
  display: none !important;
}

.single-post .inside-page,
.single-post .site-main {
  margin: 0 !important;
  padding: 0 !important;
}

/* ===== HERO BANNER ===== */
.single-hero {
  position: relative;
  width: 100%;
  height: 320px;
  background: #3a3a3a;
  overflow: hidden;
  margin-top: -2px;
}

.single-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.single-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(40, 40, 40, 0.6);
}

.single-hero__overlay span {
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  padding: 20px;
}

/* ===== POST SECTION ===== */
.single-post-section {
  padding: 40px 0 60px;
  background: #f8f9fa;
}

/* Grid: article + sidebar */
.single-post-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

/* ===== ARTICLE ===== */
.single-post-article {
  background: #fff;
  border-radius: 10px;
  padding: 35px 40px 40px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
}

.single-post-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0 0 12px;
  color: #111;
}

.single-post-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #888;
  margin-bottom: 24px;
  font-family: 'Poppins', sans-serif;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.single-post-meta i {
  margin-right: 5px;
}

/* Content typography */
.single-post-content {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}

.single-post-content p {
  margin-bottom: 1.2em;
  color: #444;
}

.single-post-content h2,
.single-post-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  margin: 1.6em 0 0.6em;
  color: #111;
}

.single-post-content h2 {
  font-size: 24px;
}

.single-post-content h3 {
  font-size: 20px;
}

.single-post-content ul,
.single-post-content ol {
  padding-left: 20px;
  margin-bottom: 1.2em;
}

.single-post-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.single-post-content strong {
  color: #111;
}

.single-post-content a {
  color: #2563EB;
  text-decoration: underline;
}

.single-post-content a:hover {
  color: #1d4ed8;
}

/* ===== SHARE ===== */
.single-post-share {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}

.single-post-share__label {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  font-family: 'Poppins', sans-serif;
}

.single-post-share__icons {
  display: flex;
  gap: 10px;
}

.single-post-share__icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.single-post-share__icons a:hover {
  background: #2563EB;
  color: #fff;
  border-color: #2563EB;
}

/* ===== PREV / NEXT ===== */
.single-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}

.single-post-nav__link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.single-post-nav__link:hover {
  border-color: #2563EB;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.single-post-nav__next {
  text-align: right;
}

.single-post-nav__arrow {
  font-size: 12px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.single-post-nav__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  line-height: 1.3;
}

/* ===== SIDEBAR CTA BOX ===== */
.blog-sidebar__cta {
  background: #3b6ef6 !important;
  color: #fff;
  text-align: center;
  border-radius: 14px;
  padding: 30px 24px !important;
}

.blog-sidebar__cta-icon {
  display: block;
  margin: 0 auto 14px;
  width: 64px;
  height: 64px;
}

.blog-sidebar__cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff !important;
  margin: 0 0 6px !important;
}

.blog-sidebar__cta p {
  color: #d4dfff;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.blog-sidebar__cta-btn {
  display: inline-block;
  padding: 10px 32px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid #fff;
  transition: background 0.2s, transform 0.2s;
}

.blog-sidebar__cta-btn:hover {
  background: #fff;
  color: #3b6ef6;
  transform: translateY(-2px);
}

/* ===== SINGLE POST RESPONSIVE ===== */
@media (max-width: 1024px) {
  .single-post-body {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .blog-sidebar__section {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .single-hero {
    height: 220px;
  }

  .single-hero__overlay span {
    font-size: 22px;
  }

  .single-post-article {
    padding: 24px 20px;
  }

  .single-post-title {
    font-size: 24px;
  }

  .single-post-nav {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   TESTIMONIALS PAGE - RATINGS BAR
   ========================================================================== */
.ratings-bar-section {
  padding: 50px 0;
  background: #fff;
  border-bottom: 1px solid #eaeaea;
}

.ratings-bar-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.ratings-col {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ratings-score {
  font-family: 'Inter Tight', sans-serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  color: #111;
  margin-bottom: 5px;
}

.ratings-stars {
  color: #FFB400;
  font-size: 24px;
  margin-bottom: 15px;
}

.ratings-stars i {
  margin: 0 2px;
}

.ratings-platform {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  color: #111;
  margin-bottom: 15px;
}

.platform-icon {
  width: 24px;
  height: 24px;
}

.ratings-count {
  display: inline-block;
  background: #EEF2FF;
  color: #3b6ef6;
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 20px;
}

.ratings-divider {
  width: 1px;
  height: 120px;
  background: #eaeaea;
}

.ratings-reasons {
  align-items: flex-start;
  text-align: left;
}

.reasons-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #111;
  margin: 0 0 20px;
}

.reasons-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reasons-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  color: #333;
}

.reasons-list .check-icon {
  width: 20px;
  height: 20px;
}

@media (max-width: 991px) {
  .ratings-divider {
    display: none;
  }

  .ratings-bar-wrapper {
    gap: 60px;
    flex-direction: column;
  }

  .ratings-reasons {
    align-items: center;
    text-align: center;
  }
}

/* ==========================================================================
   TESTIMONIALS PAGE - ENHANCED GRID
   ========================================================================== */
.testimonial-enhanced-section {
  padding: 80px 0;
  background: #fff;
}

.te-heading {
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 30px;
}

.te-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.te-filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 30px;
  padding: 8px 24px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
}

.te-filter-btn:hover {
  border-color: #111;
  color: #111;
}

.te-filter-btn.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.te-filter-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 12px;
  color: #fff;
}

.google-icon-sm {
  background: #4285F4;
}

.fb-icon-sm {
  background: #1877F2;
}

.te-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.te-card {
  background: #fff;
  border: 1px solid #3b6ef6;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.te-hidden-card {
  display: none !important;
}

.te-fade-in {
  animation: teFadeIn 0.5s ease forwards;
}

@keyframes teFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.te-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.te-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.te-avatar,
.te-avatar-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.te-avatar-placeholder img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.te-info {
  display: flex;
  flex-direction: column;
}

.te-name {
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #111;
}

.te-date {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  color: #888;
}

.te-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 20px;
}

.te-stars .star {
  color: #FFB400;
  font-size: 18px;
}

.te-verified {
  margin-left: 5px;
  display: inline-flex;
}

.te-body {
  flex-grow: 1;
  display: flex;
  gap: 20px;
}

.te-text {
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin: 0;
  flex: 1;
}

.te-review-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.te-load-more-wrap {
  text-align: center;
  margin-top: 50px;
}

.te-load-more-btn {
  background: #F5C518;
  color: #111;
  border: none;
  border-radius: 4px;
  padding: 14px 40px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.te-load-more-btn:hover {
  background: #e6b200;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .te-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .te-grid {
    grid-template-columns: 1fr;
  }

  .te-body {
    flex-direction: column;
  }

  .te-review-img {
    width: 100px;
    height: 100px;
  }
}

/* ========================================
   CONTACT US SECTION
   ======================================== */
.contact-us-section {
  padding: 60px 20px;
  background: #f8f9fa;
}

/* Two-column layout */
.contact-us-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  margin: 0 auto;
  align-items: start;
}

/* ---- LEFT PANEL ---- */
.contact-details-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* White info card */
.contact-detail-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 30px 28px;
}

/* Heading with yellow underline accent */
.contact-detail-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.56px;
  color: #111111;
  margin: 0 0 24px;
  padding-bottom: 10px;
  border-bottom: 3px solid #FFD700;
  display: inline-block;
}

/* Each row: icon circle + content */
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-item:last-child {
  margin-bottom: 0;
}

/* Blue circle icon */
.contact-detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: #2E5BFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.contact-detail-icon svg {
  display: block;
}

/* Text content beside icon */
.contact-detail-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-detail-content strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  color: #111111;
}

.contact-detail-content p {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #555;
  line-height: 1.5;
}

.contact-plain-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
}

.contact-plain-link:hover {
  color: #2E5BFF;
  text-decoration: underline;
}

/* Blue "Follow Us" card */
.contact-social-card {
  background: #2E5BFF;
  border-radius: 10px;
  padding: 28px;
  color: #ffffff;
}

.contact-social-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.56px;
  color: #ffffff;
  margin: 0 0 8px;
}

.contact-social-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin: 0 0 20px;
}

/* Social icon row */
.contact-social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.social-icon-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: #ffffff;
  transform: translateY(-2px);
  color: #ffffff;
}

.social-icon-btn svg {
  display: block;
}

/* ---- RIGHT PANEL: Form card ---- */
.contact-form-panel {
  display: flex;
  flex-direction: column;
}

.contact-form-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 36px 32px;
}

.contact-form-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  color: #111111;
  margin: 0 0 8px;
  letter-spacing: 0.5px;
}

.contact-form-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0 0 28px;
}

/* --- CF7 / WPForms overrides inside contact card --- */
.contact-form-wrap .wpcf7 input[type="text"],
.contact-form-wrap .wpcf7 input[type="email"],
.contact-form-wrap .wpcf7 input[type="tel"],
.contact-form-wrap .wpcf7 select,
.contact-form-wrap .wpcf7 textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  color: #1a1a1a;
  background: #f9fafb;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  margin-bottom: 4px;
}

.contact-form-wrap .wpcf7 input:focus,
.contact-form-wrap .wpcf7 select:focus,
.contact-form-wrap .wpcf7 textarea:focus {
  border-color: #2E5BFF;
  outline: none;
  box-shadow: 0 0 0 3px rgba(46, 91, 255, 0.12);
  background: #fff;
}

.contact-form-wrap .wpcf7 input[type="submit"] {
  width: 100%;
  padding: 15px;
  background: #2E5BFF;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  font-family: 'Montserrat';
}

.contact-form-wrap .wpcf7 input[type="submit"]:hover {
  background: #1a45d1;
  transform: translateY(-1px);
}

/* Fallback notice */
.no-form-notice {
  font-size: 14px;
  color: #888;
  font-style: italic;
  padding: 18px;
  background: #f3f4f6;
  border-radius: 6px;
  border: 1px dashed #d1d5db;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-us-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {

  .contact-form-card,
  .contact-detail-card {
    padding: 22px 18px;
  }

  .contact-form-heading {
    font-size: 26px;
  }
}

/* ========================================
   FREE QUOTE SECTION
   ======================================== */
.fq-main-section {
  padding: 60px 20px;
  background: #f8f9fa;
}

/* Two-column: form left, sidebar right */
.fq-layout-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 36px;
  margin: 0 auto;
  align-items: start;
}

/* ---- LEFT: Form Column ---- */
.fq-form-column {
  min-width: 0;
}

.fq-form-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 36px 32px;
}

/* CF7 / WPForms overrides inside quote form */
.fq-form-wrap .wpcf7 input[type="text"],
.fq-form-wrap .wpcf7 input[type="email"],
.fq-form-wrap .wpcf7 input[type="tel"],
.fq-form-wrap .wpcf7 input[type="number"],
.fq-form-wrap .wpcf7 input[type="date"],
.fq-form-wrap .wpcf7 input[type="file"],
.fq-form-wrap .wpcf7 select,
.fq-form-wrap .wpcf7 textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  color: #1a1a1a;
  background: #f9fafb;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.fq-form-wrap .wpcf7 input:focus,
.fq-form-wrap .wpcf7 select:focus,
.fq-form-wrap .wpcf7 textarea:focus {
  border-color: #2E5BFF;
  outline: none;
  box-shadow: 0 0 0 3px rgba(46, 91, 255, 0.12);
  background: #fff;
}

.fq-form-wrap .wpcf7 input[type="submit"] {
  width: 100%;
  padding: 16px;
  background: #2E5BFF;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  font-family: 'Barlow Condensed', sans-serif;
}

.fq-form-wrap .wpcf7 input[type="submit"]:hover {
  background: #1a45d1;
  transform: translateY(-1px);
}

/* Disclaimer */
.fq-disclaimer {
  font-size: 12px;
  color: #888;
  margin-top: 12px;
  font-style: italic;
}

/* Fallback notice */
.fq-form-wrap .no-form-notice {
  font-size: 14px;
  color: #888;
  font-style: italic;
  padding: 18px;
  background: #f3f4f6;
  border-radius: 6px;
  border: 1px dashed #d1d5db;
}

/* ---- RIGHT: Sidebar Column ---- */
.fq-sidebar-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 30px;
}

/* Generic sidebar card */
.fq-sidebar-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 28px 24px;
}

/* ---- What Happens Next ---- */
.fq-next-steps {
  padding-bottom: 20px;
}

.fq-sidebar-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.56px;
  color: #111111;
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #FFD700;
  display: inline-block;
}

.fq-steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.fq-step-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

/* Yellow dot bullet */
.fq-step-dot {
  width: 12px;
  height: 12px;
  min-width: 12px;
  background: #FFD700;
  border-radius: 50%;
  margin-top: 5px;
}

.fq-step-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fq-step-content strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  color: #111111;
}

.fq-step-content p {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #666;
  line-height: 1.5;
}

/* ---- Why Choose Us (blue box) ---- */
.fq-why-choose {
  background: #2E5BFF;
  border: none;
  border-radius: 10px;
  padding: 28px 24px;
}

.fq-why-heading {
  color: #ffffff !important;
  border-bottom-color: #FFD700 !important;
}

.fq-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fq-why-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.fq-why-item svg {
  flex-shrink: 0;
}

/* ---- Need Help (centered card) ---- */
.fq-need-help {
  text-align: center;
  padding: 32px 24px;
}

.fq-help-icon {
  margin: 0 auto 12px;
  width: 60px;
  height: 60px;
  background: #eef2ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fq-help-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  color: #111111;
  margin: 0 0 6px;
}

.fq-help-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #666;
  margin: 0 0 12px;
  line-height: 1.5;
}

.fq-help-phone {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #111111;
  text-decoration: none;
  letter-spacing: -0.3px;
  transition: color 0.2s;
}

.fq-help-phone:hover {
  color: #2E5BFF;
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .fq-layout-grid {
    grid-template-columns: 1fr;
  }

  .fq-sidebar-column {
    position: static;
  }
}

@media (max-width: 480px) {
  .fq-form-card {
    padding: 22px 16px;
  }

  .fq-sidebar-card {
    padding: 22px 18px;
  }
}

/* ========================================
   TRUST BADGES BAR
   ======================================== */
.trust-badges-bar {
  background: #f0f2f5;
  padding: 50px 20px;
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}

.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px;
}

.trust-badge-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.trust-badge-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.trust-badge-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  color: #111111;
  margin: 0;
}

.trust-badge-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #666;
  line-height: 1.5;
  margin: 0;
  max-width: 220px;
}

@media (max-width: 991px) {
  .trust-badges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .trust-badges-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}


/* Manual styles */


/* ===== Blog Pagination ===== */
.blog-pagination {
  margin: 48px 0 24px;
  display: flex;
  justify-content: center;
}

.blog-pagination ul.page-numbers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.blog-pagination ul.page-numbers li {
  margin: 0;
}

.blog-pagination ul.page-numbers a.page-numbers,
.blog-pagination ul.page-numbers span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
  background: #fff;
}

.blog-pagination ul.page-numbers a.page-numbers:hover {
  background: #f5a623;
  /* match your brand colour */
  border-color: #f5a623;
  color: #fff;
}

.blog-pagination ul.page-numbers span.page-numbers.current {
  background: #f5a623;
  border-color: #f5a623;
  color: #fff;
  cursor: default;
}

.blog-pagination ul.page-numbers .dots {
  border-color: transparent;
  background: transparent;
  cursor: default;
}

.blog-pagination ul.page-numbers a.prev.page-numbers,
.blog-pagination ul.page-numbers a.next.page-numbers {
  padding: 0 16px;
  letter-spacing: 0.5px;
}







/* ============================================================
   Contact Form 7 – Custom Styles
   Matches: Custom Graphics KC theme
   Colors: #2563EB (blue), #000 (black), #7D7D7D (grey)
   Fonts:  Barlow Condensed (headings), Poppins (body)
   ============================================================ */

/* ── Wrapper that CF7 injects ─────────────────────────────── */
.wpcf7 {
  width: 100%;
}

.wpcf7 form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Row: two columns side by side ─────────────────────────── */
.cf7-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

/* ── Field group (label + input) ────────────────────────────  */
.cf7-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.cf7-field-group.full-width {
  grid-column: 1 / -1;
}

/* ── Labels ──────────────────────────────────────────────────  */
.cf7-field-group label {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.01em;
}

/* ── Text / Email / Tel / Number inputs ─────────────────────  */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 input[type="url"] {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  background: #ffffff;
  border: 1.5px solid #d1d5db;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
}

.wpcf7 input[type="text"]::placeholder,
.wpcf7 input[type="email"]::placeholder,
.wpcf7 input[type="tel"]::placeholder,
.wpcf7 input[type="number"]::placeholder,
.wpcf7 input[type="url"]::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="number"]:focus,
.wpcf7 input[type="url"]:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

/* ── Select / Dropdown ───────────────────────────────────────  */
.wpcf7 select {
  width: 100%;
  padding: 12px 40px 12px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  background-color: #f3f4f6;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  border: 1.5px solid #d1d5db;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.wpcf7 select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
  background-color: #ffffff;
}

/* ── Textarea ────────────────────────────────────────────────  */
.wpcf7 textarea {
  width: 100%;
  min-height: 140px;
  padding: 14px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  background: #ffffff;
  border: 1.5px solid #d1d5db;
  border-radius: 6px;
  outline: none;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  line-height: 1.6;
}

.wpcf7 textarea::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.wpcf7 textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

/* ── Submit Button ───────────────────────────────────────────  */
.wpcf7 input[type="submit"],
.wpcf7 .wpcf7-submit {
  display: block;
  width: 100%;
  padding: 15px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: #2563eb;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
  margin-top: 8px;
  -webkit-appearance: none;
}

.wpcf7 input[type="submit"]:hover,
.wpcf7 .wpcf7-submit:hover {
  background: #1d4ed8;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.30);
  transform: translateY(-1px);
}

.wpcf7 input[type="submit"]:active,
.wpcf7 .wpcf7-submit:active {
  transform: translateY(0);
  box-shadow: none;
}

/* ── Validation – invalid border ─────────────────────────────  */
.wpcf7 .wpcf7-not-valid,
.wpcf7 input.wpcf7-not-valid,
.wpcf7 select.wpcf7-not-valid,
.wpcf7 textarea.wpcf7-not-valid {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12) !important;
}

/* ── Validation tip messages ─────────────────────────────────  */
.wpcf7-not-valid-tip {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #ef4444;
  margin-top: 5px;
  display: block;
}

/* ── Response / Success / Error messages ────────────────────  */
.wpcf7-response-output {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  padding: 14px 18px;
  border-radius: 6px;
  margin: 20px 0 0;
  border: 1.5px solid transparent;
  display: block;
}

/* Success */
.wpcf7 .wpcf7-mail-sent-ok,
.wpcf7-response-output.wpcf7-mail-sent-ok {
  background: #f0fdf4;
  border-color: #22c55e;
  color: #166534;
}

/* Error */
.wpcf7 .wpcf7-mail-sent-ng,
.wpcf7 .wpcf7-aborted,
.wpcf7-response-output.wpcf7-mail-sent-ng {
  background: #fef2f2;
  border-color: #ef4444;
  color: #991b1b;
}

/* Spam / validation */
.wpcf7 .wpcf7-spam-blocked,
.wpcf7 .wpcf7-validation-errors,
.wpcf7-response-output.wpcf7-validation-errors {
  background: #fffbeb;
  border-color: #f59e0b;
  color: #92400e;
}

/* ── Spinner (loading state) ─────────────────────────────────  */
.wpcf7 .wpcf7-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #e5e7eb;
  border-top-color: #2563eb;
  border-radius: 50%;
  animation: cf7-spin 0.7s linear infinite;
  margin-left: 10px;
  vertical-align: middle;
}

@keyframes cf7-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── Checkbox & Radio ────────────────────────────────────────  */
.wpcf7 .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.wpcf7 input[type="checkbox"],
.wpcf7 input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: #2563eb;
  cursor: pointer;
  flex-shrink: 0;
}

.wpcf7 .wpcf7-list-item label {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #374151;
  cursor: pointer;
  margin: 0;
  font-weight: 400;
}

/* ── Span tags CF7 wraps around inputs – remove default widths  */
.wpcf7 .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* ── Responsive ──────────────────────────────────────────────  */
@media (max-width: 640px) {
  .cf7-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}









/* Container */
.cg-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

/* ========================
   SEARCH FORM
======================== */
.cg-search-form__wrap {
  display: flex;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
}

.cg-search-form__input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
}

.cg-search-form__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 15px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.cg-search-form__btn svg {
  display: block;
  flex-shrink: 0;
}

.cg-search-form__btn:hover {
  background: #333;
}

/* ========================
   SEARCH RESULTS
======================== */
.cg-search-results-section {
  padding: 40px 0;
}

.cg-search-results-count {
  margin-bottom: 20px;
  color: #333;
}

/* Grid */
.cg-search-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

/* SEARCH RESULT CARD */
.cg-search-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cg-search-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
}

/* Image */
.cg-search-card__thumb {
  display: block;
  overflow: hidden;
  text-decoration: none;
}

.cg-search-card__thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.cg-search-card:hover .cg-search-card__thumb img {
  transform: scale(1.04);
}

.cg-search-card__thumb--placeholder {
  height: 160px;
  background: #f2f2f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
}

.cg-search-card__type {
  display: none;
}

/* Content */
.cg-search-card__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

/* Meta */
.cg-search-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cg-search-card__category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: #e8edff;
  color: #1a3fc4;
}

.cg-search-card__date {
  font-size: 11px;
  color: #999;
}

/* Title */
.cg-search-card__title {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  line-height: 1.35;
}

.cg-search-card__title a {
  color: #111;
  text-decoration: none;
}

.cg-search-card__title a:hover {
  text-decoration: underline;
}

/* Excerpt */
.cg-search-card__excerpt {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  flex: 1;
}

/* Read More */
.cg-search-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #1a3fc4;
  text-decoration: none;
}

.cg-search-card__link:hover {
  text-decoration: underline;
}

/* ========================
   PAGINATION
======================== */
.cg-pagination {
  margin-top: 30px;
  text-align: center;
}

.cg-pagination a,
.cg-pagination span {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid #ccc;
  margin: 2px;
  color: #000;
  text-decoration: none;
}

.cg-pagination .current {
  background: #000;
  color: #fff;
}

/* ========================
   NO RESULTS
======================== */
.cg-no-results {
  text-align: center;
  padding: 40px 20px;
}

.cg-no-results__title {
  font-size: 24px;
  margin-bottom: 10px;
}

.cg-no-results__text {
  color: #555;
}

/* ========================
   404 PAGE
======================== */
.cg-404-title {
  font-size: 28px;
  margin-bottom: 10px;
}

.cg-404-subtitle {
  color: #555;
  margin-bottom: 20px;
}

/* Buttons */
.cg-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

.cg-btn:hover {
  background: #333;
}

/* ========================
   404 PAGE SECTION
======================== */
.cg-404-hero__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin: 12px 0 24px;
  max-width: 520px;
  line-height: 1.6;
}

.cg-404-section {
  padding: 60px 0 80px;
}

.cg-404-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

@media (max-width: 900px) {
  .cg-404-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}

/* Block */
.cg-404-block {
  background: #fff;
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cg-404-block--cta {
  background: #0d1f6e;
  border-color: transparent;
}

.cg-404-block--cta .cg-404-block__icon {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: transparent;
}

.cg-404-block--cta .cg-404-block__title {
  color: #fff;
}

.cg-404-block--cta .cg-404-block__desc {
  color: rgba(255, 255, 255, 0.75);
}

/* Block icon */
.cg-404-block__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #f0f3ff;
  border: 0.5px solid rgba(26, 63, 196, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a3fc4;
  margin-bottom: 4px;
  flex-shrink: 0;
}

/* Block text */
.cg-404-block__title {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin: 0;
  line-height: 1.3;
}

.cg-404-block__desc {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
  margin: 0 0 6px;
}

/* Nav links list */
.cg-404-links {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cg-404-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.cg-404-link:hover {
  background: #f0f3ff;
  color: #1a3fc4;
}

.cg-404-link__icon {
  display: flex;
  align-items: center;
  color: #1a3fc4;
  flex-shrink: 0;
}

/* CTA buttons */
.cg-btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: #fff;
  color: #0d1f6e;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 8px;
  transition: opacity 0.15s ease;
  align-self: flex-start;
}

.cg-btn--primary:hover {
  opacity: 0.9;
}

.cg-btn--ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
  align-self: flex-start;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.cg-btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

/* Contact info list */
.cg-404-contact {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cg-404-contact__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cg-404-contact__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
}

.cg-404-contact__value {
  font-size: 14px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  line-height: 1.5;
}

a.cg-404-contact__value:hover {
  color: #1a3fc4;
  text-decoration: underline;
}

/*  Promo bar styling! */


.royal10-promo-bar {
  width: 100%;
  position: relative;
  border: 3px solid #1a1a1a;
  background: linear-gradient(135deg, #f0a500 0%, #f0a500 100%);
  margin-top: 80px;
  border-top: 4px solid #fff;
  border-bottom: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.royal10-promo-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: stretch;
}

/* Yellow Section */
.royal10-promo-yellow {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 16px 30px;
}

.royal10-promo-text {
  margin: 0;
  font-size: 28px;
  font-weight: 900;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.3;
  text-align: center;
}

/* Dark CTA Section with chevron shape */
.royal10-promo-cta {
  display: flex;
  align-items: center;
  padding: 0;
  position: relative;
  flex-shrink: 0;
  margin-top: -4px;

  width: 308px;
  /* Apply drop shadow on the wrapper to give the clip-pathed button a white outline */
  /*filter: drop-shadow(0px 0px 0px #fff) drop-shadow(0px 0px 0px #fff) drop-shadow(-3px 0px 0px #fff) drop-shadow(3px 0px 0px #fff) drop-shadow(0px -3px 0px #fff) drop-shadow(0px 3px 0px #fff);*/
  /*margin-right: 20px;*/
  /* Add margin so trailing drop shadow isn't cut off */
}

/* CTA Button - right-pointing arrow/chevron shape */
.royal10-promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 18px 19px 18px 69px;
  white-space: nowrap;
  position: relative;
  color: white;
  text-decoration: none;

}

.royal10-promo-btn:hover {
  color: white;
  opacity: .9;
}

.btn-custom-icon {
  width: 25px;
  height: auto;
  margin-left: 5px;
  display: inline-block;
  vertical-align: middle;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .royal10-promo-inner {
    flex-direction: column;
    padding-bottom: 10px;
  }

  .royal10-promo-yellow {
    padding: 12px 16px;
  }

  .royal10-promo-text {
    font-size: 18px;
    letter-spacing: 1.5px;
  }

  .royal10-promo-cta {
    justify-content: center;
    padding: 0;
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 auto;
  }

  .royal10-promo-btn {
    clip-path: none;
    border-radius: 0;
    padding: 25px 24px;
    width: 100%;
    justify-content: center;
  }
}


@media screen and (max-width: 920px) and (min-width: 767px) {

  .royal10-promo-yellow {
    padding: 16px 0px;
  }

  .royal10-promo-text {
    font-size: 20px;
  }

}