body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin: 0;
  background: #fff;
  color: #01262a;
}

.sub-header {
  background: #f0d2b4;
  color: #01262a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5em 2em;
  font-size: 0.95em;
}
.news-ticker {
  overflow: hidden;
  white-space: nowrap;
  width: 60%;
}
#news-text {
  display: inline-block;
  animation: ticker 15s linear infinite;
}
@keyframes ticker {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
.sub-header-actions a {
  margin-left: 1em;
  text-decoration: none;
  color: #ffffff;
  font-size: 1.1em;
}
.callback-btn {
  background: #1a73e8;
  color: #f0d2b4;
  padding: 0.1em 1em;
  border-radius: 20px;
  font-size: 1em;
  transition: background 0.2s;
}
.callback-btn:hover {
  background: #f0d2b4;
  color: #01262a;
  border: 1px solid #01262a;
}
.whatsapp-btn {
  background: #00BE22;
  color: #f0d2b4;
  padding: 0.1em 1em;
  border-radius: 20px;
  font-size: 1em;
  transition: background 0.2s;
}
.whatsapp-btn:hover {
  background: #f0d2b4;
  color: #01262a;
  border: 1px solid #01262a;
}

.main-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #01262a;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 7em;
}
.header-hidden {
  transform: translateY(-100%);
}
.logo img {
  height: 78px;
}
.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.nav-menu li {
  margin-left: 2em;
}
.nav-menu a {
  color: #f0d2b4;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: color 0.2s;
}
.nav-menu a:hover {
  color: #fff;
}

.banner {
  background: url('../images/enzo_banner.webp') center/cover no-repeat;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: left;
  position: relative;
}
.banner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  /* background: rgba(1,38,42,0.55); */
  z-index: 1;
}
.banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
.banner-content.two-column {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3em;
  background: none;
  border-radius: 0;
  padding: 3em 2em;
}
.banner-text {
  flex: 1 1 55%;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.banner-small-head {
  display: block;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1em;
  color: #fff;
  opacity: 0.85;
}
.banner-text h1 {
  font-size: 42px;
  font-weight: 600;
  margin: 0 0 0.5em -54px;
  line-height: 1.4;
  color: #01262a;
}
.banner-text p {
  font-size: 1.15em;
  margin-bottom: 2em;
  color: #fff;
  opacity: 0.95;
}
.banner-buttons {
  display: flex;
  gap: 1em;
}
.banner-btn {
  display: inline-block;
  padding: 0.8em 2em;
  border-radius: 4px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.banner-btn.primary {
  background: #f0d2b4;
  color: #01262a;
  border: none;
}
.banner-btn.primary:hover {
  background: #fff;
  color: #01262a;
}
.banner-btn.secondary {
  background: #fff;
  color: #01262a;
  border: 1px solid #f0d2b4;
}
.banner-btn.secondary:hover {
  background: #f0d2b4;
  color: #01262a;
}
.quote-form {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 1em;
  background: rgba(1,38,42,0.80);
  padding: 0 1.5em 1.5em 1.5em;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  color: #fff;
  min-width: 340px;
  max-width: 400px;
}
.form-title {
  color: #fff;
  font-size: 1.6em;
  font-weight: 700;
  margin-bottom: 1em;
  text-align: left;
  letter-spacing: 1px;
}
.quote-form input,
.quote-form textarea {
  padding: 1em;
  border: none;
  border-radius: 6px;
  font-size: 1em;
  background: rgba(255,255,255,0.95);
  color: #01262a;
  margin-bottom: 0.2em;
  font-family: inherit;
}
.quote-form input::placeholder,
.quote-form textarea::placeholder {
  font-family: inherit;
  color: #888;
  opacity: 1;
}
.quote-form button {
  background: #f0d2b4;
  color: #01262a;
  border: none;
  padding: 0.9em;
  border-radius: 6px;
  font-size: 1.1em;
  font-weight: 700;
  cursor: pointer;
  margin-top: 0.5em;
  transition: background 0.2s, color 0.2s;
}
.quote-form button:hover {
  background: #fff;
  color: #01262a;
}

.intro {
  background: #f9f9f9;
  padding: 3em 2em;
}
.intro-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3em;
  max-width: 1200px;
  margin: 0 auto;
}
.intro-text {
  flex: 1 1 55%;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1.5;
}
.intro-text h2 {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 1em;
}
.intro-images {
  flex: 1 1 45%;
  position: relative;
  min-width: 320px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  height: 320px;
}

.intro-image-main {
  position: relative;
  z-index: 2;
  width: 253px;
  height: 223px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 6px solid #fff;
  transform: translateX(41px) translateY(101px);
}
.intro-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}
.intro-image-overlap {
  position: absolute;
  left: 40px;
  bottom: -66px;
  z-index: 3;
  width: 374px;
  height: 442px;
  overflow: hidden;
  background: #fff;
  /* border: 4px solid #f0d2b4; */
  /* transform: rotate(-7deg); */
}
.intro-image-overlap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* border-radius: 14px; */
}

