/* ============================================
   TILE AND GROUT PRO - HOMEPAGE REDESIGN
   Preserving brand identity while modernizing layout
   ============================================ */

/* Color Variables - TILE AND GROUT PRO BRAND */
:root {
  --primary-blue: #1872a6;
  --secondary-blue: #337ab7;
  --accent-yellow: #ffcc00;
  --dark-grey: #1a1a1a;
  --light-grey: #f5f5f5;
  --white: #ffffff;
  --grid-blue: #1f79ad;
  --grid-line: rgba(255, 255, 255, 0.2);
  --top-bar-height:37px;
}

/* Typography - Poppins Font */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
div {
  font-family: 'Poppins', 'Verdana', sans-serif !important;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: linear-gradient(to right, var(--primary-blue), #145a85);
  color: var(--white);
  padding: 10px 0;
  font-size: 16px;
  font-weight: 400;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1040;
}

.wrapper.jsc-sidebar-content {
  padding-top: var(--top-bar-height);
}

.top-bar-container {
  width: 1125px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 35px;
}

.top-bar-hours {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-hours i {
  font-size: 14px;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-contact a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s;
  font-size: 16px;
  font-weight: 400;
}

.top-bar-contact a:hover,
.top-bar-contact a:focus,
.top-bar-contact a:active {
  color: var(--white) !important;
  text-decoration: none;
  opacity: 1;
}

.top-bar-contact a:visited {
  color: var(--white) !important;
  text-decoration: none;
}

.top-bar-hours span {
  font-size: 16px;
  font-weight: 400;
}


/* ============================================
   HEADER IMPROVEMENTS
   ============================================ */
.container-header {
  position: relative;
  z-index: 100;
}

.container-header {
  height: auto;
  padding: 0;
  background: #fff !important;
  overflow: visible;
  min-height: 0;
  --logo-size: 114px;
  --logo-overlap: 40px;
  --logo-space: 220px;
}

.header.header-layout {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  padding-bottom: 0;
  border-bottom: 1px solid #e9eef3;
}

.header-stack {
  position: relative;
  padding-left: var(--logo-space);
}

.header-row {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-row-tagline {
  padding: 20px 0 12px;
}

.header-row-menu {
  padding: 10px 0 13px;
}

.logo-overlap {
  position: absolute;
  left: -50px;
  bottom: calc(-1 * var(--logo-overlap));
    top: 2px !important;
  z-index: 10;
}

#logo_img {
  display: block;
  height: var(--logo-size);
  width: auto;
}

/* Navigation Menu Improvements */
.header-nav {
  display: block;
  width: 100%;
}

.header-nav .menu {
  float: none;
  margin: 0;
  width: 100%;
}

.header-nav .menu > ul {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.header-nav .menu > ul > li {
  float: none;
  padding-right: 0;
  position: relative;
}

.menu>ul>li>a {
  transition: all 0.3s ease;
  color: var(--primary-blue);
  padding: 4px 6px;
  font-weight: 500;
  letter-spacing: 0.6px;
  font-size: 14px;
}

.header-nav .menu > ul > li > ul {
  top: 100% !important;
  margin-top: 0;
}

.header-nav .menu > ul > li > ul > li > a {
  font-size: 14px;
  line-height: 28px;
}

.menu>ul>li>a:hover {
  background-color: transparent;
  color: var(--secondary-blue);
}

.menu>ul>li.last>a:hover,
.menu>ul>li.last>a:focus,
.menu>ul>li.last>a:active {
  background-color: transparent !important;
  background-image: none !important;
  color: var(--primary-blue) !important;
}

/* Phone/CTA Button Enhancement */
.phone {
  position: relative;
}

.header-tagline {
  color: var(--secondary-blue);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.2px;
  text-transform: none;
  margin: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

@media (max-width: 768px) {
  .header.header-layout {
    width: 100%;
    padding: 0 12px;
    box-sizing: border-box;
    min-height: 70px;
  }

  .container-header {
    --logo-size: 95px;
    --logo-overlap: 8px;
    --logo-space: 120px;
  }

  .header-stack {
    padding-left: 0;
  }

  .header-row {
    justify-content: flex-start;
    width: 100%;
  }

  .header-row-tagline {
    padding: 10px 0 10px;
    align-items: center;
    min-height: var(--logo-size);
  }

  .header-row-menu {
    padding: 0px 0 0px;
  }

  .header-tagline {
    font-size: 18px;
    line-height: 1.25;
    text-align: left;
    padding: 0 0px 0 40px;
    white-space: normal;
    margin-left: 135px;
    max-width: calc(100% - 150px);
    padding-top: 8px;
  }

  .header-nav .menu > ul {
    justify-content: center;
  }

  .logo-overlap {
    position: absolute;
    left: 0;
    bottom: calc(-1 * var(--logo-overlap));
    z-index: 10;
  }

}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }
}

.phone img {
  transition: transform 0.3s ease;
}

.phone:hover img {
  transform: scale(1.05);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}

.hero-section--homepage {
  background-image: image-set(
    url("/images/optimized/backgrounds/home-hero.webp") type("image/webp") 1x,
    url("/assets/template/images/tile_grout_pro_main_image_techs_with_van22.jpg") type("image/jpeg") 1x
  );
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
}

.hero-container {
  width: 999px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-content {
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  color: var(--white) !important;
  font-size: 48px !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  color: var(--white);
  font-size: 20px;
  font-weight: 300;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  padding: 60px 0;
  background: var(--white);
}

.about-container {
  width: min(1120px, 95%);
  margin: 0 auto;
  display: grid;
  /*grid-template-columns: 2.4fr 1fr;*/
  gap: 40px;
  align-items: center;
}

.about-content h1 {
  color: var(--primary-blue) !important;
  font-size: 32px !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 15px;
}

.about-content {
  /*max-width: 720px;*/
}

.about-vans {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.about-vans picture,
.service-card picture,
.tile-item picture,
.equipment-logos picture,
.equipment-van picture,
.footer-links-brand picture,
.logo picture {
  display: block;
}

.about-vans img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
.service-area-img {
  object-fit: none !important;
  box-shadow:none !important;
}
.about-badge {
  text-align: center;
}

.about-badge img {
  max-width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

/* ============================================
   SERVICING SUBURBS
   ============================================ */
.servicing-suburbs-section {
  padding: 60px 0;
  position: relative;
  background-color: #1a1a1a;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: image-set(
    url("/images/optimized/backgrounds/van3-cover.webp") type("image/webp") 1x,
    url("/images/van3.JPG") type("image/jpeg") 1x
  );
}

.servicing-suburbs-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.servicing-suburbs-container {
  width: min(1200px, 95%);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.servicing-suburbs-container h2 {
  color: #ffffff !important;
  font-size: 30px !important;
  font-weight: 700 !important;
  margin-bottom: 24px !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.servicing-suburbs-vans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 auto 18px;
}

.servicing-suburbs-card {
  background: var(--white);
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.servicing-suburbs-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.servicing-suburbs-container p {
  font-size: 16px;
  color: #ffffff;
  margin: 0;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-section {
  padding: 60px 0;
  background: var(--light-grey);
}

.services-container {
  width: min(1200px, 95%);
  margin: 0 auto;
}

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

.services-header h2 {
  color: var(--primary-blue) !important;
  font-size: 32px !important;
  font-weight: 700 !important;
  margin-bottom: 15px !important;
}

.services-header p {
  font-size: 16px;
  color: #666;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.service-card {
  background: var(--white);
  padding: 25px 15px;
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  
  cursor: pointer;
  margin: 10px 2px;
}

.service-card:hover {
  transform: translateY(-5px);
  /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);*/
}

.service-card img {
  width: 100%;
  max-width: 260px;
  height: 185px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 auto 20px;
  display: block;
}

.service-card h3 {
  color: var(--primary-blue) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  margin: 15px 0 10px !important;
  line-height: 1.4;
}

.service-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.service-card a {
  color: var(--accent-yellow);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s;
}

.service-card a:hover {
  color: #ffd700;
  text-decoration: underline;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {

  .top-bar-container,
  .hero-container,
  .services-container {
    width: 100%;
    padding: 0 8px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .wrapper.jsc-sidebar-content {
    padding-top: 0;
  }
  .container-header {
    --logo-size: 120px;
    --logo-overlap: 30px;
    --logo-space: 170px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .service-card img {
    max-width: 400px;
    height: 200px;
  }

  .about-container {
    grid-template-columns: 1fr;
  }

  .servicing-suburbs-vans {
    grid-template-columns: 1fr;
  }

  .servicing-suburbs-card img {
    height: 220px;
  }

  .about-vans {
    grid-template-columns: 1fr;
  }

  .about-vans img {
    height: 280px;
  }

  .hero-section {
    min-height: auto;
    padding: 40px 20px;
  }

  .hero-form-overlay {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .container-header {
    --logo-size: 105px;
    --logo-overlap: 24px;
    --logo-space: 150px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-form-overlay {
    padding: 30px 20px;
  }

  .hero-form-overlay h2 {
    font-size: 20px !important;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
  text-align: center;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

/* ============================================
   TILE TYPES SECTION
   ============================================ */
.tile-types-section {
  background: #ffffff;
  padding: 70px 0 60px;
}

.tile-types-container {
  width: min(1200px, 92%);
  margin: 0 auto;
  text-align: center;
}

.tile-types-title {
  font-size: 34px;
  font-weight: 700;
  color: var(--primary-blue) !important;
  margin-bottom: 14px;
}

.tile-types-subtitle {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.6;
  color: #666666;
  font-style: italic;
}

.tile-slider {
  position: relative;
}

.tile-window {
  overflow: hidden;
  cursor: grab;
  margin-right: 0;
  padding-right: 0;
  user-select: none;
}

.tile-window.is-dragging {
  cursor: grabbing;
}

.tile-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

.tile-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 4px;
}

.tile-item a,
.tile-item img {
  user-select: none;
  -webkit-user-drag: none;
}

.tile-item img {
  width: 210px;
  height: 210px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.tile-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.tile-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: #c7c7c7;
  padding: 0;
  cursor: pointer;
}

.tile-dots .dot.active {
  background: #111111;
}

@media (max-width: 1200px) {
  .tile-window {
    margin-right: 0;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .tile-types-section {
    padding: 50px 0 40px;
  }

  .tile-types-title {
    font-size: 28px;
  }

  .tile-types-subtitle {
    font-size: 16px;
  }

  .tile-item img {
    width: 190px;
    height: 190px;
  }

  .tile-item {
    gap: 8px;
    padding: 0 2px;
  }

  .tile-window {
    margin-right: 0;
    padding-right: 0;
  }
}

/* ============================================
   EQUIPMENT SECTION
   ============================================ */
.equipment-section {
  position: relative;
  background: linear-gradient(135deg, #145a85 0%, var(--primary-blue) 55%, #1f7fb5 100%);
  padding: 50px 0;
  color: #ffffff;
  overflow: hidden;
}

.equipment-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
          radial-gradient(circle at 20px 20px, rgba(255, 255, 255, 0.08) 0 2px, transparent 3px) 0 0 / 32px 32px,
          radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.05) 0 1px, transparent 2px) 0 0 / 18px 18px;
  opacity: 0.6;
  pointer-events: none;
}

.equipment-container {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.equipment-content {
  flex: 1 1 60%;
}

.equipment-content h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.equipment-content p {
  max-width: 560px;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.6;
}

.equipment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.equipment-logos img {
  background: #ffffff;
  border-radius: 10px;
  padding: 12px;
  width: 120px;
  height: 120px;
  object-fit: contain;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.equipment-van {
  flex: 1 1 40%;
  display: flex;
  justify-content: flex-end;
}

.equipment-van img {
  width: min(420px, 90%);
  height: auto;
  display: block;
}

@media (max-width: 992px) {
  .equipment-container {
    flex-direction: column;
    text-align: center;
  }

  .equipment-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .equipment-logos {
    justify-content: center;
  }

  .equipment-van {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .equipment-content h3 {
    font-size: 26px;
  }

  .equipment-logos img {
    width: 96px;
    height: 96px;
    padding: 10px;
  }
}

/* ============================================
   FOOTER LINKS AREA (LOGO BACKGROUND)
   ============================================ */
.footer-links-area {
  position: relative;
  background: #20262d;
  padding: 80px 20px 0;
  color: #c9d6e2;
}

/* ============================================
   FOOTER HERO OVERRIDES
   ============================================ */
.footer-hero-inner {
  width: min(1200px, 95%);
  padding: 0 10px;
}

.footer-hero-title {
  font-size: 32px;
  line-height: 1.3;
}

.footer-hero-text {
  font-size: 18px;
}

/* ============================================
   SERVICES SLIDER
   ============================================ */
.services-slider {
  position: relative;
  margin-bottom: 40px;
}

.services-window {
  overflow: hidden;
  cursor: grab;
}

.services-window.is-dragging {
  cursor: grabbing;
}

.services-track {
  display: flex;
  gap: 0;
  transition: transform 0.4s ease;
  will-change: transform;
}

.services-page {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.services-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.services-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: #c7c7c7;
  padding: 0;
  cursor: pointer;
}

.services-dots .dot.active {
  background: #111111;
}

@media (max-width: 1200px) {
  .services-page {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .services-page {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 576px) {
  .services-page {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .services-window {
    overflow: hidden;
    touch-action: pan-y;
  }
}

.footer-links-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(24, 30, 36, 0.88), rgba(24, 30, 36, 0.88)),
    url(/images/inverted-logo.jpg) 45% center / 90% auto no-repeat;
  pointer-events: none;
}

.footer-links-area .container-footer,
.footer-links-area .container-most-bottom {
  position: relative;
  z-index: 1;
}

.footer-links-area .container-footer {
  background: transparent;
  box-shadow: none;
  padding-top: 0;
}

.footer-links-area .menu-bottom {
  padding-bottom: 0;
}

.footer-links-area .menu-bottom ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 22px;
  padding: 16px 0 10px;
}

.footer-links-area .menu-bottom ul > li {
  float: none;
  border: none;
  margin: 0;
  padding: 0;
}

.footer-links-area .menu-bottom ul > li > a {
  color: #e9f2fa;
  font-size: 13px;
  letter-spacing: 0.8px;
}

.footer-links-area .menu-bottom ul > li > a:hover {
  color: #ffffff;
}

.footer-links-area .container-most-bottom {
  background: transparent;
  padding-bottom: 0;
}

.footer-links-area .container-most-bottom .copyright p {
  color: #c5d4e2;
}

.footer-links-header {
  position: relative;
  z-index: 1;
  width: min(1400px, 98%);
  margin: 0 auto 12px;
  padding-top: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.footer-links-brand {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding-left: 4.4rem;
}

.footer-links-logo {
  margin-left: -16px;
  max-width: 100%;
  display: block;
  margin-bottom: 8px;
}

.footer-links-brand-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.footer-links-brand-tagline {
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  color: #c9d6e2;
  margin-top: 6px;
}

.footer-links-brand-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 22px;
  border-radius: 999px;
  background: #7fd2ff;
  color: #0d1a22;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 12px;
  text-decoration: none;
}

.footer-links-brand-btn:hover {
  background: #91dbff;
  color: #0d1a22;
}

.footer-links-question {
  color: #7fd2ff;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.1em;
  letter-spacing: 2px;
  margin-bottom: 6px;
  text-align: left;
  white-space: nowrap;
}

.footer-links-call {
  font-size: 28px;
  font-weight: 700;
  color: #c9d6e2;
  text-align: left;
}

.footer-links-call a {
  color: #c9d6e2;
  text-decoration: none;
}

.footer-links-call a:hover {
  color: #e9f2fa;
}

.footer-links-right {
  flex: 1 1 66.666%;
  max-width: 66.666%;
}

.footer-links-top {
  margin-bottom: 54px;
}

.footer-links-bottom {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.footer-links-col {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  min-width: 0;
}

.footer-links-col.footer-links-areas {
  flex: 0 0 66.666%;
  max-width: 66.666%;
}

.footer-links-col.footer-links-col-center,
.footer-links-col.footer-links-col-center .footer-links-list,
.footer-links-col.footer-links-col-center .footer-links-list li,
.footer-links-col.footer-links-col-center .footer-links-list li a {
  text-align: center;
}

.footer-links-col.footer-links-col-center {
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}

.footer-links-col.footer-links-col-center .footer-links-list {
  width: 100%;
  align-items: center;
}

@media (min-width: 769px) {
  .footer-links-bottom .footer-links-col.footer-links-col-center:first-child {
    align-items: flex-start;
    text-align: left;
  }

  .footer-links-bottom .footer-links-col.footer-links-col-center:first-child .footer-links-list-title,
  .footer-links-bottom .footer-links-col.footer-links-col-center:first-child .footer-links-list,
  .footer-links-bottom .footer-links-col.footer-links-col-center:first-child .footer-links-list li,
  .footer-links-bottom .footer-links-col.footer-links-col-center:first-child .footer-links-list li a {
    text-align: left;
  }
}


.footer-links-list-title {
  margin-top: 0;
  text-align: left;
  color: #7fd2ff;
  letter-spacing: 0.3px;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  text-align: left;
}

.footer-links-list li {
  margin-bottom: 6px;
}

.footer-links-list li a {
  color: #c9d6e2;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.3px;
}

.footer-links-list li a:hover {
  color: #ffffff;
}

.footer-links-areas .title {
  display: block;
  background: none;
  border: 0;
  padding: 0;
  margin: 0 0 4px;
}

.footer-links-areas #hide_header_h3 {
  display: block;
  margin: 0 0 2px;
  color: #7fd2ff;
  font-size: 18px;
  letter-spacing: 0.3px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  text-align: left;


  background: none !important;
  border-bottom: 0 !important;
  padding: 0 !important;
  margin: 0 0 8px !important;

}

.footer-links-areas #akkordeon {
  padding: 0;
  margin: 0;
}

.footer-links-areas #akkordeon {
  margin-top: 0;
}

.footer-links-areas .content_Acc {
  display: block !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.footer-links-areas .akk-item,
.footer-links-areas .title,
.footer-links-areas .content_Acc,
.footer-links-areas .place {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.footer-links-areas .title {
  padding: 0 !important;
  margin: 0 0 6px !important;
}

.footer-links-areas .title #hide_header_h3 {
  color: #7fd2ff !important;
}


.footer-links-areas #akkordeon .open h3 {
  background: none !important;
}

.footer-links-areas ul#cities_left_links {
  column-count: 1;
  column-gap: 0;
  margin: 0;
  padding: 0;
  text-align: center;
}

@media (min-width: 769px) {
  .footer-links-areas ul#cities_left_links {
    column-count: 2;
    column-gap: 26px;
    text-align: left;
  }

  .footer-links-areas ul#cities_left_links li {
    text-align: left;
  }

  .footer-links-areas ul#cities_left_links li a {
    text-align: left;
  }
}

.footer-links-areas .place {
  margin-bottom: 0;
}

.footer-links-areas .place ul {
  margin-top: 0 !important;
}

.footer-links-areas #akkordeon .content_Acc {
  padding-top: 0 !important;
  margin-top: 11px !important;
}

.footer-links-areas #akkordeon h3 {
  margin-bottom: 2px !important;
}

.footer-links-areas ul#cities_left_links li {
  margin-bottom: 6px;
  text-align: center;
  float: none !important;
}

.footer-links-areas ul#cities_left_links li a {
  color: #c9d6e2;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.3px;
  display: inline-block;
}

@media (min-width: 769px) {


  .footer-links-areas {
    text-align: left;
  }

  .footer-links-areas ul#cities_left_links li,
  .footer-links-areas ul#cities_left_links li a {
    text-align: left;
  }
}
@media (max-width: 769px) {
  .footer-links-areas #hide_header_h3 {
    text-align: center ;
  }

}footer-links-logo
 .footer-links-areas .content_Acc {
   display: flex !important;
   justify-content: center !important;
 }

.footer-links-areas ul#cities_left_links {
  /*display: inline-block;*/
}

.footer-links-areas ul#cities_left_links li a:hover {
  color: #ffffff;
}


