        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Nunito', sans-serif;
        }

        :root {
            --primary: #ff8c42;
            --primary-strong: #d8711d;
            --secondary: #1c949c;
            --font-dark: #132030;
            --neutral: #fff;
            --nav-height: 70px;
        }

        body, html {
            min-height: 100%;
            background: linear-gradient(180deg, #e3f5ff 0%, #d9efff 60%, #f7fbff 100%);
        }

        img {
            max-width: 100%;
            height: auto;
        }

        /* Navbar Styling */
        .navbar {
            position: sticky;
            top: 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 82px;
            padding: 0 34px;
            background:
                linear-gradient(180deg, rgba(28, 28, 28, 0.72), rgba(44, 44, 44, 0.52)),
                linear-gradient(90deg, rgba(93, 68, 43, 0.12), rgba(49, 87, 73, 0.14));
            backdrop-filter: blur(14px) saturate(120%);
            -webkit-backdrop-filter: blur(14px) saturate(120%);
            border-bottom: 1px solid rgba(255,255,255,0.18);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            z-index: 1000;
        }

        .nav-brand {
            display: inline-flex;
            align-items: center;
            justify-content: flex-start;
            gap: 10px;
            text-decoration: none;
            flex-shrink: 0;
        }

        .nav-brand img {
            width: 60px;
            height: 60px;
            display: block;
            border-radius: 50%;
            object-fit: cover;
            transition: transform 0.25s ease, opacity 0.25s ease;
        }

        .nav-brand-text {
            font-size: 19px;
            font-weight: 600;
            color: #ffffff;
            line-height: 1;
            letter-spacing: 0;
            white-space: nowrap;
        }

        .nav-brand:hover img {
            transform: scale(1.05);
            opacity: 0.92;
        }

        .nav-center {
            flex: 1 1 auto;
            display: flex;
            justify-content: center;
            min-width: 0;
            padding-inline: 28px;
        }

        .nav-toggle {
            display: none;
            background: transparent;
            border: 0;
            border-radius: 10px;
            padding: 8px;
            gap: 4px;
            flex-direction: column;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }

        .nav-toggle span {
            width: 22px;
            height: 2px;
            background: #fff;
            border-radius: 99px;
            transition: transform 0.3s ease;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 46px;
        }

        .nav-links a {
            position: relative;
            text-decoration: none;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 600;
            font-size: 18px;
            line-height: 1;
            transition: color 0.25s ease;
            padding-bottom: 6px;
            border-bottom: 1px solid transparent;
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 100%;
            height: 2px;
            background: rgba(255, 255, 255, 0.92);
            border-radius: 999px;
            transform: scaleX(0);
            transform-origin: center;
            transition: transform 0.28s ease;
        }

        .nav-links a:hover {
            color: #ffffff;
        }

        .nav-links a:hover::after {
            transform: scaleX(1);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 14px;
            flex-shrink: 0;
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #7dbf58, #3f7c44);
            color: white !important;
            height: 56px;
            padding: 0 32px;
            border-radius: 999px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 10px 24px rgba(41, 82, 36, 0.18);
            transition: all 0.2s ease;
        }

        .nav-cta:hover {
            transform: scale(1.05);
            background: linear-gradient(135deg, #88cb61, #47884c);
        }

        /* Hero Section */
        .hero-container {
            position: relative;
            min-height: calc(100vh - var(--nav-height));
            width: 100%;
            background: linear-gradient(to right, rgba(0,0,0,0.5), transparent), 
                        url('Assets/images/banner image.jpg') no-repeat center center/cover;
            display: flex;
            align-items: center;
            padding: clamp(44px, 7vw, 72px) 32px clamp(56px, 7vw, 80px);
        }

        /* Hero Text Content */
        .content {
            max-width: 700px;
            color: white;
            z-index: 2;
        }

        .content h1 {
            font-size: clamp(3.5rem, 8vw, 5rem);
            line-height: 1.1;
            margin-bottom: 20px;
            text-shadow: 2px 4px 12px rgba(0,0,0,0.4);
        }

        .hero-pill-row {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 0 0 24px;
        }

        .hero-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 130px;
            padding: 10px 20px;
            border-radius: 999px;
            background: rgba(238, 230, 221, 0.42);
            border: 1px solid rgba(255, 255, 255, 0.22);
            color: #ffffff;
            font-size: clamp(0.9rem, 1.2vw, 1.05rem);
            font-weight: 700;
            letter-spacing: 0.02em;
            backdrop-filter: blur(8px);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 14px 30px rgba(8, 16, 28, 0.18);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
        }

        /* Added Styling for the Paragraph */
        .hero-para {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 35px;
            max-width: 600px;
            text-shadow: 1px 1px 8px rgba(0,0,0,0.5);
            opacity: 0.95;
        }

        /* Main CTA Button */
        .btn {
            padding: 18px 40px;
            border-radius: 18px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            color: white;
            letter-spacing: 0.01em;
            transition: transform 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-block;
            background: linear-gradient(135deg, #f7c437 0%, #f0aa17 100%);
            box-shadow: 0 14px 28px rgba(240, 170, 23, 0.34);
        }

        .btn:hover {
            transform: scale(1.03);
        }

        @media (max-width: 960px) {
            .navbar {
                height: 76px;
                padding-inline: 24px;
            }

            .hero-container {
                padding-inline: 24px;
            }
        }

        @media (max-width: 850px) {
            .navbar {
                flex-wrap: wrap;
                height: auto;
                min-height: 76px;
                padding-block: 12px;
                row-gap: 12px;
            }

            .nav-center {
                order: 3;
                flex: 0 0 100%;
                padding-inline: 0;
            }

            .nav-toggle {
                display: flex;
            }

            .nav-links {
                display: none;
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
                padding-top: 10px;
                width: 100%;
            }

            .nav-links.open {
                display: flex;
            }

            .nav-links a {
                font-size: 17px;
            }

            .nav-cta {
                display: none;
            }

            .content {
                max-width: 680px;
            }

            .hero-container {
                justify-content: flex-start;
                text-align: left;
                padding-top: clamp(40px, 8vw, 72px);
            }
        }

        @media (max-width: 640px) {
            .navbar {
                min-height: 72px;
                padding-inline: 16px;
            }

            .hero-container {
                align-items: flex-start;
                padding: 36px 16px 40px;
                background:
                    linear-gradient(to right, rgba(0,0,0,0.5), transparent),
                    url('Assets/images/banner image.jpg') no-repeat center center/cover;
            }

            .nav-brand img {
                width: 52px;
                height: 52px;
            }

            .nav-brand-text {
                font-size: 18px;
            }

            .content {
                max-width: 100%;
            }

            .content h1 {
                font-size: clamp(3rem, 13vw, 4.4rem);
                line-height: 1.02;
                margin-bottom: 18px;
                text-wrap: balance;
            }

            .hero-para {
                font-size: 1.02rem;
                line-height: 1.55;
                margin: 0 0 28px;
                max-width: 31ch;
            }

            .hero-pill-row {
                gap: 10px;
                margin-bottom: 20px;
            }

            .hero-pill {
                min-width: auto;
                padding: 9px 16px;
                font-size: 0.86rem;
            }

            .btn {
                width: min(100%, 320px);
                padding: 16px 24px;
                font-size: 1.05rem;
                border-radius: 16px;
            }
        }

        @media (max-width: 420px) {
            .nav-brand-text {
                font-size: 16px;
            }

            .hero-container {
                padding: 32px 16px 36px;
            }

            .content h1 {
                font-size: clamp(2.6rem, 14vw, 3.7rem);
            }

            .hero-para {
                font-size: 0.98rem;
                max-width: 28ch;
            }

            .hero-pill-row {
                gap: 8px;
            }

            .hero-pill {
                padding: 8px 14px;
                font-size: 0.8rem;
            }

            .btn {
                width: 100%;
                max-width: 100%;
            }

            .whatsapp-float {
                right: 16px;
                bottom: 16px;
                width: 56px;
                height: 56px;
                font-size: 1.5rem;
            }
        }
.about {
  padding: 100px 60px;
  background-image: url('Assets/images/About bg.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
}

/* IMAGE */
.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* CONTENT */
.about-content {
  max-width: 550px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
  white-space: nowrap;
}

.section-kicker span {
  color: #132030;
}

.section-kicker em {
  color: #ff8c42;
  font-style: normal;
}

.about-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-content h2 span {
  color: #FF8C42;
}

.about-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* LIST */
.about-points {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.about-points li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.about-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #6BCB77;
}

/* BUTTON */
.about-btn {
  background: #FF8C42;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
  text-decoration: none;
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.about {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.about.show {
  opacity: 1;
  transform: translateY(0);
}

.gallery {
  padding: 90px 8%;
  background-image:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.95), rgba(243, 249, 255, 0.85)),
    url('Assets/images/gallery bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.gallery-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.gallery-header h2 {
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 12px;
  color: #2a2a2a;
}

.gallery-header p {
  max-width: 640px;
  margin: 0 auto 48px;
  color: #555;
  line-height: 1.6;
}

.gallery-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.gallery-controls button {
  border: none;
  background: white;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  color: #777;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-controls button.active {
  background: #ff8c42;
  color: white;
  box-shadow: 0 12px 25px rgba(255, 140, 66, 0.4);
  transform: translateY(-2px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  gap: clamp(18px, 2vw, 28px);
  align-items: stretch;
  justify-content: center;
}

.gallery-grid.gallery-grid-single-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  align-items: stretch;
  justify-content: center;
  max-width: 1320px;
  margin-inline: auto;
}

.gallery-grid.gallery-grid-single-row .gallery-card {
  flex: 0 0 calc((100% - 72px) / 4);
}

@media (max-width: 1100px) {
  .gallery-grid.gallery-grid-single-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 320px));
    gap: 20px;
    max-width: 760px;
  }

  .gallery-grid.gallery-grid-single-row .gallery-card {
    flex: initial;
  }
}

@media (max-width: 640px) {
  .gallery-grid.gallery-grid-single-row {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 320px;
  }
}

.gallery-card {
  position: relative;
  min-height: 220px;
  aspect-ratio: 4 / 3;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 35px rgba(41, 82, 140, 0.15);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(14, 18, 30, 0.65));
  transition: background 0.3s ease;
}

