/* ======================= RESET & BASE ======================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
}

/* Spacing tokens */
:root{
  --xpad: 5%;       /* global left/right container padding */
  --slider-gap: 2%; /* gap between slider cards in % */
}

/* ===== Dealer Locator: % based layout ===== */
#dealer-locator { padding: 40px 0; }

/* 5% side padding wrapper */
#dealer-locator .wrap-5p {
  padding-left: 5%;
  padding-right: 5%;
}

/* Title */
#dealer-locator h2 {
  text-align: center;
  font-weight: 700;
  margin: 0 0 24px 0;
  letter-spacing: .5px;
}

/* Controls row uses % widths (2 cols on md+, 1 col on mobile) */
#dealer-locator .controls {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  margin-bottom: 24px;
}

#dealer-locator .control {
  flex: 1 1 100%;
}

@media (min-width: 768px) {
  /* Three inputs: (100% - 4% gap) / 3 */
  #dealer-locator .control {
    flex: 0 0 calc((100% - 4%) / 3);
  }
}

/* Selects styling (keep your FA chevron) */
#dealer-locator .form-select-lg {
  -webkit-appearance: none;  /* Chrome/Safari */
  -moz-appearance: none;     /* Firefox */
  appearance: none;          /* Modern */
  background-image: none !important; /* In case the UA sets one */
}

#dealer-locator .form-select-lg::-ms-expand { 
  display: none; 
}
/* Gray strip container */
#dealer-locator .dealer-strip {
  background: #e9e9e9;
  border-radius: 6px;
  padding: 24px;
}

/* Cards grid in % with responsive breakpoints */
#dealer-locator .dealer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}

/* 1 col default */
#dealer-locator .dealer-card {
  background: #fff;
  border: 8px solid #e9e9e9;
  border-radius: 6px;
  padding: 16px 18px;
  flex: 0 0 100%;
}

@media (min-width: 576px) and (max-width: 991.98px) {
  /* 2 cols: (100% - 2% gap) / 2 */
  #dealer-locator .dealer-card {
    flex-basis: calc((100% - 2%) / 2);
  }
}

@media (min-width: 992px) {
  /* 3 cols: (100% - 4% gaps) / 3 */
  #dealer-locator .dealer-card {
    flex-basis: calc((100% - 4%) / 3);
  }
}

/* Card typography */
#dealer-locator .dealer-card h5 {
  font-weight: 700;
  margin: 0 0 8px 0;
  font-size: 1.05rem;
}
#dealer-locator .dealer-card p {
  margin: 0 0 6px 0;
  color: #4b4b4b;
  font-size: .925rem;
  line-height: 1.3rem;
}
#dealer-locator .dealer-card .lead-icon {
  color: #111;
  margin-right: .35rem;
}

/* Optional: FA chevron alignment on selects */
#dealer-locator .select-wrap { position: relative; }
#dealer-locator .select-wrap .fa-chevron-down {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;   /* don't block clicks on the select */
  color: #9a9a9a;
  font-size: 0.9rem;
}

/* ======================= HEADER ======================= */
.site-header{
  padding-left: var(--xpad);
  padding-right: var(--xpad);
  background:#fff;
  border-bottom:1px solid #eee;
  font-family:'Inter', sans-serif;
}

#dealer-locator .form-select-lg {
  width: 100%;
  height: 52px;
  padding: 10px 16px;
  background: #f1f1f1;
  border: 1px solid #d3d3d3;
  border-radius: 6px;
  box-shadow: none;
  /* DO NOT hide the native arrow here */
}

#dealer-locator .form-select-lg {
  width: 100%;
  height: 52px;
  padding: 10px 16px;
  background: #f1f1f1;
  border: 1px solid #d3d3d3;
  border-radius: 6px;
  box-shadow: none;
  /* DO NOT hide the native arrow here */
}

.header-inner{
  margin:0 auto;
  padding:12px 0; /* keep vertical, LR comes from .site-header */
  display:flex;
  align-items:center;
  gap:24px;
}

.brand img{
  height:82px;          /* adjust if needed */
  width:auto;
  display:block;
}

/* Inline nav (no hamburger) */
.simple-nav{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;        /* gracefully wraps on small screens */
}

.nav-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#111;
  text-decoration:none;
  font-weight:500;
  font-size:16px;
  line-height:1;
  padding:6px 2px;
}

