@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap");
:root {
  /* ---------- Backgrounds ---------- */
  --color-bg-primary: #F4FBFD;   /* Main page background */
  --color-bg-secondary: #E6F4F9; /* Section / card background */
  --color-bg-overlay: rgba(230, 244, 249, 0.65); /* Hero overlay */

  /* ---------- Text Colors ---------- */
  --color-text-heading: #0F2A3D; /* Headings */
  --color-text-body: #355F75;    /* Paragraph text */
  --color-text-muted: #7A9BAA;   /* Helper / muted text */
  --color-text-inverse: #FFFFFF;/* Text on dark / buttons */

  /* ---------- Grays ---------- */
  --color-gray-100: #FFFFFF;     /* White */

  /* ---------- Brand / Accent ---------- */
  --color-primary-100: #9CCFE2;
  --color-primary-200: #7BC4DE;
  --color-primary-300: #4FA3C7; /* Main brand color */
  --color-primary-400: #3A8FB3;
  --color-primary-500: #2E7899;

  /* ---------- Borders & Dividers ---------- */
  --color-border-light: #CDE7F1;
  --color-border-focus: #4FA3C7;

  /* ---------- Shadows ---------- */
  --shadow-small: 0 2px 6px rgba(79, 163, 199, 0.12);
  --shadow-medium: 0 8px 24px rgba(79, 163, 199, 0.15);
  --shadow-large: 0 14px 40px rgba(79, 163, 199, 0.18);
  --shadow-extra: 0 20px 60px rgba(79, 163, 199, 0.22);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ---------- Base ---------- */
html {
  font-size: 100%;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  font-family: "Roboto", ui-sans-serif, sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-body);
  background-color: var(--color-bg-primary);
}

main,
section {
  overflow: hidden;
}

a,
button {
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  border: none;
  outline: none;
  color: inherit;
  background: unset;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: inherit;
  line-height: 1.25;
  text-wrap: balance;
  word-wrap: break-word;
}

p,
li {
  font-family: inherit;
  line-height: 1.5;
  text-wrap: pretty;
  word-wrap: break-word;
}