.gallery-card:hover::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(14, 18, 30, 0.75));
}

.gallery-cta {
  margin-top: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  border-radius: 30px;
  background: #1c949c;
  color: white;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(28, 148, 156, 0.35);
  transition: transform 0.3s ease;
}

.gallery-cta:hover {
  transform: translateY(-3px);
}

.why-choose {
  padding: 120px 8%;
  background:
    radial-gradient(circle at top left, rgba(255, 207, 136, 0.35), transparent 30%),
    linear-gradient(180deg, #fffaf4 0%, #fff3e6 100%);
}

.why-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

.why-content {
  flex: 1 1 0;
}

.why-title span {
  display: inline-block;
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #ff9f1c;
  letter-spacing: 0.5px;
}

.why-title h2 {
  font-size: clamp(2.5rem, 3vw, 3.8rem);
  margin-bottom: 10px;
  font-weight: 700;
  color: #1b2a3a;
}

.why-title p {
  max-width: 620px;
  margin: 0 0 30px;
  color: #4b5563;
  line-height: 1.7;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.why-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 244, 0.96));
  border: 1px solid rgba(255, 140, 66, 0.16);
  border-radius: 26px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: 0 24px 50px rgba(10, 35, 76, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(10, 35, 76, 0.16);
}

.why-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffb26b, #ff8c42);
  box-shadow: 0 14px 28px rgba(255, 140, 66, 0.28);
  font-size: 1.25rem;
  flex-shrink: 0;
  color: #fff;
}