.nav-link:hover{ color:#0e6f73; }

.icon{ width:16px; height:16px; }

/* thin separators */
.sep{
  width:1px;
  height:16px;
  background:#cfcfcf;
  display:inline-block;
  margin:0 4px;
}

/* subtle focus style (no blue outline) */
.nav-link:focus-visible{
  outline:none;
  box-shadow:0 2px 0 0 #0e6f73;
}

/* Small-screen tweaks without hamburger */
@media (max-width: 720px){
  .brand img{ height:36px; }
  .nav-link{ font-size:14px; }
  .sep{ display:none; }            /* cleaner when wrapping */
  .simple-nav{ gap:12px; justify-content:flex-end; }
}

/* ======================= HERO / FIRST SECTION ======================= */
/* Lighting hero with sliding background */

.lp-lightinge {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  color: #fff;
  font-family: 'Inter', sans-serif;
  background-color: #000; /* ✅ Prevents white flash */
}

.lp-bge {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bg-slidee {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: left;
  opacity: 0;
  animation: bgCrossfade4 16s infinite ease-in-out;
  transition: opacity 0.8s ease;
}

.bg-slidee:nth-child(1) { animation-delay: 0s; }
.bg-slidee:nth-child(2) { animation-delay: 4s; }
.bg-slidee:nth-child(3) { animation-delay: 8s; }
.bg-slidee:nth-child(4) { animation-delay: 12s; }

@keyframes bgCrossfade4 {
  0% { opacity: 1; }
  20% { opacity: 1; }
  30% { opacity: 0; }  /* slightly slower fade */
  95% { opacity: 0; }
  100% { opacity: 1; }
}


 .lp-lighting {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.lp-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Slides */
.bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: left;
  opacity: 0;
  animation: bgCrossfade 10s infinite ease-in-out;
  transition: opacity 0.6s ease;
}

/* First slide visible at start */
.bg-slide:nth-child(1) {
  animation-delay: 0s;
}
.bg-slide:nth-child(2) {
  animation-delay: 5s; /* half of total time */
}

/* Crossfade keyframes (no full fade out) */
@keyframes bgCrossfade {
  0% { opacity: 1; }
  40% { opacity: 1; }
  50% { opacity: 0; }
  90% { opacity: 0; }
  100% { opacity: 1; }
}


/* Content above the slideshow */
.lp-wrap{
  position: relative;
  z-index: 1;
  padding-left: var(--xpad);
  padding-right: var(--xpad);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: start;
}

/* Left */
.lp-left{ position: relative; }

.lp-title{
  margin: 0;
  margin-top: 48px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.5px;
  font-size: clamp(28px, 3.2vw, 44px);
  text-transform: uppercase;
}

.lp-bottom-kicker{
  position: absolute;
  left: 0; right: 0; bottom: 6px;
  margin: 0;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.lp-bottom-kicker span{ font-weight: 600; }

/* Right (form) */
.lp-form-col{ display: flex; justify-content: flex-end; }
.lp-form{ width: 100%; max-width: 520px; }
.lp-input{
  width: 100%; height: 44px; border: none; border-radius: 3px;
  background: #eee; color: #000; font-size: 14px; padding: 0 14px;
  outline: none; display: block; margin-bottom: 14px;
}

/* Select caret */
.lp-select-wrap{ position: relative; }
.lp-select{ appearance: none; -webkit-appearance: none; -moz-appearance: none; padding-right: 44px; }
.lp-caret{
  position: absolute; right: 8px; top: 50%;
  width: 28px; height: 28px; border-radius: 3px;
  transform: translateY(-50%); background: #e3e3e3;
}
.lp-caret::after{
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 8px; height: 8px; border-right: 2px solid #777; border-bottom: 2px solid #777;
  transform: translate(-50%,-60%) rotate(45deg);
}

/* Disclaimer + submit */
.lp-disclaimer{ color: #fff; margin: 8px 0 14px; }
.lp-disclaimer-title{ font-size: 16px; margin-bottom: 6px; }
.lp-checkline{
  display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start;
  font-size: 12.5px; line-height: 1.35;
}
.lp-checkline input[type="checkbox"]{
  width: 16px; height: 16px; margin-top: 2px; accent-color: #fff; background: #fff; border: 1px solid #bbb;
}
.lp-submit{
  width: 100%; height: 44px; border: none; border-radius: 3px;
  background: #333; color: #fff; font-size: 16px; cursor: pointer;
}
.lp-submit:hover{ background:#444; }

/* Responsive */
@media (max-width: 1100px){
  .lp-wrap{ grid-template-columns: 1fr; gap: 24px; }
  .lp-left{ min-height: 20px; }
  .lp-title{ margin-top: 28px; text-align: center; }
  .lp-bottom-kicker{ text-align: center; padding: 0 12px; }
  .lp-form{ margin: 0 auto; padding-top: 40px; }
}
@media (max-width: 560px){
  .lp-lighting{ padding: 24px 0 36px; min-height: 300px; }
  .lp-left{ min-height: 10px; }
  .lp-bottom-kicker{ font-size: 12px; }
  .lp-input, .lp-submit{ height: 42px; }
}

/* ======================= address for bath and lighting ======================= */
.showroom-section {
  font-family: 'Inter', sans-serif;
  color: #000;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.showroom-section h2 {
  font-size: 1.2rem;
  font-weight: 600;
  border-top: 2px solid #004a44;
  padding-top: 10px;
  margin-bottom: 20px;
}

/* Map styling */
.map-container {
  border-radius: 12px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 250px;
  border: none;
  display: block;
}

/* Showroom details */
.showroom-info {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.showroom-photo {
  width: 320px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.address-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 600px;
}

.address-icon {
  width: 24px;
  height: 24px;
  margin-top: 3px;
}

.address-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ======================= DIVIDERS ======================= */

/* Default (desktop/tablet): show original, hide mobile-only */
.lp-lighting-mobile { display: none; }

/* --- Mobile layout changes --- */
@media (max-width: 560px){

  /* Keep your slider section visible, but hide the form inside it */
  .lp-lightinge{padding:0 0 0 0; overflow: visible;}
  .lp-bge{padding-top: 100%; position: relative;}
  .lp-left{min-height: initial;}
  .lp-form{padding-top: 0;}
  .lp-wrap{gap:0;}
  .lp-lighting .lp-form-col { display: none !important; }
  .lp-lightinge .lp-form-col { display: block !important; }
  /* Show the separate mobile form section */
  .lp-lighting-mobile {
    display: block;
    position: relative;
    z-index: 1;
    padding: 24px var(--xpad,16px) 36px;
    color: #fff;
    font-family: 'Inter', sans-serif;

    /* Static background — pick one image or a solid/gradient */
    background: url('public/images/a1.png') center right/cover no-repeat fixed;
    /* If you prefer a solid: background:#0d0d0d; */

    
  }

  /* Reuse your existing form styles for consistent look */
  .lp-lighting-mobile .lp-form-col { display: block; }
  .lp-lighting-mobile .lp-form { margin: 0 auto; padding-top: 0;}
  .lp-lighting-mobile .lp-input,
  .lp-lighting-mobile .lp-submit { height: 35px; }
}

/* Optional: subtle overlay for readability on the static bg */
@media (max-width: 560px){
  
  .lp-lighting-mobile .lp-form-col,
  .lp-lighting-mobile .lp-form { position: relative; z-index: 1; }
}


/* ======================= SHOP SECTION ======================= */
.shop-now{
  width: 100%;
  padding-left: var(--xpad);
  padding-right: var(--xpad);
  margin: 24px auto 40px;
  font-family: 'Inter', sans-serif;
  color: #0e6f73; 
}
.shop-now__bar{
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.shop-now__bar span{
  font-size: 25px;
  color: #000000;
  white-space: nowrap;
}
.shop-now__bar hr{
  height: 2px;
  border: none;
  background: #007079;
  opacity: .9;
}
/* Logos row */
.shop-now__logos{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.shop-logo img{
  display: block;
  height: 76px;           /* tune to your logo artboard */
  width: auto;
  object-fit: contain;
  transition: transform .15s ease;
}
.shop-logo:hover img{ transform: translateY(-1px); }
/* Vertical divider */
.shop-divider{ width: 1px; height: 44px; background: #d6d6d6; }
/* Responsive tweaks */
@media (max-width: 640px){
  .shop-now__bar span{ font-size: 16px; }
  .shop-logo img{ height: 38px; }
  .shop-divider{ height: 36px; }
}

/* ======================= SLIDER ======================= */
/* Lighting Categories Slider */
.lighting-slider-section{
  padding-left: var(--xpad);
  padding-right: var(--xpad);
  margin: 64px auto;
  padding-top: 0;
  padding-bottom: 0;
  font-family: 'Inter', sans-serif;
  color:#111;
}
.slider-heading{
  text-align:center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 22px;
}
.slider-container{
  position: relative;
  width: 100%;
  padding-left: 0;   /* use viewport width fully */
  padding-right: 0;
}
.slider-viewport{ overflow: hidden; scroll-snap-type: x mandatory; }
.slider-track{
  display: flex;
  align-items: stretch;
  gap: var(--slider-gap);
  transition: transform .4s ease-in-out;
  will-change: transform;
  margin: 0;
}
/* Card: show exactly 4 per view on desktop (no cut 5th) */
.slider-card{
  position: relative;
  flex: 0 0 calc((100% - (3 * var(--slider-gap))) / 4);
  max-width: calc((100% - (3 * var(--slider-gap))) / 4);
  min-width: calc((100% - (3 * var(--slider-gap))) / 4);
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #000;
  scroll-snap-align: start;
}
.slider-card img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Gradient */
.slider-card::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.65) 0%,
    rgba(0,0,0,.35) 45%,
    rgba(0,0,0,.05) 100%
  );
}
/* Text block */
.card-overlay{
  position:absolute;
  left:0; right:0;
  bottom:5%;
  text-align:center;
  color:#fff;
  padding: 0 18px;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(0,0,0,.45);
}
.card-overlay h3{
  margin:0 0 6px;
  font-size:28px;
  font-weight:400;
  font-family: 'Inter', sans-serif;
}
.card-overlay p{
  margin:0 0 24px;
  font-size:13px;
  font-weight:300;
  font-family: 'Inter', sans-serif;
}
.card-overlay .know-more{
  color:#fff;
  font-weight: 300;
  font-size: 17px;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
}
/* Arrows */
.slider-btn{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  border:none;
  background: rgba(0,0,0,.55);
  color:#fff;
  font-size: 20px;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  z-index: 3;
  transition: background .15s ease;
}
.slider-btn:hover{ background: rgba(0,0,0,.75); }
.slider-btn.left { left: 10px; }
.slider-btn.right{ right: 10px; }

/* Slider breakpoints (percent-based) */
@media (max-width: 1100px){
  .slider-card{
    flex-basis: calc((100% - var(--slider-gap)) / 2);
    max-width: calc((100% - var(--slider-gap)) / 2);
    min-width: calc((100% - var(--slider-gap)) / 2);
  }
}
@media (max-width: 560px){
  .slider-heading{ font-size: 22px; }
  .slider-card{
    flex-basis: 100%;
    max-width: 100%;
    min-width: 100%;
    border-radius: 6px;
  }
  .card-overlay h3{ font-size: 18px; }
  .card-overlay p{ font-size: 12px; margin-bottom: 18px; }
  .slider-btn{ width: 38px; height: 38px; }
}

/* ======================= VIDEO HERO ======================= */
.video-hero{
  max-width: 100%;
  margin: 28px auto;
  padding-left: var(--xpad);
  padding-right: var(--xpad);
  font-family: 'Inter', sans-serif;
}
.video-card{
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 0 0 2px rgba(0, 196, 255, 0.9) inset;
}
.video-poster, .video-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-bg{
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.video-card.playing .video-bg{ opacity: 1; }
.video-card.playing .video-poster{ opacity: 0; }
.video-card.playing .play-btn{
  opacity: 0;
  transform: translate(-50%,-50%) scale(.95);
  pointer-events: none;
}
.play-btn{
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 164px; height: 164px; border-radius: 50%;
  border: none; background: rgba(255,255,255,0.78);
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
  display: grid; place-items: center;
  transition: transform .18s ease, background .18s ease, opacity .18s ease;
  outline: none; cursor: pointer;
}
.play-btn:hover{
  transform: translate(-50%,-50%) scale(1.04);
  background: rgba(255,255,255,0.86);
}
.play-triangle{
  width: 0; height: 0;
  border-left: 40px solid #1b1b1b;
  border-top: 26px solid transparent;
  border-bottom: 26px solid transparent;
  margin-left: 6px;
}
@media (max-width: 720px){
  .play-btn{ width: 120px; height: 120px; }
  .play-triangle{ border-left-width: 30px; border-top-width: 20px; border-bottom-width: 20px; }
}
@media (max-width: 460px){
  .play-btn{ width: 98px; height: 98px; }
  .play-triangle{ border-left-width: 24px; border-top-width: 16px; border-bottom-width: 16px; }
}
/* ======================= inspire SECTION ======================= */


.global-inspire {
  max-width: 100%;
  margin: 0 auto;
  padding-top:30px;
  padding-bottom:30px;
 padding-left: var(--xpad);
  padding-right: var(--xpad);
  background: #f2f2f2;
}

/* Title */
.global-inspire-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: #000;
  margin-bottom: 40px;
}

.global-inspire-title span {
  font-weight: 400;
}

/* Grid */
.global-inspire-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
 padding-bottom: 40px;
}

.global-inspire-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

 .global-inspire-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
} 

.global-inspire-item:hover img {
  transform: scale(1.05);
}

/* Overlay */
.global-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.20);
  transition: background 0.3s ease;
}

.global-inspire-item:hover .global-overlay {
  background: rgba(0, 0, 0, 0.35);
}

/* ✅ Fixed Play Icon */
.global-play-icon {
  width: 90px;
  height: 90px;
  opacity: 0.65;
  object-fit: contain;
  transition: transform 0.5s ease, opacity 0.5s ease;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}

.global-inspire-item:hover .global-play-icon {
  transform: scale(1.1);
  opacity: 1;
}

/* ✅ Label */
.global-inspire-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.global-inspire-banner {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 40px;
}

.global-banner-bg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.global-banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* makes video fill area like background */
  display: none; /* hidden until play clicked */
  border-radius: 10px;
}

.banner-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%);
  cursor: pointer;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.banner-play-icon:hover {
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 1;
}



