html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 16px;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  color: #222;
  background: #fff;
}


/* === Buttons and Interactive === */
button,
input[type="submit"],
.btn {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
}
/*
button:hover,
input[type="submit"]:hover,
.btn:hover {
  background: #eaeaea;
}
*/
/* === Paragraphs === */
p {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

/* === Images === */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* === Layout Helpers === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 20px;
}

@media (max-width: 768px) {
  .section {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 50px 15px;
  }
}

/* Global Heading Styles */
/*
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: Plus Jakarta Sans,HelveticaNeue-Light,Helvetica Neue Light,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;
  letter-spacing:-1;
  margin-bottom:30px;
}
*/
/* Responsive Headings */
h1 {
  color: #fff; /* Ensures white text for hero headings */
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.7rem);
	font-weight:700;
	color:#363535
}
/*
h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
*/
h4 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
	font-weight:700;
	color:#363535
}
/*
h5 {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
}

h6 {
  font-size: clamp(1rem, 1vw, 1.1rem);
}
*/

header {
  padding: 20px;
}

header, footer {
  background: #f7f7f7;
  text-align: center;
}

main {
  /*padding: 40px 20px;*/
}

.section-label {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2.5px;
  color: #3277bc;
  margin-bottom: 10px;
  display: inline-block;
}

body.page-template-page-product-landing-php .sales-price {
  margin-bottom: 5px;
}

/* Landing Header */ 

.landing-header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 30px;
  background: transparent;
  z-index: 5;
}

/* Inner container */
.landing-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Logo */
.landing-logo img {
  height: auto;
  width: auto;
  max-width:250px;
}

/* Call button */
.call-button {
  background-color: #3277bc;
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 24px;
  transition: background-color 0.3s ease;
}

.call-button:hover {
  background-color: #265e95;
}

.call-icon {
  margin-right: 8px;
  font-size: 24px;
  vertical-align: middle;
}

/* Mobile styles */
@media (max-width: 640px) {
  .landing-header {
      margin-top:40px
  }
  .landing-header-inner {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .call-button {
    font-size:20px;
  }
/*
  .landing-logo img {
    height: 45px;
  }

  .call-button {
    font-size: 15px;
    padding: 10px 16px;
  }
  */
}

/* Hero Section */

.hero-section {
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  color: #fff;
  position: relative;
  overflow: hidden; /* optional but helps contain positioned children */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
  position: relative;
}
.star-rating {
  margin-bottom: 5px;
  font-size: 20px;
  color: #FFD700;
  line-height:1;
}
.star-rating .rating-text {
  font-size: 14px;
  margin-left: 10px;
  color: #fff;
}
.hero-heading h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  font-family: 'AvantGarde-Demi';
}

.hero-subheading {
  font-size: 20px;
  margin: 20px 0 15px;
  line-height:1.7;
}
.hero-cta {
  background: #00a859;
  padding: 14px 30px;
  color: #fff;
  border-radius: 5px;
  font-weight: 600;
  font-size:1.5rem;
  text-decoration: none;
  display: inline-block;
  margin: 25px 0;
  transition: background 0.3s ease;
}

.hero-cta a {
  color:#fff;
  font-size:1.3rem;
}

.hero-cta a::before, .hero-cta a::after  {
  display: none;
}

.hero-cta a:hover {
  color:#f3f3f3;
}
.hero-review {
  font-style: italic;
  font-size: 16px;
  color: #e6e6e6;
  line-height:1.3;
}
.hero-review cite {
  font-weight: bold;
  margin-top: 5px;
  font-weight: 500;
}

.hero-price-highlight {
  color: #ffd700; /* matches your star colour */
  font-weight: bold;
}

.hero-benefits {
  list-style: none;
  padding-left: 0;
  margin: 25px 0 5px!important;
}

.hero-benefits li {
  display: inline-block;
  align-items: center;
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
  padding: 0 14px;
  line-height:1.1;
}

.hero-benefits .icon-tick {
  display: inline-block;
  background-color: #3277bc; /* same yellow as stars */
  color: #fff!important;
  font-weight: bold;
  font-family:Arial, sans-serif;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 22px;
  margin-right: 4px;
  font-size: 18px;
}

@media (max-width: 767px) {
  .hero-heading h1 {
    font-size: 2.3rem;
  }
  .hero-subheading {
    font-size: 18px;
  }
  .hero-cta {
    padding: 12px 20px;
  }
}