.why-title .section-kicker {
  align-items: center;
}

.why-title .section-kicker span,
.why-title .section-kicker em {
  display: block;
  margin: 0;
  font-size: inherit;
  letter-spacing: inherit;
  line-height: 1;
}

.why-card-text {
  text-align: left;
}

.why-card-text h3 {
  margin: 0 0 4px;
  font-size: 1.35rem;
  color: #132030;
}

.why-card-text p {
  margin: 0;
  color: #555;
  line-height: 1.5;
  font-size: 0.95rem;
}

.why-visual {
  width: min(420px, 38vw);
  position: relative;
}

.why-visual img {
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 25px 50px rgba(11, 40, 82, 0.25);
  display: block;
}

.testimonials {
  padding: 100px 8%;
  background:
    radial-gradient(circle at top right, rgba(255, 209, 122, 0.28), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
  text-align: center;
}

.testimonials-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.testimonials-header h2 {
  font-size: clamp(2.5rem, 3vw, 3.4rem);
  margin-bottom: 12px;
  color: #1c2331;
}

.testimonials-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 40px;
  text-align: left;
}

.testimonials-heading-row > div:first-child {
  flex: 1 1 auto;
}

.testimonials-header p {
  color: #515968;
  margin-bottom: 0;
  font-size: 1.05rem;
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(244, 166, 34, 0.24);
  color: #2a3240;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(18, 38, 83, 0.08);
}