/* ✅ Responsive Fixes */
@media (max-width: 900px) {
  .global-inspire-grid {
    grid-template-columns: 1fr;
  }

  .global-play-icon {
    width: 70px;
    height: 70px;
  }

  .global-inspire-label {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .global-inspire-title {
    font-size: 28px;
  }

  .global-play-icon {
    width: 55px;
    height: 55px;
  }

  .global-banner-content p {
    font-size: 16px;
  }

  .global-banner-content h3 {
    font-size: 18px;
  }
}

/* ======================= INSTAGRAM ======================= */
.insta-section{
  max-width: 100%;
  margin: 36px auto 48px;
  padding-left: var(--xpad);
  padding-right: var(--xpad);
  font-family: 'Inter', sans-serif;
}
.insta-bar{
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.insta-bar h2{
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #222;
}
.insta-bar hr{
  height: 2px; border: 0; background: #007079; opacity: .95;
}
.ig-grid{
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 26px; grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px){ .ig-grid{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px){ .ig-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .ig-grid{ grid-template-columns: 1fr; } }
.ig-card{
  display: block; background: #fff; border-radius: 8px; padding: 10px;
  box-shadow: 0 10px 26px rgba(0,0,0,.18), 0 2px 6px rgba(0,0,0,.08);
  transition: transform .15s ease, box-shadow .15s ease;
}
.ig-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.20), 0 3px 8px rgba(0,0,0,.10);
}
.ig-frame{
  position: relative; border-radius: 10px; overflow: hidden;
}
.ig-frame img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.ig-frame::after{
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.65); pointer-events: none;
}