@media (max-width: 400px) {
  .hero-heading h1 {
    font-size: 1.7rem;
  }
}

/* Pricing Section */

.product-landing-price-section {
  background:#e4e4e4;
}
.product-landing-price-section .variations-box {
  margin: 0 auto;
  max-width: 767px;
  padding: 50px 10px;
}

.product-landing-price-section .variations select.select-form {
  background-color: #fff!important;
  margin-bottom:30px!important;
}

.product-landing-price-section .price-left-block {
  width:100%;
  max-width:100%;
}

.product-landing-price-section .enquiry-block {
  display:flex;
  margin-bottom:25px;
}

.product-landing-price-section .btn-enq {
  margin:0 auto;
}

@media (max-width: 635px) {
.product-landing-price-section .enquiry-block {
  display:block;
}

.product-landing-price-section .call-block, .product-landing-price-section .btn-enq {
  margin:15px auto;
}  
}

@media (max-width: 567px) {
  .product-landing-price-section .variations-box .row {
    display: flex;
    justify-content: center;
    float: none;
    text-align: center;
  }

  .product-landing-price-section .variations .block-6 {
    width:99%;
  }

  .product-landing-price-section .price-left-block {
    margin: 0 auto;
    float: none;
    text-align: center;
  }

  .product-landing-price-section .price-box {
    margin: 12px auto 20px;
  }

  .product-landing-price-section .variations select.select-form {
    width:280px;
}

.product-landing-price-section .single_add_to_cart_button {
  width: auto;
    margin: 0 0 0 10px !important;
    border-radius: 5px;
    font-size: 16px;
}
}

@media (max-width: 400px) {
  .product-landing-price-section .woocommerce .quantity .qty {
    padding:15px 3px!important;
    width:30px;
  }

  .product-landing-price-section .quantity input {
    padding:8px 8px 10px;
  }
}

@media (max-width: 331px) {
  .product-landing-price-section .single_add_to_cart_button {
  width:180px;
  padding:16px 15px;
  margin-top:5px!important;
}
}

@media (min-width: 568px) and (max-width:694px) {
  .product-landing-price-section .variations-box .row {
    display: flex;
    justify-content: center;
    float: none;
    text-align: center;
  }

.product-landing-price-section .price-left-block {
    margin: 0 auto;
    float: none;
    text-align: center;
  }

  .product-landing-price-section .price-box {
    margin: 12px auto 20px;
  }
}

/* CTA Strap */

section.custom-cta-strap {
  background-color: #1a1a1a!important; /* dark grey/black */
  padding: 60px 20px;
  text-align: center;
  font-family: 'Lato', sans-serif;
  color: #ffffff;
}

.custom-cta-strap .cta-inner {
  max-width: 1170px;
  margin: 0 auto;
}

.custom-cta-strap .cta-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.custom-cta-strap .cta-subheading {
  font-size: 1.4rem!important;
  font-weight: 400;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.custom-cta-strap .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-button {
    background-color: #3579bc;
}

.custom-cta-strap .cta-button a {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 24px;
  border: 2px solid #ffffff;
  border-radius: 4px;
  transition: all 0.3s ease;
  width:250px;
}

.custom-cta-strap .cta-button a:hover {
  background-color: #ffffff;
  color: #1a1a1a;
}

@media (max-width: 767px) {
  .custom-cta-strap .cta-heading {
  font-size: 1.8rem;
}
}

/* Proof Strap */


.proof-strap {
  background-color: transparent;
  padding: 25px 20px 0;
}

.proof-strap-inner {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.proof-strap-inner img {
  max-height: 80px;
  max-width: 160px;
  width: auto;
  height: auto;
  display: block;
  filter: none; /* Remove grayscale */
  transition: transform 0.3s ease;
  object-fit: contain;
}

/* Optional: subtle hover effect */
.proof-strap-inner img:hover {
  transform: scale(1.05);
}

@media (max-width: 489px) {
.proof-strap-inner img {
  max-height: 70px;
  max-width: 105px;
  margin:0;
    }
}

/* Nationwide Bio */


.profile-bio-panel {
  width: 100%;
  background-color: #e4e4e4;
  padding: 60px 20px;
  box-sizing: border-box;
}

.profile-bio-inner {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
  gap: 40px;
}
/*
.profile-bio-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
*/

.profile-bio-subheading {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  letter-spacing: 5px;
  padding-top: 0 !important;
  margin-top: 0 !important;
  padding-bottom: 15px !important;
  margin-bottom: 0 !important;
  text-transform: uppercase !important;
  font-size: 14px !important;
  color: rgb(202, 0, 24);
}

.profile-bio-text,
.profile-bio-image {
  box-sizing: border-box;
  padding: 20px;
}
/*
.profile-bio-text {
  flex: 0 0 35%;
  max-width: 35%;
}
*/
.profile-bio-text {
  flex: 1 1 45%;
  min-width: 300px;
}

.profile-bio-image {
  flex: 0 0 60%;
  max-width: 60%;
}

.profile-bio-text h2 {
    font-weight:700;
    letter-spacing: 0.5px;
    font-size: clamp(2rem, 4vw, 2.7rem);
    padding-bottom: 0px !important;
    margin: 30px 0 !important;
}

.profile-bio-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.profile-bio-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  flex: 1 1 45%;
  align-self:center;
}

.grid-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  object-fit: cover;
}