@media (max-width: 1200px) {
  .footer-links-header {
    width: 95%;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .footer-links-header {
    flex-direction: column;
    text-align: center;
  }

  .footer-links-brand {
    padding-left: 0;
  }

  .footer-links-brand,
  .footer-links-right {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .footer-links-bottom {
    flex-direction: column;
  }

  .footer-links-question,
  .footer-links-call,
  .footer-links-list-title,
  .footer-links-list {
    text-align: center !important;
  }

  .footer-links-question {
    white-space: normal;
  }

  .footer-links-col {
    text-align: center !important;
    max-width: none !important;
  }

  .footer-links-list {
    padding-left: 0;
    margin-left: 0;
    width: 100%;
  }

  .footer-links-list li {
    text-align: center !important;
    width: 100%;
    float: none !important;
  }

  .footer-links-list li a {
    text-align: center;
    display: inline-block;
  }

}

@media (max-width: 768px) {
  .footer-links-area .footer-links-list {
    text-align: center !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
  }
  .footer-links-area .footer-links-list li {
    float: none !important;
    text-align: center !important;
    width: 100% !important;
  }
  .footer-links-area .footer-links-list li a {
    display: inline-block !important;
  }
}

.footer-bottom-bar {
  background: linear-gradient(to right, var(--primary-blue), #145a85);
  color: var(--white);
  text-align: center;
  padding: 10px 0;
  font-size: 12px;
  letter-spacing: 0.3px;
}

.footer-bottom-bar p {
  margin: 0;
}

.footer-meta-bar {
  background: linear-gradient(to right, var(--primary-blue), #145a85);
  text-align: center;
  padding: 8px 0;
  font-size: 11px;
}

.footer-meta-bar a {
  color: #dbe9f4;
  text-decoration: none;
}

.footer-meta-bar a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .footer-links-area::before {
    background:linear-gradient(rgba(24, 30, 36, 0.9), rgba(24, 30, 36, 0.9)),
      url(/images/inverted-logo.jpg) center / 90% auto no-repeat;
  }
}

/* ============================================
   FOOTER HERO (VAN SECTION)
   ============================================ */
.footer-hero {
  position: relative;
  background-color: #192026;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image:
    linear-gradient(rgba(25, 32, 38, 0.75), rgba(25, 32, 38, 0.75)),
    image-set(
      url("/images/optimized/backgrounds/van3-cover.webp") type("image/webp") 1x,
      url("/images/van3.JPG") type("image/jpeg") 1x
    );
  padding: 60px 0;
  color: #ffffff;
}

.footer-hero-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  align-items: center;
  padding: 0 0 0 2rem;
}

.footer-hero-left {
  max-width: 720px;
  flex: 1 1 auto;
}

.footer-hero-title {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: normal;
  line-height: 1.15;
}

.footer-hero-text {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.footer-hero-right {
  text-align: left;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 0 0 auto;
}

.footer-hero-label {
  font-size: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #4fc3f7;
  font-weight: 700;
}

.footer-hero-phone {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  font-size: 34px;
  font-weight: 600;
  margin: 6px 0 12px;
  text-decoration: none;
  gap: 12px;
}

.footer-hero-phone:hover,
.footer-hero-phone:focus,
.footer-hero-phone:active,
.footer-hero-phone:visited,
a.footer-hero-phone,
a.footer-hero-phone:hover,
a.footer-hero-phone:focus,
a.footer-hero-phone:active,
a.footer-hero-phone:visited,
.footer-hero a[href^="tel"],
.footer-hero a[href^="tel"]:hover,
.footer-hero a[href^="tel"]:focus,
.footer-hero a[href^="tel"]:active,
.footer-hero a[href^="tel"]:visited {
  color: #ffffff !important;
  text-decoration: none !important;
}

.footer-hero-phone .fa {
  font-size: 30px;
  color: #4fc3f7;
}

.footer-hero-btn {
  display: inline-block;
  background: var(--primary-blue);
  color: #ffffff;
  padding: 18px 36px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
}

.footer-hero-btn:hover {
  background: #ffffff;
  color: var(--primary-blue);
}

@media (max-width: 1200px) {
  .footer-hero-inner {
    width: 95%;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .footer-hero-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 20px;
  }

  .footer-hero-right {
    text-align: center;
    align-items: center;
    min-width: 0;
  }

  .footer-hero-left {
    max-width: 100%;
  }

  .footer-hero-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .footer-hero-text {
    font-size: 14px;
  }

  .footer-hero-phone {
    font-size: 26px;
  }

  .footer-hero-phone .fa {
    font-size: 24px;
  }

  .footer-hero-btn {
    font-size: 16px;
    padding: 14px 26px;
  }

  .footer-hero-phone,
  .footer-hero-phone:hover,
  .footer-hero-phone:focus,
  .footer-hero-phone:active,
  .footer-hero-phone:visited {
    color: #ffffff !important;
    text-decoration: none !important;
  }

  a.footer-hero-phone,
  a.footer-hero-phone:hover,
  a.footer-hero-phone:focus,
  a.footer-hero-phone:active,
  a.footer-hero-phone:visited {
    color: #ffffff !important;
    text-decoration: none !important;
    -webkit-tap-highlight-color: transparent;
  }
}

@media (max-width: 480px) {
  .footer-hero {
    padding: 40px 0;
  }

  .footer-hero-title {
    font-size: 24px;
  }

  .footer-hero-phone {
    font-size: 22px;
  }
}




:root{
  --primary:#30e87a;
  --bg-light:#f6f8f7;
  --bg-dark:#112117;

  --text-light:#0f172a;
  --text-dark:#ffffff;

  --muted-light:#64748b;
  --muted-dark:#cbd5e1;

  --card-dark:#1a2f23;
  --border-light:#e2e8f0;
  --border-dark:rgba(48,232,122,0.10);

  --radius:16px;
  --shadow: 0 20px 50px rgba(0,0,0,.15);
  --shadow-soft: 0 2px 12px rgba(0,0,0,.06);
  --container: 1152px;
}


.material-symbols-outlined{
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  line-height: 1;
  vertical-align: middle;
}

section{ padding: 48px 0; }

.testimonials-section{
  background-color: #ffffff;
  background-image: none;
}

.testimonials-section .section-head{
  text-align: center;
}

.testimonials-section .section-head h2{
  color: var(--primary-blue) !important;
  font-size: 32px !important;
  font-weight: 700 !important;
}

.testimonials-section .section-head p{
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #666666 !important;
}

.testimonials-section .container{
  width: min(1200px, 95%) !important;
  margin: 0 auto;
  background: #ffffff;
  background-image: none !important;
}

/* Hero */
.hero{ padding-top: 48px; padding-bottom: 24px; }

.hero-card{
  min-height: 320px;
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  position:relative;
  background-size: cover;
  background-position: center;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}

.hero-overlay{ padding: 32px; }
@media (min-width: 768px){ .hero-overlay{ padding: 48px; } }

.hero-title{
  margin: 0 0 12px;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 640px;
}
@media (min-width: 768px){ .hero-title{ font-size: 52px; } }

.hero-subtitle{
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

/* Section heading */
.section-head{ margin-bottom: 32px; }
.section-head h2{
  margin:0;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section-head p{
  margin: 10px 0 0;
  color: var(--muted-light);
  font-weight: 600;
}
html.dark .section-head p{ color: rgba(203,213,225,.85); }

/* Grid + cards */
.grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px){ .grid{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px){ .grid{ grid-template-columns: repeat(3, 1fr); } }

.card{
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  padding: 32px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height: 320px;
}
html.dark .card{
  background: var(--card-dark);
  border: 1px solid rgba(48,232,122,.05);
}

.stars{
  display:flex;
  gap: 2px;
  color: #f5c542;
  margin-bottom: 16px;
}
.stars .material-symbols-outlined{ font-size: 20px; }

.quote{
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.7;
  font-style: italic;
  color: #334155;
}
html.dark .quote{ color: rgba(226,232,240,.92); }

.card-footer{
  display:flex;
  align-items:center;
  gap: 16px;
  border-top: 1px solid #f8fafc;
  padding-top: 24px;
}
html.dark .card-footer{ border-top: 1px solid rgba(48,232,122,.05); }

.avatar{
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 0 2px rgba(48,232,122,.20);
  flex: 0 0 auto;
}

.person-name{
  margin:0;
  font-size: 16px;
  font-weight: 800;
}
.person-role{
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted-light);
}
html.dark .person-role{ color: rgba(48,232,122,.70); }

/* CTA */
.cta{
  background: rgba(48,232,122,.05);
  padding: 96px 0;
  margin-top: 48px;
}
.cta-inner{
  max-width: 896px;
  margin: 0 auto;
  text-align:center;
  padding: 0 24px;
}
.cta-icon{
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(48,232,122,.20);
  color: var(--primary);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom: 24px;
}
.cta-icon .material-symbols-outlined{ font-size: 32px; }

.cta-title{
  margin: 0 0 16px;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.03em;
}
@media (min-width: 768px){ .cta-title{ font-size: 56px; } }

.cta-text{
  margin: 0 auto 28px;
  max-width: 640px;
  font-size: 18px;
  line-height: 1.6;
  color: #475569;
  font-weight: 600;
}
html.dark .cta-text{ color: rgba(203,213,225,.90); }

.cta-actions{
  display:flex;
  flex-direction:column;
  gap: 14px;
  align-items:center;
  justify-content:center;
}
@media (min-width: 640px){ .cta-actions{ flex-direction:row; } }
@media (max-width: 991px) {
  .testimonials-section .container{
    width: min(1200px, 95%) !important;
    padding: clamp(16px, 2.4vw, 22px) !important;
  }
  .testimonials-section{
    padding: 0 0 clamp(18px, 4vw, 42px) 0 !important;
  }
    .octopuspro-widget-form-container .octopuspro-widget-custom-modal .octopuspro-widget-modal-content {
        width: 92% !important;
    }
}