.products {
  padding: 0 2em;
  background: #fff;
  text-align: center;
}
.products h2{
  font-size: 2em;
    font-weight: 700;
    margin-bottom: 1em;
}
.product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5em;
  margin-top: 2em;
}
.product-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  overflow: hidden;
  width: 370px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.product-card:hover {
  box-shadow: 0 8px 32px rgba(1,38,42,0.13);
  transform: translateY(-6px) scale(1.03);
}
.product-image {
  position: relative;
  width: 100%;
  height: 270px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.product-card:hover .product-image img {
  transform: scale(1.05);
}
.product-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(1,38,42,0.82);
  color: #fff;
  padding: 1.2em 1em 1em 1em;
  text-align: left;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  transition: background 0.2s;
}
.product-overlay h3 {
  margin: 0 0 0.3em 0;
  font-size: 1.4em;
  font-weight: 700;
  letter-spacing: 1px;
}
.product-short {
  margin: 0;
  font-size: 1em;
  opacity: 0.92;
}
.product-desc {
  padding: 1.5em 1.2em 1.2em 1.2em;
  font-size: 1em;
  color: #01262a;
  text-align: left;
  background: #fff;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  min-height: 120px;
}

.whychooseus-section {
  background: #f1eff0;
  width: 100%;
  padding: 0 0 0 0;
  margin-top: 38px;
}
.whychooseus-row {
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 420px;
}
.whychooseus-left {
  background: #23413d;
  color: #fff;
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 3em 2em 3em 3em;
  border-top-right-radius: 0.5em;
  border-bottom-right-radius: 0.5em;
}
.whychooseus-title {
  font-size: 2.8em;
  font-weight: 800;
  margin: 0 0 0.7em 0;
  text-align: left;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.whychooseus-subtitle {
  font-size: 1.2em;
  font-weight: 400;
  text-align: left;
  opacity: 0.85;
}
.whychooseus-right {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  padding: 2.5em 2em 2.5em 0;
}
.whychooseus-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.2em;
  list-style: none;
  margin: 0 0 0 -32px;
  padding: 0;
}
.whychooseus-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5em;
}
.whychooseus-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: #fff;
  font-size: 2em;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  border: 6px solid #fff;
  margin-top: 0.2em;
}
.whychooseus-content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.whychooseus-percent {
  font-size: 1.25em;
  font-weight: 700;
  color: #23413d;
  margin-bottom: 0;
    margin-top: 15px;
}
.whychooseus-desc {
  font-size: 1em;
  color: #444;
  opacity: 0.9;
}
@media (max-width: 900px) {
  .whychooseus-row {
    flex-direction: column;
    min-height: unset;
  }
  .whychooseus-left {
    border-radius: 0;
    align-items: flex-start;
    text-align: left;
    padding: 2em 1.5em 1em 1.5em;
  }
  .whychooseus-title, .whychooseus-subtitle {
    text-align: left;
  }
  .whychooseus-right {
    padding: 1.5em 1em 1.5em 1em;
  }
}
@media (max-width: 600px) {
  .whychooseus-title {
    font-size: 1.3em;
  }
  .whychooseus-circle {
    width: 40px;
    height: 40px;
    font-size: 1.1em;
    border-width: 3px;
  }
  .whychooseus-list {
    gap: 1.2em;
  }
  .whychooseus-item {
    gap: 0.7em;
  }
}