@media (max-width: 839px) {
  .profile-bio-text {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
  }
  .profile-bio-image {
    flex: 0 0 100%;
    max-width: 569px;
    margin:0 auto;
    padding:0;
  }
}

@media (max-width: 480px) {
  .profile-bio-image-grid {
    gap: 6px;
  }
}

/* Experts Section */

.services-section {
  background: #e4e4e4;
  padding: 80px 20px;
}

.services-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.services-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  max-width: 767px;
  margin: 0 auto 50px;
}

/* Split columns below image */
.services-split {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 40px;
}

.services-left {
  width: 33.333%;
}

.services-left h2 {
  margin-top: 30px;
}
/*
.services-left h2 {
  font-size: 2.7rem;
  margin: 20px 0;
  line-height:1.2;
}
*/
.services-right {
  width: 66.666%;
}

.btn-light {
  background: #fff;
  color: #333;
  padding: 10px 24px;
  border: 1px solid #ccc;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 20px;
}

.btn-light:hover {
  background: #eee;
}

/* Service grid */
/*.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
}
*/
.service-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
}

.service-box {
  background: #fff;
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: left;
}

.service-box i {
  font-size: 24px;
  color: #3277bc;
  margin-bottom: 10px;
  display: block;
}

.service-box h4 {
  margin: 10px 0 10px;
  font-size: 1.2rem;
}

.service-box p {
  font-size: 0.95rem;
  color: #555;
}

/* Responsive tweak */
@media (max-width: 768px) {
  .services-split {
    flex-direction: column;
  }

  .services-left, .services-right {
    width: 100% !important;
  }
}

@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
}
  /*
  .services-left h2 {
    font-size: 2.2rem;
  }
  */
  
}

@media (max-width: 480px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

/* Testimonials Section

.google-reviews-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.review-title {
  font-size: 2rem;
  margin-bottom: 30px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom:20px;
}

.review-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.stars {
  color: #FFD700;
  font-size: 18px;
  margin-bottom: 10px;
}

.review-text {
  font-style: italic;
  font-size: 16px;
}

.all-reviews-link .btn {
  margin-top: 30px;
  display: inline-block;
  background: #3579bc;
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
}

.rating-text-black {
  color:#222222;
}

 */
/* product-landing page image/text layout */
.product-landing-section {
  padding: 80px 20px;
  background: #fff;
}

.product-landing-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
}

.product-landing-intro {
  padding: 60px 20px;
  background: #fff;
}

.product-landing-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: nowrap; /* Prevent early wrapping */
}

.product-landing-image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.product-landing-thumb img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  display: block;
}

.product-landing-image {
  width: 55%;
}

.product-landing-image img {
  width: 100%;
  border-radius: 6px;
  height: auto;
}

/*
.product-landing-text h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  line-height: 1.3;
}
*/

.product-landing-text {
  width: 40%;
}

.product-landing-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}



@media (max-width: 469px) {
.product-landing-intro {
  padding: 30px 20px;
  background: #fff;
}
}

.product-gallery-wrapper {
  margin-bottom: 30px;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.product-grid a img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 6px;
  width: calc(50% - 7.5px); /* 2 columns with gap */
}

.product-carousel {
  display: none;
}