.rating-pill i {
  color: #f4a622;
}

.testimonial-slider {
  position: relative;
  padding: 0 54px 34px;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 18px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - 54px) / 4);
  min-width: 0;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf5 100%);
  border: 1px solid rgba(255, 140, 66, 0.14);
  border-radius: 30px;
  padding: 24px 20px 22px;
  box-shadow: 0 20px 40px rgba(18, 38, 83, 0.08);
  position: relative;
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 52px rgba(18, 38, 83, 0.14);
}

.testimonial-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.testimonial-stars {
  display: inline-flex;
  gap: 5px;
  color: #f4a622;
}

.testimonial-badge {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1c949c, #15747a);
  color: #fff;
  box-shadow: 0 12px 24px rgba(28, 148, 156, 0.22);
}

.testimonial-card::before,
.testimonial-card::after {
  content: '“';
  font-size: 60px;
  color: rgba(255, 140, 66, 0.15);
  position: absolute;
  font-family: 'Georgia', serif;
}

.testimonial-card::before {
  top: 10px;
  left: 16px;
}

.testimonial-card::after {
  bottom: 10px;
  right: 16px;
  content: '”';
}

.testimonial-card p {
  font-size: 0.96rem;
  color: #444b56;
  line-height: 1.55;
  margin-bottom: 18px;
}

.testimonial-card h4 {
  margin: 0 0 4px;
  font-size: 1.02rem;
  color: #1c2331;
  font-weight: 700;
}

.testimonial-location {
  color: #6c7685;
  font-size: 0.92rem;
  font-weight: 600;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: #ffffff;
  color: #1c2331;
  box-shadow: 0 14px 28px rgba(18, 38, 83, 0.12);
  cursor: pointer;
  z-index: 2;
}

.testimonial-nav:disabled {
  opacity: 0.45;
  cursor: default;
}

.testimonial-prev {
  left: 0;
}

.testimonial-next {
  right: 0;
}

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

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 999px;
  background: rgba(28, 35, 49, 0.18);
  cursor: pointer;
}

.testimonial-dots button.active {
  width: 28px;
  background: #1c949c;
}