/* ======================= YOUTUBE VIDEOS ======================= */
.videos-section{
  max-width: 100%;
  margin: 36px auto 48px;
  padding-left: var(--xpad);
  padding-right: var(--xpad);
  font-family: 'Inter', sans-serif;
}
.videos-bar{
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.videos-bar h2{
  margin: 0; font-size: 24px; font-weight: 600; color: #222;
}
.videos-bar hr{ border: 0; height: 2px; background: #007079; opacity: .95; }
.videos-grid{
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 28px; grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px){ .videos-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px){ .videos-grid{ grid-template-columns: 1fr; } }
.v-card{ display: block; background: #fff; border-radius: 2px; }
.v-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.20), 0 3px 8px rgba(0,0,0,.10);
}
.v-thumb{
  position: relative; border-radius: 8px; overflow: hidden;
  aspect-ratio: 16 / 9; background: #111; box-shadow: inset 0 0 0 1px rgba(0,0,0,.15);
}
.v-card.accent .v-thumb::after{
  content:""; position:absolute; inset:0; box-shadow: inset 0 0 0 3px #10a5bd; pointer-events:none;
}
.v-thumb img{ width: 100%; height: 100%; object-fit: cover; display:block; }
.v-thumb .yt-icon{
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: clamp(56px, 12vw, 96px); height: auto; pointer-events: none;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.4));
}

/* ======================= GENERIC SECTION ======================= */
.section {
  max-width: 100%;
  margin: 0 auto;
   padding-left: var(--xpad);
  padding-right: var(--xpad);
  padding-top: 60px;
  padding-bottom: 60px;
  background: white;
}
/* Section explore *=============================================/
.section {
  max-width: 100%;
  margin: 0 auto;
  padding-left: var(--xpad);
  padding-right: var(--xpad);
  padding-top: 60px;
  padding-bottom: 60px;
  background: white;
}

/* Title */
.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #000;
}

/* Grid base */
.explore-grid {
  display: grid;
  gap: 50px;
}

/* Force 2x2 layout for 4 items */
.explore-grid.four-items {
  grid-template-columns: repeat(4, 1fr);

}

/* Force 3 top + 2 bottom layout for 5 items */
.explore-grid.five-items {
  grid-template-columns: repeat(3, 1fr);
  padding-left: 50px;
  padding-right: 50px;
}

/* Each item */
.explore-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* .explore-item:hover {
  transform: scale(1.03);
} */

.explore-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* Label text */
.explore-label {
  position: absolute;
  left: 0;
  right: 0;         /* makes element full width of parent */
  bottom: 15px;
  display: block;   /* allow padding & full width behavior */
  text-align: center;
  padding: 0 20px;
  z-index: 10;      /* bring above other content if needed */
  color: white;
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 2px 5px rgba(0,0,0,0.6);
}