.gallery {
  padding: 3em 2em;
  background: #f9f9f9;
  text-align: center;
}
.gallery-grid {
  display: flex;
  flex-direction: row;
  gap: 1.5em;
  overflow-x: auto;
  padding-bottom: 0.5em;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.gallery-item {
  flex: 0 0 260px;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(1,38,42,0.07);
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
  background: #fff;
}
.gallery-item:hover {
  box-shadow: 0 6px 24px rgba(1,38,42,0.13);
  transform: scale(1.03);
}
.gallery-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  transition: transform 0.2s;
}
.gallery-item:hover .gallery-img {
  transform: scale(1.07);
}
.gallery-grid::-webkit-scrollbar {
  height: 10px;
}
.gallery-grid::-webkit-scrollbar-thumb {
  background: #f0d2b4;
  border-radius: 6px;
}
.gallery-grid::-webkit-scrollbar-track {
  background: #eee;
  border-radius: 6px;
}
@media (max-width: 700px) {
  .gallery-item {
    flex: 0 0 160px;
  }
  .gallery-img {
    height: 100px;
  }
}
.gallery-lightbox {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(1,38,42,0.92);
  transition: opacity 0.2s;
}
.gallery-lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 14px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
  background: #fff;
  display: block;
  margin: 0 auto;
}
.gallery-lightbox-close {
  position: absolute;
  top: 32px;
  right: 48px;
  font-size: 2.5em;
  color: #fff;
  cursor: pointer;
  z-index: 10001;
  font-weight: 700;
  transition: color 0.2s;
}
.gallery-lightbox-close:hover {
  color: #f0d2b4;
}
.gallery-lightbox-prev, .gallery-lightbox-next {
  position: absolute;
  top: 50%;
  font-size: 2.5em;
  color: #fff;
  cursor: pointer;
  z-index: 10001;
  font-weight: 700;
  user-select: none;
  padding: 0 0.2em;
  background: rgba(1,38,42,0.5);
  border-radius: 50%;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 0.2s, color 0.2s;
}
.gallery-lightbox-prev {
  left: 32px;
}
.gallery-lightbox-next {
  right: 32px;
}
.gallery-lightbox-prev:hover, .gallery-lightbox-next:hover {
  background: #f0d2b4;
  color: #01262a;
}
@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1em;
  }
  .gallery-img {
    height: 120px;
  }
  .gallery-lightbox-close {
    top: 16px;
    right: 16px;
    font-size: 2em;
  }
  .gallery-lightbox-prev, .gallery-lightbox-next {
    font-size: 2em;
    left: 12px;
    right: 12px;
  }
}

.site-footer {
  background: #01262a;
  color: #fff;
  padding: 2.5em 0 0 0;
  border-top: none;
  font-size: 1em;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2em;
  padding: 0 2em;
}
.footer-col {
  flex: 1 1 0;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7em;
}
.footer-title {
  font-size: 1.25em;
  font-weight: 700;
  margin-bottom: 0.7em;
  letter-spacing: 0.04em;
  color: #fff;
}
.footer-contact a {
  color: #f0d2b4;
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #ffffff;
}
.footer-brand {
  align-items: center;
  text-align: center;
  gap: 1em;
}
.footer-logo {
  height: 54px;
  margin-bottom: 0.5em;
}
.footer-desc {
  color: #e0e0e0;
  font-size: 1.08em;
  opacity: 0.95;
  margin-bottom: 0.5em;
}
.footer-location {
  align-items: flex-end;
  text-align: right;
}
.footer-location, .footer-location .footer-title {
  color: #fff;
}
.footer-map {
  margin-top: 0.5em;
  width: 100%;
  max-width: 240px;
}
.footer-map iframe {
  width: 100%;
  height: 120px;
  border-radius: 8px;
  border: 0;
}
.footer-bottom {
  border-top: 1px solid #2a3a3a;
  margin-top: 2em;
  padding: 1.2em 2em 0.7em 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.98em;
  color: #f0d2b4;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.footer-social {
  display: flex;
  gap: 1.2em;
}
.footer-social a {
  color: #f0d2b4;
  font-size: 1.3em;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: #fff;
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    align-items: stretch;
    gap: 2em;
    padding: 0 1em;
  }
  .footer-col, .footer-location {
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
  }
  .footer-map {
    max-width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.7em;
    padding: 1.2em 1em 0.7em 1em;
  }
}
@media (max-width: 600px) {
  .site-footer {
    padding: 1.2em 0 0 0;
  }
  .footer-title {
    font-size: 1.1em;
  }
  .footer-desc {
    font-size: 1em;
  }
  .footer-map iframe {
    height: 90px;
  }
}

