body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: #333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
}

.logo {
    height: 60px;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
}

#hero {
    background: linear-gradient(to right, #00b4db, #0083b0);
    color: white;
    text-align: center;
    padding: 50px 20px;
}

section {
    padding: 40px 20px;
    text-align: center;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.gallery img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input, textarea {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background: #0083b0;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.socials {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.socials li a {
    text-decoration: none;
    color: #0083b0;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.feature {
    max-width: 300px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: scale(1.05);
}

.clean-steps {
    list-style: none;
    padding-left: 0;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.clean-steps li {
    padding: 10px 0;
    font-size: 1rem;
}

#cta .btn {
    background-color: #ff5a5f;
    color: #fff;
    padding: 12px 24px;
    font-size: 1.1rem;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

main {
    flex-grow: 1;
}

#contact, footer {
    background: #f1f1f1;
    padding: 30px 20px;
}

.carousel {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px;
}
.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 15px;
}
.carousel-track a {
    flex: 0 0 auto;
    width: 80%;
    max-width: 300px;
}
.carousel-track img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0083b0;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
}
.carousel-button.prev {
    left: 10px;
}
.carousel-button.next {
    right: 10px;
}

}

}

.carousel {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px;
}
.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 15px;
}
.carousel-track a {
    flex: 0 0 auto;
    width: 80%;
    max-width: 300px;
}
.carousel-track img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0083b0;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
}
.carousel-button.prev {
    left: 10px;
}
.carousel-button.next {
    right: 10px;
}

}

}

.carousel-track a {
    flex: 0 0 auto;
    width: 80%;
    max-width: 300px;
}

@media (min-width: 768px) {
    .carousel-track a {
        width: 45%;
        max-width: 45%;
    }
}

@media (min-width: 1024px) {
    .carousel-track a {
        width: 48%;
        max-width: 48%;
    }
}

#faq {
    padding: 40px 20px;
    background-color: #f7f7f7;
    text-align: center;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.accordion-button {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: bold;
    background-color: #fff;
    border: 1px solid #ccc;
    cursor: pointer;
    text-align: left;
    position: relative;
    transition: background-color 0.3s ease;
}

.accordion-button::after {
    content: "\002B";
    font-size: 1.5rem;
    position: absolute;
    right: 20px;
    top: 12px;
}

.accordion-button.active::after {
    content: "\2212";
}

.accordion-content {
    padding: 0 20px 20px;
    display: none;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: none;
}

#faq h2 {
    color: #0083b0;
}

.accordion-button {
    background-color: #fdd835; /* Yellow from logo */
    color: #0083b0; /* Template blue */
}

.accordion-content {
    color: #333;
}

.accordion-content {
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 10px;
    border-radius: 4px;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
}

/* Hamburger Menu Defaults */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: auto;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background-color: #333;
    margin: 4px 0;
    transition: 0.4s;
}

/* Navigation Styles */
nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

@media (max-width: 768px) {
    nav {
        display: none;
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        padding: 15px 0;
        border-top: 1px solid #ccc;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        z-index: 999;
    }

    nav.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    header {
        flex-wrap: wrap;
    }
}

.cleaning-wrapper {
    background-color: #fefefe;
    border: 2px dashed #e0e0e0;
    padding: 20px;
    border-radius: 10px;
    background-image: url('https://cdn-icons-png.flaticon.com/512/2913/2913461.png'),
                      url('https://cdn-icons-png.flaticon.com/512/2913/2913462.png');
    background-position: top right, bottom left;
    background-repeat: no-repeat;
    background-size: 50px 50px, 50px 50px;
}

.cleaning-wrapper {
    background-color: #ffffff;
    border: 1px solid #ddd;
    padding: 30px;
    border-radius: 12px;
    background-image: url('https://cdn-icons-png.flaticon.com/512/10784/10784443.png'),
                      url('https://cdn-icons-png.flaticon.com/512/10784/10784444.png'),
                      url('https://cdn-icons-png.flaticon.com/512/10784/10784445.png');
    background-position: center center;
    background-repeat: repeat;
    background-size: 150px;
    opacity: 0.95;
}

/* Add translucent white background to each step */
.clean-steps li {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.cleaning-wrapper {
    background-image: url('../images/cleaning-background.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #ffffff;
    border: 1px solid #ddd;
    padding: 30px;
    border-radius: 12px;
    opacity: 0.95;
}

.clean-steps li {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Modal Image Viewer */
.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
    animation-name: zoom;
    animation-duration: 0.3s;
}

@keyframes zoom {
    from {transform: scale(0.7);}
    to {transform: scale(1);}
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1100;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
    }
}

.hero-content {
    text-align: center;
    animation: fadeInUp 1s ease-in-out;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    animation: fadeInDown 1.2s ease-in-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1.4s ease-in-out;
}

.hero-cta {
    background-color: #ffc107;
    color: #000;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    animation: fadeIn 1.6s ease-in-out;
}

.hero-cta:hover {
    background-color: #e0a800;
    color: #fff;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.accordion-content {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
/* popover form */
.form-popover {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background: #e0ffe0;
  color: #2a602a;
  border: 1px solid #b2e6b2;
  animation: fadeIn 0.3s ease-out;
}
.form-popover.show {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
.inflatables-section {
  padding: 2rem;
  background: #f8f8ff;
}
.inflatable {
  text-align: center;
  margin: 1rem;
}
.inflatable img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
}