@media (max-width: 1023px) {
  .product-landing-wrapper {
    flex-direction: column;
  }

  .product-landing-intro {
  padding: 0 10px;
}

  .product-landing-image-gallery,
  .mobile-gallery {
    order: 1;
    width: 100%;
  }

  .product-landing-text {
    order: 2;
    width: 100%;
    max-width: 767px;
    margin: 0 auto;
  }

  .product-grid {
    display: none;
  }

  .product-carousel {
    display: block;
  }

  .swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    max-width: 767px;
    margin: 0 auto;
  }

  .product-landing-image-gallery {
  display: none;
}
  .mobile-gallery {
    display: block;
  }
}
@media (min-width: 1024px) {
.mobile-gallery {
  display: none!important;
}
}


/* Accordion */


.product-landing-intro .shipping-content h2 {
  font-size:24px;
}

.product-landing-intro .shipping-content h3 {
  font-size:22px;
}

.product-landing-intro .shipping-content h4 {
  font-size:20px;
}

.product-landing-intro .shipping-content {
  padding: 5px;
  display: none; /* important if JS not loaded */
}

.product-gallery-item {
  text-align: center;
}

.image-caption {
  font-size: 14px;
  color: #555;
  margin-top: 8px;
  line-height: 1.4;
}

/* Landing Footer */

.landing-footer {
  background-color: #e1e1e1;
  padding: 40px 20px;
  text-align: center;
  font-family: sans-serif;
  font-size: 14px;
  color: #333;
}

.landing-footer-inner {
  max-width: 900px;
  margin: 0 auto;
  width:250px;
}

.footer-logo img {
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
}

.footer-details p {
  margin: 5px 0 30px;
}

.footer-details a {
  color: #3277bc;
  text-decoration: none;
}

.footer-details a:hover {
  text-decoration: underline;
}

.copyright-privacy {
  max-width:900px;
  margin:0 auto;
  padding:0 0 60px;
}

.copyright-privacy p {
  font-size:14px;
}

@media (max-width: 480px) {
  .footer-logo img {
    max-width: 200px;
    margin: 0 auto 20px;
  }

  .landing-footer {
    padding: 30px 15px;
  }
}

/* Fixed Landing Footer */

.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #3277bc;
  padding: 12px 0;
  z-index: 9999;
}

.footer-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-btn {
  background-color: #000;
  color: #fff;
  text-decoration: none;
  padding: 8px 20px 4px;
  font-weight: bold;
  border: 2px solid #fff;
  transition: background 0.3s ease, color 0.3s ease;
  font-size: 20px;
  text-align: center;
  width:250px;
}

.footer-btn:hover {
  background-color: #fff;
  color: #000;
}

@media (max-width: 520px) {
  .footer-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-btn {
    width: 90%;
    max-width: 300px;
  }
  
  .footer-btn.fancybox-trigger {
    display:none;
  }
}

/* New Form */

.popup-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
}

.popup-left {
  width: 100%;
  max-width: 250px;
  text-align: center;
  margin: 0 auto;
}

.popup-logo img {
  max-width: 100%;
  height: auto;
  margin: 70px 0 20px;
}

.popup-call .btncall {
  display: inline-block;
  background: #74c63d;
  color: #fff;
  font-weight: bold;
  padding: 10px 16px;
  border-radius: 4px;
  text-decoration: none;
  width:200px;
  font-size:20px;
}

.popup-call .btncall img {
  vertical-align: middle;
  height: 18px;
  margin-right: 6px;
  display: inline-block;
}

.popup-form {
  flex: 1;
  min-width: 300px;
}

.form-title {
  font-size: 30px;
  color: #3277bc;
  line-height: 100%;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-family: 'AvantGarde-Demi';
  text-align: left;
}

.form-style input,
.form-style textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 18px;
  border-radius: 4px;
  border: 1px solid #3277bc;
  font-size: 15px;
  font-family: 'AvenirNextLTPro-Regular';
}

.form-style .btn-submit {
  background-color: #3277bc;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 250px;
  margin: 12px 0 40px;
  text-align: center;
  font-size: 16px;
  font-weight: normal;
}

.fancybox-trigger.btn-enq {
  color: #ffffff !important;
  text-decoration: none;
  background-color: #3277bc; /* Optional, if you want a blue button */
  padding: 13px 20px;
  border-radius: 4px;
  display: inline-block;
  text-align:center;
  width:300px;
  min-width:225px;
}

.form-style .recaptcha, .form-style .recaptcha a {
  font-size:14px;
} 

@media (max-width: 767px) {
  .popup-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .popup-left,
  .popup-form {
    width: 100%;
  }

  .form-style .btn-submit {
    width: 100%;
  }
}