.products-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5em;
  margin: 2.5em auto 0 auto;
  max-width: 1200px;
}
.product-img-large {
  flex: 0 0 340px;
  width: 340px;
  height: 340px;
  /* border-radius: 22px; */
  overflow: hidden;
  /* box-shadow: 0 4px 24px rgba(0,0,0,0.10); */
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-info {
  flex: 1 1 380px;
  min-width: 260px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2em;
}
.product-info h3 {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 1em;
  color: #01262a;
}
.product-info p {
  color: #01262a;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1.5;
}
.product-img-small {
  flex: 0 0 180px;
  width: 180px;
  height: 180px;
  /* border-radius: 18px; */
  overflow: hidden;
  position: relative;
  /* box-shadow: 0 4px 24px rgba(0,0,0,0.10); */
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-img-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(1,38,42,0.78);
  color: #fff;
  padding: 1.1em 1em 0.7em 1em;
  text-align: left;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}
.product-img-overlay h4 {
  margin: 0 0 0.3em 0;
  font-size: 1.1em;
  font-weight: 700;
  letter-spacing: 1px;
}
.product-img-overlay p {
  margin: 0;
  font-size: 0.98em;
  opacity: 0.92;
}

.products-row-reverse {
  flex-direction: row-reverse;
}
@media (max-width: 1100px) {
  .products-row-reverse {
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .main-header, .footer-content, .intro {
    flex-direction: column;
    align-items: flex-start;
    padding: 1em;
  }
  .product-list {
    flex-direction: column;
    align-items: center;
    gap: 2em;
  }
  .product-card {
    width: 95%;
    max-width: 400px;
  }
  .intro-content {
    flex-direction: column;
    gap: 2em;
    align-items: flex-start;
  }
  .intro-images {
    width: 100%;
    min-width: 0;
    height: 180px;
    justify-content: flex-start;
  }
  .intro-images::before {
    width: 160px;
    height: 120px;
    right: 0;
    bottom: 0;
  }
  .intro-image-main {
    width: 110px;
    height: 110px;
    border-radius: 12px;
    transform: translateX(20px) translateY(10px);
  }
  .intro-image-overlap {
    left: 0;
    bottom: 0px;
    width: 70px;
    height: 70px;
    border-radius: 12px;
  }
  .banner-content.two-column {
    flex-direction: column;
    padding: 1.5em 0.5em;
    gap: 2em;
  }
  .banner-text, .quote-form {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .quote-form {
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .banner {
    min-height: 50vh;
  }
  .banner-content.two-column {
    padding: 0.5em 0.2em;
    gap: 1em;
  }
  .banner-text h1 {
    font-size: 2em;
  }
  .form-title {
    font-size: 1.2em;
  }
  .quote-form {
    padding: 1em 0.5em;
  }
  .intro {
    padding: 1.2em 0.5em;
  }
  .intro-content {
    gap: 1em;
  }
  .intro-images {
    height: 90px;
  }
  .intro-images::before {
    width: 80px;
    height: 60px;
    right: 0;
    bottom: 0;
  }
  .intro-image-main {
    width: 55px;
    height: 55px;
    border-radius: 8px;
    transform: translateX(8px) translateY(4px);
  }
  .intro-image-overlap {
    left: 0;
    bottom: 12px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }
  .intro-text h2 {
    font-size: 1.5em;
  }
  .form-title {
    font-size: 1.2em;
  }
  .quote-form {
    padding: 1em 0.5em;
  }

  .footer-map iframe {
    max-width: 100%;
    height: 150px;
  }
  .product-img-large {
    width: 90vw;
    height: 90vw;
    max-width: 320px;
    max-height: 320px;
  }
  .product-img-small {
    width: 60vw;
    height: 60vw;
    max-width: 140px;
    max-height: 140px;
  }
  .product-info h3 {
    font-size: 1.3em;
  }
  .product-info p {
    font-size: 1em;
  }
}

.features-section {
  background: #fff;
  padding: 2.5em 0 1.5em 0;
  width: 100%;
}
.features-list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3.5em;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 140px;
  max-width: 180px;
}
.feature-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.feature-title {
  font-size: 16px;
  color: #01262a;
  font-weight: 500;
  text-align: center;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
@media (max-width: 900px) {
  .features-list {
    gap: 3em;
    flex-wrap: wrap;
  }
  .feature-item {
    min-width: 82px;
    max-width: 66px;
  }
}
@media (max-width: 600px) {
  .features-list {
    /* flex-wrap: nowrap; */
    overflow-x: auto;
    gap: 1.2em;
    padding: 0 0.5em;
  }
  .feature-item {
    min-width: 110px;
    max-width: 120px;
  }
}

.services-section {
  background: #F1EFF0 url('../images/our-service-bg.jpg') repeat;
  padding: 3.5em 0 2.5em 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #f1eff0;
  opacity: 0.85;
  z-index: 0;
  pointer-events: none;
}
.services-header-row,
.services-services-row {
  position: relative;
  z-index: 1;
}
.services-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1252px;
  margin: 0 auto 2.2em auto;
  gap: 2em;
}
.services-header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2em;
}
.services-small-head {
  font-size: 1em;
  font-weight: 600;
  color: #01262a;
  opacity: 0.7;
  letter-spacing: 1.5px;
  margin-bottom: 0.2em;
  display: inline-block;
}
.services-header-title {
  font-size: 2.8em;
  font-weight: 800;
  color: #01262a;
  line-height: 1.1;
  margin: 0;
  flex: 1 1 50%;
  text-align: left;
}
.services-header-desc {
  font-size: 1.1em;
  color: #01262a;
  opacity: 0.85;
  margin: 0 0 48px 0;
  flex: 1 1 50%;
  text-align: left;
  max-width: 577px;
}
.services-services-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5em;
  max-width: 1400px;
  margin: 0 auto;
}
.services-list-left, .services-list-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2em;
  flex: 1 1 350px;
  max-width: 400px;
}
.services-center-img {
  flex: 0 0 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-center-img img {
  width: 420px;
  height: auto;
  max-width: 100%;
  display: block;
}
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7em;
  position: relative;
}
.service-item:not(:last-child)::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  height: 1px;
  background: #d6d3d7;
  opacity: 0.7;
}
.services-list-left .service-item:not(:last-child),
.services-list-right .service-item:not(:last-child) {
  margin-bottom: 2.2em;
}
.service-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.service-title {
  font-size: 1.18em;
  font-weight: 700;
  color: #01262a;
  margin-bottom: 0.2em;
  letter-spacing: 0.01em;
}
.service-desc {
  font-size: 1em;
  color: #01262a;
  opacity: 0.9;
}
@media (max-width: 1100px) {
  .services-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7em;
    text-align: left;
  }
  .services-header-desc {
    text-align: left;
    max-width: 100%;
  }
  .services-services-row {
    flex-direction: column;
    align-items: center;
    gap: 2em;
  }
  .services-list-left, .services-list-right {
    max-width: 100%;
    align-items: flex-start;
    gap: 1em;
  }
  .services-center-img img {
    width: 90vw;
    max-width: 320px;
  }
}
@media (max-width: 600px) {
  .services-section {
    padding: 1.5em 0 1em 0;
  }
  .services-header-title {
    font-size: 1.3em;
  }
  .services-center-img img {
    width: 90vw;
    max-width: 220px;
  }
  .service-title {
    font-size: 1em;
  }
  .service-desc {
    font-size: 0.95em;
  }
}

