#wicked-full-layout {
--wicked-blue: #00aeef;
--wicked-dark: #015271;
--wicked-orange: #f18f34;
font-family: Arial, sans-serif;
overflow-x: hidden;
display: block; /* Ensures section exists in the flow */
clear: both;
}

/* Gallery Section Styles */
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    padding: 60px 5%;
    gap: 40px;
    align-items: center;
}

.gallery-text {
    flex: 1;
    min-width: 300px;
}
.gallery-text h2 { color: var(--wicked-dark); font-size: 2.2rem; }

.gallery-grid {
    flex: 1.5;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-auto-rows: 180px;
    gap: 15px;
    width: 100%;
}

.img-box {
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    min-height: 180px;
}

/* Contact/Form Section Styles */
.contact-section {
    background: var(--wicked-blue);
    padding: 60px 5%;
    color: white;
}

.contact-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-form-side, .location-side {
    flex: 1;
    min-width: 300px;
}

.contact-form-side input,
.contact-form-side textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: none;
    box-sizing: border-box;
}

.city-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    list-style: disc;
    padding-left: 20px;
    gap: 10px;
}

/* --- REFACTORED FOOTER STYLES --- */
.wicked-footer {
    clear: both;
    background: var(--wicked-blue);
    color: white;
    padding: 40px 20px 20px 20px;
    text-align: center;
    border-top: 2px solid rgba(255,255,255,0.3);
    position: relative; /* Ensure it stays in document flow */
    z-index: 10;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.f-col {
    flex: 1;
    min-width: 250px;
}

.f-title {
    border-bottom: 2px solid white;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* PIXI LOGO CONTAINER */
.logo-col