img,
svg,
picture {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  object-fit: cover;
  background-size: cover;
  background-repeat: no-repeat;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

.section {
  padding-block: 6rem 3rem;
}

.banner-section {
  position: relative;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
}

/* Mobile: Adjust height to match slider */
@media screen and (max-width: 47.99rem) {
  .banner-section {
    min-height: 60vh;
    padding: 2rem 0;
  }
}

/* Tablet: Medium height */
@media screen and (min-width: 48rem) and (max-width: 63.99rem) {
  .banner-section {
    min-height: 70vh;
  }
}

/* Desktop: Full height */
@media screen and (min-width: 64rem) {
  .banner-section {
    min-height: 100vh;
  }
}

.container {
  max-width: 75rem;
  height: auto;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.center {
  text-align: center;
  vertical-align: middle;
}

.truncate {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.title-small {
  font-family: inherit;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.25;
}
.title-medium {
  font-family: inherit;
  font-size: clamp(2.15rem, 5vw, 3.15rem);
  font-weight: 700;
  line-height: 1.15;
}
.title-large {
  font-family: inherit;
  font-size: clamp(2.65rem, 6vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
}

.text-small {
  font-family: inherit;
  font-size: 0.85rem;
  line-height: 1.5;
}
.text-base {
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
}
.text-medium {
  font-family: inherit;
  font-size: 1.15rem;
  line-height: 1.5;
}
.text-large {
  font-family: inherit;
  font-size: 1.3rem;
  line-height: 1.5;
}
.text-upper {
  text-transform: uppercase;
}
.text-lower {
  text-transform: lowercase;
}
.text-capital {
  text-transform: capitalize;
}

.font-light {
  font-weight: 300;
}
.font-normal {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-semi {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}

.btn {
  display: inline-flex;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  align-items: center;
  white-space: nowrap;
  text-align: center;
  justify-content: center;
  vertical-align: middle;
  column-gap: 0.35rem;
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  border-radius: 3rem;
  transition: all 0.25s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.btn-primary {
  color: var(--color-bg-primary);
  background-color: var(--color-primary-500);
  box-shadow: var(--shadow-medium);
}
.btn-neutral {
  color: var(--color-bg-primary);
  background-color: var(--color-primary-500);
  box-shadow: var(--shadow-medium);
}
.btn-darken {
  color: var(--color-gray-100);
  background-color: var(--color-dark-100);
  box-shadow: var(--shadow-medium);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  margin: 0 auto;
  transition: all 0.35s ease;
}
.header.on-scroll {
  background-color: var(--color-bg-primary);
  box-shadow: var(--shadow-medium);
}
.header.on-scroll .menu-link {
  color: var(--color-primary-500);
  text-shadow: none;
}
.header.on-scroll .brand {
  color: var(--color-primary-500);
  text-shadow: none;
}
.header.on-scroll .brand img {
  filter: none;
}
.header.on-scroll .burger-line {
  background-color: var(--color-primary-500);
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  column-gap: 1rem;
  width: 100%;
  height: 4rem;
  margin-inline: auto;
  position: relative;
}

.brand {
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--color-gray-100);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.brand img {
  filter: drop-shadow(2px 2px 4px rgb(250, 248, 248));
}

@media (max-width: 767px){
  .brand img {
    width: 25%;
    height: auto;
    margin-top: -10px;
}
}

.menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  padding-block: 4rem;
  background-color: var(--color-dark-400);
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
}
.menu.is-active {
  top: 0;
  left: 0;
}
.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1.25rem;
}
.menu-link {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--color-gray-100);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.menu-block {
  margin-left: auto;
}
@media screen and (min-width: 48rem) {
  .menu {
    position: relative;
    top: initial;
    width: auto;
    padding: 0;
    margin-left: auto;
    background: unset;
    box-shadow: unset;
    transition: unset;
  }
  .menu-inner {
    display: flex;
    flex-direction: row;
    column-gap: 2rem;
    margin-inline: auto;
  }
  .menu-link {
    text-transform: capitalize;
  }
  .menu-block {
    margin-left: 2rem;
  }
}

.burger {
  cursor: pointer;
  position: relative;
  display: block;
  z-index: 10;
  width: 2rem;
  height: 1.5rem;
  user-select: none;
  visibility: visible;
  margin-right: 1rem;
  background-color: rgba(0, 123, 255, 0.1);
  border: 2px solid #007bff;
  border-radius: 4px;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

/* Hide burger on desktop/tablet */
@media screen and (min-width: 768px) {
  .burger {
    display: none !important;
    visibility: hidden !important;
  }
}

/* Ensure burger is visible on mobile */
@media (max-width: 767px) {
  .burger {
    display: block !important;
    visibility: visible !important;
    position: relative;
    z-index: 1000;
    margin-right: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .navbar {
    justify-content: space-between;
  }

  .brand {
    flex: 1;
    text-align: center;
  }

  .menu-block {
    margin-left: auto;
  }
}
.burger-line {
  position: absolute;
  display: block;
  left: 0;
  opacity: 1;
  width: 100%;
  height: 4px;
  background-color: var(--color-gray-100);
  border-radius: 2px;
  transition: all 0.25s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.burger-line:nth-child(1) {
  top: 0.25rem;
}
.burger-line:nth-child(2) {
  top: 0.75rem;
  width: 70%;
}
.burger-line:nth-child(3) {
  top: 1.25rem;
}
.burger.is-active .burger-line:nth-child(1) {
  top: 0.75rem;
  transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
  left: -1rem;
  opacity: 0;
}
.burger.is-active .burger-line:nth-child(3) {
  top: 0.75rem;
  transform: rotate(-135deg);
}

.overlay {
  position: fixed;
  display: none;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-color: black;
  transition: all 0.3s ease;
}
.overlay.is-active {
  display: block;
}

.banner-column {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

/* Mobile: Center content vertically and adjust padding */
@media screen and (max-width: 47.99rem) {
  .banner-column {
    align-items: center;
    padding: 1rem;
  }
}

/* Tablet: Center content */
@media screen and (min-width: 48rem) and (max-width: 63.99rem) {
  .banner-column {
    align-items: center;
    padding: 2rem;
  }
}

/* Desktop: Center content */
@media screen and (min-width: 64rem) {
  .banner-column {
    align-items: center;
    padding: 3rem 2rem;
  }
}

@media screen and (min-width: 48rem) {
  .banner-column {
    flex-direction: row;
    align-items: center;
    padding: 4rem 2rem;
  }
}

@media screen and (min-width: 64rem) {
  .banner-column {
    padding: 6rem 4rem;
  }
}

.banner-image {
  display: none; /* Hide the old image since we're using slider now */
}

.slider-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Mobile: Adjust height for better mobile experience */
@media screen and (max-width: 47.99rem) {
  .slider-container {
    position: relative;
    height: 60vh;
    min-height: 400px;
  }
}

/* Tablet: Medium height */
@media screen and (min-width: 48rem) and (max-width: 63.99rem) {
  .slider-container {
    height: 70vh;
    min-height: 500px;
  }
}

/* Desktop: Full height */
@media screen and (min-width: 64rem) {
  .slider-container {
    height: 100vh;
  }
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  will-change: opacity;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  .slide {
    transition: opacity 0.3s ease-in-out;
  }
}

/* Optimize background images for different screen sizes */
@media screen and (max-width: 47.99rem) {
  .slide {
    background-position: center top;
    background-attachment: scroll;
  }
}

@media screen and (min-width: 48rem) {
  .slide {
    background-attachment: fixed;
  }
}

.slide.active {
  opacity: 1;
}

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

@media screen and (min-width: 64rem) {
  .banner-image {
    max-width: 24rem;
    margin-right: 5rem;
  }
}
.banner-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1.5rem;
  color: var(--color-primary-500);
}

.banner-inner h1,
.banner-inner p {
  color: #ffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.banner-link {
  position: absolute;
  display: grid;
  top: 30%;
  right: 1.5rem;
  justify-items: center;
  row-gap: 0.5rem;
  visibility: hidden;
}
@media screen and (min-width: 64rem) {
  .banner-link {
    visibility: visible;
  }
}
.banner-link > * {
  font-size: 1.25rem;
  line-height: inherit;
  color: var(--color-gray-100);
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}
.banner-link::before, .banner-link::after {
  content: "";
  position: absolute;
  width: 4rem;
  height: 1.5px;
  transform: rotate(90deg);
  background: #ffff;
}
.banner-link::before {
  top: -3rem;
}
.banner-link::after {
  bottom: -3rem;
}

.explore-section {
  padding: 80px 24px;
  text-align: center;
}

.explore-header h2 {
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--color-text-body);
  margin-bottom: 12px;
}

.explore-header p {
  max-width: 640px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  color: var(--color-text-body);
  line-height: 1.6;
}

/* Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Cards */
.category-card {
  background-color: var(--color-primary-100);
  border-radius: 22px;
  padding: 40px 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-card:hover {
  background-color: var(--color-primary-500);
  transform: translateY(-6px);
}

/* Icon */
.category-card .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 16px;
  /* background-color: var(--color-primary-500); */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.category-card .icon i{
  color: #ffff;
}
/* Text */
.category-card h3 {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-primary-500);
  margin-bottom: 6px;
}

.category-card span {
  font-size: 0.95rem;
  color: var(--color-primary-500);
}
.category-card:hover .icon {
  background-color: var(--color-bg-primary);
}

.category-card:hover h3 {
  color: var(--color-bg-primary);
}

.category-card:hover span {
  color: var(--color-bg-primary);
}
.why-mkaqua {
  background-color: var(--color-bg-primary);
  padding: 80px 24px;
}

.why-mkaqua h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 60px;
  color: var(--color-text-body);
}

/* Layout */
.why-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Content */
.why-content h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--color-primary-500);
}

.why-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-primary-500);
}

/* Image Placeholder */
.site-footer {
  background-color: var(--color-bg-primary);
  padding: 80px 24px 30px;
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
}

/* Brand Section */
.footer-brand .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.brand-icon {
  background-color: var(--color-primary-500);
  color: #fff;
  padding: 10px;
  border-radius: 14px;
  font-size: 18px;
}

.footer-brand h3 {
  color: var(--color-text-body);
  font-size: 1.4rem;
}

.footer-brand p {
  color: var(--color-primary-500);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 360px;
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 24px;
  color: var(--color-text-body);
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: var(--color-primary-500);
}

/* Right Sections */
.footer-sections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  color: var(--color-text-body);
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: var(--color-primary-500);
  text-decoration: none;
  font-size: 0.95rem;
}

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