.footer-address-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 1.5em auto 0 auto;
  gap: 2em;
  padding: 0 2em;
}
.footer-address {
  flex: 1 1 0;
  color: #fff;
  font-size: 1em;
  line-height: 1.6;
  min-width: 220px;
  max-width: 340px;
}
.footer-address strong {
  color: #f0d2b4;
  font-weight: 700;
}
.footer-map {
  margin: 18px 0 0 0;
  width: 100%;
  max-width: 240px;
}
@media (max-width: 900px) {
  .footer-address-row {
    flex-direction: column;
    gap: 1em;
    padding: 0 1em;
  }
  .footer-address {
    max-width: 100%;
    min-width: 0;
  }
} 
/* Floating Icons */
.floating-icons {
  position: fixed;
  bottom: 30px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 998;
}
.floating-icons .icon {
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}
.floating-icons .icon:hover {
  transform: scale(1.1);
}
.floating-icons .icon img {
  width: 28px;
  height: 28px;
}  

/* footer section end */

@media (max-width: 1100px) {
  .main-header, .footer-main, .intro-content, .services-header-row, .services-services-row, .whychooseus-row, .footer-address-row {
    flex-direction: column !important;
    align-items: stretch !important;
    padding-left: 1em;
    padding-right: 1em;
    gap: 0.2em;
  }
  .main-header {
    padding: 1em 4em;
  }
  .news-ticker {
    width: 26%;
  }
  .logo img {
    height: 52px;
  }
  .nav-menu ul {
    margin: -47px 295px;
  }
  .banner{
    min-height: 53vh;
  }
  .banner-content.two-column {
    flex-direction: column;
    padding: 1.2em 0.5em;
    gap: 1.2em;
  }
  .banner-text, .quote-form {
    width: 100%;
    max-width: 65%;
    min-width: 0;
  }
  .banner-text h1{
    margin: 0 -148px 0.5em 137px;
  }
  .intro-images {
    flex-direction: row;
    height: 120px;
    gap: 0.7em;
  }
  .intro-image-main, .intro-image-overlap {
    position: relative;
    width: 100%;
    height: 415px;
  }
  .services-header-row {
      margin-bottom: -43px;
  }
  .services-center-img {
    flex: 0 0 282px;
  }
  .product-img-large, .product-img-small {
    width: 90vw;
    height: 90vw;
    max-width: 220px;
    max-height: 220px;
  }
  .product-info {
    padding: 1em 0;
    max-width: 95vw;
  }
  .services-center-img img {
    width: 90vw;
    max-width: 348px;
  }
  .services-section {
    padding: 3.5em 0 0 0;
  }
  .whychooseus-left, .whychooseus-right {
    align-items: flex-start;
    text-align: left;
    margin: -11px -13px;
  }
  .gallery{
    padding: 1em 2em;
  }
  .footer-main, .footer-address-row {
    padding: 0 1em;
    gap: 1em;
  }
  .footer-col, .footer-address {
    max-width: 100%;
    min-width: 0;
    align-items: flex-start;
    text-align: left;
  }
  .footer-map {
    max-width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.7em;
    padding: 1.2em 1em 0.7em 1em;
  }
}
@media (max-width: 768px) {
  .main-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1em 1.5em;
    flex-wrap: wrap;
  }
  .logo img {
    height: 50px;
  }
  .nav-menu {
    flex: 1;
    text-align: right;
  }
  .nav-menu ul {
    margin: -41px 0px 0px 0px;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  .nav-menu li {
    margin-left: 0;
  }
  .nav-menu a {
    font-size: 0.95em;
    padding: 0.3em 0.5em;
  }
  .banner-content.two-column {
    padding: 0.7em 0.2em;
    gap: 0.7em;
  }
  .banner-text h1, .services-header-title, .whychooseus-title {
    font-size: 1.3em;
  }
  .news-ticker {
    width: 59%;
  }
  .form-title {
    font-size: 1em;
  }
  .quote-form {
    padding: 1em 1em;
  }
  .gallery-item {
    flex: 0 0 140px;
  }
  .gallery-img {
    height: 90px;
  }
  .footer-logo {
    height: 32px;
  }
  .sub-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 1em;
    font-size: 0.9em;
  }

  .news-ticker {
    width: 100%;
    margin-bottom: 0.5em;
  }

  .sub-header-actions {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
  }

  .sub-header-actions a {
    width: 100%;
    text-align: center;
    font-size: 1em;
    margin-left: 100px; /* remove left margin */
  }

  .callback-btn,
  .whatsapp-btn {
    padding: 0.5em;
    border-radius: 12px;
  }
  .products {
    padding: 1em;
    text-align: center;
  }

  .products-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
    margin-bottom: 2em;
  }

  .product-img-large,
  .product-img-small {
    width: 100%;
  }

  .product-img-large img,
  .product-img-small img {
    width: 100%;
    height: auto;
  }

  .product-info {
    width: 100%;
    text-align: left;
    padding: 0 1em;
  }

  .product-info h3 {
    font-size: 1.4em;
    margin-bottom: 0.5em;
  }

  .product-info p {
    font-size: 1em;
    line-height: 1.6;
  }
  .banner-text h1 {
    margin: 0 -148px 0.5em 67px;
  }
}
@media (max-width: 600px) {
  .banner-text h1 {
    margin: 0 -148px 0.5em 67px;
  }
  .main-header, .sub-header, .footer-main, .footer-bottom, .footer-address-row {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
  .main-header {
    padding: 0.7em 0.5em;
  }
  .banner-content.two-column {
    padding: 0.5em 0.1em;
    gap: 0.5em;
  }
  .banner-text h1, .services-header-title, .whychooseus-title {
    font-size: 2em;
  }
  .intro-content, .products-row, .services-header-row, .services-services-row, .whychooseus-row, .footer-address-row {
    gap: 0.5em;
  }
  .intro-image-main, .intro-image-overlap {
    width: 100%;
    height: 291px;
  }
  .product-img-large, .product-img-small {
    width: 60vw;
    height: 60vw;
    max-width: 257px;
    max-height: 237px;
  }
  .footer-logo {
    height: 74px;
  }
  .footer-map iframe {
    height: 60px;
  }
  .floating-icons {
    bottom: 15px;
    right: 10px;
    gap: 8px;
  }
  .floating-icons .icon {
    width: 36px;
    height: 36px;
  }
  .floating-icons .icon img {
    width: 20px;
    height: 20px;
  }
}

/* Thank You Section Styles */
.thankyou-section {
  background: url('../images/Intro.webp') center/cover no-repeat;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.thankyou-header-bar {
  background: #01262a;
  width: 100%;
  max-width: 1260px;
  margin: 2em auto 0 auto;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5em 0 1.2em 0;
}
.thankyou-logo {
  height: 68px;
  margin-right: 16px;
}
.thankyou-brand {
  font-size: 1.7em;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  margin: 28px 0px 0px -29px;
}
.thankyou-content {
  background: #fff;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 48px auto;
  padding: 1em 2em 2em 2em;
  text-align: center;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.thankyou-title {
  font-size: 4em;
  font-weight: 700;
  margin: 0 0 0.5em 0;
  color: #23413d;
}
.thankyou-message {
  font-size: 1.5em;
  color: #23413d;
  margin-bottom: 1.5em;
}
.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
  margin-top: -25px;
}
.thankyou-share-box, .thankyou-visit-box {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(1,38,42,0.07);
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 400px;
  padding: 2em 1em;
  margin: 0 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.thankyou-share-title, .thankyou-visit-title {
  font-size: 2em;
  font-weight: 700;
  color: #23413d;
  margin-bottom: 1em;
}
.thankyou-social-icons {
  display: flex;
  justify-content: center;
  gap: 1.2em;
}
.thankyou-social-link {
  color: #23413d;
  font-size: 2em;
  transition: color 0.2s;
}
.thankyou-social-link:hover {
  color: #f0d2b4;
}
.thankyou-visit-btn {
  background: #23413d;
  color: #fff;
  font-size: 1.5em;
  font-weight: 700;
  padding: 0.7em 2.2em;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  margin-top: 0.5em;
  display: inline-block;
}
.thankyou-visit-btn:hover {
  background: #f0d2b4;
  color: #000000;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .thankyou-header-bar, .thankyou-content {
    max-width: 80vw;
    padding-left: 1em;
    padding-right: 1em;
  }
  .thankyou-title {
    font-size: 2.5em;
  }
  .thankyou-message {
    font-size: 1.1em;
  }
  .thankyou-actions {
    gap: 1.2em;
    margin-top: 1.5em;
  }
  .thankyou-share-box, .thankyou-visit-box {
    max-width: 98vw;
    min-width: 0;
    margin: 0 auto;
    padding: 1.2em 0.5em;
  }
  .thankyou-brand {
    font-size: 1.3em;
    margin: 24px 0px 0px -20px;
  }
  .thankyou-logo {
    height: 59px;
    margin-right: 10px;
  }
}
@media (max-width: 600px) {
  .thankyou-header-bar {
    flex-direction: column;
    padding: 1em 0.2em 0.7em 0.2em;
    gap: 0.5em;
  }
  .thankyou-content {
    padding: 1.2em 0.5em 1em 0.5em;
  }
  .thankyou-title {
    font-size: 1.5em;
  }
  .thankyou-message {
    font-size: 1em;
  }
  .thankyou-share-title, .thankyou-visit-title {
    font-size: 1.2em;
  }
  .thankyou-share-box, .thankyou-visit-box {
    padding: 1em 0.2em;
  }
  .thankyou-visit-btn {
    font-size: 1em;
    padding: 0.5em 1.2em;
  }
  .thankyou-social-link {
    font-size: 1.3em;
  }
  .thankyou-brand {
    font-size: 1em;
    margin: 11px auto;
  }
  .thankyou-logo {
    height: 49px;
    margin-right: 6px;
  }
}