/* =========================
   ROOT BRAND COLORS
========================= */
:root {
    --black: #0b0f0c;
    --dark: #111827;
    --white: #ffffff;
    --soft: #f5f5f5;
    --text: #374151;
    --muted: #6b7280;
    --green: #1f7a3a;
    --green-dark: #14532d;
    --border: #e5e7eb;
}

/* =========================
   GLOBAL CONTAINER
========================= */
.glass-box {
    max-width: 1500px;
    margin: 0 auto;
    padding: 70px 8%;
    background: var(--white);
    color: var(--text);
    font-family: comfortaa;
    line-height: 1.75;
}

/* =========================
   MAIN TITLE
========================= */
.glass-box h1 {
    font-size: 42px;
    font-weight: 800xp;
    color: var(--black);
    letter-spacing: -0.6px;
    margin-bottom: 20px;
    position: relative;
}

.glass-box h1::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: var(--green);
    margin-top: 12px;
    border-radius: 2px;
}

/* =========================
   MAIN IMAGE
========================= */
.glass-main-image {
    width: 450px;
    height: 550px;
    object-fit: cover;
    border-radius: 12px;
    margin: 30px 0 40px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* =========================
   PARAGRAPHS
========================= */
.glass-box p {
    font-size: 18.5px;
    color: var(--text);
    margin-bottom: 18px;
}

/* =========================
   SECTION HEADINGS
========================= */
.glass-box h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin: 55px 0 25px;
    position: relative;
    padding-left: 16px;
}

.glass-box h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 4px;
    height: 26px;
    background: var(--green);
    border-radius: 2px;
}

/* =========================
   DESIGN GRID
========================= */
.design-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

/* =========================
   PRODUCT CARDS
========================= */
.design-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: 0.35s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.design-card:hover {
    transform: translateY(-8px);
    border-color: var(--green);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}

.design-card img {
    width: 320px;
    height: 370px;
    object-fit: cover;
}

.design-card h3 {
    font-size: 18px;
    margin: 14px 16px 6px;
    color: var(--black);
}

.design-card p {
    font-size: 14.5px;
    margin: 0 16px 18px;
    color: var(--muted);
}

/* =========================
   APPLICATION CARDS
========================= */
.application-card {
    display: flex;
    gap: 18px;
    align-items: center;
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 18px;
    transition: 0.3s ease;
}

.application-card:hover {
    border-color: var(--green);
    background: var(--white);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.application-card img {
    width: 150px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.application-card h3 {
    margin: 0;
    font-size: 18px;
    color: var(--black);
}

.application-card p {
    margin-top: 6px;
    font-size: 14.5px;
    color: var(--muted);
}

/* =========================
   LIST STYLE
========================= */
.glass-box ul {
    margin-top: 15px;
    padding-left: 20px;
}

.glass-box ul li {
    margin-bottom: 10px;
    font-size: 15.5px;
    color: var(--text);
}

.glass-box ul li::marker {
    color: var(--green);
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {

    .glass-box h1 {
        font-size: 30px;
    }

    .glass-main-image {
        height: 280px;
    }

    .application-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .application-card img {
        width: 100%;
        height: 180px;
    }
}


/* =========================
   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;
}

@media (max-width: 768px) {

    .glass-box {
        padding: 30px 15px;
    }

    .glass-box h1 {
        font-size: 30px;
    }

    /* Fix main image - width was still 450px fixed */
    .glass-main-image {
        width: 100%;
        max-width: 100%;
        height: 280px;
    }

    /* Design grid - force single column */
    .design-grid {
        grid-template-columns: 1fr;
    }

    /* Design card images - were fixed 320x370px */
    .design-card img {
        width: 100%;
        height: 240px;
    }

    /* Application cards */
    .application-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .application-card img {
        width: 100%;
        height: 180px;
    }
}
/* Tempered and laminated images have different aspect ratios */
.tempered-card img,
.laminated-card img {
    object-fit: contain;
    background: #f5f5f5;
}

@media (max-width: 768px) {
    .tempered-card img,
    .laminated-card img {
        height: 240px;
        object-fit: contain;
        background: #f5f5f5;
    }
}
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;
    }
}