/* Map */
.footer-map iframe {
  width: 100%;
  height: 180px;
  border: none;
  border-radius: 12px;
}

/* Bottom */
.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.footer-bottom p {
  color: var(--color-primary-500);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-sections {
    grid-template-columns: 1fr;
  }
}
.cta-ro {
  padding: 90px 24px;
  text-align: center;
  background: linear-gradient(
    135deg,
    var(--color-bg-primary),
    rgba(0, 0, 0, 0.03)
  );
}

.cta-ro h2 {
  font-size: 2.6rem;
  color: var(--color-text-body);
  margin-bottom: 14px;
}

.cta-ro p {
  max-width: 620px;
  margin: 0 auto 40px;
  color: var(--color-primary-500);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Form */
.cta-form {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-form input {
  padding: 14px 18px;
  min-width: 260px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 0.95rem;
}

.cta-form input:focus {
  outline: none;
  border-color: var(--color-primary-500);
}

.cta-form button {
  padding: 14px 26px;
  border-radius: 12px;
  border: none;
  background-color: var(--color-primary-500);
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cta-form button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.how-it-works {
  padding: 90px 24px;
  background-color: var(--color-bg-primary);
  text-align: center;
}

.how-it-works h2 {
  font-size: 2.4rem;
  color: var(--color-text-body);
  margin-bottom: 10px;
}

.how-it-works .subtitle {
  color: var(--color-primary-500);
  font-size: 1.05rem;
  margin-bottom: 60px;
}

/* Steps */
.steps-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.step-card {
  background-color: #fff;
  border-radius: 22px;
  padding: 36px 28px;
  position: relative;
  text-align: left;
}

.step-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.05);
}

.step-card h3 {
  color: var(--color-primary-500);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--color-primary-500);
  font-size: 0.95rem;
  line-height: 1.6;
}
.testimonials {
  padding: 90px 24px;
  background-color: var(--color-bg-primary);
}

