/* =========================
   DECORATIVE GLASS SECTION
========================= */
.decorative-glass {
    padding: 90px 8%;
    background: #ffffff;
    color: #222;
    font-family: comfortaa;
}

.decorative-glass .container {
    max-width: 1200px;
    margin: auto;
}

/* =========================
   MAIN HEADING
========================= */
.decorative-glass h1 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.decorative-glass h1::after {
    content: "";
    width: 100px;
    height: 4px;
    background: #0a7d32;
    display: block;
    margin: 15px auto;
    border-radius: 10px;
}

/* =========================
   SUB HEADINGS
========================= */
.decorative-glass h2 {
    font-size: 30px;
    color: #000;
    margin-top: 60px;
    margin-bottom: 20px;
    font-weight: 600;
    border-left: 5px solid #0a7d32;
    padding-left: 15px;
}

.decorative-glass h3 {
    font-size: 22px;
    color: #0a7d32;
    margin-bottom: 15px;
}

/* =========================
   TEXT
========================= */
.decorative-glass p {
    font-size: 17px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 20px;
}

/* =========================
   BENEFITS LIST
========================= */
.decorative-glass ul {
    margin: 35px 0;
    padding-left: 0;
}

.decorative-glass li {
    list-style: none;
    font-size: 16px;
    color: #222;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.decorative-glass li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0a7d32;
    font-weight: bold;
    font-size: 18px;
}

/* =========================
   SERVICES GRID
========================= */
/* =========================
   SERVICE CARDS
========================= */
.service-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 35px 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    border-color: #0a7d32;
}

.service-card h3 {
    color: #000;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #0a7d32;
}

.service-card p {
    color: #444;
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .decorative-glass {
        padding: 60px 6%;
    }

    .decorative-glass h1 {
        font-size: 32px;
    }

    .decorative-glass h2 {
        font-size: 24px;
    }

    .decorative-glass h3 {
        font-size: 20px;
    }

    .decorative-glass p,
    .decorative-glass li {
        font-size: 15px;
    }

    .service-card {
        padding: 25px 20px;
    }
}

/* =========================
   SERVICE CARD IMAGES
========================= */
.service-card img {
    width: 220px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 18px;
    transition: transform 0.4s ease, filter 0.3s ease;
    display: block;
}

/* Subtle premium hover effect */
.service-card:hover img {
    transform: scale(1.03);
    filter: brightness(1.05);
}
.service-card {
    overflow: hidden;
}


/* =========================
   get quote
========================= */

/* =========================
   MUSA FLOATING BUTTON
   KIOO CHETU BRAND
   WHITE • BLACK • GREEN
========================= */

.musa-quote {
    position: fixed;
    right: 0;
    bottom: 30px;
    z-index: 9999;
}

/* main link container */
.musa-quote a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* avatar */
.musa-quote img {
    width: 78px;
    height: 78px;
    border-radius: 50%;

    background: #ffffff;
    border: 3px solid #ffffff;

    box-shadow: -6px 6px 20px rgba(0,0,0,0.2);

    transform: translateX(10px);
    transition: 0.3s ease;
}

/* text bubble */
.musa-quote span {
    background: #000000;   /* black */
    color: #ffffff;

    font-family: 'Comfortaa', sans-serif;
    font-size: 13px;
    font-weight: 600;

    padding: 10px 14px;
    border-radius: 18px;

    white-space: nowrap;

    border-left: 4px solid #16a34a; /* green accent */

    opacity: 0;
    transform: translateX(8px);

    transition: 0.3s ease;
}

/* hover effect */
.musa-quote:hover span {
    opacity: 1;
    transform: translateX(-5px);
}

.musa-quote:hover img {
    transform: translateX(10px) translateY(-4px);
}


/*search dropdown results*/

#searchResults.dropdown-results {
  position: fixed;
  top: 0;     /* set dynamically by JS */
  right: 0;   /* set dynamically by JS */
  left: auto;
  height: max-content;
  width: max-content;
  min-width: 180px;
  max-width: 320px;
  margin: 0;
  padding: 6px 0;
  list-style: none;

  background-color: #000 !important;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);

  font-family: 'Comfortaa', sans-serif;
  font-size: 14px;
  letter-spacing: 0.2px;

  overflow: auto;  /* allow scrolling */
  max-height: 180px;  /* reduced height */
  z-index: 999;
  display: none;
  animation: dropdownFade 0.18s ease-out;
}

#searchResults.dropdown-results.show {
  display: block;
}

@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

#searchResults.dropdown-results li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#searchResults.dropdown-results li:last-child {
  border-bottom: none;
}

#searchResults.dropdown-results li a {
  display: block;
  padding: 10px 18px;
  color: #fff !important;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.15s ease, color 0.15s ease;
}

#searchResults.dropdown-results li a:hover,
#searchResults.dropdown-results li a:focus {
  background-color: #fff;
  color: #000 !important;
}

#searchResults.dropdown-results li.no-results {
  padding: 10px 18px;
  color: #aaa !important;
  font-style: italic;
  white-space: nowrap;
}

body {
    position: relative;
    overflow-x: hidden;
    background: #ffffff;
}

.shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Desktop */
.circle {
    width: 220px;
    height: 220px;
    background: rgba(10, 143, 74, 0.3);
    top: 180px;
    left: -70px;
    animation: breathe 6s ease-in-out infinite alternate;
}

.blob {
    width: 200px;
    height: 200px;
    background: rgba(10, 143, 74, 0.3);
    top: 500px;
    right: -60px;
    animation: breathe 8s ease-in-out infinite alternate;
}

.drop {
    width: 180px;
    height: 180px;
    background: rgba(10, 143, 74, 0.3);
    top: 850px;
    left: -50px;
    animation: breathe 7s ease-in-out infinite alternate;
}

.dot {
    width: 200px;
    height: 200px;
    background: rgba(10, 143, 74, 0.3);
    bottom: 630px;
      right: -60px;

    animation: breathe 9s ease-in-out infinite alternate;
}

@keyframes breathe {
    0%   { transform: scale(1); opacity: 0.8; }
    50%  { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

/* Mobile layout */
@media (max-width: 768px) {
    .circle {
        width: 120px;
        height: 120px;
        top: 800px;       /* higher so it’s visible */
        left: 0px;      /* pulled inside screen */
    }

    .blob {
        width: 110px;
        height: 110px;
        top: 300px;      /* evenly spaced below circle */
        right: 0px;     /* inside screen */
    }

    .drop {
        width: 100px;
        height: 100px;
        top: 1800px;      /* evenly spaced below blob */
        left: 0px;
    }

    .dot {
        width: 110px;
        height: 110px;
        bottom: 1700px;      /* evenly spaced below drop */
        right: 0px;
    }
}