@media (max-width: 1024px) {
  .testimonial-card {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 820px) {
  .testimonials-heading-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonial-slider {
    padding-inline: 0;
  }

  .testimonial-nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .testimonial-card {
    flex-basis: 100%;
  }
}

.cta-section {
  padding: 100px 8%;
  background: linear-gradient(180deg, #fff9f2 0%, #ffe5d9 100%);
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,246,236,0.98));
  border-radius: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  padding: 40px;
  box-shadow: 0 40px 80px rgba(11, 34, 68, 0.15);
  align-items: center;
}

.cta-media img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 25px 35px rgba(11, 40, 82, 0.2);
}

.cta-copy h2 {
  font-size: clamp(2.4rem, 3vw, 3.3rem);
  margin-bottom: 12px;
  color: #132030;
}

.cta-copy p {
  color: #4a4f5c;
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cta-btn {
  border-radius: 999px;
  padding: 14px 32px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
}

.cta-btn.primary {
  background: #ff8c42;
  color: white;
  box-shadow: 0 15px 30px rgba(255, 140, 66, 0.4);
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
}

.cta-btn.secondary {
  background: transparent;
  border: 2px solid #ff8c42;
  color: #ff8c42;
}

.cta-btn.secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 140, 66, 0.08);
}

.contact-section {
  padding: 120px 8%;
  background: url('Assets/images/form bg.png') no-repeat center/cover;
}

.contact-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.contact-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 250, 244, 0.94));
  border-radius: 36px;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  box-shadow: 0 30px 60px rgba(15, 38, 82, 0.15);
  align-items: center;
}

.contact-media {
  text-align: center;
  display: grid;
  gap: 22px;
  align-content: start;
  justify-items: center;
}

.contact-media img {
  display: block;
  width: 220px;
  height: 220px;
  margin: 0 auto;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 12px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 40px rgba(18, 38, 83, 0.25);
}

.contact-map-frame {
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(18, 38, 83, 0.16);
  border: 1px solid rgba(19, 32, 48, 0.08);
  position: relative;
}

.contact-map-frame iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.map-business-name {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  margin: 0;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: #d64545;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.contact-map-actions {
  display: flex;
  justify-content: center;
}

.map-pin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8c42 0%, #f0aa17 100%);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(240, 170, 23, 0.28);
}

.contact-copy h2 {
  font-size: clamp(2.3rem, 3vw, 3rem);
  margin-bottom: 12px;
  color: #132030;
}

.contact-copy p {
  color: #4a4f5c;
  line-height: 1.7;
  margin-bottom: 22px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form-status {
  min-height: 1.2em;
  font-size: 0.95rem;
  color: #1c949c;
}

.contact-form-status.is-error {
  color: #d64545;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  font-family: inherit;
  box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.06);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  align-self: flex-start;
  border-radius: 999px;
  padding: 14px 32px;
  background: #1c949c;
  color: white;
  border: none;
  font-weight: 600;
  box-shadow: 0 15px 35px rgba(28, 148, 156, 0.35);
  cursor: pointer;
  transition: transform 0.3s ease;
}

  .contact-form button:hover {
    transform: translateY(-3px);
  }

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25d366, #128c4a);
  color: #fff;
  font-size: 1.7rem;
  box-shadow: 0 18px 34px rgba(18, 140, 74, 0.32);
  z-index: 150;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 24px 40px rgba(18, 140, 74, 0.4);
}