.testimonials h2 {
  text-align: center;
  font-size: 2.4rem;
  color: var(--color-text-body);
  margin-bottom: 50px;
}

.testimonial-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

.testimonial-card {
  min-width: 340px;
  background: #fff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Header */
.customer-header {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.customer-header img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.customer-header h4 {
  font-size: 1.1rem;
  color: var(--color-text-body);
  font-weight: 600;
}

.customer-header span {
  font-size: 0.85rem;
  color: var(--color-primary-500);
}

/* Review Box */
.review-box {
  border: 2px dashed var(--color-primary-500);
  border-radius: 16px;
  padding: 18px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-primary-500);
  margin-bottom: 18px;
}

/* Footer */
.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stars {
  color: #f4b400;
  font-size: 1.1rem;
}

.google-link {
  width: 36px;
  height: 36px;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
}

/* Navigation */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-primary-500);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 5;
}

.nav-btn.left {
  left: 0px;
}

.nav-btn.right {
  right: 0px;
}
.faq-section {
  padding: 90px 24px;
  background-color: var(--color-bg-primary);
}

.faq-section h2 {
  text-align: center;
  font-size: 2.4rem;
  color: var(--color-text-body);
  margin-bottom: 60px;
}

/* Layout */
.faq-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

/* Questions */
.faq-questions {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-question {
  background-color: #fff;
  padding: 18px 22px;
  border-radius: 14px;
  cursor: pointer;
  font-size: 1rem;
  color: var(--color-primary-500);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.faq-question:hover {
  transform: translateY(-2px);
}

.faq-question.active {
  border-left: 4px solid var(--color-primary-500);
  font-weight: 600;
}

/* Answers */
.faq-answers {
  background-color: #fff;
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.faq-answer {
  display: none;
}

.faq-answer.active {
  display: block;
}

.faq-answer p {
  color: var(--color-primary-500);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 26px;
}

.faq-answer button {
  padding: 12px 24px;
  border-radius: 12px;
  border: none;
  background-color: var(--color-primary-500);
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-answer button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
  .faq-wrapper {
    grid-template-columns: 1fr;
  }
}


/* ======================= About us =============================== */
.page-hero {
  position: relative;
  width: 100%;
  min-height: 280px;

  /* 👇 THIS FIXES THE OVERLAP */
  margin-top: 80px;

  background-image: url("/assets/images/about-breadcrumb.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Dark overlay */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* Content aligned to left */
.page-hero-content {
  position: relative;
  z-index: 1;
  padding-left: 80px;   /* 👈 pushes content from extreme edge */
  padding-right: 24px;
  max-width: 1200px;
  color: #fff;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb .separator {
  opacity: 0.7;
}

/* Title */
.page-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .page-hero {
    min-height: 220px;
  }

  .page-hero-content {
    padding-left: 24px;
  }

  .page-hero h1 {
    font-size: 2.1rem;
  }
}

/* Services Section */
.services-section {
  background-color: var(--color-bg-primary);
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  background-color: var(--color-primary-100);
  color: var(--color-primary-500);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.25s ease;
  font-weight: 500;
}

.filter-btn.active {
  background-color: var(--color-primary-500);
  color: var(--color-bg-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background-color: var(--color-primary-100);
  color: var(--color-primary-500);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-medium);
  transition: all 0.25s ease;
  text-align: center;
}

.service-card:hover {
  background-color: var(--color-primary-500);
  color: var(--color-primary-100);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.service-card p {
  margin-bottom: 1rem;
}

.service-card .see-more {
  color: var(--color-primary-500);
  font-weight: 500;
}

.service-card:hover .see-more {
  color: var(--color-primary-100);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: var(--color-bg-primary);
  margin: 5% auto;
  padding: 2rem;
  border-radius: 0.5rem;
  width: 80%;
  max-width: 800px;
  position: relative;
  box-shadow: var(--shadow-large);
}

.close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-text-body);
}

.modal-body {
  display: flex;
  gap: 2rem;
}

.modal-left {
  flex: 1;
}

.modal-left img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.modal-right {
  flex: 2;
  display: flex;
  flex-direction: column;
}

.modal-right h2 {
  margin-bottom: 1rem;
  color: var(--color-text-heading);
}

.modal-right p {
  margin-bottom: 2rem;
  flex-grow: 1;
  color: var(--color-text-body);
}

.modal-right .btn {
  align-self: flex-end;
}

@media (max-width: 768px) {
  .modal-body {
    flex-direction: column;
  }

  .modal-content {
    width: 90%;
    margin: 10% auto;
    padding: 1rem;
  }
}

/* Products Section */
.products-section {
  background-color: var(--color-bg-primary);
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1rem;
  background-color: var(--color-primary-100);
  color: var(--color-primary-500);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.25s ease;
  font-weight: 500;
}

.filter-btn.active {
  background-color: var(--color-primary-500);
  color: var(--color-bg-primary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background-color: var(--color-primary-100);
  color: var(--color-primary-500);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-medium);
  transition: all 0.25s ease;
  text-align: center;
}

.product-card:hover {
  background-color: var(--color-primary-500);
  color: var(--color-primary-100);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.price-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.price {
  text-align: left;
}

.original-price {
  text-decoration: line-through;
  color: black;
  font-size: 0.9rem;
}

.new-price {
  color: red;
  font-weight: bold;
  font-size: 1.1rem;
  display: block;
}

.buy-btn {
  background-color: var(--color-primary-500);
  color: var(--color-bg-primary);
  padding: 0.6rem 1.2rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.buy-btn:hover {
  background-color: var(--color-primary-500);
  color: var(--color-bg-primary);
}

.product-card:hover .buy-btn {
  background-color: var(--color-primary-100);
  color: var(--color-bg-primary);
}

/* Modal for Products */
#product-modal .modal-content {
  max-width: 500px;
}

#buy-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.phone-input {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
}

.phone-input select {
  padding: 0.75rem;
  border: 1px solid var(--color-border-light);
  border-radius: 0.5rem;
  font-size: 1rem;
  width: 120px;
  flex-shrink: 0;
}

.phone-input input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid var(--color-border-light);
  border-radius: 0.5rem;
  font-size: 1rem;
}

#buy-form input,
#buy-form textarea {
  padding: 0.75rem;
  border: 1px solid var(--color-border-light);
  border-radius: 0.5rem;
  font-size: 1rem;
}

#buy-form textarea {
  resize: vertical;
  min-height: 120px;
  width: 100%;
}