/* Yellow border style for 2nd section */
.yellow-border {
  border: 2px solid #f0c63d;
  border-radius: 8px;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .explore-grid.five-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .explore-grid.four-items,
  .explore-grid.five-items {
    grid-template-columns: 1fr;
     padding-left: 5px;
  padding-right: 5px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .explore-label {
    font-size: 1.2rem;
  }
  
}

/* ======================= CONTACT SECTION ======================= */
.contact-section {
 
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start;
  padding-top: 20px;
}
.visit-us { flex: 1 1 48%;}
.visit-us h3 { font-size: 20px; font-weight: 600; margin-bottom: 15px; }

.map-wrapper { position: relative; width: 100%; margin: 0 auto; align-items: left; }
.map-container iframe {
  width: 450px;
  height: 300px;
  border: none;
  border-radius: 15px;
}
.map-overlay {
  position: absolute; top: 50%; right: 25%;
  transform: translateY(-50%); width: 280px;
}
.map-wrapper:hover .map-overlay img  {
  transform: scale(1.03);
}
.map-wrapperone:hover .map-overlayone img  {
  transform: scale(1.03);
}
.map-overlay img { width: 100%; display: block; border-radius: 5px; }
.address-container { display: flex; align-items: flex-start; gap: 15px; margin-top: 20px; }
.address-container img { width: 59px; height:59px; }
.address-text{ margin-top:5px; }
.address-text p { font-size: 15px; line-height: 1.4; color: #000; margin: 0; }
.map-wrapperone { position: relative; width: 100%; margin: 0 auto; align-items: left; }
.map-containerone iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 15px;
}
.map-overlayone {
  position: absolute; top: 80%; left: 5%;
  transform: translateY(-50%); width: 280px;
}
.map-overlayone img { width: 100%; display: block; border-radius: 5px; }

.address-containerone { display: flex; align-items: flex-start; gap: 15px; margin-top: 20px; margin-left:30%; }
.address-containerone img { width: 59px; height:59px; }
.address-textone{ margin-top:5px; }
.address-textone p { font-size: 15px; line-height: 1.4; color: #000; margin: 0; }

.call-btn {
  margin-top: 57px;
  padding: 10px 20px;
  border: 1px solid black;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  display: flex; align-items: center; gap: 8px;
}
.call-btn .circle {
  background: orange; color: white; border-radius: 50%;
  width: 20px; height: 20px; display: inline-flex; justify-content: center; align-items: center; font-size: 12px;
}
.call-btn:hover {
  transform: translateY(-6px) scale(1.07);
  box-shadow: 0 12px 24px rgba(0,0,0,0.25), 0 1.5px 4px rgba(0,0,0,0.18);
  transition: color 0.3s, border-color 0.3s, transform 0.5s, box-shadow 0.3s;
}

.form-container { flex: 1 1 48%; padding: 30px 0 50px 0; }
.form-container h2 { font-size: 32px; font-weight: 400; margin-bottom: 20px; }
.form-container h3 { font-size: 24px; font-weight: 600; margin-bottom: 20px; }
.form-group { margin-bottom: 15px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 12px; font-size: 14px; border: none; border-radius: 4px; background: #F2F2F7;
}
.form-group textarea { resize: vertical; height: 100px; }

.disclaimer {
  display: flex; align-items: flex-start; gap: 10px; margin: 20px 0; font-size: 18px; font-weight: 500;
  line-height: 1.4; color: #000;
}
.disclaimer input[type="checkbox"]{
  width: 50px; height: 21px; margin-top: 2px; border: 1px solid #ccc;
  appearance: none; -webkit-appearance: none; outline: none; background: #fff; border-radius: 3px; cursor: pointer; position: relative;
}
.disclaimer input[type="checkbox"]:checked::after{
  content: ''; position: absolute; top: 4px; left: 6px; width: 6px; height: 10px;
  border: solid black; border-width: 0 2px 2px 0; transform: rotate(45deg);
}

.form-actions { margin-top: 10px; }
.submit-btn {
  background: #aaa; color: white; padding: 12px 30px; border: none; font-size: 14px; cursor: pointer; border-radius: 4px; width: 100%;
}
.submit-btn:hover{
  color: #fff; transform: translateY(-6px) scale(1.05);
  box-shadow: 0 12px 24px rgba(0,0,0,0.25), 0 1.5px 4px rgba(0,0,0,0.18);
  transition: color 0.3s, transform 0.5s, box-shadow 0.3s;
}
.thank-you-box{
  display: none; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: white; border-radius: 12px; padding: 30px 50px; text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2); font-size: 16px; z-index: 9999;
}
.thank-you-box h2{ font-weight: 500; margin-bottom: 10px; font-size: 24px; }
.thank-you-box::after{ content: ''; display: block; margin: 20px auto 0; width: 60px; height: 2px; background: #00a1df; }
.global-play-icon{
  width: 150px;
  height: 150px;
  opacity: 0.65;
  object-fit: contain;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.global-play-icon a {
  width:150px;
  height:150px;
}
/* Contact responsive */
@media (max-width: 992px) {
  .section { padding-left: var(--xpad); padding-right: var(--xpad);}
  .contact-section { flex-direction: column; padding-left: var(--xpad); padding-right: var(--xpad); }
  .visit-us { flex: 1 1 100%; border-right: none; margin-bottom: 30px; }
  .form-container { flex: 1 1 100%; padding: 20px 0; }
  .map-container iframe { width: 100%; height: 250px; }
  .map-overlay { position: absolute; top: 50%; right: 2%; width: 150px; transform: translateY(-50%); }
  .address-container { margin-top: 15px; }
  .address-container img { width: 35px; height: 35px; }
  .address-text p { font-size: 14px; }
  .call-btn { width: 100%; justify-content: center; }
  .form-container h2, .form-container h3 { font-size: 20px; text-align: center; }
  .disclaimer { font-size: 14px; flex-direction: row; align-items: flex-start; }
  .disclaimer input[type="checkbox"] { width: 50px; height: 20px; }
  .submit-btn { padding: 12px; font-size: 16px; }
}
@media (max-width: 576px) {
  .map-overlay { display: none; }
  .address-container img { width: 30px; height: 30px; }
  .form-container { padding: 15px 0; }
  .form-group input, .form-group textarea { padding: 10px; font-size: 14px; }
  .disclaimer { font-size: 13px; }
  .submit-btn { font-size: 14px; }
}
@media (max-width: 576px) { 
  .section { padding-left: var(--xpad); padding-right: var(--xpad); }
.address-containerone { margin-top:20%; margin-left:0; }
.global-play-icon{
  width: 50px;
  height: 50px;
  opacity: 0.65;
  object-fit: contain;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
}

/* ======================= FIXED HEADER + HERO ======================= */
.header {
  display: flex; align-items: center; padding: 20px 0;
  position: fixed; top:0; z-index: 10; width:100%; background-color: white;
  padding-left: var(--xpad); padding-right: var(--xpad);
}
.logo { width: 10rem; height: auto; margin-left: 0; background-color:white; }

.hero {
  position: relative; width: 100%; height: 809px; overflow: hidden; background: black;
}
.video-wrapper {
  position: absolute; top: 3rem; left: 0; width: 100%; height: 100%;
  z-index: 0; opacity: 0; pointer-events: none; transition: opacity 0.5s ease-in-out; overflow: hidden;
}
.video-wrapper iframe {
  position: absolute; top: 50%; left: 50%; width: 110%; height: 110%;
  min-width: 110%; min-height: 110%; pointer-events: none; border: none;
  transform: translate(-50%, -50%); object-fit: cover;
}
.hero-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.overlayt {
  position: absolute; bottom: 50px; width: 100%; text-align: center; color: white; z-index: 2; transition: opacity 0.5s ease;
}
.overlayt h1 { font-size: 150px; font-weight: 250; }
.overlayt p {
  font-size: 36px; font-weight: 300; margin-top: 10px;
  padding-left: 10%; padding-right: 10%;
}

/* Hero responsive */
@media (max-width: 1200px){
  .overlayt h1 { font-size: 100px; }
  .overlayt p { padding-left: 8%; padding-right: 8%; font-size: 18px; }
}
@media (max-width: 992px){
  .logo { width: 180px; }
  .overlayt h1 { font-size: 80px; }
  .overlayt p { padding-left: 6%; padding-right: 6%; font-size: 16px; }
  .hero { height: 600px; position: relative; }
  .video-wrapper  { display: block; position: absolute; top: 1.2rem; left: 0; width: 100%; height: 100%;
    z-index: 0; opacity: 1; pointer-events: none; transition: opacity 0.5s ease-in-out; overflow: hidden; }
}
/* Logo simplified for mobile */
@media (max-width: 768px){
  .header { padding: 10px 0; justify-content: flex-start; }
  .logo { width: 150px; height: auto; margin-left: 0; }
  .hero { height: 400px; position: relative; }
  .video-wrapper  { display: block; position: absolute; top: 1.2rem; left: 0; width: 100%; height: 100%;
    z-index: 0; opacity: 1; pointer-events: none; transition: opacity 0.5s ease-in-out; overflow: hidden; }
  .hero-image { display: block; width: 100%; height: 100%; position: relative; object-fit: cover; }
  .overlayt { position: absolute; bottom: 20px; width: 100%; text-align: center; color: white; z-index: 2; padding: 10px; }
  .overlayt h1 { font-size: 28px; font-weight: 300; margin-bottom: 10px; }
  .overlayt p { font-size: 14px; font-weight: 300; padding-left: 5%; padding-right: 5%; }
}
@media (max-width: 600px){
  .hero { height: 265px; }
  .video-wrapper  {
    display: block; position: absolute; top: 1.2rem; left: 0; width: 100%; height: 100%;
    z-index: 0; opacity: 1; pointer-events: none; transition: opacity 0.5s ease-in-out; overflow: hidden; object-fit: cover;
  }
}
@media (min-width: 770px) and (max-width: 1024px){
  .hero { height: 550px; position: relative; }
  .video-wrapper  {
    display: block; position: absolute; top: 1.4rem; left: 0; width: 100%; height: 100%;
    z-index: 0; opacity: 1; pointer-events: none; transition: opacity 0.5s ease-in-out; overflow: hidden;
  }
}
@media (min-width: 1900px){
  .hero { height: 70vh; min-height: 809px; }
  .video-wrapper { position: absolute; top: 3rem; left: 0; width: 100%; height: 100%; z-index: 0; opacity: 0; pointer-events: none; transition: opacity .5s; overflow: hidden; }
  .video-wrapper iframe {
    position: absolute; top: 50%; left: 50%;
    width: 100%; height: 100vh; min-width: 100vw; min-height: 56.25vw; pointer-events: none; border: none; transform: translate(-50%, -50%);
  }
}
@media (min-width: 2560px){
  .video-wrapper iframe { width: 100%; height: 56.25vw; min-width: 100vw; min-height: 56.25vw; }
  .hero { height: 90vh; }
  .video-wrapper iframe { width: 177.78vh; height: 100vh; min-width: 177.78vh; min-height: 100vh; }
}

/* ======================= SOLUTION SECTION ======================= */
.solution-section { display: flex; justify-content: center; flex-wrap: wrap; }
.solution-box {
  position: relative;
  padding-left:5%; padding-right:5%;
  flex: 1 1 45%;
  overflow: hidden;
  cursor: pointer;
}
.solution-box img { width: 100%; height: auto; display: block; filter: grayscale(100%); transition: filter 0.5s ease; }
.overlay { position: absolute; bottom: 30px; left: 20px; right: 20px; color: white; text-align: center; transition: all 0.5s; }
.overlay h3 {
  font-size: 32px; font-weight: 400; letter-spacing: 16px; margin: 0 0 0 0;
  transform: translateY(0); transition: transform .5s, margin-bottom .5s;
}
.overlay p { opacity: 0; transform: translateY(20px); transition: all .5s; margin-top: 10px; width: 80%; margin: 0 auto; }
.overlay a { display: inline-flex; align-items: center; gap: 8px; margin-top: 15px; color: white; text-decoration: none; font-size: 15px; width: fit-content; }
.overlay a .circle {
  background: orange; color: white; border-radius: 50%; width: 20px; height: 20px; display: inline-flex; justify-content: center; align-items: center; font-size: 12px;
}
.solution-box:hover img { filter: grayscale(0%); }
.solution-box:hover .overlay h3 { transform: translateY(-20px); margin-bottom: 10px; }
.solution-box:hover .overlay p, .solution-box:hover .overlay a { opacity: 1; transform: translateY(0); }

@media (max-width: 992px){
  .solution-section { flex-direction: column; align-items: center; padding: 0 var(--xpad); }
  .solution-box { flex: 1 1 100%; padding: 0; margin-bottom: 30px; border-right: none !important; }
  .solution-box img { width: 100%; height: auto; filter: grayscale(0%); }
  .overlay { position: Absolute; padding: 15px; color: white; text-align: center; margin-top: -5px; }
  .overlay h3 { font-size: 24px; letter-spacing: 4px; transform: translateY(0); margin-bottom: 10px; }
  .overlay p { opacity: 1; transform: translateY(0); margin: 10px 0; font-size: 14px; }
  .overlay a { opacity: 1; transform: translateY(0); display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; color: white; text-decoration: none; font-size: 14px; }
}
@media (max-width: 576px){
  .overlay h3 { font-size: 20px; letter-spacing: 2px; }
  .overlay p { font-size: 13px; }
  .overlay a { font-size: 13px; }
}

/* ======================= CATALOGUE SECTION ======================= */
.catalogue-section {
  margin-top:50px;
  display: flex; align-items: center; justify-content: flex-start;
  position: relative; padding: 40px 0;
  padding-left: var(--xpad); padding-right: var(--xpad);
}
.catalogue-left {
  padding-left:10%; padding-right:10%;
  position: relative; z-index: 2;
  margin-right: -20%; /* slight overlap but % based */
}
.catalogue-left img {
  height: 400px; object-fit: contain; display: block;
}
.catalogue-right {
  flex: 1; background: #f5f5f5; align-items: center;
  padding-left:18%; padding-right:8%; padding-top:40px; padding-bottom:40px; z-index: 1;
}
.catalogue-right hr{ width:100%; }
.catalogue-content h3 { font-size: 30px; margin-bottom: 15px; font-weight: 300; }
.catalogue-content p {
  font-size: 14px; padding-right:5%; font-weight: 400; line-height: 1.4; margin-bottom: 20px; width:100%;
}
.catalogue-content a { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-size:16px; color: black; font-weight: 400; }
.catalogue-content .circle {
  background: orange; color: white; border-radius: 50%; width: 20px; height: 20px; display: inline-flex; justify-content: center; align-items: center; font-size: 12px;
}
@media (max-width: 768px){
  .catalogue-section { flex-direction: column; align-items: center; padding: 30px 0; }
  .catalogue-left { margin: 0; padding: 30px 0; order: 2; display: flex; justify-content: center; margin-top: 20px; }
  .catalogue-left img { margin-top:-120px; width:100%; height: 250px; transform: rotate(-8deg); }
  .catalogue-right { background: #f5f5f5; width: 100%; padding: 30px var(--xpad); text-align: center; padding-bottom: 70px; }
  .catalogue-content h3 { font-size: 28px; }
  .catalogue-content p { font-size: 16px; padding: 0; margin-top: 15px; }
  .catalogue-content a { font-size: 14px; justify-content: center; margin-top: 15px; }
}

/* ======================= FOOTER ======================= */
.footer { width: 100%; margin: 0; padding: 0; border-top: 1px solid #ccc; color: #333; }
.cols{ padding-left: var(--xpad); padding-right: var(--xpad); }

.section_title_2025 {
  margin-left: 0; font-size: 40px; font-weight: 300; color: #777; margin-bottom: 10px;
}
.section_title_2025:hover{ color: rgb(78, 78, 124); }
.section_title_2025 a { color: inherit; text-decoration: none; }
.underline { width: 200px; height: 1px; background-color: rgb(99, 148, 120); margin-bottom: 20px; }
.catalogue-text { color: #333; font-size: 24px; margin-bottom: 20px; }
.link_2025 { display: inline-block; padding: 10px 20px; color: #777; text-decoration: none; font-weight: 500; transition: background-color 0.3s ease; font-size: 16px; }
.link_2025:hover { color: rgb(105, 182, 105); text-decoration: underline; }

@media (max-width: 991px){
  html, body { padding: 0; margin: 0; overflow-x: hidden; }
  .section_title_2025, .underline, .catalogue-text, .link_2025 { margin-left: 0 !important; margin-top: -10px; }
  .underline { margin: 10px auto; width: 20%; }
  .link_2025 { margin-left: -10px; }
  .catalogue-content-col { padding-top: 10px; margin-left: -10px; }
  .section_title_2025{ font-size: 20px; }
  .catalogue-text{ font-size: 14px; }
}

/* site footer blocks */
.site-footer {
  background-color: rgba(217, 217, 217, 1);
  font-family: 'Inter', sans-serif;
  color: #777;
}
.container-fluid { display: flex; flex-wrap: wrap; justify-content: space-between; }
.rowg { width: 100%; display: flex; flex-wrap: wrap; }
.cols { flex: 1 1 100%; padding-top: 25px; padding-bottom: 25px; }
.col-md-3 { flex: 1 1 25%; }

.footer-menu-title {
  letter-spacing: 1.05px; font-weight: 300; font-size: 18px; margin-bottom: 20px; position: relative; color: #333; line-height: 2.7; font-family: 'Inter',sans-serif;
}
.footer-menu-title::after { content: ""; display: block; width: 30px; border-bottom: 1px solid #333333; margin-top: 5px; }
.footermenulist ul { list-style: none; padding-left: 0; margin: 0; }
.footermenulist ul li { margin: 0px 0px 13px; }
.footermenulist ul li a {
  position: relative; color: #333; text-decoration: none; transition: color 0.3s ease;
  font-size: 16px; font-weight: 300;
}
.footermenulist ul li a:hover { color: rgb(0, 115, 128); }
.follow .footer-menu-title { margin-top: 20px; }
.footermenulist ul li a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 35%;
  height: 1px; background-color:rgb(0, 115, 128); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.footermenulist ul li a:hover::after { transform: scaleX(1); }

.footer-column ul li a { position: relative; color: #777; text-decoration: none; transition: color 0.3s ease; }
.footer-column ul li a:visited { color: #777; }
.footer-column ul li a:hover { color: rgb(144, 205, 170); }

.box1 { background-color: rgba(238, 238, 238, 1); }
.box2 { background-color: rgba(229, 229, 229, 1); }
.box3 { background-color: rgba(238, 238, 238, 1); }
.box4 { background-color: rgba(229, 229, 229, 1); }
.follow { margin-top: 50px; }
.follow-title {
  font-size: 18px; font-weight: 350; margin-bottom: 10px; border-bottom: 1px solid #333;
  padding-bottom: 5px; display: inline-block; color: #333;
}
.social-icons { list-style: none; display: flex; gap: 10px; margin-top: 10px; padding-left: 0; }
.social-icons a::after { display: none; }
.social-icons li { margin: 0; padding: 0; }
.social-icons img { width: 23px; height: 22px; cursor: pointer; transition: transform 0.3s ease; }
.social-icons img:hover {
  transform: scale(1.1); transition: transform 0.3s ease;
  filter: brightness(0) saturate(100%) invert(18%) sepia(45%) saturate(1200%) hue-rotate(160deg) brightness(95%);
}
.footer-bottom {
  font-family: 'Inter',sans-serif; text-align: center; padding: 15px 0;
  font-size: 14px; color: #777; line-height:30px; font-weight: 300;
}
.footer-bottom a { color: #444; text-decoration: none; transition: color 0.3s ease; }
.footer-bottom a:hover{ color: rgb(0, 115, 128); }
.box4 a { text-decoration: none; color: inherit; }

@media (max-width: 767px){
  .site-footer { padding-left: 0 !important; padding-right: 0 !important; }
  .footermenu-dropdown .footermenulist { display: none; }
  .footermenu-dropdown.active .footermenulist { display: block; }
  .footer-menu-title { cursor: pointer; position: relative; padding-right: 25px; }
  html, body { padding: 0 !important; margin: 0 !important; overflow-x: hidden !important; }
  .site-footer { position: relative; left: 0; right: 0; width: 100vw !important; margin: 0 !important; padding: 0 !important; box-sizing: border-box; }
  .site-footer > .container-fluid { padding: 0 !important; margin: 0 !important; width: 100% !important; }
  .site-footer .row { margin: 0 !important; padding: 0 !important; }
  .site-footer .cols { padding-left: var(--xpad); padding-right: var(--xpad); }
  .footer-menu-title{ font-size: 13px; }
  .footermenulist ul li a { font-size: 11px; }
  .footer-menu-title::after {
    content: '▼'; width: auto; display: inline-block; position: absolute; right: 10px; top: 0;
    transform: rotate(0deg); font-size: 16px; transition: transform 0.3s ease; border-bottom: none !important;
  }
  .footermenu-dropdown.active .footer-menu-title::after { transform: rotate(180deg); }
  .cols { flex: 1 1 100%; padding: 10px var(--xpad); }
  .container-fluid { flex-direction: column; }
  .follow { margin-top: 20px; }
  .footer-bottom{ font-size: 16px; }
}

/* ======================= ERRORS ======================= */
.error-message { color: red; font-size: 12px; display: block; margin-top: 5px; }
.error-modal {
  display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.5);
}
.error-modal-content {
  background-color: #fefefe; margin: 15% auto; padding: 20px; border: 1px solid #888; border-radius: 10px; width: 300px; text-align: center;
}
.error-ok-btn { background-color: #ff6b6b; color: white; padding: 10px 20px; border: none; border-radius: 5px; cursor: pointer; margin-top: 15px; }
.error-ok-btn:hover { background-color: #ff5252; }





.mauticform-name { font-weight: bold; font-size: 1.5em; margin-bottom: 3px; }
.mauticform-description { margin-top: 2px; margin-bottom: 10px; }
.mauticform-error { margin-bottom: 10px; color: red; }
.mauticform-message { margin-bottom: 10px;color: green; }
.mauticform-row { display: block; margin-bottom: 14px; position: relative; }
.mauticform-label { font-size:14px; display: block; font-weight: normal; margin-bottom: 5px; }
.mauticform-row.mauticform-required .mauticform-label:after { color: #e32; content: " *"; display: inline; }
.mauticform-helpmessage { display: block; font-size:16px; margin-bottom: 3px; }
.mauticform-errormsg { position: absolute;  left: 0;  top: 100%;  background-color: #FFFFFF;  border-radius: 5px;  font-size: 12px;  z-index: 1;  line-height: 100%; padding: 10px 10px 10px 10px;    color: red;    display: block;}
.mauticform-errormsg::before {content: "";  position: absolute;  left: 10px;  top: -7px;  display: block;  width: 0;  height: 0;  border-left: 7px solid transparent; border-right: 7px solid transparent;   border-bottom: 7px solid #FFFFFF;}
.mauticform-selectbox, .mauticform-input, .mauticform-textarea { width: 100%; padding:12px 15px; border: 0px solid #CCC; background: #eee; border-radius: 3px; box-sizing: border-box; font-size: 14px; outline: none;}
.mauticform-selectbox{background-position: right 10px center;}
.mauticform-checkboxgrp-label { font-weight: normal; font-size: 12px;}
.mauticform-radiogrp-label { font-weight: normal; }
.mauticform-button-wrapper .mauticform-button.btn-default, .mauticform-pagebreak-wrapper .mauticform-pagebreak.btn-default { color: #5d6c7c;background-color: #ffffff;border-color: #dddddd;}
.mauticform-button-wrapper .mauticform-button, .mauticform-pagebreak-wrapper .mauticform-pagebreak { display: inline-block;margin-bottom: 0;font-weight: 600;text-align: center;vertical-align: middle;cursor: pointer;background-image: none;border: 1px solid transparent;white-space: nowrap;padding: 6px 12px;font-size: 13px;line-height: 1.3856;border-radius: 3px;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;}
.mauticform-button-wrapper .mauticform-button.btn-default[disabled], .mauticform-pagebreak-wrapper .mauticform-pagebreak.btn-default[disabled] { background-color: #ffffff; border-color: #dddddd; opacity: 0.75; cursor: not-allowed; }
.mauticform-pagebreak-wrapper .mauticform-button-wrapper {  display: inline; }
.mauticform-field-hidden { display:none }
.lp-form .mauticform-checkboxgrp-row .mauticform-checkboxgrp-checkbox{margin-top: 5px;}
.lp-form .mauticform-checkboxgrp-row{display: flex; align-items: flex-start;  gap: 10px;}
.lp-form .mauticform-button-wrapper .mauticform-button{width: 100%;  height: 44px;  border: none;  border-radius: 3px;  background-color: #333;  color: #fff;  font-size: 16px;  cursor: pointer; font-weight: normal;}
.lp-form .mauticform-button-wrapper .mauticform-button:hover { background-color: #444;}