.whatsapp-float span {
  position: absolute;
  right: 74px;
  white-space: nowrap;
  background: #132030;
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.whatsapp-float:hover span {
  opacity: 1;
  transform: translateX(0);
}

  @media (max-width: 1100px) {
    .about-container {
      flex-direction: column-reverse;
      text-align: center;
    }

    .about-image img {
      max-width: 90%;
    }

    .about-content {
      max-width: 100%;
    }
  }

  .gallery {
    padding-top: clamp(60px, 6vw, 120px);
    padding-bottom: clamp(60px, 6vw, 120px);
  }

  .gallery-controls button {
    flex: 1 1 auto;
    min-width: 120px;
  }

  @media (max-width: 800px) {
    .gallery-controls {
      flex-direction: column;
      align-items: center;
    }

    .cta-inner {
      padding: 30px;
    }

    .cta-media img {
      max-height: 280px;
    }
  }

  @media (max-width: 640px) {
    .testimonials {
      padding: 60px 16px;
    }

    .cta-inner {
      grid-template-columns: 1fr;
    }

    .contact-card {
      grid-template-columns: 1fr;
      padding: 24px;
    }

    .contact-media img {
      width: 180px;
      height: 180px;
    }
  }

  @media (max-width: 520px) {
    .contact-form {
      gap: 12px;
    }

    .contact-form button {
      width: 100%;
      text-align: center;
    }
  }

  @media (max-width: 990px) {
    .why-inner {
      flex-direction: column;
  }

  .why-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 650px) {
  .why-card {
    flex-direction: column;
    text-align: center;
  }

  .why-card-text {
    text-align: center;
  }
}


.footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0b1f3a 0%, #12335d 52%, #0f2747 100%);
  color: #b7c7da;
  padding: 72px 24px 28px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(92, 146, 214, 0.16), transparent 28%),
    radial-gradient(circle at 84% 30%, rgba(255, 255, 255, 0.08), transparent 22%);
}

.footer-shell {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
  align-items: start;
}

.footer-col {
  min-width: 0;
}

.footer-col h4 {
  margin: 0 0 22px;
  color: #f7fbff;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.footer-col a,
.footer-col span,
.footer-col p {
  color: #b7c7da;
}

.footer-col a {
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.footer-logo {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 14px 28px rgba(3, 11, 24, 0.28);
}

.footer-brand-copy h3 {
  margin: 0;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.footer-tagline {
  margin: 10px 0 0;
  color: #82b8ff;
  font-size: 1.18rem;
  line-height: 1.3;
}

.footer-description {
  max-width: 28ch;
  margin: 0;
  color: #d2deec;
  line-height: 1.85;
  font-size: 1rem;
}

.footer-link-list,
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link-list li + li,
.footer-contact-list li + li {
  margin-top: 14px;
}

.footer-link-list a {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.6;
}

.footer-link-list a:hover {
  transform: translateX(3px);
}

.footer-contact-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
  align-items: start;
}

.footer-contact-list i {
  color: #82b8ff;
  font-size: 0.95rem;
  margin-top: 0.28rem;
}

.footer-contact-list a,
.footer-contact-list span {
  line-height: 1.75;
  word-break: break-word;
}

.footer-cta-col {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: 0 18px 40px rgba(2, 10, 24, 0.22);
  backdrop-filter: blur(10px);
}

.footer-cta-col h4 {
  margin-bottom: 18px;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  width: 100%;
  padding: 0 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, #37d66a 0%, #1fa858 100%);
  color: #f8fff9 !important;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 30px rgba(36, 179, 95, 0.32);
}

.footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(36, 179, 95, 0.36);
}

.footer-support {
  margin: 18px 0 24px;
  line-height: 1.75;
}

.footer-social-title {
  margin: 0 0 14px;
  color: #f3f8ff;
  font-size: 1rem;
  font-weight: 700;
}

.about,
.gallery,
.why-choose,
.testimonials,
.cta-section,
.contact-section,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-links a {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.social-links a:hover {
  background: rgba(130, 184, 255, 0.18);
  border-color: rgba(130, 184, 255, 0.28);
  transform: translateY(-2px);
}

.social-links i {
  color: #ffffff;
  font-size: 1rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  line-height: 1.6;
}

.footer-credit {
  color: rgba(215, 227, 241, 0.62) !important;
  font-size: 0.95rem;
  text-align: right;
}

.footer-credit a {
  color: inherit !important;
}

.footer-credit a:hover {
  color: inherit !important;
}

@media (max-width: 1100px) {
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .footer {
    padding: 60px 18px 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-cta-col {
    padding: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-credit {
    text-align: left;
  }
}