#confirmation {
  text-align: center;
}

#confirmation p {
  margin-bottom: 1rem;
  color: var(--color-text-body);
}

/* About Page Sections */
.about-overview {
  background-color: var(--color-bg-primary);
}

.overview-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.overview-content h2 {
  margin-bottom: 1rem;
  color: var(--color-text-heading);
}

.overview-content p {
  margin-bottom: 1rem;
  color: var(--color-text-body);
  line-height: 1.6;
}

.overview-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-medium);
}

.about-services {
  background-color: var(--color-bg-secondary);
}

.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-overview-card {
  background-color: var(--color-bg-primary);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-small);
  text-align: center;
  transition: all 0.25s ease;
}

.service-overview-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.service-overview-card .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-overview-card h3 {
  margin-bottom: 1rem;
  color: var(--color-text-heading);
}

.service-overview-card p {
  color: var(--color-text-body);
  line-height: 1.5;
}

.about-why {
  background-color: var(--color-bg-primary);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.why-item {
  background-color: var(--color-primary-100);
  padding: 2rem;
  border-radius: 0.5rem;
  transition: all 0.25s ease;
}

.why-item:hover {
  background-color: var(--color-primary-200);
  transform: translateY(-3px);
}

.why-item h3 {
  margin-bottom: 1rem;
  color: var(--color-primary-500);
}

.why-item p {
  color: var(--color-text-body);
  line-height: 1.5;
}

.about-expertise {
  background-color: var(--color-bg-secondary);
}

.expertise-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.expertise-content h2 {
  margin-bottom: 1rem;
  color: var(--color-text-heading);
}

.expertise-content p {
  margin-bottom: 1.5rem;
  color: var(--color-text-body);
  line-height: 1.6;
}

.expertise-content ul {
  list-style: none;
  padding: 0;
}

.expertise-content li {
  margin-bottom: 0.5rem;
  color: var(--color-text-body);
  position: relative;
  padding-left: 1.5rem;
}

.expertise-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary-500);
  font-weight: bold;
}

.expertise-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  background-color: var(--color-bg-primary);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-small);
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--color-primary-500);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--color-text-body);
  font-weight: 500;
}

.about-mission {
  background-color: var(--color-bg-primary);
}

.mission-text {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
  color: var(--color-text-body);
  line-height: 1.6;
}

.mission-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.value-item {
  background-color: var(--color-primary-100);
  padding: 2rem;
  border-radius: 0.5rem;
  text-align: center;
  transition: all 0.25s ease;
}

.value-item:hover {
  background-color: var(--color-primary-200);
  transform: translateY(-3px);
}

.value-item h4 {
  margin-bottom: 1rem;
  color: var(--color-primary-500);
}

.value-item p {
  color: var(--color-text-body);
  line-height: 1.5;
}

/* Responsive for About */
@media (max-width: 768px) {
  .overview-wrapper,
  .expertise-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-overview-grid,
  .why-grid,
  .mission-values {
    grid-template-columns: 1fr;
  }

  .expertise-stats {
    flex-direction: row;
    justify-content: space-around;
  }

  .stat-item {
    flex: 1;
    padding: 1rem;
  }
}

/* ==================== GENERAL RESPONSIVE DESIGN ==================== */

/* Mobile First - Base styles are for mobile, then enhance for larger screens */

/* Tablet and Desktop Enhancements */
@media (min-width: 768px) {
  /* Base font size increase for larger screens */
  html {
    font-size: 112.5%; /* 18px base */
  }

  .section {
    padding-block: 6rem 4rem;
  }

  .container {
    max-width: 100%;
  }

  /* Header enhancements */
  .navbar {
    height: 5rem;
  }

  .brand {
    font-size: 2rem;
  }

  /* Grid layouts for larger screens */
  .category-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .why-wrapper {
    gap: 80px;
  }

  .footer-wrapper {
    gap: 80px;
  }

  .faq-wrapper {
    gap: 60px;
  }

  /* Services and Products grids */
  .services-grid,
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
  }

  /* About sections */
  .overview-wrapper,
  .expertise-wrapper {
    gap: 80px;
  }

  .services-overview-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .why-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }

  .mission-values {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  /* Testimonial track */
  .testimonial-track {
    gap: 30px;
  }

  .testimonial-card {
    min-width: 400px;
  }

  /* Steps grid */
  .steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }

  /* CTA form */
  .cta-form {
    flex-direction: row;
    justify-content: center;
  }

  .cta-form input {
    min-width: 300px;
  }
}

@media (min-width: 1024px) {
  /* Large desktop enhancements */
  html {
    font-size: 125%; /* 20px base */
  }

  .container {
    max-width: 100%;
  }

  .section {
    padding-block: 10rem 5rem;
  }

  /* Hero sections */
  .page-hero {
    min-height: 400px;
  }

  .page-hero h1 {
    font-size: 3rem;
  }

  .page-hero-content {
    padding-left: 120px;
  }

  /* Banner */
  .banner-column {
    grid-template-columns: 1fr max-content;
    column-gap: 6rem;
  }

  .banner-image {
    max-width: 28rem;
    margin-right: 8rem;
  }

  /* Footer */
  .footer-sections {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Modal */
  .modal-content {
    max-width: 900px;
  }

  #product-modal .modal-content {
    max-width: 600px;
  }
}

/* ==================== MOBILE RESPONSIVE FIXES ==================== */

@media (max-width: 767px) {
  /* Reduce base font size for mobile */
  html {
    font-size: 87.5%; /* 14px base */
  }

  /* Reduce section padding */
  .section {
    padding-block: 4rem 2rem;
  }

  /* Container adjustments */
  .container {
    padding-inline: 1rem;
  }

  /* Header mobile fixes */
  .header {
    height: 3.5rem;
  }

  .navbar {
    height: 3.5rem;
  }

  .brand {
    font-size: 1.2rem;
  }

  /* Ensure burger is visible */
  .burger {
    display: block !important;
    visibility: visible !important;
  }

  /* Menu overlay for mobile */
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    padding-block: 5rem 2rem;
    z-index: 999;
  }

  .menu.is-active {
    top: 0;
  }

  .menu-inner {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .menu-link {
    font-size: 1.5rem;
    color: white;
  }

  /* Hero sections mobile */
  .page-hero {
    min-height: 200px;
    margin-top: 3.5rem; /* Account for mobile header */
  }

  .page-hero-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .breadcrumb {
    font-size: 0.8rem;
  }

  /* Banner mobile */
  .banner-section {
    min-height: auto;
    padding: 4rem 0;
  }

  .banner-column {
    padding: 1rem;
    align-items: center;
  }

  .banner-image {
    display: none; /* Still hide since we're using slider */
  }

  .banner-link {
    display: none; /* Hide on mobile */
  }

  /* Grid layouts - single column on mobile */
  .category-grid,
  .services-grid,
  .products-grid,
  .services-overview-grid,
  .why-grid,
  .mission-values,
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Two-column layouts to single */
  .why-wrapper,
  .footer-wrapper,
  .faq-wrapper,
  .overview-wrapper,
  .expertise-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Footer mobile */
  .footer-sections {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-column {
    text-align: center;
  }

  /* CTA form mobile */
  .cta-form {
    flex-direction: column;
    align-items: center;
  }

  .cta-form input {
    min-width: 280px;
    width: 100%;
    max-width: 400px;
  }

  /* Testimonial mobile */
  .testimonial-track {
    gap: 1rem;
  }

  .testimonial-card {
    min-width: 280px;
  }

  /* Modal mobile */
  .modal-content {
    width: 95%;
    margin: 2rem auto;
    padding: 1.5rem;
  }

  .modal-body {
    flex-direction: column;
    gap: 1rem;
  }

  #product-modal .modal-content {
    max-width: 95%;
  }

  /* About sections mobile */
  .expertise-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-item {
    padding: 1.5rem;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  /* Product cards mobile */
  .price-section {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .price {
    text-align: center;
  }

  .buy-btn {
    width: 100%;
    padding: 0.9rem;
  }

  /* Service cards mobile */
  .service-card,
  .product-card {
    padding: 1rem;
  }

  .service-card h3,
  .product-card h3 {
    font-size: 1.1rem;
  }

  /* Filter buttons mobile */
  .filter-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }

  .filter-btn {
    width: 100%;
    max-width: 200px;
  }

  /* FAQ mobile */
  .faq-questions {
    gap: 1rem;
  }

  .faq-question {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .faq-answers {
    padding: 1.5rem;
  }

  /* Stats mobile */
  .stat-item h3 {
    font-size: 2rem;
  }
}

/* ==================== BURGER MENU FUNCTIONALITY ==================== */

/* Ensure burger menu works properly */
@media (max-width: 767px) {
  .menu {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
  }

  .menu.is-active {
    transform: translateY(0);
  }

  .overlay {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .overlay.is-active {
    opacity: 1;
    visibility: visible;
  }
}

/* ==================== IMAGE AND ICON RESPONSIVE ==================== */

/* Ensure images are responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Icon sizes responsive */
.category-card .icon,
.service-overview-card .icon {
  font-size: clamp(2rem, 5vw, 3rem);
}

.step-number {
  font-size: clamp(2rem, 8vw, 3rem);
}

.nav-btn {
  width: clamp(40px, 8vw, 44px);
  height: clamp(40px, 8vw, 44px);
  font-size: clamp(1.2rem, 4vw, 1.6rem);
}

.google-link {
  width: clamp(32px, 6vw, 36px);
  height: clamp(32px, 6vw, 36px);
}

.social-links a {
  width: clamp(48px, 9vw, 64px);
  height: clamp(48px, 9vw, 64px);
  font-size: clamp(18px, 4vw, 34px);
}

.social-links a:hover{
  color: var(--color-bg-primary);
}

.customer-header img {
  width: clamp(50px, 10vw, 60px);
  height: clamp(50px, 10vw, 60px);
}

/* ==================== FONT RESPONSIVE ==================== */

/* Ensure fonts scale properly */
h1 {
  font-size: clamp(1.8rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}

h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
}

p, li {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.btn {
  font-size: clamp(0.9rem, 2vw, 1rem);
  padding-block: clamp(0.4rem, 2vw, 0.5rem);
  padding-inline: clamp(1rem, 4vw, 1.25rem);
}

/* Specific text elements */
.text-small {
  font-size: clamp(0.8rem, 1.8vw, 0.85rem);
}

.text-base {
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.text-medium {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
}

.text-large {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
}

.breadcrumb {
  font-size: clamp(0.8rem, 2vw, 0.95rem);
}

.explore-header h2,
.cta-ro h2,
.how-it-works h2,
.testimonials h2,
.faq-section h2 {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
}

.explore-header p,
.cta-ro p,
.how-it-works .subtitle {
  font-size: clamp(0.9rem, 2.2vw, 1.05rem);
}

/* ==================== SPACING RESPONSIVE ==================== */

/* Ensure proper spacing on all devices */
.section {
  padding-block: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 3rem);
}

.container {
  padding-inline: clamp(1rem, 4vw, 1.5rem);
}

/* ==================== TOUCH FRIENDLY ==================== */

/* Ensure touch targets are adequate on mobile */
@media (max-width: 767px) {
  .btn,
  .buy-btn,
  .filter-btn,
  .faq-question,
  .nav-btn,
  .social-links a {
    min-height: 38px;
    min-width: 38px;
  }

  .burger {
    width: 48px;
    height: 48px;
    margin-top: -10px;
  }
  .btn-neutral{
    margin-top: -10px;
  }
}

/* ==================== CONTACT PAGE STYLES ==================== */

.contact-section .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form h2,
.contact-details h2 {
  font-size: var(--title-medium);
  margin-bottom: 1.5rem;
  color: var(--color-text-heading);
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-text-body);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-border-light);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary-300);
  box-shadow: 0 0 0 2px rgba(79, 163, 199, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-details .detail-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text-heading);
}

.contact-details .detail-item p {
  margin-bottom: 0.5rem;
  color: var(--color-text-body);
}

.contact-details .social-links {
  display: flex;
  gap: 1rem;
}

.contact-details .social-links a {
  color: var(--color-primary-300);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.contact-details .social-links a:hover {
  color: var(--color-bg-primary);
}

.map-section {
  width: 100%;
  height: 400px;
  margin-top: 2rem;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive for contact section */
@media (max-width: 768px) {
  .contact-section .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form h2,
  .contact-details h2 {
    font-size: var(--title-small);
  }

  .map-section {
    height: 300px;
  }
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-float a {
  display: block;
}

.whatsapp-float img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}

/* Demo Float Button */
.demo-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 1001;
}

.demo-float .btn {
  padding: 10px 15px;
  font-size: 14px;
  border-radius: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.demo-float .btn:hover {
  transform: scale(1.05);
}
